summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i386/intel/pmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c
index d57df92..f6cbead 100644
--- a/i386/intel/pmap.c
+++ b/i386/intel/pmap.c
@@ -335,8 +335,8 @@ lock_data_t pmap_system_lock;
/* It is hard to know when a TLB flush becomes less expensive than a bunch of
* invlpgs. But it surely is more expensive than just one invlpg. */
#define INVALIDATE_TLB(s, e) { \
- if (__builtin_constant_p((e) - (s))
- && (e) - (s) == PAGE_SIZE)
+ if (__builtin_constant_p((e) - (s)) \
+ && (e) - (s) == PAGE_SIZE) \
invlpg_linear(s); \
else \
flush_tlb(); \