Re: [patch] alpha 2.3.x fixes and crashes

Richard Henderson (rth@twiddle.net)
Sun, 23 May 1999 09:37:15 -0700


On Sat, May 22, 1999 at 10:46:42AM -0400, Jeff Garzik wrote:
> -union task_union init_task_union __attribute__((section("init_task")))
> - = { task: INIT_TASK };
> +union task_union init_task_union
> + __attribute__((__section__(".data.init_task"))) =
> + { INIT_TASK(init_task_union.task) };

This section change is wrong, which is why you're getting oopsen --
you'd have had to make a corresponding change in the link script to
get the structure 16K aligned.

There's no point in making the change anyway.

r~

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/