Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 154820
b: refs/heads/master
c: 39a449d
h: refs/heads/master
v: v3
  • Loading branch information
Tim Abbott authored and Sam Ravnborg committed Jun 26, 2009
1 parent 66a2b0f commit 2daea71
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: d2af12aeadaedf657c9fb9c3df984d2c5ab25f4c
refs/heads/master: 39a449d96ac3db9b6d498b6ffbf4c763746d5e8b
2 changes: 1 addition & 1 deletion trunk/arch/mn10300/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ SECTIONS
_edata = .; /* End of data section */
}

.data.init_task : { INIT_TASK(THREAD_SIZE); }
.data.init_task : { INIT_TASK_DATA(THREAD_SIZE); }

/* might get freed after init */
. = ALIGN(PAGE_SIZE);
Expand Down
8 changes: 4 additions & 4 deletions trunk/include/asm-generic/vmlinux.lds.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
. = ALIGN(align); \
*(.data.cacheline_aligned)

#define INIT_TASK(align) \
#define INIT_TASK_DATA(align) \
. = ALIGN(align); \
*(.data.init_task)

Expand Down Expand Up @@ -434,10 +434,10 @@
/*
* Init task
*/
#define INIT_TASK_DATA(align) \
#define INIT_TASK_DATA_SECTION(align) \
. = ALIGN(align); \
.data.init_task : { \
INIT_TASK \
INIT_TASK_DATA(align) \
}

#ifdef CONFIG_CONSTRUCTORS
Expand Down Expand Up @@ -707,7 +707,7 @@
#define RW_DATA_SECTION(cacheline, pagealigned, inittask) \
. = ALIGN(PAGE_SIZE); \
.data : AT(ADDR(.data) - LOAD_OFFSET) { \
INIT_TASK(inittask) \
INIT_TASK_DATA(inittask) \
CACHELINE_ALIGNED_DATA(cacheline) \
READ_MOSTLY_DATA(cacheline) \
DATA_DATA \
Expand Down

0 comments on commit 2daea71

Please sign in to comment.