From: Johann Lombardi Date: Thu, 17 Mar 2011 21:17:49 +0000 (+0100) Subject: LU-139 move DCACHE_LUSTRE_INVALID to higher bit to prevent conflict with other dentry... X-Git-Tag: 2.0.59-llnl3-base~11 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=1351d2b46e7913ef367a727f3648818ab3043cba 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 --- 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")