[Cluster-devel] [PATCH 02/10] gfs2: Replace rhashtable_walk_init with rhashtable_walk_enter
Bob Peterson <[email protected]>
| Newsgroups | com.redhat.cluster-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Andreas Gruenbacher <[email protected]> Function rhashtable_walk_init is deprecated. Signed-off-by: Andreas Gruenbacher <[email protected]> Signed-off-by: Bob Peterson <[email protected]> --- fs/gfs2/glock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 694167b..b2674dd 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -1934,7 +1934,7 @@ static int gfs2_glocks_open(struct inode *inode, struct file *file) if (seq->buf) seq->size = GFS2_SEQ_GOODSIZE; gi->gl = NULL; - ret = rhashtable_walk_init(&gl_hash_table, &gi->hti, GFP_KERNEL); + rhashtable_walk_enter(&gl_hash_table, &gi->hti); } return ret; } -- 2.9.3