Searched refs:bag (Results 1 – 6 of 6) sorted by relevance
/linux/fs/xfs/scrub/ |
H A D | rcbag.c | 36 struct rcbag *bag; in rcbag_init() local 39 bag = kzalloc(sizeof(struct rcbag), XCHK_GFP_FLAGS); in rcbag_init() 40 if (!bag) in rcbag_init() 43 bag->nr_items = 0; in rcbag_init() 44 bag->mp = mp; in rcbag_init() 46 error = rcbagbt_mem_init(mp, &bag->xfbtree, btp); in rcbag_init() 50 *bagp = bag; in rcbag_init() 54 kfree(bag); in rcbag_init() 62 struct rcbag *bag = *bagp; in rcbag_free() local 64 xfbtree_destroy(&bag in rcbag_free() 72 rcbag_add(struct rcbag * bag,struct xfs_trans * tp,const struct xfs_rmap_irec * rmap) rcbag_add() argument 148 rcbag_next_edge(struct rcbag * bag,struct xfs_trans * tp,const struct xfs_rmap_irec * next_rmap,bool next_valid,uint32_t * next_bnop) rcbag_next_edge() argument 211 rcbag_remove_ending_at(struct rcbag * bag,struct xfs_trans * tp,uint32_t next_bno) rcbag_remove_ending_at() argument 268 rcbag_dump(struct rcbag * bag,struct xfs_trans * tp) rcbag_dump() argument [all...] |
H A D | rcbag.h | 16 int rcbag_add(struct rcbag *bag, struct xfs_trans *tp, 18 uint64_t rcbag_count(const struct rcbag *bag); 20 int rcbag_next_edge(struct rcbag *bag, struct xfs_trans *tp, 23 int rcbag_remove_ending_at(struct rcbag *bag, struct xfs_trans *tp, 26 void rcbag_dump(struct rcbag *bag, struct xfs_trans *tp);
|
/linux/drivers/net/dsa/sja1105/ |
H A D | sja1105_static_config.h | 411 u64 bag; member
|
H A D | sja1105_static_config.c | 780 sja1105_packing(buf, &entry->bag, 41, 28, size, op); in sja1105_vl_policing_entry_packing() 796 sja1105_packing(buf, &entry->bag, 41, 28, size, op); in sja1110_vl_policing_entry_packing()
|
/linux/Documentation/filesystems/xfs/ |
H A D | xfs-online-fsck-design.rst | 2030 The third type of caller is a bag, which is useful for counting records. 2033 Records can be put in the bag in any order, they can be removed from the bag 2036 null record slot in the bag; and the ``xfarray_unset`` function removes a 2037 record from the bag. 2691 - Retrieve the next record from the btree and put it in a bag. 2694 them in the bag. 2696 - While the bag isn't empty: 2698 - Among the mappings in the bag, compute the lowest block number where the 2702 in the bag [all...] |
/linux/Documentation/core-api/ |
H A D | kobject.rst | 331 - It serves as a bag containing a group of objects. A kset can be used by
|