/linux-6.12.1/fs/ubifs/ |
D | log.c | 33 struct ubifs_bud *bud; in ubifs_search_bud() local 38 bud = rb_entry(p, struct ubifs_bud, rb); in ubifs_search_bud() 39 if (lnum < bud->lnum) in ubifs_search_bud() 41 else if (lnum > bud->lnum) in ubifs_search_bud() 45 return bud; in ubifs_search_bud() 62 struct ubifs_bud *bud; in ubifs_get_wbuf() local 71 bud = rb_entry(p, struct ubifs_bud, rb); in ubifs_get_wbuf() 72 if (lnum < bud->lnum) in ubifs_get_wbuf() 74 else if (lnum > bud->lnum) in ubifs_get_wbuf() 77 jhead = bud->jhead; in ubifs_get_wbuf() [all …]
|
D | replay.c | 73 struct ubifs_bud *bud; member 95 lp = ubifs_lpt_lookup_dirty(c, b->bud->lnum); in set_bud_lprops() 102 if (b->bud->start == 0 && (lp->free != c->leb_size || lp->dirty != 0)) { in set_bud_lprops() 122 dbg_mnt("bud LEB %d was GC'd (%d free, %d dirty)", b->bud->lnum, in set_bud_lprops() 124 dbg_gc("bud LEB %d was GC'd (%d free, %d dirty)", b->bud->lnum, in set_bud_lprops() 136 b->bud->lnum, lp->free, lp->dirty, b->free, in set_bud_lprops() 147 err = ubifs_wbuf_seek_nolock(&c->jheads[b->bud->jhead].wbuf, in set_bud_lprops() 148 b->bud->lnum, c->leb_size - b->free); in set_bud_lprops() 516 static int is_last_bud(struct ubifs_info *c, struct ubifs_bud *bud) in is_last_bud() argument 518 struct ubifs_jhead *jh = &c->jheads[bud->jhead]; in is_last_bud() [all …]
|
D | super.c | 920 struct ubifs_bud *bud, *n; in free_buds() local 922 rbtree_postorder_for_each_entry_safe(bud, n, &c->buds, rb) { in free_buds() 923 kfree(bud->log_hash); in free_buds() 924 kfree(bud); in free_buds() 1190 struct ubifs_bud *bud; in destroy_journal() local 1192 bud = list_entry(c->old_buds.next, struct ubifs_bud, list); in destroy_journal() 1193 list_del(&bud->list); in destroy_journal() 1194 kfree(bud->log_hash); in destroy_journal() 1195 kfree(bud); in destroy_journal()
|
D | debug.c | 616 struct ubifs_bud *bud; in ubifs_dump_budg() local 658 bud = rb_entry(rb, struct ubifs_bud, rb); in ubifs_dump_budg() 659 pr_err("\tbud LEB %d\n", bud->lnum); in ubifs_dump_budg() 661 list_for_each_entry(bud, &c->old_buds, list) in ubifs_dump_budg() 662 pr_err("\told bud LEB %d\n", bud->lnum); in ubifs_dump_budg() 684 struct ubifs_bud *bud; in ubifs_dump_lprop() local 746 bud = rb_entry(rb, struct ubifs_bud, rb); in ubifs_dump_lprop() 747 if (bud->lnum == lp->lnum) { in ubifs_dump_lprop() 763 dbg_jhead(bud->jhead)); in ubifs_dump_lprop()
|
D | ubifs.h | 1783 void ubifs_add_bud(struct ubifs_info *c, struct ubifs_bud *bud);
|
/linux-6.12.1/mm/ |
D | zbud.c | 155 static unsigned long encode_handle(struct zbud_header *zhdr, enum buddy bud) in encode_handle() argument 166 if (bud == FIRST) in encode_handle() 251 enum buddy bud; in zbud_alloc() local 268 bud = FIRST; in zbud_alloc() 270 bud = LAST; in zbud_alloc() 283 bud = FIRST; in zbud_alloc() 286 if (bud == FIRST) in zbud_alloc() 300 *handle = encode_handle(zhdr, bud); in zbud_alloc()
|
D | z3fold.c | 361 static inline int __idx(struct z3fold_header *zhdr, enum buddy bud) in __idx() argument 363 return (bud + zhdr->first_num) & BUDDY_MASK; in __idx() 373 enum buddy bud) in __encode_handle() argument 382 if (bud == HEADLESS) in __encode_handle() 386 idx = __idx(zhdr, bud); in __encode_handle() 388 if (bud == LAST) in __encode_handle() 397 static unsigned long encode_handle(struct z3fold_header *zhdr, enum buddy bud) in encode_handle() argument 399 return __encode_handle(zhdr, zhdr->slots, bud); in encode_handle() 559 enum buddy bud = HEADLESS; in get_free_buddy() local 564 bud = FIRST; in get_free_buddy() [all …]
|
/linux-6.12.1/Documentation/filesystems/ |
D | ubifs-authentication.rst | 330 over the previous reference nodes, the current reference node, and the bud 332 between the bud nodes. This new node type contains a HMAC over the current state 344 ,.REF#0,-> bud -> bud -> bud.-> auth -> bud -> bud.-> auth ... 351 , REF#1 -> bud -> bud,-> auth ... 360 skip any journal heads for replay. An attacker can only remove bud nodes or
|
/linux-6.12.1/fs/jfs/ |
D | jfs_dmap.c | 2693 int budsz, bud, w, bsz, size; in dbBackSplit() local 2725 w = (w < bud) ? w : bud) { in dbBackSplit() 2733 bud = w ^ bsz; in dbBackSplit() 2737 if (leaf[bud] != NOFREE) { in dbBackSplit() 2741 cursz = leaf[bud] - 1; in dbBackSplit() 2742 dbSplit(tp, bud, cursz, cursz, is_ctl); in dbBackSplit()
|