Commit 91d961ba authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: darrays

Inspired by CCAN darray - simple, stupid resizable (dynamic) arrays.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
parent 5d93a842
...@@ -665,7 +665,7 @@ struct bch_fs { ...@@ -665,7 +665,7 @@ struct bch_fs {
struct mutex snapshot_table_lock; struct mutex snapshot_table_lock;
struct work_struct snapshot_delete_work; struct work_struct snapshot_delete_work;
struct work_struct snapshot_wait_for_pagecache_and_delete_work; struct work_struct snapshot_wait_for_pagecache_and_delete_work;
struct snapshot_id_list snapshots_unlinked; snapshot_id_list snapshots_unlinked;
struct mutex snapshots_unlinked_lock; struct mutex snapshots_unlinked_lock;
/* BTREE CACHE */ /* BTREE CACHE */
......
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_DARRAY_H
#define _BCACHEFS_DARRAY_H
/*
* Dynamic arrays:
*
* Inspired by CCAN's darray
*/
#include "util.h"
#include <linux/slab.h>
#define DARRAY(type) \
struct { \
size_t nr, size; \
type *data; \
}
typedef DARRAY(void) darray_void;
static inline int __darray_make_room(darray_void *d, size_t t_size, size_t more)
{
if (d->nr + more > d->size) {
size_t new_size = roundup_pow_of_two(d->nr + more);
void *data = krealloc_array(d->data, new_size, t_size, GFP_KERNEL);
if (!data)
return -ENOMEM;
d->data = data;
d->size = new_size;
}
return 0;
}
#define darray_make_room(_d, _more) \
__darray_make_room((darray_void *) (_d), sizeof((_d)->data[0]), (_more))
#define darray_top(_d) ((_d).data[(_d).nr])
#define darray_push(_d, _item) \
({ \
int _ret = darray_make_room((_d), 1); \
\
if (!_ret) \
(_d)->data[(_d)->nr++] = (_item); \
_ret; \
})
#define darray_insert_item(_d, _pos, _item) \
({ \
size_t pos = (_pos); \
int _ret = darray_make_room((_d), 1); \
\
if (!_ret) \
array_insert_item((_d)->data, (_d)->nr, pos, (_item)); \
_ret; \
})
#define darray_for_each(_d, _i) \
for (_i = (_d).data; _i < (_d).data + (_d).nr; _i++)
#define darray_init(_d) \
do { \
(_d)->data = NULL; \
(_d)->nr = (_d)->size = 0; \
} while (0)
#define darray_exit(_d) \
do { \
kfree((_d)->data); \
darray_init(_d); \
} while (0)
#endif /* _BCACHEFS_DARRAY_H */
...@@ -1478,7 +1478,7 @@ static void bch2_evict_inode(struct inode *vinode) ...@@ -1478,7 +1478,7 @@ static void bch2_evict_inode(struct inode *vinode)
} }
void bch2_evict_subvolume_inodes(struct bch_fs *c, 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 super_block *sb = c->vfs_sb;
struct inode *inode; struct inode *inode;
......
...@@ -190,7 +190,7 @@ int bch2_setattr_nonsize(struct mnt_idmap *, ...@@ -190,7 +190,7 @@ int bch2_setattr_nonsize(struct mnt_idmap *,
struct iattr *); struct iattr *);
int __bch2_unlink(struct inode *, struct dentry *, bool); int __bch2_unlink(struct inode *, struct dentry *, bool);
void bch2_evict_subvolume_inodes(struct bch_fs *, struct snapshot_id_list *); void bch2_evict_subvolume_inodes(struct bch_fs *, snapshot_id_list *);
void bch2_vfs_exit(void); void bch2_vfs_exit(void);
int bch2_vfs_init(void); int bch2_vfs_init(void);
...@@ -198,7 +198,7 @@ int bch2_vfs_init(void); ...@@ -198,7 +198,7 @@ int bch2_vfs_init(void);
#else #else
static inline void bch2_evict_subvolume_inodes(struct bch_fs *c, static inline void bch2_evict_subvolume_inodes(struct bch_fs *c,
struct snapshot_id_list *s) {} snapshot_id_list *s) {}
static inline void bch2_vfs_exit(void) {} static inline void bch2_vfs_exit(void) {}
static inline int bch2_vfs_init(void) { return 0; } static inline int bch2_vfs_init(void) { return 0; }
......
This diff is collapsed.
...@@ -91,10 +91,10 @@ static int insert_snapshot_whiteouts(struct btree_trans *trans, ...@@ -91,10 +91,10 @@ static int insert_snapshot_whiteouts(struct btree_trans *trans,
if (bch2_snapshot_is_ancestor(c, k.k->p.snapshot, old_pos.snapshot)) { if (bch2_snapshot_is_ancestor(c, k.k->p.snapshot, old_pos.snapshot)) {
struct bkey_i *update; struct bkey_i *update;
size_t i; u32 *i;
for (i = 0; i < s.nr; i++) darray_for_each(s.ids, i)
if (bch2_snapshot_is_ancestor(c, k.k->p.snapshot, s.d[i])) if (bch2_snapshot_is_ancestor(c, k.k->p.snapshot, *i))
goto next; goto next;
update = bch2_trans_kmalloc(trans, sizeof(struct bkey_i)); update = bch2_trans_kmalloc(trans, sizeof(struct bkey_i));
...@@ -124,7 +124,7 @@ static int insert_snapshot_whiteouts(struct btree_trans *trans, ...@@ -124,7 +124,7 @@ static int insert_snapshot_whiteouts(struct btree_trans *trans,
} }
} }
bch2_trans_iter_exit(trans, &iter); bch2_trans_iter_exit(trans, &iter);
kfree(s.d); darray_exit(&s.ids);
return ret; return ret;
} }
......
...@@ -544,36 +544,21 @@ int bch2_snapshot_node_create(struct btree_trans *trans, u32 parent, ...@@ -544,36 +544,21 @@ int bch2_snapshot_node_create(struct btree_trans *trans, u32 parent,
return ret; return ret;
} }
static int snapshot_id_add(struct snapshot_id_list *s, u32 id) static int snapshot_id_add(snapshot_id_list *s, u32 id)
{ {
BUG_ON(snapshot_list_has_id(s, id)); BUG_ON(snapshot_list_has_id(s, id));
if (s->nr == s->size) { return darray_push(s, id);
size_t new_size = max(8U, s->size * 2);
void *n = krealloc(s->d,
new_size * sizeof(s->d[0]),
GFP_KERNEL);
if (!n) {
pr_err("error allocating snapshot ID list");
return -ENOMEM;
}
s->d = n;
s->size = new_size;
};
s->d[s->nr++] = id;
return 0;
} }
static int bch2_snapshot_delete_keys_btree(struct btree_trans *trans, static int bch2_snapshot_delete_keys_btree(struct btree_trans *trans,
struct snapshot_id_list *deleted, snapshot_id_list *deleted,
enum btree_id btree_id) enum btree_id btree_id)
{ {
struct bch_fs *c = trans->c; struct bch_fs *c = trans->c;
struct btree_iter iter; struct btree_iter iter;
struct bkey_s_c k; struct bkey_s_c k;
struct snapshot_id_list equiv_seen = { 0 }; snapshot_id_list equiv_seen = { 0 };
struct bpos last_pos = POS_MIN; struct bpos last_pos = POS_MIN;
int ret = 0; int ret = 0;
...@@ -620,7 +605,7 @@ static int bch2_snapshot_delete_keys_btree(struct btree_trans *trans, ...@@ -620,7 +605,7 @@ static int bch2_snapshot_delete_keys_btree(struct btree_trans *trans,
} }
bch2_trans_iter_exit(trans, &iter); bch2_trans_iter_exit(trans, &iter);
kfree(equiv_seen.d); darray_exit(&equiv_seen);
return ret; return ret;
} }
...@@ -632,7 +617,7 @@ static void bch2_delete_dead_snapshots_work(struct work_struct *work) ...@@ -632,7 +617,7 @@ static void bch2_delete_dead_snapshots_work(struct work_struct *work)
struct btree_iter iter; struct btree_iter iter;
struct bkey_s_c k; struct bkey_s_c k;
struct bkey_s_c_snapshot snap; struct bkey_s_c_snapshot snap;
struct snapshot_id_list deleted = { 0 }; snapshot_id_list deleted = { 0 };
u32 i, id, children[2]; u32 i, id, children[2];
int ret = 0; int ret = 0;
...@@ -712,15 +697,15 @@ static void bch2_delete_dead_snapshots_work(struct work_struct *work) ...@@ -712,15 +697,15 @@ static void bch2_delete_dead_snapshots_work(struct work_struct *work)
for (i = 0; i < deleted.nr; i++) { for (i = 0; i < deleted.nr; i++) {
ret = __bch2_trans_do(&trans, NULL, NULL, 0, ret = __bch2_trans_do(&trans, NULL, NULL, 0,
bch2_snapshot_node_delete(&trans, deleted.d[i])); bch2_snapshot_node_delete(&trans, deleted.data[i]));
if (ret) { if (ret) {
bch_err(c, "error deleting snapshot %u: %i", bch_err(c, "error deleting snapshot %u: %i",
deleted.d[i], ret); deleted.data[i], ret);
goto err; goto err;
} }
} }
err: err:
kfree(deleted.d); darray_exit(&deleted);
bch2_trans_exit(&trans); bch2_trans_exit(&trans);
percpu_ref_put(&c->writes); percpu_ref_put(&c->writes);
} }
...@@ -875,14 +860,14 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work) ...@@ -875,14 +860,14 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work)
{ {
struct bch_fs *c = container_of(work, struct bch_fs, struct bch_fs *c = container_of(work, struct bch_fs,
snapshot_wait_for_pagecache_and_delete_work); snapshot_wait_for_pagecache_and_delete_work);
struct snapshot_id_list s; snapshot_id_list s;
u32 *id; u32 *id;
int ret = 0; int ret = 0;
while (!ret) { while (!ret) {
mutex_lock(&c->snapshots_unlinked_lock); mutex_lock(&c->snapshots_unlinked_lock);
s = c->snapshots_unlinked; s = c->snapshots_unlinked;
memset(&c->snapshots_unlinked, 0, sizeof(c->snapshots_unlinked)); darray_init(&c->snapshots_unlinked);
mutex_unlock(&c->snapshots_unlinked_lock); mutex_unlock(&c->snapshots_unlinked_lock);
if (!s.nr) if (!s.nr)
...@@ -890,7 +875,7 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work) ...@@ -890,7 +875,7 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work)
bch2_evict_subvolume_inodes(c, &s); bch2_evict_subvolume_inodes(c, &s);
for (id = s.d; id < s.d + s.nr; id++) { for (id = s.data; id < s.data + s.nr; id++) {
ret = bch2_trans_do(c, NULL, NULL, BTREE_INSERT_NOFAIL, ret = bch2_trans_do(c, NULL, NULL, BTREE_INSERT_NOFAIL,
bch2_subvolume_delete(&trans, *id)); bch2_subvolume_delete(&trans, *id));
if (ret) { if (ret) {
...@@ -899,7 +884,7 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work) ...@@ -899,7 +884,7 @@ void bch2_subvolume_wait_for_pagecache_and_delete(struct work_struct *work)
} }
} }
kfree(s.d); darray_exit(&s);
} }
percpu_ref_put(&c->writes); percpu_ref_put(&c->writes);
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#ifndef _BCACHEFS_SUBVOLUME_H #ifndef _BCACHEFS_SUBVOLUME_H
#define _BCACHEFS_SUBVOLUME_H #define _BCACHEFS_SUBVOLUME_H
#include "darray.h"
#include "subvolume_types.h" #include "subvolume_types.h"
void bch2_snapshot_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c); void bch2_snapshot_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
...@@ -58,15 +59,13 @@ static inline bool bch2_snapshot_is_ancestor(struct bch_fs *c, u32 id, u32 ances ...@@ -58,15 +59,13 @@ static inline bool bch2_snapshot_is_ancestor(struct bch_fs *c, u32 id, u32 ances
struct snapshots_seen { struct snapshots_seen {
struct bpos pos; struct bpos pos;
size_t nr; DARRAY(u32) ids;
size_t size;
u32 *d;
}; };
static inline void snapshots_seen_exit(struct snapshots_seen *s) static inline void snapshots_seen_exit(struct snapshots_seen *s)
{ {
kfree(s->d); kfree(s->ids.data);
s->d = NULL; s->ids.data = NULL;
} }
static inline void snapshots_seen_init(struct snapshots_seen *s) static inline void snapshots_seen_init(struct snapshots_seen *s)
...@@ -76,30 +75,19 @@ static inline void snapshots_seen_init(struct snapshots_seen *s) ...@@ -76,30 +75,19 @@ static inline void snapshots_seen_init(struct snapshots_seen *s)
static inline int snapshots_seen_add(struct bch_fs *c, struct snapshots_seen *s, u32 id) static inline int snapshots_seen_add(struct bch_fs *c, struct snapshots_seen *s, u32 id)
{ {
if (s->nr == s->size) { int ret = darray_push(&s->ids, id);
size_t new_size = max(s->size, (size_t) 128) * 2; if (ret)
u32 *d = krealloc(s->d, new_size * sizeof(s->d[0]), GFP_KERNEL); bch_err(c, "error reallocating snapshots_seen table (size %zu)",
s->ids.size);
if (!d) { return ret;
bch_err(c, "error reallocating snapshots_seen table (new size %zu)",
new_size);
return -ENOMEM;
}
s->size = new_size;
s->d = d;
}
s->d[s->nr++] = id;
return 0;
} }
static inline bool snapshot_list_has_id(struct snapshot_id_list *s, u32 id) static inline bool snapshot_list_has_id(snapshot_id_list *s, u32 id)
{ {
unsigned i; u32 *i;
for (i = 0; i < s->nr; i++) darray_for_each(*s, i)
if (id == s->d[i]) if (*i == id)
return true; return true;
return false; return false;
} }
......
...@@ -2,10 +2,8 @@ ...@@ -2,10 +2,8 @@
#ifndef _BCACHEFS_SUBVOLUME_TYPES_H #ifndef _BCACHEFS_SUBVOLUME_TYPES_H
#define _BCACHEFS_SUBVOLUME_TYPES_H #define _BCACHEFS_SUBVOLUME_TYPES_H
struct snapshot_id_list { #include "darray.h"
u32 nr;
u32 size; typedef DARRAY(u32) snapshot_id_list;
u32 *d;
};
#endif /* _BCACHEFS_SUBVOLUME_TYPES_H */ #endif /* _BCACHEFS_SUBVOLUME_TYPES_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment