Hi Siddha, Can this corruption happen with on lion with 4Go of memory also ? Thanks, Philippe. "Siddha, Suresh B" wrote: > > Hi, > > 4KB page size kernel is broken on Lion with 8GB memory. ia64_boot_param > structure was getting corrupted. Appended patch fixes this problem. > > PAGE_ALIGN is required because: rsvd_region[i].end need not be page aligned > and in the next iteration of the for loop this can potentially become > bootmap_start. This can lead to corruption of rsvd_region[i] as > init_bootmem() takes the pfn of bootmap_start and initialises the bootmem. > > Thanks, > Suresh > > diff -u linux-2.4.14/arch/ia64/kernel/setup.c~ > linux-2.4.14/arch/ia64/kernel/setup.c > --- linux-2.4.14/arch/ia64/kernel/setup.c~ Thu Nov 15 16:27:23 2001 > +++ linux-2.4.14/arch/ia64/kernel/setup.c Thu Nov 15 16:28:01 2001 > @@ -175,7 +175,7 @@ > /* nothing more available in this segment */ > if (range_end == end) return 0; > > - free_start = rsvd_region[i].end; > + free_start = PAGE_ALIGN(rsvd_region[i].end); > } > return 0; > } > > _______________________________________________ > Linux-IA64 mailing list > Linux-IA64@linuxia64.org > http://lists.linuxia64.org/lists/listinfo/linux-ia64Received on Fri Nov 16 02:24:18 2001
This archive was generated by hypermail 2.1.8 : 2005-08-02 09:20:05 EST