Skip to content

Commit

Permalink
Rename .data.init_irqstack to .data..init_irqstack.
Browse files Browse the repository at this point in the history
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
Denys Vlasenko authored and Michal Marek committed Mar 3, 2010
1 parent e1cb14b commit 9d1578a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/um/kernel/dyn.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ SECTIONS
.data : {
INIT_TASK_DATA(KERNEL_STACK_SIZE)
. = ALIGN(KERNEL_STACK_SIZE);
*(.data.init_irqstack)
*(.data..init_irqstack)
DATA_DATA
*(.data.* .gnu.linkonce.d.*)
SORT(CONSTRUCTORS)
Expand Down
2 changes: 1 addition & 1 deletion arch/um/kernel/init_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ union thread_union init_thread_union __init_task_data =
{ INIT_THREAD_INFO(init_task) };

union thread_union cpu0_irqstack
__attribute__((__section__(".data.init_irqstack"))) =
__attribute__((__section__(".data..init_irqstack"))) =
{ INIT_THREAD_INFO(init_task) };
2 changes: 1 addition & 1 deletion arch/um/kernel/uml.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ SECTIONS
{
INIT_TASK_DATA(KERNEL_STACK_SIZE)
. = ALIGN(KERNEL_STACK_SIZE);
*(.data.init_irqstack)
*(.data..init_irqstack)
DATA_DATA
*(.gnu.linkonce.d*)
CONSTRUCTORS
Expand Down

0 comments on commit 9d1578a

Please sign in to comment.