diff options
Diffstat (limited to 'arch/x86/include/asm/irq_vectors.h')
-rw-r--r-- | arch/x86/include/asm/irq_vectors.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/include/asm/irq_vectors.h b/arch/x86/include/asm/irq_vectors.h index 4980f48bbbb..6e976ee3b3e 100644 --- a/arch/x86/include/asm/irq_vectors.h +++ b/arch/x86/include/asm/irq_vectors.h | |||
@@ -126,14 +126,14 @@ | |||
126 | 126 | ||
127 | /* up to 32 vectors used for spreading out TLB flushes: */ | 127 | /* up to 32 vectors used for spreading out TLB flushes: */ |
128 | #if NR_CPUS <= 32 | 128 | #if NR_CPUS <= 32 |
129 | # define NUM_INVALIDATE_TLB_VECTORS NR_CPUS | 129 | # define NUM_INVALIDATE_TLB_VECTORS (NR_CPUS) |
130 | #else | 130 | #else |
131 | # define NUM_INVALIDATE_TLB_VECTORS 32 | 131 | # define NUM_INVALIDATE_TLB_VECTORS (32) |
132 | #endif | 132 | #endif |
133 | 133 | ||
134 | #define INVALIDATE_TLB_VECTOR_END 0xee | 134 | #define INVALIDATE_TLB_VECTOR_END (0xee) |
135 | #define INVALIDATE_TLB_VECTOR_START \ | 135 | #define INVALIDATE_TLB_VECTOR_START \ |
136 | (INVALIDATE_TLB_VECTOR_END - NUM_INVALIDATE_TLB_VECTORS + 1) | 136 | (INVALIDATE_TLB_VECTOR_END-NUM_INVALIDATE_TLB_VECTORS+1) |
137 | 137 | ||
138 | #define NR_VECTORS 256 | 138 | #define NR_VECTORS 256 |
139 | 139 | ||