diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-03-29 21:48:45 +0200 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 23:09:28 +0200 |
commit | 91d961badfd123b6759488bc4aa7a4d014b739f1 (patch) | |
tree | 19fb86f1322c9ecde80fbbc6b48860f814b8612b /fs/bcachefs/fs.c | |
parent | bcachefs: Fix BTREE_TRIGGER_WANTS_OLD_AND_NEW (diff) | |
download | linux-91d961badfd123b6759488bc4aa7a4d014b739f1.tar.xz linux-91d961badfd123b6759488bc4aa7a4d014b739f1.zip |
bcachefs: darrays
Inspired by CCAN darray - simple, stupid resizable (dynamic) arrays.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/fs.c')
-rw-r--r-- | fs/bcachefs/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/fs.c b/fs/bcachefs/fs.c index afaee020e7e3..d8cd32b5d765 100644 --- a/fs/bcachefs/fs.c +++ b/fs/bcachefs/fs.c @@ -1478,7 +1478,7 @@ static void bch2_evict_inode(struct inode *vinode) } void bch2_evict_subvolume_inodes(struct bch_fs *c, - struct snapshot_id_list *s) + snapshot_id_list *s) { struct super_block *sb = c->vfs_sb; struct inode *inode; |