projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c474f7
)
GFS2: Don't use _raw version of RCU dereference
author
Steven Whitehouse
<
[email protected]
>
Tue, 15 Mar 2011 08:32:14 +0000
(08:32 +0000)
committer
Steven Whitehouse
<
[email protected]
>
Tue, 15 Mar 2011 08:58:17 +0000
(08:58 +0000)
As per RCU glock patch review comments, don't use the _raw
version of this function here.
Signed-off-by: Steven Whitehouse <
[email protected]
>
Cc: Paul E. McKenney <
[email protected]
>
Reviewed-by: Paul E. McKenney <
[email protected]
>
fs/gfs2/glock.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/glock.c
b/fs/gfs2/glock.c
index 8648409be451e7d1f7a8f3d8458c27fc3f444d8f..85044b41824983dd58f445b6a263372a8f6bcc63 100644
(file)
--- a/
fs/gfs2/glock.c
+++ b/
fs/gfs2/glock.c
@@
-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)
{
- 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);
}