aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/ocfs2.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/ocfs2.h')
-rw-r--r--fs/ocfs2/ocfs2.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h
index cae0dd4b7f75..6d3c10ddf489 100644
--- a/fs/ocfs2/ocfs2.h
+++ b/fs/ocfs2/ocfs2.h
@@ -363,6 +363,13 @@ static inline int ocfs2_supports_inline_data(struct ocfs2_super *osb)
363 return 0; 363 return 0;
364} 364}
365 365
366static inline int ocfs2_supports_xattr(struct ocfs2_super *osb)
367{
368 if (osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_XATTR)
369 return 1;
370 return 0;
371}
372
366/* set / clear functions because cluster events can make these happen 373/* set / clear functions because cluster events can make these happen
367 * in parallel so we want the transitions to be atomic. this also 374 * in parallel so we want the transitions to be atomic. this also
368 * means that any future flags osb_flags must be protected by spinlock 375 * means that any future flags osb_flags must be protected by spinlock