Commit 7e32d026 authored by Steven Whitehouse's avatar Steven Whitehouse

GFS2: Don't use _raw version of RCU dereference

As per RCU glock patch review comments, don't use the _raw
version of this function here.
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent 6c474f7b
...@@ -1723,7 +1723,7 @@ static inline struct gfs2_glock *glock_hash_chain(unsigned hash) ...@@ -1723,7 +1723,7 @@ static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl) static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
{ {
return hlist_bl_entry(rcu_dereference_raw(gl->gl_list.next), return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
struct gfs2_glock, gl_list); struct gfs2_glock, gl_list);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment