diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-02-24 06:15:56 +0100 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-03-14 02:22:25 +0100 |
commit | 894d062254e29dd3e99a55029de5d976b1681eb3 (patch) | |
tree | 94de870c8a525aa3f2f4581c04d371fd5d99ee9a /fs/bcachefs/bcachefs.h | |
parent | bcachefs: jset_entry for loops declare loop iter (diff) | |
download | linux-894d062254e29dd3e99a55029de5d976b1681eb3.tar.xz linux-894d062254e29dd3e99a55029de5d976b1681eb3.zip |
bcachefs: Rename journal_keys.d -> journal_keys.data
This will let us use some darray helpers in the next patch.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/bcachefs.h')
-rw-r--r-- | fs/bcachefs/bcachefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/bcachefs/bcachefs.h b/fs/bcachefs/bcachefs.h index 9f25123b1ae8..af7c798945f1 100644 --- a/fs/bcachefs/bcachefs.h +++ b/fs/bcachefs/bcachefs.h @@ -667,6 +667,8 @@ struct journal_seq_blacklist_table { }; struct journal_keys { + /* must match layout in darray_types.h */ + size_t nr, size; struct journal_key { u64 journal_seq; u32 journal_offset; @@ -675,15 +677,13 @@ struct journal_keys { bool allocated; bool overwritten; struct bkey_i *k; - } *d; + } *data; /* * Gap buffer: instead of all the empty space in the array being at the * end of the buffer - from @nr to @size - the empty space is at @gap. * This means that sequential insertions are O(n) instead of O(n^2). */ size_t gap; - size_t nr; - size_t size; atomic_t ref; bool initial_ref_held; }; |