From: Ilya Dryomov Date: Thu, 13 Mar 2014 14:36:12 +0000 (+0200) Subject: libceph: do not prefix osd lines with \t in debugfs output X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=0a2800d7280ccdf3194bd8bd74a2eb8c315b54c6;p=openwrt%2Fstaging%2Fblogic.git libceph: do not prefix osd lines with \t in debugfs output To save screen space in anticipation of more fields (e.g. primary affinity). Signed-off-by: Ilya Dryomov Reviewed-by: Alex Elder --- diff --git a/net/ceph/debugfs.c b/net/ceph/debugfs.c index d225842c7b41..112d98edb156 100644 --- a/net/ceph/debugfs.c +++ b/net/ceph/debugfs.c @@ -77,7 +77,7 @@ static int osdmap_show(struct seq_file *s, void *p) int state = map->osd_state[i]; char sb[64]; - seq_printf(s, "\tosd%d\t%s\t%3d%%\t(%s)\n", + seq_printf(s, "osd%d\t%s\t%3d%%\t(%s)\n", i, ceph_pr_addr(&addr->in_addr), ((map->osd_weight[i]*100) >> 16), ceph_osdmap_state_str(sb, sizeof(sb), state));