diff options
author | David S. Miller <davem@davemloft.net> | 2005-07-10 15:45:11 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-07-10 15:45:11 -0700 |
commit | d369ddd2fc00fc3f46e9052d1017cbf407e3cdf7 (patch) | |
tree | e7c91ce6639064462cb831dd0c48b9b93cad68d4 /arch/sparc64/kernel/vmlinux.lds.S | |
parent | 9126dfde9e5efd76f9d4246819bdc7ea66de3af0 (diff) | |
download | talos-obmc-linux-d369ddd2fc00fc3f46e9052d1017cbf407e3cdf7.tar.gz talos-obmc-linux-d369ddd2fc00fc3f46e9052d1017cbf407e3cdf7.zip |
[SPARC64]: Add __read_mostly support.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/sparc64/kernel/vmlinux.lds.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/vmlinux.lds.S b/arch/sparc64/kernel/vmlinux.lds.S index 382fd6798bb9..950423da8a6a 100644 --- a/arch/sparc64/kernel/vmlinux.lds.S +++ b/arch/sparc64/kernel/vmlinux.lds.S @@ -32,6 +32,8 @@ SECTIONS .data1 : { *(.data1) } . = ALIGN(64); .data.cacheline_aligned : { *(.data.cacheline_aligned) } + . = ALIGN(64); + .data.read_mostly : { *(.data.read_mostly) } _edata = .; PROVIDE (edata = .); .fixup : { *(.fixup) } |