diff options
author | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-03-21 21:05:29 +0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2014-04-05 08:07:57 +0400 |
commit | 35a935d75d51abe58d3427a8b4ae3745a5a14e1c (patch) | |
tree | 0ad881fa4d6c3417e10d07cd6423751cf68e6a1f /net/ceph/debugfs.c | |
parent | ec7af97258396161e6effba7e788c3fc3cb55263 (diff) | |
download | linux-35a935d75d51abe58d3427a8b4ae3745a5a14e1c.tar.xz |
libceph: generalize ceph_pg_mapping
In preparation for adding support for primary_temp mappings, generalize
struct ceph_pg_mapping so it can hold mappings other than pg_temp.
Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'net/ceph/debugfs.c')
-rw-r--r-- | net/ceph/debugfs.c | 4 |
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) seq_printf(s, "pg_temp %llu.%x [", pg->pgid.pool, pg->pgid.seed); - for (i = 0; i < pg->len; i++) + for (i = 0; i < pg->pg_temp.len; i++) seq_printf(s, "%s%d", (i == 0 ? "" : ","), - pg->osds[i]); + pg->pg_temp.osds[i]); seq_printf(s, "]\n"); } |