aboutsummaryrefslogtreecommitdiffstats
path: root/net/ceph/debugfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ceph/debugfs.c')
-rw-r--r--net/ceph/debugfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ceph/debugfs.c b/net/ceph/debugfs.c
index c45d235e774e..5865f2c9580a 100644
--- a/net/ceph/debugfs.c
+++ b/net/ceph/debugfs.c
@@ -88,9 +88,9 @@ static int osdmap_show(struct seq_file *s, void *p)
88 88
89 seq_printf(s, "pg_temp %llu.%x [", pg->pgid.pool, 89 seq_printf(s, "pg_temp %llu.%x [", pg->pgid.pool,
90 pg->pgid.seed); 90 pg->pgid.seed);
91 for (i = 0; i < pg->len; i++) 91 for (i = 0; i < pg->pg_temp.len; i++)
92 seq_printf(s, "%s%d", (i == 0 ? "" : ","), 92 seq_printf(s, "%s%d", (i == 0 ? "" : ","),
93 pg->osds[i]); 93 pg->pg_temp.osds[i]);
94 seq_printf(s, "]\n"); 94 seq_printf(s, "]\n");
95 } 95 }
96 96