]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/paging.c
Don't worry about me, I'm kind of a noob
[netwatch.git] / lib / paging.c
index 8fe80a9499f3b564ece27e6e8ff3aa65f6727f57..fc5498388c38d10fd6e565a53928eb262e11c64a 100644 (file)
@@ -8,7 +8,7 @@ unsigned long memory_v2p(void *virt)
        if (_virt >= 0xA0000 && _virt < 0xC0000)
                return _virt;
        if (_virt >= 0x200000 && _virt < 0x300000)
-               return _virt - 0x200000 + /* XXX */ 0x1FF80000;
+               return _virt - 0x200000 + /* XXX */ 0x1FF82000;
        outputf("WARNING: v2p(%08x)", _virt);
        return 0xFFFFFFFF;
 }
@@ -18,7 +18,7 @@ void *memory_p2v(unsigned long phys)
        if (phys >= 0xA0000 && phys < 0xC0000)
                return (void*)phys;
        if (phys >= 0x1FF80000 && phys < 0x20000000)
-               return (void*)(phys - 0x1FF80000 + 0x200000);
+               return (void*)(phys - 0x1FF82000 + 0x200000);
        outputf("WARNING: p2v(%08x)", phys);
        return (void *)0xFFFFFFFF;
 }
This page took 0.022247 seconds and 4 git commands to generate.