summaryrefslogtreecommitdiffstats
path: root/net/mac80211/util.c
diff options
context:
space:
mode:
authorJohannes Berg2017-09-08 11:54:46 +0200
committerJohannes Berg2017-09-21 11:42:01 +0200
commit4c121fd690d9c465e4cb09b7859adfdd6a0aee1d (patch)
treea5a2bf2efa32f279f3792212d6ebe70b7158c00e /net/mac80211/util.c
parentmac80211: Simplify locking in ieee80211_sta_tear_down_BA_sessions() (diff)
downloadkernel-qcow2-linux-4c121fd690d9c465e4cb09b7859adfdd6a0aee1d.tar.gz
kernel-qcow2-linux-4c121fd690d9c465e4cb09b7859adfdd6a0aee1d.tar.xz
kernel-qcow2-linux-4c121fd690d9c465e4cb09b7859adfdd6a0aee1d.zip
mac80211: use offsetofend()
This was created using the following spatch: @find@ type S; expression M, M2; position p; @@ offsetof(S, M) + sizeof(M2)@p @script:python@ m << find.M; m2 << find.M2; @@ if not m2.endswith('-> ' + m): cocci.include_match(False) @change@ type find.S; expression find.M, find.M2; position find.p; @@ -offsetof(S, M) + sizeof(M2)@p +offsetofend(S, M) Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r--net/mac80211/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index bfecc3e86318..d57e5f6bd8b6 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -2977,8 +2977,8 @@ int ieee80211_send_action_csa(struct ieee80211_sub_if_data *sdata,
struct ieee80211_mgmt *mgmt;
struct ieee80211_local *local = sdata->local;
int freq;
- int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.chan_switch) +
- sizeof(mgmt->u.action.u.chan_switch);
+ int hdr_len = offsetofend(struct ieee80211_mgmt,
+ u.action.u.chan_switch);
u8 *pos;
if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&