bcachefs: Delete some dead code

__bch2_mark_replicas() is now only used in one place, so inline it into
the caller.

Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
This commit is contained in:
Kent Overstreet 2022-01-11 00:19:52 -05:00 committed by Kent Overstreet
parent 0678cbe2cb
commit 54460a6292

View File

@ -421,18 +421,10 @@ err:
goto out;
}
static int __bch2_mark_replicas(struct bch_fs *c,
struct bch_replicas_entry *r,
bool check)
{
return likely(bch2_replicas_marked(c, r)) ? 0
: check ? -1
: bch2_mark_replicas_slowpath(c, r);
}
int bch2_mark_replicas(struct bch_fs *c, struct bch_replicas_entry *r)
{
return __bch2_mark_replicas(c, r, false);
return likely(bch2_replicas_marked(c, r))
? 0 : bch2_mark_replicas_slowpath(c, r);
}
/* replicas delta list: */