Searched refs:ulist (Results 1 – 12 of 12) sorted by relevance
| /linux-6.15/fs/btrfs/ |
| H A D | ulist.c | 48 void ulist_init(struct ulist *ulist) in ulist_init() argument 64 void ulist_release(struct ulist *ulist) in ulist_release() argument 86 void ulist_reinit(struct ulist *ulist) in ulist_reinit() argument 101 struct ulist *ulist = kmalloc(sizeof(*ulist), gfp_mask); in ulist_alloc() local 103 if (!ulist) in ulist_alloc() 108 return ulist; in ulist_alloc() 111 void ulist_prealloc(struct ulist *ulist, gfp_t gfp_mask) in ulist_prealloc() argument 124 void ulist_free(struct ulist *ulist) in ulist_free() argument 126 if (!ulist) in ulist_free() 129 kfree(ulist); in ulist_free() [all …]
|
| H A D | ulist.h | 36 struct ulist { struct 47 void ulist_init(struct ulist *ulist); argument 48 void ulist_release(struct ulist *ulist); 49 void ulist_reinit(struct ulist *ulist); 51 void ulist_prealloc(struct ulist *ulist, gfp_t mask); 52 void ulist_free(struct ulist *ulist); 53 int ulist_add(struct ulist *ulist, u64 val, u64 aux, gfp_t gfp_mask); 54 int ulist_add_merge(struct ulist *ulist, u64 val, u64 aux, 56 int ulist_del(struct ulist *ulist, u64 val, u64 aux); 59 static inline int ulist_add_merge_ptr(struct ulist *ulist, u64 val, void *aux, in ulist_add_merge_ptr() argument [all …]
|
| H A D | backref.h | 22 struct ulist; 102 struct ulist *refs; 108 struct ulist *roots; 117 void (*cache_store)(u64 leaf_bytenr, const struct ulist *root_ids, 166 struct ulist refs;
|
| H A D | qgroup.h | 151 struct ulist *old_roots; 369 u64 num_bytes, struct ulist *old_roots, 370 struct ulist *new_roots);
|
| H A D | Makefile | 32 backref.o ulist.o qgroup.o send.o dev-replace.o raid56.o \
|
| H A D | qgroup.c | 1001 struct ulist *ulist = NULL; in btrfs_quota_enable() local 1024 ulist = ulist_alloc(GFP_KERNEL); in btrfs_quota_enable() 1025 if (!ulist) { in btrfs_quota_enable() 1069 fs_info->qgroup_ulist = ulist; in btrfs_quota_enable() 1070 ulist = NULL; in btrfs_quota_enable() 1285 ulist_free(ulist); in btrfs_quota_enable() 2755 struct ulist *roots, struct list_head *qgroups, in qgroup_update_refcnt() 2916 static int maybe_fs_roots(struct ulist *roots) in maybe_fs_roots() 2939 u64 num_bytes, struct ulist *old_roots, in btrfs_qgroup_account_extent() 2940 struct ulist *new_roots) in btrfs_qgroup_account_extent() [all …]
|
| H A D | fs.h | 38 struct ulist; 743 struct ulist *qgroup_ulist;
|
| H A D | backref.c | 469 struct ulist *parents, in add_all_parents() 593 struct prelim_ref *ref, struct ulist *parents) in resolve_indirect_ref() 703 static void free_leaf_list(struct ulist *ulist) in free_leaf_list() argument 709 while ((node = ulist_next(ulist, &uiter))) in free_leaf_list() 712 ulist_free(ulist); in free_leaf_list() 738 struct ulist *parents; in resolve_indirect_refs() 2414 struct ulist *refs; in iterate_extent_inodes()
|
| H A D | extent_io.h | 197 struct ulist range_changed;
|
| H A D | send.c | 1437 static void store_backref_cache(u64 leaf_bytenr, const struct ulist *root_ids, in store_backref_cache()
|
| /linux-6.15/tools/perf/ |
| H A D | builtin-probe.c | 445 struct strlist *klist = NULL, *ulist = NULL; in perf_del_probe_events() local 462 ulist = strlist__new(NULL, NULL); in perf_del_probe_events() 463 if (!klist || !ulist) { in perf_del_probe_events() 479 ret2 = probe_file__get_events(ufd, filter, ulist); in perf_del_probe_events() 481 strlist__for_each_entry(ent, ulist) in perf_del_probe_events() 484 ret2 = probe_file__del_strlist(ufd, ulist); in perf_del_probe_events() 502 strlist__delete(ulist); in perf_del_probe_events()
|
| /linux-6.15/fs/btrfs/tests/ |
| H A D | qgroup-tests.c | 211 struct ulist *old_roots = NULL; in test_no_shared_qgroup() 212 struct ulist *new_roots = NULL; in test_no_shared_qgroup() 323 struct ulist *old_roots = NULL; in test_multiple_refs() 324 struct ulist *new_roots = NULL; in test_multiple_refs()
|