Lines Matching refs:tmp
138 struct hashtab_node *cur, *tmp, *tail; in hashtab_duplicate() local
152 tmp = kmem_cache_zalloc(hashtab_node_cachep, in hashtab_duplicate()
154 if (!tmp) in hashtab_duplicate()
156 rc = copy(tmp, cur, args); in hashtab_duplicate()
158 kmem_cache_free(hashtab_node_cachep, tmp); in hashtab_duplicate()
161 tmp->next = NULL; in hashtab_duplicate()
163 new->htable[i] = tmp; in hashtab_duplicate()
165 tail->next = tmp; in hashtab_duplicate()
166 tail = tmp; in hashtab_duplicate()
175 for (cur = new->htable[i]; cur; cur = tmp) { in hashtab_duplicate()
176 tmp = cur->next; in hashtab_duplicate()