diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-20 14:05:31 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-31 12:18:38 -0400 |
commit | 55c11a159d3ca4ca7f9d5c1275d0768474b12195 (patch) | |
tree | 414983a187d9ebe96bcc39648d080ced7f0f2fc4 /fs/bcachefs/inode.c | |
parent | 96a363a7e68832054f2a93249335fd3efd870aa3 (diff) |
bcachefs: bch2_inum_opts_get()
New helper for new rebalance code
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/inode.c')
-rw-r--r-- | fs/bcachefs/inode.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/bcachefs/inode.c b/fs/bcachefs/inode.c index a3921c397ea2..23fcd442c514 100644 --- a/fs/bcachefs/inode.c +++ b/fs/bcachefs/inode.c @@ -981,6 +981,18 @@ void bch2_inode_opts_get(struct bch_io_opts *opts, struct bch_fs *c, opts->compression = opts->background_compression = opts->data_checksum = opts->erasure_code = 0; } +int bch2_inum_opts_get(struct btree_trans *trans, subvol_inum inum, struct bch_io_opts *opts) +{ + struct bch_inode_unpacked inode; + int ret = lockrestart_do(trans, bch2_inode_find_by_inum_trans(trans, inum, &inode)); + + if (ret) + return ret; + + bch2_inode_opts_get(opts, trans->c, &inode); + return 0; +} + int bch2_inode_rm_snapshot(struct btree_trans *trans, u64 inum, u32 snapshot) { struct bch_fs *c = trans->c; |