Home
last modified time | relevance | path

Searched refs:ctbl (Results 1 – 2 of 2) sorted by relevance

/drivers/net/ethernet/chelsio/cxgb4/
Dclip_tbl.c37 static unsigned int clip_addr_hash(struct clip_tbl *ctbl, const u32 *addr, in clip_addr_hash() argument
40 return v6 ? ipv6_clip_hash(ctbl, addr) : in clip_addr_hash()
41 ipv4_clip_hash(ctbl, addr); in clip_addr_hash()
77 struct clip_tbl *ctbl = adap->clipt; in cxgb4_clip_get() local
83 if (!ctbl) in cxgb4_clip_get()
86 hash = clip_addr_hash(ctbl, addr, v6); in cxgb4_clip_get()
88 read_lock_bh(&ctbl->lock); in cxgb4_clip_get()
89 list_for_each_entry(cte, &ctbl->hash_list[hash], list) { in cxgb4_clip_get()
98 read_unlock_bh(&ctbl->lock); in cxgb4_clip_get()
103 read_unlock_bh(&ctbl->lock); in cxgb4_clip_get()
[all …]
/drivers/tty/vt/
Dconmakehash.c78 FILE *ctbl; in main() local
91 ctbl = stdin; in main()
96 ctbl = fopen(tblname = argv[1], "r"); in main()
97 if ( !ctbl ) in main()
114 while ( fgets(buffer, sizeof(buffer), ctbl) != NULL ) in main()
237 fclose(ctbl); in main()