Home
last modified time | relevance | path

Searched refs:list (Results 4376 - 4400 of 16570) sorted by relevance

1...<<171172173174175176177178179180>>...663

/kernel/linux/linux-5.10/drivers/clk/
H A Dclk-scmi.c121 int num_rates = sclk->info->list.num_rates; in scmi_clk_ops_init()
126 min_rate = sclk->info->list.rates[0]; in scmi_clk_ops_init()
127 max_rate = sclk->info->list.rates[num_rates - 1]; in scmi_clk_ops_init()
/kernel/linux/linux-5.10/arch/mips/pci/
H A Dpci-legacy.c26 * The PCI controller list.
209 INIT_LIST_HEAD(&hose->list); in register_pci_controller()
210 list_add_tail(&hose->list, &controllers); in register_pci_controller()
242 list_for_each_entry(hose, &controllers, list) in pcibios_init()
/kernel/linux/common_modules/tzdriver/agent_rpmb/core/
H A Dagent_rpmb.c21 #include <linux/list.h>
323 .list = LIST_HEAD_INIT(rpmb_agent_ops.list)
/kernel/linux/linux-5.10/block/
H A Dblk-stat.c65 list_for_each_entry_rcu(cb, &q->stats->callbacks, list) { in blk_stat_add()
152 list_add_tail_rcu(&cb->list, &q->stats->callbacks); in blk_stat_add_callback()
163 list_del_rcu(&cb->list); in blk_stat_remove_callback()
/kernel/linux/linux-5.10/drivers/base/regmap/
H A Dinternal.h16 #include <linux/list.h>
23 struct list_head list; member
44 struct list_head list; member
/kernel/linux/linux-5.10/drivers/ata/
H A Dpata_hpt366.c177 const char * const list[]) in hpt_dma_blacklisted()
184 i = match_string(list, -1, model_num); in hpt_dma_blacklisted()
186 pr_warn("%s is not supported for %s\n", modestr, list[i]); in hpt_dma_blacklisted()
176 hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char * const list[]) hpt_dma_blacklisted() argument
/kernel/linux/linux-6.6/arch/mips/pci/
H A Dpci-legacy.c26 * The PCI controller list.
201 INIT_LIST_HEAD(&hose->list); in register_pci_controller()
202 list_add_tail(&hose->list, &controllers); in register_pci_controller()
234 list_for_each_entry(hose, &controllers, list) in pcibios_init()
/kernel/linux/linux-5.10/drivers/media/platform/sti/delta/
H A Ddelta.h92 * @list: V4L2 m2m list that the frame belongs to
101 struct list_head list; /* keep second */ member
156 * @list: V4L2 m2m list that the frame belongs to
170 struct list_head list; /* keep second */ member
195 * @list: list to chain timestamps
199 struct list_head list; member
480 * @decoders: list o
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_common.c15 * copyright notice, this list of conditions and the following
19 * copyright notice, this list of conditions and the following
48 list_add(&tir->list, &mdev->mlx5e_res.td.tirs_list); in mlx5e_create_tir()
59 list_del(&tir->list); in mlx5e_destroy_tir()
184 list_for_each_entry(tir, &mdev->mlx5e_res.td.tirs_list, list) { in mlx5e_refresh_tirs()
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Duverbs.h19 * copyright notice, this list of conditions and the following
23 * copyright notice, this list of conditions and the following
146 struct list_head list; member
149 * To access the uobjects list hw_destroy_rwsem must be held for write
170 struct list_head list; member
176 struct list_head list; member
184 /* List member for ib_uverbs_async_event_file list */
201 /* lock for mcast list */
/kernel/linux/linux-5.10/drivers/net/netdevsim/
H A Dnetdevsim.h19 #include <linux/list.h>
176 struct list_head list; member
200 struct mutex port_list_lock; /* protects port list */
280 struct list_head list; member
/kernel/linux/linux-5.10/drivers/sh/intc/
H A Dvirq.c14 #include <linux/list.h>
56 list_for_each_entry(d, &intc_list, list) { in intc_irq_lookup()
266 list_for_each_entry(d, &intc_list, list) in intc_finalize()
/kernel/linux/linux-5.10/drivers/scsi/
H A Dscsi_dh.c93 list_for_each_entry(tmp, &scsi_dh_list, list) { in __scsi_dh_lookup()
208 list_add(&scsi_dh->list, &scsi_dh_list); in scsi_register_device_handler()
230 list_del(&scsi_dh->list); in scsi_unregister_device_handler()
/kernel/linux/linux-5.10/net/netfilter/
H A Dxt_RATEEST.c43 hlist_add_head(&est->list, &xn->hash[h]); in xt_rateest_hash_insert()
53 hlist_for_each_entry(est, &xn->hash[h], list) { in __xt_rateest_lookup()
81 hlist_del(&est->list); in xt_rateest_put()
/kernel/linux/linux-5.10/include/linux/sunrpc/
H A Dsvc_xprt.h48 struct list_head list; member
99 list_del_init(&u->list); in unregister_xpt_user()
115 list_add(&u->list, &xpt->xpt_users); in register_xpt_user()
/kernel/linux/linux-5.10/sound/hda/
H A Dhdac_bus.c205 * Adds the given codec to the list in the bus. The caddr_tbl array
217 list_add_tail(&codec->list, &bus->codec_list); in snd_hdac_bus_add_device()
233 if (list_empty(&codec->list)) in snd_hdac_bus_remove_device()
235 list_del_init(&codec->list); in snd_hdac_bus_remove_device()
/kernel/linux/linux-5.10/security/apparmor/include/
H A Dlib.h130 * @list: list policy object is on
131 * @profiles: head of the profiles list contained in the object
136 struct list_head list; member
158 * __policy_find - find a policy by @name on a policy list
159 * @head: list to search (NOT NULL)
171 list_for_each_entry_rcu(policy, head, list) { in __policy_find()
180 * @head: list to search (NOT NULL)
196 list_for_each_entry_rcu(policy, head, list) { in __policy_strn_find()
/kernel/linux/linux-5.10/tools/lib/traceevent/plugins/
H A DMakefile128 DYNAMIC_LIST_FILE := $(OUTPUT)libtraceevent-dynamic-list
154 $(OUTPUT)libtraceevent-dynamic-list: $(PLUGINS)
217 $(RM) $(OUTPUT)libtraceevent-dynamic-list \
/kernel/linux/linux-5.10/tools/objtool/
H A Dorc_gen.c109 struct list_head list; member
129 list_add_tail(&entry->list, orc_list); in orc_list_add()
153 /* Build a deduplicated list of ORC entries: */ in orc_create()
234 list_for_each_entry(entry, &orc_list, list) { in orc_create()
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsort.h6 #include <linux/list.h>
304 int sort_dimension__add(struct perf_hpp_list *list, const char *tok,
307 int output_field_add(struct perf_hpp_list *list, char *tok);
/kernel/linux/linux-5.10/fs/lockd/
H A Dclntlock.c36 struct list_head b_list; /* linked list */
260 list_for_each_entry_safe(fl, next, &host->h_reclaim, fl_u.nfs_fl.list) { in reclaimer()
261 list_del_init(&fl->fl_u.nfs_fl.list); in reclaimer()
265 * locks being removed from the h_granted list. This means that in reclaimer()
273 list_add_tail(&fl->fl_u.nfs_fl.list, &host->h_granted); in reclaimer()
/kernel/linux/linux-5.10/include/scsi/
H A Dlibfcoe.h82 * @fcfs: list of discovered FCFs.
92 * @fip_recv_list: list of received FIP frames.
174 * @list: list linkage
199 struct list_head list; member
293 * @list: list linkage to all attached transports
306 struct list_head list; member
388 struct list_head list; member
/kernel/linux/linux-5.10/mm/
H A Dpercpu-stats.c11 #include <linux/list.h>
43 list) in find_max_nr_alloc()
221 list) { in percpu_stats_show()
/kernel/linux/linux-5.10/fs/squashfs/
H A Dxattr.c57 if (handler && (!handler->list || handler->list(d))) { in squashfs_listxattr()
233 .list = squashfs_trusted_xattr_handler_list,
/kernel/linux/linux-5.10/net/core/
H A Dfailover.c26 list_for_each_entry(failover, &failover_list, list) { in failover_get_bymac()
260 list_add_tail(&failover->list, &failover_list); in failover_register()
291 list_del(&failover->list); in failover_unregister()

Completed in 19 milliseconds

1...<<171172173174175176177178179180>>...663