Commit a79e1b6d authored by Daniel Hill's avatar Daniel Hill Committed by Kent Overstreet

bcachefs: copygc shouldn't try moving buckets on error

Co-developed-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
Signed-off-by: default avatarDaniel Hill <daniel@gluo.nz>
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 3f0e297d
...@@ -170,15 +170,23 @@ static int bch2_copygc_get_buckets(struct moving_context *ctxt, ...@@ -170,15 +170,23 @@ static int bch2_copygc_get_buckets(struct moving_context *ctxt,
saw++; saw++;
if (!bch2_bucket_is_movable(trans, &b, lru_pos_time(k.k->p))) ret2 = bch2_bucket_is_movable(trans, &b, lru_pos_time(k.k->p));
if (ret2 < 0)
goto err;
if (!ret2)
not_movable++; not_movable++;
else if (bucket_in_flight(buckets_in_flight, b.k)) else if (bucket_in_flight(buckets_in_flight, b.k))
in_flight++; in_flight++;
else { else {
ret2 = darray_push(buckets, b) ?: buckets->nr >= nr_to_get; ret2 = darray_push(buckets, b);
if (ret2 >= 0) if (ret2)
sectors += b.sectors; goto err;
sectors += b.sectors;
} }
ret2 = buckets->nr >= nr_to_get;
err:
ret2; ret2;
})); }));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment