Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1739339 > unrolled thread
| Started by | Ross Zwisler <ross.zwisler@linux.intel.com> |
|---|---|
| First post | 2017-09-26 01:20 +0200 |
| Last post | 2017-09-26 08:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 5/7] xfs: introduce xfs_is_dax_state_changing Ross Zwisler <ross.zwisler@linux.intel.com> - 2017-09-26 01:20 +0200
Re: [PATCH 5/7] xfs: introduce xfs_is_dax_state_changing Christoph Hellwig <hch@lst.de> - 2017-09-26 08:40 +0200
| From | Ross Zwisler <ross.zwisler@linux.intel.com> |
|---|---|
| Date | 2017-09-26 01:20 +0200 |
| Subject | [PATCH 5/7] xfs: introduce xfs_is_dax_state_changing |
| Message-ID | <utKPp-4Lc-21@gated-at.bofh.it> |
Pull this code out of xfs_ioctl_setattr_dax_invalidate() as it will be used
in multiple places soon.
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
---
fs/xfs/xfs_ioctl.c | 34 +++++++++++++++++++++++-----------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
index 0433aef..386b437 100644
--- a/fs/xfs/xfs_ioctl.c
+++ b/fs/xfs/xfs_ioctl.c
@@ -1020,6 +1020,27 @@ xfs_diflags_to_linux(
#endif
}
+static bool
+xfs_is_dax_state_changing(
+ unsigned int xflags,
+ struct xfs_inode *ip)
+{
+ struct inode *inode = VFS_I(ip);
+
+ /*
+ * If the DAX mount option was used we will update the DAX inode flag
+ * as the user requested but we will continue to use DAX for I/O and
+ * page faults regardless of how the inode flag is set.
+ */
+ if (ip->i_mount->m_flags & XFS_MOUNT_DAX)
+ return false;
+ if ((xflags & FS_XFLAG_DAX) && IS_DAX(inode))
+ return false;
+ if (!(xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
+ return false;
+ return true;
+}
+
static int
xfs_ioctl_setattr_xflags(
struct xfs_trans *tp,
@@ -1105,17 +1126,8 @@ xfs_ioctl_setattr_dax_invalidate(
return -EINVAL;
}
- /*
- * If the DAX state is not changing, we have nothing to do here. If
- * the DAX mount option was used we will update the DAX inode flag as
- * the user requested but we will continue to use DAX for I/O and page
- * faults regardless of how the inode flag is set.
- */
- if (ip->i_mount->m_flags & XFS_MOUNT_DAX)
- return 0;
- if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
- return 0;
- if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
+ /* If the DAX state is not changing, we have nothing to do here. */
+ if (!xfs_is_dax_state_changing(fa->fsx_xflags, ip))
return 0;
/* lock, flush and invalidate mapping in preparation for flag change */
--
2.9.5
[toc] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2017-09-26 08:40 +0200 |
| Message-ID | <utRHc-10R-9@gated-at.bofh.it> |
| In reply to | #1739339 |
> +static bool > +xfs_is_dax_state_changing( > + unsigned int xflags, > + struct xfs_inode *ip) And I have no fricking idea what 'is_dax_state_changing' is supposed to mean for the caller. This needs a better name and/or a comment explaining the function.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web