Re: [PATCH v2 3/3] xfs: Add alignment check for DAX mount
From: Toshi Kani
Date:  Mon May 02 2016 - 16:03:32 EST
On Mon, 2016-05-02 at 13:50 -0600, Ross Zwisler wrote:
> On Mon, May 02, 2016 at 12:42:58PM -0600, Toshi Kani wrote:
Â:
> > Â		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.");
> > Â			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.");
>
> Since you're already in here editing all the strings, can you add a
> period to make it more readable?ÂÂÂApplies to all strings.
Right. Will do.
> > 
> > +			"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) DAX Turning DAX off.",
> > error);
>
> I DAX think you might DAX have too many DAXes in here. :)
Oops! :)
> > 
> > +			}
> > Â			mp->m_flags &= ~XFS_MOUNT_DAX;
> > Â		}
> > Â	}
>
> Other than the nit-picking about the strings, this seems fine.
> 
> You can add this for the series:
> Reviewed-by: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx>
Thanks!
-Toshi