All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Kenjiro Nakayama <nakayamakenjiro@gmail.com>
Cc: linux-xfs@vger.kernel.org, bfoster@redhat.com
Subject: Re: [PATCH v2] xfs: Output warning message when discard option was enabled even though the device does not support discard
Date: Mon, 18 Sep 2017 12:06:30 -0700	[thread overview]
Message-ID: <20170918190630.GP6540@magnolia> (raw)
In-Reply-To: <20170918135738.14642-1-nakayamakenjiro@gmail.com>

On Mon, Sep 18, 2017 at 10:57:38PM +0900, Kenjiro Nakayama wrote:
> In order to using discard function, it is necessary that not only xfs
> is mounted with discard option, but also the discard function is
> supported by the device. Current code doesn't output any message when
> users mount with discard option on unsupported device, so it is
> difficult to notice that it was not enabled actually.
> 
> This patch adds the warning message to notice that discard option is
> not enabled due to unsupported device when the filesystem is mounted.
> 
> Changes in v2 (Suggested by Brian Foster):
>   - Move the unsupported device check into xfs_fs_fill_super().
>   - Clear the discard flag when device is unsupported.
> 
> Signed-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>

Looks ok, will test...
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

> ---
>  fs/xfs/xfs_super.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
> index c996f4ae4a5f..584cf2d573ba 100644
> --- a/fs/xfs/xfs_super.c
> +++ b/fs/xfs/xfs_super.c
> @@ -1654,6 +1654,16 @@ xfs_fs_fill_super(
>  		"DAX and reflink have not been tested together!");
>  	}
>  
> +	if (mp->m_flags & XFS_MOUNT_DISCARD) {
> +		struct request_queue *q = bdev_get_queue(sb->s_bdev);
> +
> +		if (!blk_queue_discard(q)) {
> +			xfs_warn(mp, "mounting with \"discard\" option, but "
> +					"the device does not support discard");
> +			mp->m_flags &= ~XFS_MOUNT_DISCARD;
> +		}
> +	}
> +
>  	if (xfs_sb_version_hasrmapbt(&mp->m_sb)) {
>  		if (mp->m_sb.sb_rblocks) {
>  			xfs_alert(mp,
> -- 
> 2.13.5
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2017-09-18 19:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-18 13:57 [PATCH v2] xfs: Output warning message when discard option was enabled even though the device does not support discard Kenjiro Nakayama
2017-09-18 19:06 ` Darrick J. Wong [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170918190630.GP6540@magnolia \
    --to=darrick.wong@oracle.com \
    --cc=bfoster@redhat.com \
    --cc=linux-xfs@vger.kernel.org \
    --cc=nakayamakenjiro@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.