All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs: Output warning message when discard option was enabled even though the device does not support discard
@ 2017-09-17  7:32 Kenjiro Nakayama
  2017-09-18 12:44 ` Brian Foster
  0 siblings, 1 reply; 2+ messages in thread
From: Kenjiro Nakayama @ 2017-09-17  7:32 UTC (permalink / raw)
  To: linux-xfs; +Cc: Kenjiro Nakayama

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.

Signed-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>
---
 fs/xfs/xfs_super.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index c996f4ae4a5f..60397f9cc786 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -407,6 +407,13 @@ xfs_parseargs(
 		return -EINVAL;
 	}
 #endif
+	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");
+	}
 
 	if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
 		xfs_warn(mp, "sunit and swidth must be specified together");
-- 
2.13.5


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

end of thread, other threads:[~2017-09-18 12:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-17  7:32 [PATCH] xfs: Output warning message when discard option was enabled even though the device does not support discard Kenjiro Nakayama
2017-09-18 12:44 ` Brian Foster

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.