Home
last modified time | relevance | path

Searched refs:f_list (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/dma/fsl-dpaa2-qdma/
H A Ddpaa2-qdma.c175 dpaa2_qdma_populate_first_framel(struct dpaa2_fl_entry *f_list, in dpaa2_qdma_populate_first_framel() argument
194 memset(f_list, 0, sizeof(struct dpaa2_fl_entry)); in dpaa2_qdma_populate_first_framel()
197 dpaa2_fl_set_addr(f_list, dpaa2_comp->desc_bus_addr); in dpaa2_qdma_populate_first_framel()
198 dpaa2_fl_set_len(f_list, 0x20); in dpaa2_qdma_populate_first_framel()
199 dpaa2_fl_set_format(f_list, QDMA_FL_FMT_SBF | QDMA_FL_SL_LONG); in dpaa2_qdma_populate_first_framel()
203 f_list->bpid = cpu_to_le16(QDMA_FL_BMT_ENABLE); in dpaa2_qdma_populate_first_framel()
208 dpaa2_qdma_populate_frames(struct dpaa2_fl_entry *f_list, in dpaa2_qdma_populate_frames() argument
213 memset(f_list, 0, sizeof(struct dpaa2_fl_entry)); in dpaa2_qdma_populate_frames()
215 dpaa2_fl_set_addr(f_list, src); in dpaa2_qdma_populate_frames()
216 dpaa2_fl_set_len(f_list, len); in dpaa2_qdma_populate_frames()
[all …]
/linux/tools/lib/python/abi/
H A Dsystem_symbols.py319 f_list = []
324 f_list.append(exe.submit(self.check_file, refs, found))
329 total = len(f_list)
338 print(f"{len(f_list):6d} jobs queued on {max_workers} workers",
341 while f_list:
343 t = futures.wait(f_list, timeout=1,
357 f_list.remove(fut)
367 if len(f_list) < total:
368 elapsed += f" ({total - len(f_list)}/{total} jobs completed). "
/linux/fs/lockd/
H A Dsvcsubs.c148 hlist_for_each_entry(file, &nlm_files[hash], f_list) in nlm_lookup_file()
164 INIT_HLIST_NODE(&file->f_list); in nlm_lookup_file()
171 hlist_add_head(&file->f_list, &nlm_files[hash]); in nlm_lookup_file()
194 if (!hlist_unhashed(&file->f_list)) { in nlm_delete_file()
195 hlist_del(&file->f_list); in nlm_delete_file()
335 hlist_for_each_entry_safe(file, next, &nlm_files[i], f_list) { in nlm_traverse_files()
351 hlist_del(&file->f_list); in nlm_traverse_files()
H A Dlockd.h189 struct hlist_node f_list; /* linked list */ member