Subversion Repositories HelenOS-historic

Rev

Rev 539 | Rev 552 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 539 Rev 541
Line 306... Line 306...
306
    zone_t *z;
306
    zone_t *z;
307
    count_t cnt;
307
    count_t cnt;
308
    int i;
308
    int i;
309
    __u8 max_order;
309
    __u8 max_order;
310
 
310
 
311
    /* hack for bug #10 */
-
 
312
    // if (start == 0x100000) size -= (FRAME_SIZE * 256);
-
 
313
 
-
 
314
    // printf("ZONE_CREATE()   %X - %X (%d kbytes)          \n", start, start+size, size/1024); 
-
 
315
    ASSERT(start % FRAME_SIZE == 0);
311
    ASSERT(start % FRAME_SIZE == 0);
316
    ASSERT(size % FRAME_SIZE == 0);
312
    ASSERT(size % FRAME_SIZE == 0);
317
   
313
   
318
    cnt = size / FRAME_SIZE;
314
    cnt = size / FRAME_SIZE;
319
   
315