Searched refs:bud (Results 1 - 5 of 5) sorted by relevance

/u-boot/fs/ubifs/
H A Dlog.c28 * ubifs_search_bud - search bud LEB.
32 * This function searches bud LEB @lnum. Returns bud description object in case
33 * of success and %NULL if there is no bud with this LEB number.
38 struct ubifs_bud *bud; local
43 bud = rb_entry(p, struct ubifs_bud, rb);
44 if (lnum < bud->lnum)
46 else if (lnum > bud->lnum)
50 return bud;
67 struct ubifs_bud *bud; local
117 ubifs_add_bud(struct ubifs_info *c, struct ubifs_bud *bud) argument
172 struct ubifs_bud *bud; local
303 struct ubifs_bud *bud; local
505 struct ubifs_bud *bud; local
727 struct ubifs_bud *bud; local
[all...]
H A Dreplay.c69 * @list: next bud in the list
70 * @bud: bud description object
72 * @free: free bytes in the bud
73 * @dirty: dirty bytes in the bud
77 struct ubifs_bud *bud; member in struct:bud_entry
84 * set_bud_lprops - set free and dirty space used by a bud.
86 * @b: bud entry which describes the bud
88 * This function makes sure the LEB properties of bud
479 is_last_bud(struct ubifs_info *c, struct ubifs_bud *bud) argument
743 struct ubifs_bud *bud; local
783 struct ubifs_bud *bud; local
[all...]
H A Ddebug.c594 struct ubifs_bud *bud; local
636 bud = rb_entry(rb, struct ubifs_bud, rb);
637 pr_err("\tbud LEB %d\n", bud->lnum);
639 list_for_each_entry(bud, &c->old_buds, list)
640 pr_err("\told bud LEB %d\n", bud->lnum);
668 struct ubifs_bud *bud; local
730 bud = rb_entry(rb, struct ubifs_bud, rb);
731 if (bud->lnum == lp->lnum) {
746 pr_cont(", bud o
[all...]
H A Dsuper.c810 * bud_wbuf_callback - bud LEB write-buffer synchronization call-back.
818 * accounting in bud logical eraseblocks. This function returns zero in case of
895 * when number of bud bytes becomes above the limit defined below.
1059 * free_buds - free per-bud objects.
1064 struct ubifs_bud *bud, *n; local
1066 rbtree_postorder_for_each_entry_safe(bud, n, &c->buds, rb)
1067 kfree(bud);
1270 struct ubifs_bud *bud; local
1272 bud = list_entry(c->old_buds.next, struct ubifs_bud, list);
1273 list_del(&bud
[all...]
H A Dubifs.h1303 * struct ubifs_bud - bud logical eraseblock.
1305 * @start: where the (uncommitted) bud data starts
1306 * @jhead: journal head number this bud belongs to
1321 * @buds_list: list of bud LEBs belonging to this journal head
1610 * @buds: tree of all buds indexed by bud LEB number
1612 * @buds_lock: protects the @buds tree, @bud_bytes, and per-journal head bud
1617 * @bg_bud_bytes: number of bud bytes when background commit is initiated
2129 void ubifs_add_bud(struct ubifs_info *c, struct ubifs_bud *bud);

Completed in 109 milliseconds