Lines Matching defs:hti
92 struct rhashtable_iter *hti = (void *)cb->args[2];
109 if (!hti) {
110 hti = kmalloc(sizeof(*hti), GFP_KERNEL);
111 if (!hti)
114 cb->args[2] = (long)hti;
118 rhashtable_walk_enter(&tbl->hash, hti);
120 rhashtable_walk_start(hti);
122 while ((nlsk = rhashtable_walk_next(hti))) {
147 rhashtable_walk_stop(hti);
152 rhashtable_walk_exit(hti);
215 struct rhashtable_iter *hti = (void *)cb->args[2];
218 rhashtable_walk_exit(hti);
220 kfree(hti);