[PATCH] Kill L1_CACHE_SHIFT_MAX
Kill L1_CACHE_SHIFT from all arches. Since L1_CACHE_SHIFT_MAX is not used anymore with the introduction of INTERNODE_CACHE, kill L1_CACHE_SHIFT_MAX. Signed-off-by: Ravikiran Thirumalai <kiran@scalex86.org> Signed-off-by: Shai Fultheim <shai@scalex86.org> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
22fc6eccbf
Коммит
1fd73c6b67
|
@ -20,6 +20,5 @@
|
|||
|
||||
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
|
||||
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
||||
#define L1_CACHE_SHIFT_MAX L1_CACHE_SHIFT
|
||||
|
||||
#endif
|
||||
|
|
|
@ -7,9 +7,4 @@
|
|||
#define L1_CACHE_SHIFT 5
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
/*
|
||||
* largest L1 which this arch supports
|
||||
*/
|
||||
#define L1_CACHE_SHIFT_MAX 5
|
||||
|
||||
#endif
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
/* Etrax 100LX have 32-byte cache-lines. */
|
||||
#define L1_CACHE_BYTES 32
|
||||
#define L1_CACHE_SHIFT 5
|
||||
#define L1_CACHE_SHIFT_MAX 5
|
||||
|
||||
#endif /* _ASM_ARCH_CACHE_H */
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
/* A cache-line is 32 bytes. */
|
||||
#define L1_CACHE_BYTES 32
|
||||
#define L1_CACHE_SHIFT 5
|
||||
#define L1_CACHE_SHIFT_MAX 5
|
||||
|
||||
#endif /* _ASM_CRIS_ARCH_CACHE_H */
|
||||
|
|
|
@ -153,7 +153,7 @@ dma_set_mask(struct device *dev, u64 mask)
|
|||
static inline int
|
||||
dma_get_cache_alignment(void)
|
||||
{
|
||||
return (1 << L1_CACHE_SHIFT_MAX);
|
||||
return (1 << INTERNODE_CACHE_SHIFT);
|
||||
}
|
||||
|
||||
#define dma_is_consistent(d) (1)
|
||||
|
|
|
@ -274,7 +274,7 @@ dma_get_cache_alignment(void)
|
|||
{
|
||||
/* no easy way to get cache size on all processors, so return
|
||||
* the maximum possible, to be safe */
|
||||
return (1 << L1_CACHE_SHIFT_MAX);
|
||||
return (1 << INTERNODE_CACHE_SHIFT);
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
|
|
@ -10,6 +10,4 @@
|
|||
#define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT)
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
|
||||
|
||||
#endif
|
||||
|
|
|
@ -150,7 +150,7 @@ dma_get_cache_alignment(void)
|
|||
{
|
||||
/* no easy way to get cache size on all x86, so return the
|
||||
* maximum possible, to be safe */
|
||||
return (1 << L1_CACHE_SHIFT_MAX);
|
||||
return (1 << INTERNODE_CACHE_SHIFT);
|
||||
}
|
||||
|
||||
#define dma_is_consistent(d) (1)
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
#define L1_CACHE_SHIFT CONFIG_IA64_L1_CACHE_SHIFT
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
# define SMP_CACHE_SHIFT L1_CACHE_SHIFT
|
||||
# define SMP_CACHE_BYTES L1_CACHE_BYTES
|
||||
|
|
|
@ -7,6 +7,4 @@
|
|||
#define L1_CACHE_SHIFT 4
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 4
|
||||
|
||||
#endif /* _ASM_M32R_CACHE_H */
|
||||
|
|
|
@ -8,6 +8,4 @@
|
|||
#define L1_CACHE_SHIFT 4
|
||||
#define L1_CACHE_BYTES (1<< L1_CACHE_SHIFT)
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 4 /* largest L1 which this arch supports */
|
||||
|
||||
#endif
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#define L1_CACHE_SHIFT CONFIG_MIPS_L1_CACHE_SHIFT
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 6
|
||||
#define SMP_CACHE_SHIFT L1_CACHE_SHIFT
|
||||
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
||||
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
|
||||
|
||||
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
||||
#define L1_CACHE_SHIFT_MAX 5 /* largest L1 which this arch supports */
|
||||
|
||||
extern void flush_data_cache_local(void); /* flushes local data-cache only */
|
||||
extern void flush_instruction_cache_local(void); /* flushes local code-cache only */
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
||||
#define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
|
||||
|
||||
#if defined(__powerpc64__) && !defined(__ASSEMBLY__)
|
||||
struct ppc64_caches {
|
||||
|
|
|
@ -229,7 +229,7 @@ static inline int dma_get_cache_alignment(void)
|
|||
#ifdef CONFIG_PPC64
|
||||
/* no easy way to get cache size on all processors, so return
|
||||
* the maximum possible, to be safe */
|
||||
return (1 << L1_CACHE_SHIFT_MAX);
|
||||
return (1 << INTERNODE_CACHE_SHIFT);
|
||||
#else
|
||||
/*
|
||||
* Each processor family will define its own L1_CACHE_SHIFT,
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
|
||||
#define L1_CACHE_BYTES 256
|
||||
#define L1_CACHE_SHIFT 8
|
||||
#define L1_CACHE_SHIFT_MAX 8 /* largest L1 which this arch supports */
|
||||
|
||||
#define ARCH_KMALLOC_MINALIGN 8
|
||||
|
||||
|
|
|
@ -22,8 +22,6 @@
|
|||
|
||||
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX 5 /* largest L1 which this arch supports */
|
||||
|
||||
struct cache_info {
|
||||
unsigned int ways;
|
||||
unsigned int sets;
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
#define L1_CACHE_ALIGN_MASK (~(L1_CACHE_BYTES - 1))
|
||||
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES - 1)) & L1_CACHE_ALIGN_MASK)
|
||||
#define L1_CACHE_SIZE_BYTES (L1_CACHE_BYTES << 10)
|
||||
/* Largest L1 which this arch supports */
|
||||
#define L1_CACHE_SHIFT_MAX 5
|
||||
|
||||
#ifdef MODULE
|
||||
#define __cacheline_aligned __attribute__((__aligned__(L1_CACHE_BYTES)))
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#define L1_CACHE_SHIFT 5
|
||||
#define L1_CACHE_BYTES 32
|
||||
#define L1_CACHE_ALIGN(x) ((((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1)))
|
||||
#define L1_CACHE_SHIFT_MAX 5 /* largest L1 which this arch supports */
|
||||
|
||||
#define SMP_CACHE_BYTES 32
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#define L1_CACHE_BYTES 32 /* Two 16-byte sub-blocks per line. */
|
||||
|
||||
#define L1_CACHE_ALIGN(x) (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
|
||||
#define L1_CACHE_SHIFT_MAX 5 /* largest L1 which this arch supports */
|
||||
|
||||
#define SMP_CACHE_BYTES_SHIFT 6
|
||||
#define SMP_CACHE_BYTES (1 << SMP_CACHE_BYTES_SHIFT) /* L2 cache line size. */
|
||||
|
|
|
@ -13,9 +13,6 @@
|
|||
# define L1_CACHE_SHIFT 5
|
||||
#endif
|
||||
|
||||
/* XXX: this is valid for x86 and x86_64. */
|
||||
#define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
|
||||
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -23,6 +23,4 @@
|
|||
#define L1_CACHE_SHIFT 4
|
||||
#endif
|
||||
|
||||
#define L1_CACHE_SHIFT_MAX L1_CACHE_SHIFT
|
||||
|
||||
#endif /* __V850_CACHE_H__ */
|
||||
|
|
|
@ -9,6 +9,5 @@
|
|||
/* L1 cache line size */
|
||||
#define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT)
|
||||
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
|
||||
#define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
|
||||
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче