From: Andreas Dilger Date: Tue, 14 Dec 2010 08:21:45 +0000 (-0700) Subject: b=24037 avoid conflicting DCACHE_LUSTRE_INVALID X-Git-Tag: 2.0.59.0~22 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=d611247831ace54572d44b54feb56590ed739cf5;p=fs%2Flustre-release.git 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 --- 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")