aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_macros.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_macros.c')
-rw-r--r--fs/xfs/xfs_macros.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/fs/xfs/xfs_macros.c b/fs/xfs/xfs_macros.c
index 698c2cd62858..c715da13b2fe 100644
--- a/fs/xfs/xfs_macros.c
+++ b/fs/xfs/xfs_macros.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved. 2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify it 4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as 5 * under the terms of version 2 of the GNU General Public License as
@@ -1995,6 +1995,14 @@ xfs_sb_version_addshared(xfs_sb_t *sbp)
1995} 1995}
1996#endif 1996#endif
1997 1997
1998#if XFS_WANT_FUNCS_C || (XFS_WANT_SPACE_C && XFSSO_XFS_SB_VERSION_ADDATTR2)
1999void
2000xfs_sb_version_addattr2(xfs_sb_t *sbp)
2001{
2002 XFS_SB_VERSION_ADDATTR2(sbp);
2003}
2004#endif
2005
1998#if XFS_WANT_FUNCS_C || (XFS_WANT_SPACE_C && XFSSO_XFS_SB_VERSION_HASALIGN) 2006#if XFS_WANT_FUNCS_C || (XFS_WANT_SPACE_C && XFSSO_XFS_SB_VERSION_HASALIGN)
1999int 2007int
2000xfs_sb_version_hasalign(xfs_sb_t *sbp) 2008xfs_sb_version_hasalign(xfs_sb_t *sbp)
@@ -2139,3 +2147,10 @@ xfs_sb_version_hasmorebits(xfs_sb_t *sbp)
2139} 2147}
2140#endif 2148#endif
2141 2149
2150#if XFS_WANT_FUNCS_C || (XFS_WANT_SPACE_C && XFSSO_XFS_SB_VERSION_HASATTR2)
2151int
2152xfs_sb_version_hasattr2(xfs_sb_t *sbp)
2153{
2154 return XFS_SB_VERSION_HASATTR2(sbp);
2155}
2156#endif