From 3f27b87f446e26598b53e5cc20f968445c09843c Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 14 Oct 2009 00:57:37 +0200 Subject: Fix macro escapes i386/intel/pmap.c (INVALIDATE_TLB): Fix macro escapes --- i386/intel/pmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'i386') 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(); \ -- cgit v1.2.3