From: Johannes Berg Date: Wed, 24 Oct 2012 12:22:37 +0000 (+0200) Subject: mac80211: use non-atomic bitmap operation for local variable X-Git-Tag: v3.8-rc1~139^2~17^2^2~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5df45690e78fd6355b3eb17ba15a1659e608db5d;p=profile%2Fivi%2Fkernel-x86-ivi.git mac80211: use non-atomic bitmap operation for local variable For a local variable there's no need to use the atomic set_bit() operation, use __set_bit() instead. Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 51a4a25..ea8a674 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -821,7 +821,7 @@ u32 ieee802_11_parse_elems_crc(u8 *start, size_t len, if (elem_parse_failed) elems->parse_error = true; else - set_bit(id, seen_elems); + __set_bit(id, seen_elems); left -= elen; pos += elen;