linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2-UPDATE 3/3] xfs: Add alignment check for DAX mount
@ 2016-05-04 15:46 Toshi Kani
  2016-05-05 14:21 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Toshi Kani @ 2016-05-04 15:46 UTC (permalink / raw)
  To: dan.j.williams, david
  Cc: jack, hch, boaz, tytso, adilger.kernel, ross.zwisler, toshi.kani,
	micah.parrish, linux-nvdimm, linux-fsdevel, linux-kernel

When a partition is not aligned by 4KB, mount -o dax succeeds,
but any read/write access to the filesystem fails, except for
metadata update.

Call bdev_direct_access to check the alignment when -o dax is
specified.

Signed-off-by: Toshi Kani <toshi.kani@hpe.com>
Reviewed-by: Boaz Harrosh <boaz@plexistor.com>
Reviewed-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Boaz Harrosh <boaz@plexistor.com>
---
v2-UPDATE
 - Add a period and fix a typo in error messages (Ross Zwisler)
---
 fs/xfs/xfs_super.c |   25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index 187e14b..ac18fae 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -1557,15 +1557,30 @@ xfs_fs_fill_super(
 		sb->s_flags |= MS_I_VERSION;
 
 	if (mp->m_flags & XFS_MOUNT_DAX) {
+		struct blk_dax_ctl dax = {
+			.sector = 0,
+			.size = PAGE_SIZE,
+		};
 		xfs_warn(mp,
-	"DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
+		"DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
 		if (sb->s_blocksize != PAGE_SIZE) {
 			xfs_alert(mp,
-		"Filesystem block size invalid for DAX Turning DAX off.");
+		"Filesystem block size invalid for DAX. Turning DAX off.");
 			mp->m_flags &= ~XFS_MOUNT_DAX;
-		} else if (!sb->s_bdev->bd_disk->fops->direct_access) {
-			xfs_alert(mp,
-		"Block device does not support DAX Turning DAX off.");
+		} else if ((error = bdev_direct_access(sb->s_bdev, &dax)) < 0) {
+			switch (error) {
+			case -EOPNOTSUPP:
+				xfs_alert(mp,
+			"Block device does not support DAX. Turning DAX off.");
+				break;
+			case -EINVAL:
+				xfs_alert(mp,
+			"Partition alignment invalid for DAX. Turning DAX off.");
+				break;
+			default:
+				xfs_alert(mp,
+			"DAX access failed (%d). Turning DAX off.", error);
+			}
 			mp->m_flags &= ~XFS_MOUNT_DAX;
 		}
 	}

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2-UPDATE 3/3] xfs: Add alignment check for DAX mount
  2016-05-05 14:21 ` Christoph Hellwig
@ 2016-05-05 14:19   ` Toshi Kani
  0 siblings, 0 replies; 3+ messages in thread
From: Toshi Kani @ 2016-05-05 14:19 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: dan.j.williams, david, jack, linux-nvdimm, linux-kernel,
	micah.parrish, adilger.kernel, linux-fsdevel, tytso

On Thu, 2016-05-05 at 07:21 -0700, Christoph Hellwig wrote:
> > 
> >  	if (mp->m_flags & XFS_MOUNT_DAX) {
> > +		struct blk_dax_ctl dax = {
> > +			.sector = 0,
> > +			.size = PAGE_SIZE,
> > +		};
>
> I'm pretty sure I already complained last week, but this boiler plate
> code has no business in every file systems.  Also it seems to me like
> this struct blk_dax_ctl calling convention is stupid to start with,
> why not pass the arguments directly and avoid the boilerplate code
> everywhere?

Sorry, I was wondering about if we should also consolidate error messages.
Per the thread below, I am going to add a helper function to do it.
https://lkml.org/lkml/2016/5/4/887

Thanks,
-Toshi


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2-UPDATE 3/3] xfs: Add alignment check for DAX mount
  2016-05-04 15:46 [PATCH v2-UPDATE 3/3] xfs: Add alignment check for DAX mount Toshi Kani
@ 2016-05-05 14:21 ` Christoph Hellwig
  2016-05-05 14:19   ` Toshi Kani
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2016-05-05 14:21 UTC (permalink / raw)
  To: Toshi Kani
  Cc: dan.j.williams, david, jack, linux-nvdimm, linux-kernel,
	micah.parrish, hch, adilger.kernel, linux-fsdevel, tytso

>  	if (mp->m_flags & XFS_MOUNT_DAX) {
> +		struct blk_dax_ctl dax = {
> +			.sector = 0,
> +			.size = PAGE_SIZE,
> +		};

I'm pretty sure I already complained last week, but this boiler plate
code has no business in every file systems.  Also it seems to me like
this struct blk_dax_ctl calling convention is stupid to start with,
why not pass the arguments directly and avoid the boilerplate code
everywhere?


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-05 14:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-04 15:46 [PATCH v2-UPDATE 3/3] xfs: Add alignment check for DAX mount Toshi Kani
2016-05-05 14:21 ` Christoph Hellwig
2016-05-05 14:19   ` Toshi Kani

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).