Searched refs:newtbl (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/mac80211/
H A Dmesh_pathtbl.c70 struct mesh_table *newtbl; local
79 newtbl = mesh_table_alloc(tbl->size_order + 1);
80 if (!newtbl)
83 newtbl->free_node = tbl->free_node;
84 newtbl->mean_chain_len = tbl->mean_chain_len;
85 newtbl->copy_node = tbl->copy_node;
86 atomic_set(&newtbl->entries, atomic_read(&tbl->entries));
91 if (tbl->copy_node(p, newtbl) < 0)
94 return newtbl;
97 for (i = 0; i <= newtbl
335 struct mesh_table *oldtbl, *newtbl; local
353 struct mesh_table *oldtbl, *newtbl; local
674 mesh_path_node_copy(struct hlist_node *p, struct mesh_table *newtbl) argument
[all...]
H A Dmesh.c302 struct mesh_table *newtbl; local
304 newtbl = kmalloc(sizeof(struct mesh_table), GFP_KERNEL);
305 if (!newtbl)
308 newtbl->hash_buckets = kzalloc(sizeof(struct hlist_head) *
311 if (!newtbl->hash_buckets) {
312 kfree(newtbl);
316 newtbl->hashwlock = kmalloc(sizeof(spinlock_t) *
318 if (!newtbl->hashwlock) {
319 kfree(newtbl->hash_buckets);
320 kfree(newtbl);
[all...]
H A Dmesh.h132 int (*copy_node) (struct hlist_node *p, struct mesh_table *newtbl);

Completed in 65 milliseconds