summaryrefslogtreecommitdiff
path: root/i386/intel/pmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'i386/intel/pmap.c')
-rw-r--r--i386/intel/pmap.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c
index d46f645..d57df92 100644
--- a/i386/intel/pmap.c
+++ b/i386/intel/pmap.c
@@ -332,11 +332,14 @@ lock_data_t pmap_system_lock;
#define MAX_TBIS_SIZE 32 /* > this -> TBIA */ /* XXX */
#if 0
+/* 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 (((e) - (s)) > 32 * PAGE_SIZE) \
- flush_tlb(); \
+ if (__builtin_constant_p((e) - (s))
+ && (e) - (s) == PAGE_SIZE)
+ invlpg_linear(s); \
else \
- invlpg_linear(s, e); \
+ flush_tlb(); \
}
#else
#define INVALIDATE_TLB(s, e) flush_tlb()