diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2019-09-08 00:03:56 +0200 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 23:08:26 +0200 |
commit | f9c5519336731174cc79ef23543909f9f4e11f64 (patch) | |
tree | b926b703a2e83e1d042d8b6423f30eab0ef474ca /fs/bcachefs/recovery.c | |
parent | bcachefs: data move path should not be trying to move reflink_p keys (diff) | |
download | linux-f9c5519336731174cc79ef23543909f9f4e11f64.tar.xz linux-f9c5519336731174cc79ef23543909f9f4e11f64.zip |
bcachefs: Drop trans arg to bch2_extent_atomic_end()
Just for consistency
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/recovery.c')
-rw-r--r-- | fs/bcachefs/recovery.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c index 5be34231a0c3..98d9a1432e50 100644 --- a/fs/bcachefs/recovery.c +++ b/fs/bcachefs/recovery.c @@ -281,8 +281,7 @@ retry: if (ret) goto err; - ret = bch2_extent_atomic_end(&trans, split_iter, - k, &atomic_end); + ret = bch2_extent_atomic_end(split_iter, k, &atomic_end); if (ret) goto err; |