mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
bcachefs: Drop unused arg to bch2_open_buckets_stop_dev()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
eab32c8e4e
commit
ec350b90d7
@ -693,8 +693,7 @@ retry_blocking:
|
||||
}
|
||||
|
||||
void bch2_open_buckets_stop_dev(struct bch_fs *c, struct bch_dev *ca,
|
||||
struct open_buckets *obs,
|
||||
enum bch_data_type data_type)
|
||||
struct open_buckets *obs)
|
||||
{
|
||||
struct open_buckets ptrs = { .nr = 0 };
|
||||
struct open_bucket *ob, *ob2;
|
||||
@ -725,7 +724,7 @@ void bch2_writepoint_stop(struct bch_fs *c, struct bch_dev *ca,
|
||||
struct write_point *wp)
|
||||
{
|
||||
mutex_lock(&wp->lock);
|
||||
bch2_open_buckets_stop_dev(c, ca, &wp->ptrs, wp->type);
|
||||
bch2_open_buckets_stop_dev(c, ca, &wp->ptrs);
|
||||
mutex_unlock(&wp->lock);
|
||||
}
|
||||
|
||||
|
@ -106,7 +106,7 @@ void bch2_alloc_sectors_append_ptrs(struct bch_fs *, struct write_point *,
|
||||
void bch2_alloc_sectors_done(struct bch_fs *, struct write_point *);
|
||||
|
||||
void bch2_open_buckets_stop_dev(struct bch_fs *, struct bch_dev *,
|
||||
struct open_buckets *, enum bch_data_type);
|
||||
struct open_buckets *);
|
||||
|
||||
void bch2_writepoint_stop(struct bch_fs *, struct bch_dev *,
|
||||
struct write_point *);
|
||||
|
@ -1173,12 +1173,8 @@ void bch2_ec_stop_dev(struct bch_fs *c, struct bch_dev *ca)
|
||||
struct ec_stripe_new *s = NULL;
|
||||
|
||||
mutex_lock(&h->lock);
|
||||
bch2_open_buckets_stop_dev(c, ca,
|
||||
&h->blocks,
|
||||
BCH_DATA_USER);
|
||||
bch2_open_buckets_stop_dev(c, ca,
|
||||
&h->parity,
|
||||
BCH_DATA_USER);
|
||||
bch2_open_buckets_stop_dev(c, ca, &h->blocks);
|
||||
bch2_open_buckets_stop_dev(c, ca, &h->parity);
|
||||
|
||||
if (!h->s)
|
||||
goto unlock;
|
||||
|
Loading…
Reference in New Issue
Block a user