diff options
author | Christoph Lameter <clameter@engr.sgi.com> | 2005-12-12 09:34:32 -0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-12-16 10:52:46 -0800 |
commit | dc86e88c2bb8a7603ee175fbb6a9e92cf3293dd8 (patch) | |
tree | a15905f02969ba9471b8cfd28f7dc041189dabb5 /include/linux/cache.h | |
parent | d5bf3165b6fbb879a4658f9da9ca2fe002b75f08 (diff) |
[IA64] Add __read_mostly support for IA64
sparc64, i386 and x86_64 have support for a special data section dedicated
to rarely updated data that is frequently read. The section was created to
avoid false sharing of those rarely read data with frequently written kernel
data.
This patch creates such a data section for ia64 and will group rarely written
data into this section.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/linux/cache.h')
-rw-r--r-- | include/linux/cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cache.h b/include/linux/cache.h index f6b5a46c5f8..0b7ecf3af78 100644 --- a/include/linux/cache.h +++ b/include/linux/cache.h @@ -13,7 +13,7 @@ #define SMP_CACHE_BYTES L1_CACHE_BYTES #endif -#if defined(CONFIG_X86) || defined(CONFIG_SPARC64) +#if defined(CONFIG_X86) || defined(CONFIG_SPARC64) || defined(CONFIG_IA64) #define __read_mostly __attribute__((__section__(".data.read_mostly"))) #else #define __read_mostly |