Lines Matching refs:cur_vtbl
64 static zft_volinfo *cur_vtbl; variable
88 cur_vtbl = NULL; in zft_free_vtbl()
115 cur_vtbl = zft_eom_vtbl; in zft_init_vtbl()
724 TRACE_EXIT (cur_vtbl = zft_first_vtbl); in zft_find_volume()
726 while (seg_pos > cur_vtbl->end_seg) { in zft_find_volume()
727 cur_vtbl = list_entry(cur_vtbl->node.next, zft_volinfo, node); in zft_find_volume()
728 TRACE(ft_t_noise, "%d - %d", cur_vtbl->start_seg, cur_vtbl->end_seg); in zft_find_volume()
730 while (seg_pos < cur_vtbl->start_seg) { in zft_find_volume()
731 cur_vtbl = list_entry(cur_vtbl->node.prev, zft_volinfo, node); in zft_find_volume()
732 TRACE(ft_t_noise, "%d - %d", cur_vtbl->start_seg, cur_vtbl->end_seg); in zft_find_volume()
734 if (seg_pos > cur_vtbl->end_seg || seg_pos < cur_vtbl->start_seg) { in zft_find_volume()
737 DUMP_VOLINFO(ft_t_noise, "", cur_vtbl); in zft_find_volume()
738 TRACE_EXIT cur_vtbl; in zft_find_volume() local