diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2022-10-21 13:21:03 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 17:09:51 -0400 |
commit | 8dd69d9f64e92529037550c97a07b1b78296e92c (patch) | |
tree | 20402fcad1c90a7b837cdebc8de2667d3fb2798b /fs/bcachefs/io.c | |
parent | 47b323a0b0612c5310c35935a40012125a3e18b8 (diff) | |
download | lwn-8dd69d9f64e92529037550c97a07b1b78296e92c.tar.gz lwn-8dd69d9f64e92529037550c97a07b1b78296e92c.zip |
bcachefs: KEY_TYPE_inode_v3, metadata_version_inode_v3
Move bi_size and bi_sectors into the non-varint portion of the inode, so
that the write path can update them without going through the relatively
expensive unpack/pack operations.
Other changes:
- Add a field for the offset of the varint section, so we can add new
non-varint fields without needing a new inode type, like alloc_v3
- Move bi_mode into the flags field, so that the varint section can be
u64 aligned
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/io.c')
-rw-r--r-- | fs/bcachefs/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/io.c b/fs/bcachefs/io.c index a937940f5096..fb85c2bfd569 100644 --- a/fs/bcachefs/io.c +++ b/fs/bcachefs/io.c @@ -356,7 +356,7 @@ int bch2_extent_update(struct btree_trans *trans, } if (i_sectors_delta || new_i_size) { - bch2_inode_pack(trans->c, &inode_p, &inode_u); + bch2_inode_pack(&inode_p, &inode_u); inode_p.inode.k.p.snapshot = iter->snapshot; |