diff options
author | Chen Liqin <liqin.chen@sunplusct.com> | 2009-08-30 00:36:41 -0400 |
---|---|---|
committer | Chen Liqin <liqin.chen@sunplusct.com> | 2009-08-30 00:36:41 -0400 |
commit | 125ec616f4f06565914123614e7287e9a490f2d9 (patch) | |
tree | 37f56457aac4e358a9b0fc78148637fab888ee7d /arch/score/kernel | |
parent | 798983b2d5f9985655ca22a7a8c504b821e3f4e0 (diff) |
score: make init_thread_union align to THREAD_SIZE
Diffstat (limited to 'arch/score/kernel')
-rw-r--r-- | arch/score/kernel/init_task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/score/kernel/init_task.c b/arch/score/kernel/init_task.c index 54d9552afd6a..ff952f6c63fd 100644 --- a/arch/score/kernel/init_task.c +++ b/arch/score/kernel/init_task.c | |||
@@ -35,7 +35,7 @@ static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | |||
35 | * "init_task" linker map entry.. | 35 | * "init_task" linker map entry.. |
36 | */ | 36 | */ |
37 | union thread_union init_thread_union | 37 | union thread_union init_thread_union |
38 | __attribute__((__section__(".data.init_task"))) = | 38 | __attribute__((__section__(".data.init_task"), __aligned__(THREAD_SIZE))) = |
39 | { INIT_THREAD_INFO(init_task) }; | 39 | { INIT_THREAD_INFO(init_task) }; |
40 | 40 | ||
41 | /* | 41 | /* |