clean up TLB_FLUSH_ALL definition?

From: Alex Shi
Date: Wed May 09 2012 - 22:25:10 EST



why we need the different definition for TLB_FLUSH_ALL in 32 or 64 bits mode in commit d291cf83639?


#ifdef CONFIG_X86_32
-# include "tlbflush_32.h"
+# define TLB_FLUSH_ALL 0xffffffff
#else
-# include "tlbflush_64.h"
+# define TLB_FLUSH_ALL -1ULL
+#endif

If it's possible to unify it as following?

#define TLB_FLUSH_ALL -1UL

-----------------