Home
last modified time | relevance | path

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

12

/linux-6.3-rc2/fs/ubifs/
A Dmaster.c261 if (c->lst.empty_lebs < 0 || c->lst.empty_lebs > c->main_lebs - 2) { in validate_master()
266 if (c->lst.idx_lebs < 0 || c->lst.idx_lebs > c->main_lebs - 1) { in validate_master()
271 if (c->lst.total_free < 0 || c->lst.total_free > main_sz || in validate_master()
272 c->lst.total_free & 7) { in validate_master()
277 if (c->lst.total_dirty < 0 || (c->lst.total_dirty & 7)) { in validate_master()
282 if (c->lst.total_used < 0 || (c->lst.total_used & 7)) { in validate_master()
287 if (c->lst.total_free + c->lst.total_dirty + in validate_master()
293 if (c->lst.total_dead + c->lst.total_dark + in validate_master()
299 if (c->lst.total_dead < 0 || in validate_master()
300 c->lst.total_dead > c->lst.total_free + c->lst.total_dirty || in validate_master()
[all …]
A Dlprops.c1277 if (lst.empty_lebs != c->lst.empty_lebs || in dbg_check_lprops()
1278 lst.idx_lebs != c->lst.idx_lebs || in dbg_check_lprops()
1279 lst.total_free != c->lst.total_free || in dbg_check_lprops()
1281 lst.total_used != c->lst.total_used) { in dbg_check_lprops()
1284 lst.empty_lebs, lst.idx_lebs, lst.total_free, in dbg_check_lprops()
1285 lst.total_dirty, lst.total_used); in dbg_check_lprops()
1287 c->lst.empty_lebs, c->lst.idx_lebs, c->lst.total_free, in dbg_check_lprops()
1293 if (lst.total_dead != c->lst.total_dead || in dbg_check_lprops()
1294 lst.total_dark != c->lst.total_dark) { in dbg_check_lprops()
1297 lst.total_dead, lst.total_dark); in dbg_check_lprops()
[all …]
A Dbudget.c199 available = c->main_bytes - c->lst.total_used; in ubifs_calc_available()
223 available -= c->lst.total_dead; in ubifs_calc_available()
231 available -= c->lst.total_dark; in ubifs_calc_available()
239 if (c->lst.idx_lebs > min_idx_lebs) { in ubifs_calc_available()
240 subtract_lebs = c->lst.idx_lebs - min_idx_lebs; in ubifs_calc_available()
299 if (min_idx_lebs > c->lst.idx_lebs) in do_budget_space()
300 rsvd_idx_lebs = min_idx_lebs - c->lst.idx_lebs; in do_budget_space()
327 c->lst.taken_empty_lebs; in do_budget_space()
682 if (c->bi.min_idx_lebs > c->lst.idx_lebs) in ubifs_get_free_space_nolock()
683 rsvd_idx_lebs = c->bi.min_idx_lebs - c->lst.idx_lebs; in ubifs_get_free_space_nolock()
[all …]
A Dfind.c58 n = c->lst.empty_lebs + c->freeable_cnt - in valuable()
59 c->lst.taken_empty_lebs; in valuable()
234 lebs = c->lst.empty_lebs + c->idx_gc_cnt; in ubifs_find_dirty_leb()
243 if (c->bi.min_idx_lebs >= c->lst.idx_lebs) { in ubifs_find_dirty_leb()
492 if (c->bi.min_idx_lebs > c->lst.idx_lebs) in ubifs_find_free_space()
497 c->lst.taken_empty_lebs; in ubifs_find_free_space()
503 if (c->lst.empty_lebs - c->lst.taken_empty_lebs > 0) { in ubifs_find_free_space()
524 c->lst.taken_empty_lebs += 1; in ubifs_find_free_space()
545 c->lst.taken_empty_lebs -= 1; in ubifs_find_free_space()
571 c->lst.taken_empty_lebs -= 1; in ubifs_find_free_space()
[all …]
A Dcommit.c101 struct ubifs_lp_stats lst; in do_commit() local
144 ubifs_get_lp_stats(c, &lst); in do_commit()
178 c->mst_node->empty_lebs = cpu_to_le32(lst.empty_lebs); in do_commit()
179 c->mst_node->idx_lebs = cpu_to_le32(lst.idx_lebs); in do_commit()
180 c->mst_node->total_free = cpu_to_le64(lst.total_free); in do_commit()
181 c->mst_node->total_dirty = cpu_to_le64(lst.total_dirty); in do_commit()
182 c->mst_node->total_used = cpu_to_le64(lst.total_used); in do_commit()
183 c->mst_node->total_dead = cpu_to_le64(lst.total_dead); in do_commit()
184 c->mst_node->total_dark = cpu_to_le64(lst.total_dark); in do_commit()
A Dmisc.h257 ubifs_assert(c, c->lst.empty_lebs >= 0 && in ubifs_release_lprops()
258 c->lst.empty_lebs <= c->main_lebs); in ubifs_release_lprops()
A Dtnc_commit.c362 c->gap_lebs = kmalloc_array(c->lst.idx_lebs + 1, sizeof(int), in layout_in_gaps()
367 old_idx_lebs = c->lst.idx_lebs; in layout_in_gaps()
369 ubifs_assert(c, p < c->lst.idx_lebs); in layout_in_gaps()
404 old_idx_lebs < c->lst.idx_lebs) { in layout_in_gaps()
405 old_idx_lebs = c->lst.idx_lebs; in layout_in_gaps()
806 dbg_cmt("number of index LEBs %d", c->lst.idx_lebs); in ubifs_tnc_start_commit()
A Ddebug.c600 void ubifs_dump_lstats(const struct ubifs_lp_stats *lst) in ubifs_dump_lstats() argument
604 current->pid, lst->empty_lebs, lst->idx_lebs); in ubifs_dump_lstats()
606 lst->taken_empty_lebs, lst->total_free, lst->total_dirty); in ubifs_dump_lstats()
608 lst->total_used, lst->total_dark, lst->total_dead); in ubifs_dump_lstats()
775 struct ubifs_lp_stats lst; in ubifs_dump_lprops() local
778 ubifs_get_lp_stats(c, &lst); in ubifs_dump_lprops()
779 ubifs_dump_lstats(&lst); in ubifs_dump_lprops()
995 memcpy(&d->saved_lst, &c->lst, sizeof(struct ubifs_lp_stats)); in dbg_save_space_info()
1042 struct ubifs_lp_stats lst; in dbg_check_space_info() local
1068 ubifs_get_lp_stats(c, &lst); in dbg_check_space_info()
[all …]
/linux-6.3-rc2/drivers/media/usb/pvrusb2/
A Dpvrusb2-devattr.c54 .client_table.lst = pvr2_cli_29xxx,
56 .fx2_firmware.lst = pvr2_fw1_names_29xxx,
88 .client_table.lst = pvr2_cli_24xxx,
118 .client_table.lst = pvr2_cli_gotview_2,
139 .client_table.lst = pvr2_cli_gotview_2,
162 .client_table.lst = pvr2_cli_av400,
371 .client_table.lst = pvr2_cli_73xxx,
478 .client_table.lst = pvr2_cli_73xxx,
501 .client_table.lst = pvr2_cli_73xxx,
637 .client_table.lst = pvr2_cli_160xxx,
[all …]
A Dpvrusb2-devattr.h45 const struct pvr2_device_client_desc *lst; member
51 const char **lst; member
/linux-6.3-rc2/tools/testing/selftests/tc-testing/
A Dtdc_helper.py18 def get_unique_item(lst): argument
20 if len(lst) > 1:
21 return list(set(lst))
23 return lst
/linux-6.3-rc2/samples/trace_events/
A Dtrace-events-sample.h291 TP_PROTO(const char *foo, int bar, const int *lst,
295 TP_ARGS(foo, bar, lst, string, mask, fmt, va),
300 __dynamic_array(int, list, __length_of(lst))
310 memcpy(__get_dynamic_array(list), lst,
311 __length_of(lst) * sizeof(int));
/linux-6.3-rc2/drivers/cpufreq/
A Dcpufreq_governor.c274 u64 delta_ns, lst; in dbs_update_util_handler() local
293 lst = READ_ONCE(policy_dbs->last_sample_time); in dbs_update_util_handler()
294 delta_ns = time - lst; in dbs_update_util_handler()
311 if (unlikely(lst != READ_ONCE(policy_dbs->last_sample_time))) { in dbs_update_util_handler()
/linux-6.3-rc2/
A D.get_maintainer.ignore3 Christoph Hellwig <hch@lst.de>
A D.gitignore33 *.lst
/linux-6.3-rc2/drivers/net/ethernet/alacritech/
A Dslicoss.c1461 struct rtnl_link_stats64 *lst) in slic_get_stats() argument
1466 SLIC_GET_STATS_COUNTER(lst->rx_packets, stats, rx_packets); in slic_get_stats()
1467 SLIC_GET_STATS_COUNTER(lst->tx_packets, stats, tx_packets); in slic_get_stats()
1468 SLIC_GET_STATS_COUNTER(lst->rx_bytes, stats, rx_bytes); in slic_get_stats()
1469 SLIC_GET_STATS_COUNTER(lst->tx_bytes, stats, tx_bytes); in slic_get_stats()
1470 SLIC_GET_STATS_COUNTER(lst->rx_errors, stats, rx_errors); in slic_get_stats()
1471 SLIC_GET_STATS_COUNTER(lst->rx_dropped, stats, rx_buff_miss); in slic_get_stats()
1472 SLIC_GET_STATS_COUNTER(lst->tx_dropped, stats, tx_dropped); in slic_get_stats()
1473 SLIC_GET_STATS_COUNTER(lst->multicast, stats, rx_mcasts); in slic_get_stats()
1475 SLIC_GET_STATS_COUNTER(lst->rx_crc_errors, stats, rx_crc); in slic_get_stats()
[all …]
/linux-6.3-rc2/scripts/gdb/linux/
A Dproc.py113 def info_opts(lst, opt): argument
115 for key, string in lst.items():
/linux-6.3-rc2/drivers/usb/usbip/
A Dvudc_dev.c338 struct vrequest *lst; in vep_dequeue() local
353 list_for_each_entry(lst, &ep->req_queue, req_entry) { in vep_dequeue()
354 if (&lst->req == _req) { in vep_dequeue()
355 list_del_init(&lst->req_entry); in vep_dequeue()
/linux-6.3-rc2/scripts/gcc-plugins/
A Dlatent_entropy_plugin.c167 tree fld, lst = TYPE_FIELDS(type); in handle_latent_entropy_attribute() local
170 for (fld = lst; fld; nelt++, fld = TREE_CHAIN(fld)) { in handle_latent_entropy_attribute()
188 for (fld = lst; fld; fld = TREE_CHAIN(fld)) { in handle_latent_entropy_attribute()
/linux-6.3-rc2/Documentation/devicetree/bindings/display/bridge/
A Danx6345.yaml10 - Torsten Duwe <duwe@lst.de>
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/acr/
A Dbase.c364 struct nvkm_acr_lsf *lsf, *lst; in nvkm_acr_dtor() local
378 list_for_each_entry_safe(lsf, lst, &acr->lsf, head) { in nvkm_acr_dtor()
/linux-6.3-rc2/scripts/
A Dcheckkconfigsymbols.py260 def partition(lst, size): argument
262 return [lst[i::size] for i in range(size)]
/linux-6.3-rc2/drivers/net/ethernet/intel/ice/
A Dice_flex_pipe.c3417 struct list_head *lst) in ice_get_profs_vsig() argument
3432 list_add_tail(&p->list, lst); in ice_get_profs_vsig()
3438 list_for_each_entry_safe(ent1, ent2, lst, list) { in ice_get_profs_vsig()
3455 struct list_head *lst, u64 hdl) in ice_add_prof_to_lst() argument
3485 list_add(&p->list, lst); in ice_add_prof_to_lst()
3868 struct list_head *lst, u16 *new_vsig, in ice_create_vsig_from_lst() argument
3883 list_for_each_entry(t, lst, list) { in ice_create_vsig_from_lst()
3907 struct list_head lst; in ice_find_prof_vsig() local
3910 INIT_LIST_HEAD(&lst); in ice_find_prof_vsig()
3917 list_add(&t->list, &lst); in ice_find_prof_vsig()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/i915/
A DTODO.txt38 https://lore.kernel.org/linux-mm/20210301083320.943079-1-hch@lst.de/
/linux-6.3-rc2/Documentation/
A Ddontdiff28 *.lst

Completed in 54 milliseconds

12