diff options
author | Jan Tulak <jtulak@redhat.com> | 2015-10-12 08:02:56 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-10-12 08:02:56 +0300 |
commit | 4e247614a92852e8eb29e49be094b6b981a7895f (patch) | |
tree | 2796d89b563e6288ffb6965f9e54a7286ecf075f /fs/xfs/libxfs/xfs_fs.h | |
parent | fef4ded8cb2e53a47093b334e7730d55a3badc59 (diff) | |
download | linux-4e247614a92852e8eb29e49be094b6b981a7895f.tar.xz |
xfs: prefix XATTR_LIST_MAX with XFS_
Remove a hard dependency of Linux XATTR_LIST_MAX value by using
a prefixed version. This patch reflects the same change in xfsprogs.
Signed-off-by: Jan Tulak <jtulak@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_fs.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_fs.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h index 89689c6a43e2..b2b73a998d42 100644 --- a/fs/xfs/libxfs/xfs_fs.h +++ b/fs/xfs/libxfs/xfs_fs.h @@ -490,6 +490,16 @@ typedef struct xfs_swapext #define XFS_FSOP_GOING_FLAGS_NOLOGFLUSH 0x2 /* don't flush log nor data */ /* + * ioctl limits + */ +#ifdef XATTR_LIST_MAX +# define XFS_XATTR_LIST_MAX XATTR_LIST_MAX +#else +# define XFS_XATTR_LIST_MAX 65536 +#endif + + +/* * ioctl commands that are used by Linux filesystems */ #define XFS_IOC_GETXFLAGS FS_IOC_GETFLAGS |