diff options
author | Sage Weil <sage@inktank.com> | 2013-08-28 20:17:29 -0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-09-04 01:08:10 -0400 |
commit | 9542cf0bf9b1a3adcc2ef271edbcbdba03abf345 (patch) | |
tree | 6df890d01929cf320f3498e25185a34540053349 /net/ceph | |
parent | 17c1cc1d9293a568a00545469078e29555cc7f39 (diff) |
libceph: use pg_num_mask instead of pgp_num_mask for pg.seed calc
Fix a typo that used the wrong bitmask for the pg.seed calculation. This
is normally unnoticed because in most cases pg_num == pgp_num. It is, however,
a bug that is easily corrected.
CC: stable@vger.kernel.org
Signed-off-by: Sage Weil <sage@inktank.com>
Reviewed-by: Alex Elder <alex.elder@linary.org>
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/osdmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/osdmap.c b/net/ceph/osdmap.c index 603ddd92db19..dbd9a4792427 100644 --- a/net/ceph/osdmap.c +++ b/net/ceph/osdmap.c | |||
@@ -1129,7 +1129,7 @@ static int *calc_pg_raw(struct ceph_osdmap *osdmap, struct ceph_pg pgid, | |||
1129 | 1129 | ||
1130 | /* pg_temp? */ | 1130 | /* pg_temp? */ |
1131 | pgid.seed = ceph_stable_mod(pgid.seed, pool->pg_num, | 1131 | pgid.seed = ceph_stable_mod(pgid.seed, pool->pg_num, |
1132 | pool->pgp_num_mask); | 1132 | pool->pg_num_mask); |
1133 | pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid); | 1133 | pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid); |
1134 | if (pg) { | 1134 | if (pg) { |
1135 | *num = pg->len; | 1135 | *num = pg->len; |