aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/md.c
diff options
context:
space:
mode:
authorShaohua Li <shli@fb.com>2016-11-18 09:44:08 -0800
committerShaohua Li <shli@fb.com>2016-11-18 09:47:57 -0800
commit504634f60f463e73e7d58c6810a04437da942dba (patch)
treeabdc28fb557c2158f005a6f271c60c983562c43e /drivers/md/md.c
parentmd/raid1, raid10: add blktrace records when IO is delayed (diff)
downloadlinux-dev-504634f60f463e73e7d58c6810a04437da942dba.tar.xz
linux-dev-504634f60f463e73e7d58c6810a04437da942dba.zip
md: add blktrace event for writes to superblock
superblock write is an expensive operation. With raid5-cache, it can be called regularly. Tracing to help performance debug. Signed-off-by: Shaohua Li <shli@fb.com> Cc: NeilBrown <neilb@suse.com>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r--drivers/md/md.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 1f1c7f007b68..d3cef771e422 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -64,6 +64,7 @@
#include <linux/raid/md_p.h>
#include <linux/raid/md_u.h>
#include <linux/slab.h>
+#include <trace/events/block.h>
#include "md.h"
#include "bitmap.h"
#include "md-cluster.h"
@@ -2403,6 +2404,8 @@ repeat:
pr_debug("md: updating %s RAID superblock on device (in sync %d)\n",
mdname(mddev), mddev->in_sync);
+ if (mddev->queue)
+ blk_add_trace_msg(mddev->queue, "md md_update_sb");
bitmap_update_sb(mddev->bitmap);
rdev_for_each(rdev, mddev) {
char b[BDEVNAME_SIZE];