Commit 49612a5f authored by Tim Abbott's avatar Tim Abbott Committed by Greg Ungerer

m68knommu: Use INIT_TASK_DATA and CACHELINE_ALIGNED_DATA.

Signed-off-by: default avatarTim Abbott <tabbott@ksplice.com>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent d6cd1f0c
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include <asm-generic/vmlinux.lds.h> #include <asm-generic/vmlinux.lds.h>
#include <asm/page.h> #include <asm/page.h>
#include <asm/thread_info.h>
#if defined(CONFIG_RAMKERNEL) #if defined(CONFIG_RAMKERNEL)
#define RAM_START CONFIG_KERNELBASE #define RAM_START CONFIG_KERNELBASE
...@@ -148,10 +149,8 @@ SECTIONS { ...@@ -148,10 +149,8 @@ SECTIONS {
. = ALIGN(4); . = ALIGN(4);
_sdata = . ; _sdata = . ;
DATA_DATA DATA_DATA
. = ALIGN(32); CACHELINE_ALIGNED_DATA(32)
*(.data.cacheline_aligned) INIT_TASK_DATA(THREAD_SIZE)
. = ALIGN(8192) ;
*(.data.init_task)
_edata = . ; _edata = . ;
} > DATA } > DATA
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment