On Sun, Mar 03, 2002 at 06:50:49PM +0100, Rani Assaf wrote: > /* > * Align to 8kb boundary for init_task_union which follows in the > * .text segment. > */ > .text > .align 13 > > Any idea why they have been removed? init_task_union lives in it's own section which has 8kB alignment. So if you're observing an alignment problem I suspect you're using a too old egcs 1.1.2 variant. > BTW, print_memory_map() (in kernel.c) now uses long long format > without casting (which obviously gives wrong numbers on 32bits archs). Yes and we preferably want to get rid of long long anyway. Ralf