Merge commit 'kumar/next' into next
Esse commit está contido em:
@@ -111,7 +111,7 @@ void settlbcam(int index, unsigned long virt, phys_addr_t phys,
|
||||
unsigned int tsize, lz;
|
||||
|
||||
asm ("cntlzw %0,%1" : "=r" (lz) : "r" (size));
|
||||
tsize = (21 - lz) / 2;
|
||||
tsize = 21 - lz;
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
if ((flags & _PAGE_NO_CACHE) == 0)
|
||||
@@ -218,7 +218,7 @@ adjust_total_lowmem(void)
|
||||
p += sprintf(p, "0/");
|
||||
p[-1] = '\0';
|
||||
|
||||
pr_info("Memory CAM mapping: %s Mb, residual: %ldMb\n", buf,
|
||||
(total_lowmem - __max_low_memory) >> 20);
|
||||
pr_info("Memory CAM mapping: %s Mb, residual: %dMb\n", buf,
|
||||
(unsigned int)((total_lowmem - __max_low_memory) >> 20));
|
||||
__initial_memory_limit_addr = memstart_addr + __max_low_memory;
|
||||
}
|
||||
|
Referência em uma nova issue
Block a user