From d611247831ace54572d44b54feb56590ed739cf5 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Tue, 14 Dec 2010 01:21:45 -0700 Subject: [PATCH] b=24037 avoid conflicting DCACHE_LUSTRE_INVALID In newer kernels our definition of DCACHE_LUSTRE_INVALID needs to be changed to avoid conflictint with other DCACHE flags. Use a high value to avoid conflict for a long time, maybe until we can actually get rid of the need for it entirely. i=sheng.yang i=vitaly.fertman --- lustre/llite/llite_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/llite/llite_internal.h b/lustre/llite/llite_internal.h index ba1a9a95..5273a98 100644 --- a/lustre/llite/llite_internal.h +++ b/lustre/llite/llite_internal.h @@ -53,7 +53,7 @@ #endif #ifndef DCACHE_LUSTRE_INVALID -#define DCACHE_LUSTRE_INVALID 0x100 +#define DCACHE_LUSTRE_INVALID 0x4000 #endif #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0") -- 1.8.3.1