Home
last modified time | relevance | path

Searched refs:lst (Results 1 – 12 of 12) sorted by relevance

/u-boot/fs/ubifs/
A Dmaster.c183 if (c->lst.empty_lebs < 0 || c->lst.empty_lebs > c->main_lebs - 2) { in validate_master()
188 if (c->lst.idx_lebs < 0 || c->lst.idx_lebs > c->main_lebs - 1) { in validate_master()
193 if (c->lst.total_free < 0 || c->lst.total_free > main_sz || in validate_master()
194 c->lst.total_free & 7) { in validate_master()
199 if (c->lst.total_dirty < 0 || (c->lst.total_dirty & 7)) { in validate_master()
204 if (c->lst.total_used < 0 || (c->lst.total_used & 7)) { in validate_master()
209 if (c->lst.total_free + c->lst.total_dirty + in validate_master()
215 if (c->lst.total_dead + c->lst.total_dark + in validate_master()
221 if (c->lst.total_dead < 0 || in validate_master()
222 c->lst.total_dead > c->lst.total_free + c->lst.total_dirty || in validate_master()
[all …]
A Dlprops.c1284 if (lst.empty_lebs != c->lst.empty_lebs || in dbg_check_lprops()
1285 lst.idx_lebs != c->lst.idx_lebs || in dbg_check_lprops()
1286 lst.total_free != c->lst.total_free || in dbg_check_lprops()
1288 lst.total_used != c->lst.total_used) { in dbg_check_lprops()
1291 lst.empty_lebs, lst.idx_lebs, lst.total_free, in dbg_check_lprops()
1292 lst.total_dirty, lst.total_used); in dbg_check_lprops()
1294 c->lst.empty_lebs, c->lst.idx_lebs, c->lst.total_free, in dbg_check_lprops()
1300 if (lst.total_dead != c->lst.total_dead || in dbg_check_lprops()
1301 lst.total_dark != c->lst.total_dark) { in dbg_check_lprops()
1304 lst.total_dead, lst.total_dark); in dbg_check_lprops()
[all …]
A Dbudget.c210 available = c->main_bytes - c->lst.total_used; in ubifs_calc_available()
235 available -= c->lst.total_dead; in ubifs_calc_available()
243 available -= c->lst.total_dark; in ubifs_calc_available()
251 if (c->lst.idx_lebs > min_idx_lebs) { in ubifs_calc_available()
252 subtract_lebs = c->lst.idx_lebs - min_idx_lebs; in ubifs_calc_available()
311 if (min_idx_lebs > c->lst.idx_lebs) in do_budget_space()
312 rsvd_idx_lebs = min_idx_lebs - c->lst.idx_lebs; in do_budget_space()
339 c->lst.taken_empty_lebs; in do_budget_space()
696 if (c->bi.min_idx_lebs > c->lst.idx_lebs) in ubifs_get_free_space_nolock()
697 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs; in ubifs_get_free_space_nolock()
[all …]
A Dmisc.h278 ubifs_assert(c->lst.empty_lebs >= 0 && in ubifs_release_lprops()
279 c->lst.empty_lebs <= c->main_lebs); in ubifs_release_lprops()
A Ddebug.c568 void ubifs_dump_lstats(const struct ubifs_lp_stats *lst) in ubifs_dump_lstats() argument
572 current->pid, lst->empty_lebs, lst->idx_lebs); in ubifs_dump_lstats()
574 lst->taken_empty_lebs, lst->total_free, lst->total_dirty); in ubifs_dump_lstats()
576 lst->total_used, lst->total_dark, lst->total_dead); in ubifs_dump_lstats()
749 struct ubifs_lp_stats lst; in ubifs_dump_lprops() local
752 ubifs_get_lp_stats(c, &lst); in ubifs_dump_lprops()
753 ubifs_dump_lstats(&lst); in ubifs_dump_lprops()
986 memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats)); in dbg_save_space_info()
1033 struct ubifs_lp_stats lst; in dbg_check_space_info() local
1059 ubifs_get_lp_stats(c, &lst); in dbg_check_space_info()
[all …]
A Ddebug.h311 void ubifs_dump_lstats(const struct ubifs_lp_stats *lst);
A Dsuper.c1320 if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) { in check_free_space()
1603 ubifs_assert(c->lst.taken_empty_lebs > 0); in mount_ubifs()
1606 ubifs_assert(c->lst.taken_empty_lebs > 0); in mount_ubifs()
1649 dbg_gen("index LEBs: %d", c->lst.idx_lebs); in mount_ubifs()
2110 ubifs_assert(c->lst.taken_empty_lebs > 0); in ubifs_remount_fs()
A Dubifs.h1942 struct ubifs_lp_stats lst; member
2329 void ubifs_get_lp_stats(struct ubifs_info *c, struct ubifs_lp_stats *lst);
/u-boot/scripts/
A DMakefile.build130 $(real-objs-m:.o=.lst): part-of-module := y
135 $(real-objs-m:.o=.lst): quiet_modtag := [M]
145 $(multi-objs-m:.o=.lst) : modname = $(modname-multi)
149 $(multi-objs-y:.o=.lst) : modname = $(modname-multi)
280 $(obj)/%.lst: $(src)/%.c FORCE
/u-boot/
A D.gitignore23 *.lst
A DMakefile2165 %.lst: %.c prepare scripts FORCE
/u-boot/tools/buildman/
A Dkconfiglib.py6343 def _ordered_unique(lst): argument
6350 return [x for x in lst if x not in seen and not seen_add(x)]

Completed in 38 milliseconds