diff options
author | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-03-21 17:05:29 (GMT) |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2014-04-05 04:07:57 (GMT) |
commit | 35a935d75d51abe58d3427a8b4ae3745a5a14e1c (patch) | |
tree | 0ad881fa4d6c3417e10d07cd6423751cf68e6a1f /net/ceph/osdmap.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/osdmap.c')
-rw-r--r-- | net/ceph/osdmap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ceph/osdmap.c b/net/ceph/osdmap.c index be2a65f..c67a309 100644 --- a/net/ceph/osdmap.c +++ b/net/ceph/osdmap.c @@ -822,9 +822,9 @@ static int __decode_pg_temp(void **p, void *end, struct ceph_osdmap *map, return -ENOMEM; pg->pgid = pgid; - pg->len = len; + pg->pg_temp.len = len; for (i = 0; i < len; i++) - pg->osds[i] = ceph_decode_32(p); + pg->pg_temp.osds[i] = ceph_decode_32(p); ret = __insert_pg_mapping(pg, &map->pg_temp); if (ret) { @@ -1281,8 +1281,8 @@ static int *calc_pg_raw(struct ceph_osdmap *osdmap, struct ceph_pg pgid, pool->pg_num_mask); pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid); if (pg) { - *num = pg->len; - return pg->osds; + *num = pg->pg_temp.len; + return pg->pg_temp.osds; } /* crush */ |