From 1351d2b46e7913ef367a727f3648818ab3043cba Mon Sep 17 00:00:00 2001 From: Johann Lombardi Date: Thu, 17 Mar 2011 22:17:49 +0100 Subject: [PATCH] LU-139 move DCACHE_LUSTRE_INVALID to higher bit to prevent conflict with other dentry flags 2.6.38 comes with a bunch of new dentry flags and one of them (i.e. DCACHE_OP_REVALIDATE) conflicts with our DCACHE_LUSTRE_INVALID. Change-Id: I11de689058d12b07b2f00191f2d175d48a90ff8e Signed-off-by: Johann Lombardi Reviewed-on: http://review.whamcloud.com/339 Tested-by: Hudson Reviewed-by: Andreas Dilger Reviewed-by: Oleg Drokin --- 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 6967afb..783d8c4 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 0x4000 +#define DCACHE_LUSTRE_INVALID 0x4000000 #endif #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0") -- 1.8.3.1