diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2020-06-03 16:21:35 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2020-06-03 19:56:33 -0400 |
commit | 1952c0790c74e4e81d7066a19aabc5c55a13f10f (patch) | |
tree | 501fa5db6a5f1fd3b2412a2660e995c74ebf0bba /libbcachefs/keylist.c | |
parent | 90d54b388666b258c97be6a4e632824d136356c4 (diff) |
Update bcachefs sources to c9b4a210f9 fixup! bcachefs: Fixes for going RO
Diffstat (limited to 'libbcachefs/keylist.c')
-rw-r--r-- | libbcachefs/keylist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbcachefs/keylist.c b/libbcachefs/keylist.c index 5da54ce..864dfaa 100644 --- a/libbcachefs/keylist.c +++ b/libbcachefs/keylist.c @@ -6,7 +6,7 @@ int bch2_keylist_realloc(struct keylist *l, u64 *inline_u64s, size_t nr_inline_u64s, size_t new_u64s) { - size_t oldsize = bch_keylist_u64s(l); + size_t oldsize = bch2_keylist_u64s(l); size_t newsize = oldsize + new_u64s; u64 *old_buf = l->keys_p == inline_u64s ? NULL : l->keys_p; u64 *new_keys; @@ -52,7 +52,7 @@ void bch2_keylist_pop_front(struct keylist *l) memmove_u64s_down(l->keys, bkey_next(l->keys), - bch_keylist_u64s(l)); + bch2_keylist_u64s(l)); } #ifdef CONFIG_BCACHEFS_DEBUG |