All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bdi: show error log when fail to create bdi debugfs entry
@ 2018-01-10 15:18 weiping zhang
  2018-01-10 16:10 ` Bart Van Assche
  0 siblings, 1 reply; 3+ messages in thread
From: weiping zhang @ 2018-01-10 15:18 UTC (permalink / raw)
  To: axboe, jack; +Cc: linux-block

bdi debugfs dir/file may create fail, add error log here.

Signed-off-by: weiping zhang <zhangweiping@didichuxing.com>
---
 mm/backing-dev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/backing-dev.c b/mm/backing-dev.c
index b5f940c..9117c21 100644
--- a/mm/backing-dev.c
+++ b/mm/backing-dev.c
@@ -885,7 +885,8 @@ int bdi_register_va(struct backing_dev_info *bdi, const char *fmt, va_list args)
 	cgwb_bdi_register(bdi);
 	bdi->dev = dev;
 
-	bdi_debug_register(bdi, dev_name(dev));
+	 if (bdi_debug_register(bdi, dev_name(dev)))
+		 pr_warn("blkdev %s create bdi debugfs failed\n", dev_name(dev));
 	set_bit(WB_registered, &bdi->wb.state);
 
 	spin_lock_bh(&bdi_lock);
-- 
2.9.4

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

end of thread, other threads:[~2018-01-10 16:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-10 15:18 [PATCH] bdi: show error log when fail to create bdi debugfs entry weiping zhang
2018-01-10 16:10 ` Bart Van Assche
2018-01-10 16:29   ` weiping zhang

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.