Home
last modified time | relevance | path

Searched refs:list (Results 876 - 900 of 14422) sorted by relevance

1...<<31323334353637383940>>...577

/kernel/linux/linux-5.10/tools/testing/selftests/drivers/usb/usbip/
H A Dusbip_test.sh75 src/usbip list -l;
85 src/usbip list -r localhost;
101 src/usbip list -r localhost;
117 src/usbip list -r localhost;
133 src/usbip list -r localhost;
175 src/usbip list -l;
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx4/
H A Dicm.h16 * copyright notice, this list of conditions and the following
20 * copyright notice, this list of conditions and the following
37 #include <linux/list.h>
57 struct list_head list; member
102 struct mlx4_icm_chunk, list); in mlx4_icm_first()
114 if (iter->chunk->list.next == &iter->icm->chunk_list) { in mlx4_icm_next()
119 iter->chunk = list_entry(iter->chunk->list.next, in mlx4_icm_next()
120 struct mlx4_icm_chunk, list); in mlx4_icm_next()
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/
H A Deeprom.c18 const __be32 *list; in mt76_get_of_eeprom() local
29 list = of_get_property(np, "mediatek,mtd-eeprom", &size); in mt76_get_of_eeprom()
30 if (!list) in mt76_get_of_eeprom()
33 phandle = be32_to_cpup(list++); in mt76_get_of_eeprom()
51 if (size <= sizeof(*list)) { in mt76_get_of_eeprom()
56 offset = be32_to_cpup(list); in mt76_get_of_eeprom()
/kernel/linux/linux-5.10/drivers/s390/scsi/
H A Dzfcp_reqlist.h18 * struct zfcp_reqlist - Container for request list (reqlist)
19 * @lock: Spinlock for protecting the hash list
20 * @buckets: Array of hashbuckets, each is a list of requests in this bucket
56 * zfcp_reqlist_isempty - Check whether the request list empty
59 * Returns: 1 if list is empty, 0 if not
90 list_for_each_entry(req, &rl->buckets[i], list) in _zfcp_reqlist_find()
138 list_del(&req->list); in zfcp_reqlist_find_rm()
163 list_add_tail(&req->list, &rl->buckets[i]); in zfcp_reqlist_add()
168 * zfcp_reqlist_move - Move all entries from reqlist to simple list
170 * @list
172 zfcp_reqlist_move(struct zfcp_reqlist *rl, struct list_head *list) zfcp_reqlist_move() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/dwc3/
H A Dgadget.h14 #include <linux/list.h>
64 * next_request - gets the next request on the given list
65 * @list: the request list to operate on
68 * request available on @list.
70 static inline struct dwc3_request *next_request(struct list_head *list) in next_request() argument
72 return list_first_entry_or_null(list, struct dwc3_request, list); in next_request()
80 * current list to the endpoint's started_list.
87 list_move_tail(&req->list, in dwc3_gadget_move_started_request()
[all...]
/kernel/linux/linux-5.10/samples/livepatch/
H A Dlivepatch-shadow-mod.c84 * Keep a list of all the dummies so we can clean up any residual ones
91 struct list_head list; member
152 list_add(&d->list, &dummy_list); in alloc_work_func()
177 list_for_each_entry_safe(d, tmp, &dummy_list, list) { in cleanup_work_func()
181 list_del(&d->list); in cleanup_work_func()
210 list_for_each_entry_safe(d, tmp, &dummy_list, list) { in livepatch_shadow_mod_exit()
211 list_del(&d->list); in livepatch_shadow_mod_exit()
/kernel/linux/linux-5.10/include/media/
H A Dmedia-device.h14 #include <linux/list.h>
27 * @list: List head
37 struct list_head list; member
166 /* notify callback list invoked when a new entity is registered */
392 list_for_each_entry(entity, &(mdev)->entities, graph_obj.list)
396 list_for_each_entry(intf, &(mdev)->interfaces, graph_obj.list)
400 list_for_each_entry(pad, &(mdev)->pads, graph_obj.list)
404 list_for_each_entry(link, &(mdev)->links, graph_obj.list)
/kernel/linux/linux-5.10/scripts/
H A Dexport_report.pl30 my $list = $href->{$mod};
32 foreach my $sym (sort numerically @{$list}) {
155 # print the list of unused exported symbols
157 foreach my $list (sort alphabetically values(%SYMBOL)) {
158 my ($module, $value, $symbol, $gpl) = @{$list};
177 my $list = $MODULE{$thismod};
181 foreach my $symbol (@{$list}) {
/kernel/linux/linux-5.10/fs/dlm/
H A Drequestqueue.c19 struct list_head list; member
48 list_add_tail(&e->list, &ls->ls_requestqueue); in dlm_add_requestqueue()
77 e = list_entry(ls->ls_requestqueue.next, struct rq_entry, list); in dlm_process_requestqueue()
91 list_del(&e->list); in dlm_process_requestqueue()
159 list_for_each_entry_safe(e, safe, &ls->ls_requestqueue, list) { in dlm_purge_requestqueue()
163 list_del(&e->list); in dlm_purge_requestqueue()
/kernel/linux/linux-5.10/drivers/vme/
H A Dvme_bridge.h12 struct list_head list; member
29 struct list_head list; member
55 struct list_head list; member
62 struct list_head list; member
73 struct list_head list; member
82 struct list_head list; member
123 struct list_head bus_list; /* list of VME buses */
/kernel/linux/linux-5.10/net/9p/
H A Dmod.c23 #include <linux/list.h>
72 list_add_tail(&m->list, &v9fs_trans_list); in v9fs_register_trans()
85 list_del_init(&m->list); in v9fs_unregister_trans()
101 list_for_each_entry(t, &v9fs_trans_list, list) in v9fs_get_trans_by_name()
124 list_for_each_entry(t, &v9fs_trans_list, list) in v9fs_get_default_trans()
131 list_for_each_entry(t, &v9fs_trans_list, list) in v9fs_get_default_trans()
/kernel/linux/linux-5.10/net/batman-adv/
H A Dbat_algo.c10 #include <linux/list.h>
41 hlist_for_each_entry(bat_algo_ops_tmp, &batadv_algo_list, list) { in batadv_algo_get()
81 INIT_HLIST_NODE(&bat_algo_ops->list); in batadv_algo_register()
82 hlist_add_head(&bat_algo_ops->list, &batadv_algo_list); in batadv_algo_register()
128 hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) { in batadv_algo_seq_print_text()
213 hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) { in batadv_algo_dump()
/kernel/linux/linux-5.10/include/linux/
H A Dlist_lru.h11 #include <linux/list.h>
19 LRU_REMOVED, /* item removed from list */
29 struct list_head list; member
43 /* global list, used for the root cgroup in cgroup aware lrus */
55 struct list_head list; member
76 * list_lru_add: add an element to the lru list's tail
80 * If the element is already part of a list, this function returns doing
82 * not the element already belongs in the list and is allowed to lazy update
83 * it. Note however that this is valid for *a* list, not *this* list
[all...]
H A Ddmi.h5 #include <linux/list.h>
83 struct list_head list; member
100 extern int dmi_check_system(const struct dmi_system_id *list);
101 const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list);
121 static inline int dmi_check_system(const struct dmi_system_id *list) { return 0; } in dmi_check_system() argument
150 dmi_first_match(const struct dmi_system_id *list) { return NULL; } in dmi_first_match() argument
/kernel/linux/linux-5.10/drivers/scsi/lpfc/
H A Dlpfc_scsi.h28 #define list_remove_head(list, entry, type, member) \
31 if (!list_empty(list)) { \
32 entry = list_entry((list)->next, type, member); \
37 #define list_get_first(list, type, member) \
38 (list_empty(list)) ? NULL : \
39 list_entry((list)->next, type, member)
/kernel/linux/linux-5.10/drivers/staging/greybus/
H A Daudio_manager.c32 list_for_each_entry(module, &modules_list, list) { in gb_audio_manager_get_locked()
58 /* Add it to the list */ in gb_audio_manager_add()
60 list_add_tail(&module->list, &modules_list); in gb_audio_manager_add()
78 list_del(&module->list); in gb_audio_manager_remove()
93 list_for_each_entry_safe(module, next, &modules_list, list) { in gb_audio_manager_remove_all()
94 list_del(&module->list); in gb_audio_manager_remove_all()
148 list_for_each_entry(module, &modules_list, list) { in gb_audio_manager_dump_all()
/kernel/linux/linux-6.6/drivers/acpi/
H A Dpci_slot.c23 #include <linux/list.h>
35 struct list_head list; /* node in the list of slots */ member
101 list_for_each_entry(slot, &slot_list, list) { in register_slot()
120 list_add(&slot->list, &slot_list); in register_slot()
147 list_for_each_entry_safe(slot, tmp, &slot_list, list) { in acpi_pci_slot_remove()
149 list_del(&slot->list); in acpi_pci_slot_remove()
/kernel/linux/linux-6.6/fs/dlm/
H A Drequestqueue.c20 struct list_head list; member
53 list_add_tail(&e->list, &ls->ls_requestqueue); in dlm_add_requestqueue()
82 e = list_entry(ls->ls_requestqueue.next, struct rq_entry, list); in dlm_process_requestqueue()
98 list_del(&e->list); in dlm_process_requestqueue()
162 list_for_each_entry_safe(e, safe, &ls->ls_requestqueue, list) { in dlm_purge_requestqueue()
166 list_del(&e->list); in dlm_purge_requestqueue()
/kernel/linux/linux-6.6/include/linux/
H A Ddmi.h5 #include <linux/list.h>
83 struct list_head list; member
100 extern int dmi_check_system(const struct dmi_system_id *list);
101 const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list);
121 static inline int dmi_check_system(const struct dmi_system_id *list) { return 0; } in dmi_check_system() argument
150 dmi_first_match(const struct dmi_system_id *list) { return NULL; } in dmi_first_match() argument
H A Dlist_lru.h11 #include <linux/list.h>
20 LRU_REMOVED, /* item removed from list */
30 struct list_head list; member
44 /* global list, used for the root cgroup in cgroup aware lrus */
52 struct list_head list; member
75 * list_lru_add: add an element to the lru list's tail
79 * If the element is already part of a list, this function returns doing
81 * not the element already belongs in the list and is allowed to lazy update
82 * it. Note however that this is valid for *a* list, not *this* list
[all...]
/kernel/linux/linux-6.6/drivers/staging/greybus/
H A Daudio_manager.c32 list_for_each_entry(module, &modules_list, list) { in gb_audio_manager_get_locked()
58 /* Add it to the list */ in gb_audio_manager_add()
60 list_add_tail(&module->list, &modules_list); in gb_audio_manager_add()
78 list_del(&module->list); in gb_audio_manager_remove()
93 list_for_each_entry_safe(module, next, &modules_list, list) { in gb_audio_manager_remove_all()
94 list_del(&module->list); in gb_audio_manager_remove_all()
148 list_for_each_entry(module, &modules_list, list) { in gb_audio_manager_dump_all()
/kernel/linux/linux-6.6/drivers/usb/dwc3/
H A Dgadget.h14 #include <linux/list.h>
64 * next_request - gets the next request on the given list
65 * @list: the request list to operate on
68 * request available on @list.
70 static inline struct dwc3_request *next_request(struct list_head *list) in next_request() argument
72 return list_first_entry_or_null(list, struct dwc3_request, list); in next_request()
80 * current list to the endpoint's started_list.
87 list_move_tail(&req->list, in dwc3_gadget_move_started_request()
[all...]
/kernel/linux/linux-6.6/drivers/staging/vme_user/
H A Dvme_bridge.h12 struct list_head list; member
29 struct list_head list; member
55 struct list_head list; member
62 struct list_head list; member
73 struct list_head list; member
82 struct list_head list; member
123 struct list_head bus_list; /* list of VME buses */
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_topology.h28 #include <linux/list.h>
81 struct list_head list; member
95 struct list_head list; member
112 struct list_head list; member
131 struct list_head list; member
138 struct list_head list; member
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx4/
H A Dicm.h16 * copyright notice, this list of conditions and the following
20 * copyright notice, this list of conditions and the following
37 #include <linux/list.h>
57 struct list_head list; member
102 struct mlx4_icm_chunk, list); in mlx4_icm_first()
114 if (iter->chunk->list.next == &iter->icm->chunk_list) { in mlx4_icm_next()
119 iter->chunk = list_entry(iter->chunk->list.next, in mlx4_icm_next()
120 struct mlx4_icm_chunk, list); in mlx4_icm_next()

Completed in 12 milliseconds

1...<<31323334353637383940>>...577