Added out of memory handling to MM_Allocate
authorJohn Hodge <[email protected]>
Tue, 22 Sep 2009 12:36:59 +0000 (20:36 +0800)
committerJohn Hodge <[email protected]>
Tue, 22 Sep 2009 12:36:59 +0000 (20:36 +0800)
Kernel/arch/x86/mm_phys.c
Kernel/arch/x86/mm_virt.c

index 72f5dc9..a6656e5 100644 (file)
@@ -96,7 +96,7 @@ tPAddr MM_AllocPhys()
        for(a=0;gaSuperBitmap[a]==-1&&a<num;a++);
        if(a == num) {
                RELEASE( &giPhysAlloc );
-               Warning("MM_AllocPhys - OUT OF MEMORY (Called by %p)",  __builtin_return_address(0));
+               Warning("MM_AllocPhys - OUT OF MEMORY (Called by %p)", __builtin_return_address(0));
                return 0;
        }
        for(b=0;gaSuperBitmap[a]&(1<<b);b++);
index 8fe1b4a..3f23d35 100644 (file)
@@ -205,11 +205,18 @@ void MM_DumpTables(tVAddr Start, tVAddr End)
  */
 tPAddr MM_Allocate(Uint VAddr)
 {
+       tPAddr  paddr;
        // Check if the directory is mapped
        if( gaPageDir[ VAddr >> 22 ] == 0 )
        {
                // Allocate directory
-               gaPageDir[ VAddr >> 22 ] = MM_AllocPhys() | 3;
+               paddr = MM_AllocPhys();
+               if( paddr == 0 ) {
+                       Warning("MM_Allocate - Out of Memory (Called by %p)", __builtin_return_address(0));
+                       return 0;
+               }
+               // Map
+               gaPageDir[ VAddr >> 22 ] = paddr | 3;
                // Mark as user
                if(VAddr < MM_USER_MAX) gaPageDir[ VAddr >> 22 ] |= PF_USER;
                
@@ -223,13 +230,19 @@ tPAddr MM_Allocate(Uint VAddr)
        }
        
        // Allocate
-       gaPageTable[ VAddr >> 12 ] = MM_AllocPhys() | 3;
+       paddr = MM_AllocPhys();
+       if( paddr == 0 ) {
+               Warning("MM_Allocate - Out of Memory (Called by %p)", __builtin_return_address(0));
+               return 0;
+       }
+       // Map
+       gaPageTable[ VAddr >> 12 ] = paddr | 3;
        // Mark as user
        if(VAddr < MM_USER_MAX) gaPageTable[ VAddr >> 12 ] |= PF_USER;
        // Invalidate Cache for address
        INVLPG( VAddr & ~0xFFF );
        
-       return gaPageTable[ VAddr >> 12 ] & ~0xFFF;
+       return paddr;
 }
 
 /**

UCC git Repository :: git.ucc.asn.au