Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 166188
b: refs/heads/master
c: ea12c2e
h: refs/heads/master
v: v3
  • Loading branch information
Tim Abbott authored and Linus Torvalds committed Sep 25, 2009
1 parent 45f85f3 commit 33c54cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62bef288588bee976b753f7168716621d7a984e2
refs/heads/master: ea12c2ed547f415ef9699cc67374d90924592c9b
5 changes: 2 additions & 3 deletions trunk/arch/alpha/kernel/init_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
struct task_struct init_task = INIT_TASK(init_task);
EXPORT_SYMBOL(init_task);

union thread_union init_thread_union
__attribute__((section(".data.init_thread")))
= { INIT_THREAD_INFO(init_task) };
union thread_union init_thread_union __init_task_data =
{ INIT_THREAD_INFO(init_task) };
7 changes: 2 additions & 5 deletions trunk/arch/alpha/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <asm-generic/vmlinux.lds.h>
#include <asm/page.h>
#include <asm/thread_info.h>

OUTPUT_FORMAT("elf64-alpha")
OUTPUT_ARCH(alpha)
Expand Down Expand Up @@ -92,11 +93,6 @@ SECTIONS
__init_end = .;
/* Freed after init ends here */

/* Note 2 page alignment above. */
.data.init_thread : {
*(.data.init_thread)
}

. = ALIGN(PAGE_SIZE);
.data.page_aligned : {
*(.data.page_aligned)
Expand All @@ -110,6 +106,7 @@ SECTIONS
_data = .;
/* Data */
.data : {
INIT_TASK_DATA(THREAD_SIZE)
DATA_DATA
CONSTRUCTORS
}
Expand Down

0 comments on commit 33c54cc

Please sign in to comment.