Home
last modified time | relevance | path

Searched refs:c_list (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/meta/classes-recipe/
H A Dcargo-update-recipe-crates.bbclass33 c_list = '# from %s' % os.path.relpath(f, '${CARGO_LOCK_SRC_DIR}')
34 c_list += '\nSRC_URI += " \\\'
48 c_list += '\n crate://crates.io/%s/%s \\\' % (c['name'], c['version'])
52 c_list += '\n"\n'
53 c_list += cksum_list
54 c_list += '\n'
55 return c_list
/openbmc/linux/fs/
H A Dmbcache.c37 struct list_head c_list; member
118 list_add_tail(&entry->e_list, &cache->c_list); in mb_cache_entry_create()
310 while (nr_to_scan-- && !list_empty(&cache->c_list)) { in mb_cache_shrink()
311 entry = list_first_entry(&cache->c_list, in mb_cache_shrink()
317 list_move_tail(&entry->e_list, &cache->c_list); in mb_cache_shrink()
368 INIT_LIST_HEAD(&cache->c_list); in mb_cache_create()
415 list_for_each_entry_safe(entry, next, &cache->c_list, e_list) { in mb_cache_destroy()
/openbmc/linux/net/netfilter/ipvs/
H A Dip_vs_conn.c179 hlist_add_head_rcu(&cp->c_list, &ip_vs_conn_tab[hash]); in ip_vs_conn_hash()
210 hlist_del_rcu(&cp->c_list); in ip_vs_conn_unhash()
242 hlist_del_rcu(&cp->c_list); in ip_vs_conn_unlink()
271 hlist_for_each_entry_rcu(cp, &ip_vs_conn_tab[hash], c_list) { in __ip_vs_conn_in_get()
357 hlist_for_each_entry_rcu(cp, &ip_vs_conn_tab[hash], c_list) { in ip_vs_ct_in_get()
414 hlist_for_each_entry_rcu(cp, &ip_vs_conn_tab[hash], c_list) { in ip_vs_conn_out_get()
955 INIT_HLIST_NODE(&cp->c_list); in ip_vs_conn_new()
1058 hlist_for_each_entry_rcu(cp, &ip_vs_conn_tab[idx], c_list) { in ip_vs_conn_array()
1096 e = rcu_dereference(hlist_next_rcu(&cp->c_list)); in ip_vs_conn_seq_next()
1098 return hlist_entry(e, struct ip_vs_conn, c_list); in ip_vs_conn_seq_next()
[all …]
/openbmc/linux/drivers/infiniband/ulp/srpt/
H A Dib_srpt.c313 static void srpt_set_ioc(u8 *c_list, u32 slot, u8 value) in srpt_set_ioc() argument
320 tmp = c_list[id] & 0xf; in srpt_set_ioc()
321 c_list[id] = (value << 4) | tmp; in srpt_set_ioc()
323 tmp = c_list[id] & 0xf0; in srpt_set_ioc()
324 c_list[id] = (value & 0xf) | tmp; in srpt_set_ioc()
/openbmc/linux/include/net/
H A Dip_vs.h564 struct hlist_node c_list; /* hashed list heads */ member