summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_ioctl.c
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2015-02-02 10:14:04 +1100
committerDave Chinner <david@fromorbit.com>2015-02-02 10:14:04 +1100
commit817b6c480e330a5325ed9acb0cef8143923a52de (patch)
treeb29f5c4c0963cb832c687ed8c268dbb252c4beff /fs/xfs/xfs_ioctl.c
parent074e427ba7f7398427e4f8e2aec071edcc509673 (diff)
downloadop-kernel-dev-817b6c480e330a5325ed9acb0cef8143923a52de.zip
op-kernel-dev-817b6c480e330a5325ed9acb0cef8143923a52de.tar.gz
xfs: FSX_NONBLOCK is not used
It is set if the filp is set ot non-blocking, but the flag is not used anywhere. Hence we can kill it. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
-rw-r--r--fs/xfs/xfs_ioctl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
index a1831980..0c0e74f 100644
--- a/fs/xfs/xfs_ioctl.c
+++ b/fs/xfs/xfs_ioctl.c
@@ -1016,7 +1016,6 @@ xfs_diflags_to_linux(
#define FSX_PROJID 1
#define FSX_EXTSIZE 2
#define FSX_XFLAGS 4
-#define FSX_NONBLOCK 8
STATIC int
xfs_ioctl_setattr(
@@ -1299,8 +1298,6 @@ xfs_ioc_fssetxattr(
return -EFAULT;
mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
- if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
- mask |= FSX_NONBLOCK;
error = mnt_want_write_file(filp);
if (error)
@@ -1343,8 +1340,6 @@ xfs_ioc_setxflags(
return -EOPNOTSUPP;
mask = FSX_XFLAGS;
- if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
- mask |= FSX_NONBLOCK;
fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
error = mnt_want_write_file(filp);
OpenPOWER on IntegriCloud