diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2019-11-10 00:43:16 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-23 00:08:32 +0300 |
commit | 4be1a412ea34923370cd6163232d7928ae9a0e4a (patch) | |
tree | 572fcb3d4556c549a97d93c49cdbf14f8a65b83d /fs/bcachefs/bkey.h | |
parent | 08c07fea7b437f0a841f85cc9b670b60dacd85cf (diff) | |
download | linux-4be1a412ea34923370cd6163232d7928ae9a0e4a.tar.xz |
bcachefs: Inline data extents
This implements extents that have their data inline, in the value,
instead of the bkey value being pointers to the data - and the read and
write paths are updated to read from these new extent types and write
them out, when the write size is small enough.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/bkey.h')
-rw-r--r-- | fs/bcachefs/bkey.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/bkey.h b/fs/bcachefs/bkey.h index ba4d6329e37a..36e6ecc04514 100644 --- a/fs/bcachefs/bkey.h +++ b/fs/bcachefs/bkey.h @@ -572,6 +572,7 @@ BKEY_VAL_ACCESSORS(quota); BKEY_VAL_ACCESSORS(stripe); BKEY_VAL_ACCESSORS(reflink_p); BKEY_VAL_ACCESSORS(reflink_v); +BKEY_VAL_ACCESSORS(inline_data); /* byte order helpers */ |