MCPcopy Create free account
hub / github.com/F-Stack/f-stack / INIT_LIST_HEAD

Function INIT_LIST_HEAD

freebsd/contrib/vchiq/interface/compat/list.h:66–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64#define LIST_HEAD_INIT(name) { .prev = &(name), .next = &(name) }
65
66static inline void
67INIT_LIST_HEAD(struct list_head *head)
68{
69 head->prev = head;
70 head->next = head;
71}
72
73static inline struct list_head *
74list_first(const struct list_head *head)

Callers 15

tsd_hash_addFunction · 0.85
tsd_hash_add_keyFunction · 0.85
tsd_hash_add_pidFunction · 0.85
kstat_create_moduleFunction · 0.85
kstat_proc_entry_initFunction · 0.85
spl_kstat_initFunction · 0.85
spl_kmem_alloc_trackFunction · 0.85
spl_kmem_init_trackingFunction · 0.85
spl_slab_allocFunction · 0.85
spl_kmem_cache_createFunction · 0.85
spl_kmem_cache_initFunction · 0.85
taskq_init_entFunction · 0.85

Calls

no outgoing calls

Tested by 1

initFunction · 0.68