Lines Matching defs:tmp
140 struct hashtab_node *cur, *tmp, *tail;
155 tmp = kmem_cache_zalloc(hashtab_node_cachep,
157 if (!tmp)
159 rc = copy(tmp, cur, args);
161 kmem_cache_free(hashtab_node_cachep, tmp);
164 tmp->next = NULL;
166 new->htable[i] = tmp;
168 tail->next = tmp;
169 tail = tmp;
178 for (cur = new->htable[i]; cur; cur = tmp) {
179 tmp = cur->next;