diff options
author | Andreea-Cristina Bernat <bernat.ada@gmail.com> | 2014-08-17 16:18:02 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-08-27 12:14:10 +0200 |
commit | 2688eba9d5ba2a35ac8e5efa2e228f105f0a379f (patch) | |
tree | 3b3db587d368a1b17594c94e14f52b164196f16c /Kbuild | |
parent | ad053a962f1e83597ec8388716619c7633a00ef1 (diff) |
mac80211: Replace rcu_dereference() with rcu_access_pointer()
The "rcu_dereference()" calls are used directly in conditions.
Since their return values are never dereferenced it is recommended to
use "rcu_access_pointer()" instead of "rcu_dereference()".
Therefore, this patch makes the replacements.
The following Coccinelle semantic patch was used:
@@
@@
(
if(
(<+...
- rcu_dereference
+ rcu_access_pointer
(...)
...+>)) {...}
|
while(
(<+...
- rcu_dereference
+ rcu_access_pointer
(...)
...+>)) {...}
)
Signed-off-by: Andreea-Cristina Bernat <bernat.ada@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'Kbuild')
0 files changed, 0 insertions, 0 deletions