Lines Matching refs:gi

2542 static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n)  in gfs2_glock_iter_next()  argument
2544 struct gfs2_glock *gl = gi->gl; in gfs2_glock_iter_next()
2552 gl = rhashtable_walk_next(&gi->hti); in gfs2_glock_iter_next()
2561 if (gl->gl_name.ln_sbd != gi->sdp) in gfs2_glock_iter_next()
2573 gi->gl = gl; in gfs2_glock_iter_next()
2579 struct gfs2_glock_iter *gi = seq->private; in gfs2_glock_seq_start() local
2586 if (*pos < gi->last_pos) { in gfs2_glock_seq_start()
2587 rhashtable_walk_exit(&gi->hti); in gfs2_glock_seq_start()
2588 rhashtable_walk_enter(&gl_hash_table, &gi->hti); in gfs2_glock_seq_start()
2591 n = *pos - gi->last_pos; in gfs2_glock_seq_start()
2594 rhashtable_walk_start(&gi->hti); in gfs2_glock_seq_start()
2596 gfs2_glock_iter_next(gi, n); in gfs2_glock_seq_start()
2597 gi->last_pos = *pos; in gfs2_glock_seq_start()
2598 return gi->gl; in gfs2_glock_seq_start()
2604 struct gfs2_glock_iter *gi = seq->private; in gfs2_glock_seq_next() local
2607 gi->last_pos = *pos; in gfs2_glock_seq_next()
2608 gfs2_glock_iter_next(gi, 1); in gfs2_glock_seq_next()
2609 return gi->gl; in gfs2_glock_seq_next()
2615 struct gfs2_glock_iter *gi = seq->private; in gfs2_glock_seq_stop() local
2617 rhashtable_walk_stop(&gi->hti); in gfs2_glock_seq_stop()
2677 struct gfs2_glock_iter *gi = seq->private; in __gfs2_glocks_open() local
2679 gi->sdp = inode->i_private; in __gfs2_glocks_open()
2687 gi->last_pos = -1; in __gfs2_glocks_open()
2688 gi->gl = NULL; in __gfs2_glocks_open()
2689 rhashtable_walk_enter(&gl_hash_table, &gi->hti); in __gfs2_glocks_open()
2702 struct gfs2_glock_iter *gi = seq->private; in gfs2_glocks_release() local
2704 if (gi->gl) in gfs2_glocks_release()
2705 gfs2_glock_put(gi->gl); in gfs2_glocks_release()
2706 rhashtable_walk_exit(&gi->hti); in gfs2_glocks_release()