From: Philipp Marek Date: Thu, 11 Sep 2014 12:29:07 +0000 (+0200) Subject: drbd: Remove superfluous newline from "resync_extents" debugfs entry. X-Git-Tag: v3.18-rc1~23^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f0c21e622869b101da098db57d61aba737621402;p=karo-tx-linux.git drbd: Remove superfluous newline from "resync_extents" debugfs entry. See "drbd/resources/*/volumes/*/resync_extents". Signed-off-by: Philipp Reisner Signed-off-by: Lars Ellenberg Signed-off-by: Jens Axboe --- diff --git a/drivers/block/drbd/drbd_debugfs.c b/drivers/block/drbd/drbd_debugfs.c index 5c20b18540b8..900d4d3272d1 100644 --- a/drivers/block/drbd/drbd_debugfs.c +++ b/drivers/block/drbd/drbd_debugfs.c @@ -695,7 +695,7 @@ static void resync_dump_detail(struct seq_file *m, struct lc_element *e) { struct bm_extent *bme = lc_entry(e, struct bm_extent, lce); - seq_printf(m, "%5d %s %s %s\n", bme->rs_left, + seq_printf(m, "%5d %s %s %s", bme->rs_left, test_bit(BME_NO_WRITES, &bme->flags) ? "NO_WRITES" : "---------", test_bit(BME_LOCKED, &bme->flags) ? "LOCKED" : "------", test_bit(BME_PRIORITY, &bme->flags) ? "PRIORITY" : "--------"