]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/lustre/lustre/llite/llite_internal.h
staging/lustre/build: fix compilation issue with is_compat_task
[~andy/linux] / drivers / staging / lustre / lustre / llite / llite_internal.h
index 6d15e5c100fcc756608df5b428425d89fb68448f..1aeadc13c7eceb52dd6170bbfcb7052be7e556df 100644 (file)
@@ -651,7 +651,12 @@ static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
 #if BITS_PER_LONG == 32
        return 1;
 #else
-       return unlikely(is_compat_task() || (sbi->ll_flags & LL_SBI_32BIT_API));
+       return unlikely(
+#ifdef CONFIG_COMPAT
+               is_compat_task() ||
+#endif
+               (sbi->ll_flags & LL_SBI_32BIT_API)
+       );
 #endif
 }