You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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>
This commit is contained in:
+1
-1
@@ -1129,7 +1129,7 @@ static int *calc_pg_raw(struct ceph_osdmap *osdmap, struct ceph_pg pgid,
|
|||||||
|
|
||||||
/* pg_temp? */
|
/* pg_temp? */
|
||||||
pgid.seed = ceph_stable_mod(pgid.seed, pool->pg_num,
|
pgid.seed = ceph_stable_mod(pgid.seed, pool->pg_num,
|
||||||
pool->pgp_num_mask);
|
pool->pg_num_mask);
|
||||||
pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid);
|
pg = __lookup_pg_mapping(&osdmap->pg_temp, pgid);
|
||||||
if (pg) {
|
if (pg) {
|
||||||
*num = pg->len;
|
*num = pg->len;
|
||||||
|
|||||||
Reference in New Issue
Block a user