Searched refs:list (Results 1 - 25 of 350) sorted by relevance

1234567891011>>

/include/drm/ttm/
H A Dttm_execbuf_util.h35 #include <linux/list.h>
40 * @head: list head for thread-private list.
55 * @list: thread private list of ttm_validate_buffer structs.
58 * the list entries.
62 struct list_head *list);
69 * @list: thread private list of ttm_validate_buffer structs.
72 * Tries to reserve bos pointed to by the list entrie
[all...]
/include/linux/
H A Dnfs_fs_i.h12 struct list_head list; member in struct:nfs_lock_info
H A Dkcore.h16 struct list_head list; member in struct:kcore_list
23 struct list_head list; member in struct:vmcore
H A Dcdev.h6 #include <linux/list.h>
16 struct list_head list; member in struct:cdev
H A Dhw_random.h16 #include <linux/list.h>
46 struct list_head list; member in struct:hwrng
H A Dreset-controller.h4 #include <linux/list.h>
31 * @list: internal list of reset controller devices
41 struct list_head list; member in struct:reset_controller_dev
H A Dsyscore_ops.h12 #include <linux/list.h>
H A Dtask_work.h4 #include <linux/list.h>
H A Dlist.h11 * Simple doubly linked list implementation.
25 static inline void INIT_LIST_HEAD(struct list_head *list) argument
27 list->next = list;
28 list->prev = list;
34 * This is only for internal list manipulation where we know
56 * @head: list head to add it after
70 * @head: list head to add it before
81 * Delete a list entr
154 list_move(struct list_head *list, struct list_head *head) argument
165 list_move_tail(struct list_head *list, struct list_head *head) argument
177 list_is_last(const struct list_head *list, const struct list_head *head) argument
234 __list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
260 list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
274 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
293 list_splice(const struct list_head *list, struct list_head *head) argument
305 list_splice_tail(struct list_head *list, struct list_head *head) argument
319 list_splice_init(struct list_head *list, struct list_head *head) argument
336 list_splice_tail_init(struct list_head *list, struct list_head *head) argument
[all...]
H A Ddmi.h4 #include <linux/list.h>
80 struct list_head list; member in struct:dmi_device
96 extern int dmi_check_system(const struct dmi_system_id *list);
97 const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list);
115 static inline int dmi_check_system(const struct dmi_system_id *list) { return 0; } argument
142 dmi_first_match(const struct dmi_system_id *list) { return NULL; } argument
H A Drculist.h7 * RCU-protected list version
9 #include <linux/list.h>
15 * and compares it to the address of the list head, but neither dereferences
23 * @list: list to be initialized
26 * cleanup tasks, when readers have no access to the list being initialized.
27 * However, if the list being initialized is visible to readers, you
30 static inline void INIT_LIST_HEAD_RCU(struct list_head *list) argument
32 ACCESS_ONCE(list->next) = list;
198 list_splice_init_rcu(struct list_head *list, struct list_head *head, void (*sync)(void)) argument
[all...]
H A Dmiscdevice.h4 #include <linux/list.h>
60 struct list_head list; member in struct:miscdevice
H A Dif_eql.h27 struct list_head list; member in struct:slave
H A Dshrinker.h59 struct list_head list; member in struct:shrinker
H A Dsmpboot.h13 * @list: List head for core management
35 struct list_head list; member in struct:smp_hotplug_thread
H A Dudp.h115 #define udp_portaddr_for_each_entry(__sk, node, list) \
116 hlist_nulls_for_each_entry(__sk, node, list, __sk_common.skc_portaddr_node)
118 #define udp_portaddr_for_each_entry_rcu(__sk, node, list) \
119 hlist_nulls_for_each_entry_rcu(__sk, node, list, __sk_common.skc_portaddr_node)
/include/linux/sunrpc/
H A Dtypes.h15 #include <linux/list.h>
/include/linux/usb/
H A Daudio.h27 struct list_head list; member in struct:usb_audio_control
36 struct list_head list; member in struct:usb_audio_control_selector
/include/linux/gpio/
H A Dmachine.h5 #include <linux/list.h>
34 struct list_head list; member in struct:gpiod_lookup_table
/include/media/
H A Dsh_mobile_csi2.h14 #include <linux/list.h>
H A Dv4l2-fh.h30 #include <linux/list.h>
37 struct list_head list; member in struct:v4l2_fh
62 * Add the fh to the list of file handles on a video_device. The file
73 * Remove file handle from the list of file handles. Must be called in
/include/net/netfilter/
H A Dxt_rateest.h12 struct hlist_node list; member in struct:xt_rateest
/include/net/netns/
H A Dnftables.h4 #include <linux/list.h>
H A Dx_tables.h4 #include <linux/list.h>
/include/uapi/linux/
H A Dtipc_config.h12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in the
290 * A TLV list descriptor simplifies processing of messages
296 __u32 tlv_space; /* # bytes from curr TLV to list end */
299 static inline void TLV_LIST_INIT(struct tlv_list_desc *list, argument
302 list->tlv_ptr = (struct tlv_desc *)data;
303 list->tlv_space = space;
306 static inline int TLV_LIST_EMPTY(struct tlv_list_desc *list) argument
308 return (list->tlv_space == 0);
311 static inline int TLV_LIST_CHECK(struct tlv_list_desc *list, __u1 argument
316 TLV_LIST_DATA(struct tlv_list_desc *list) argument
321 TLV_LIST_STEP(struct tlv_list_desc *list) argument
[all...]

Completed in 1273 milliseconds

1234567891011>>