diff options
author | David S. Miller <davem@davemloft.net> | 2018-08-07 01:49:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-10 13:06:53 -0400 |
commit | 7957a9dea8bf58b02e6ebf28f91c4bce74b5c91c (patch) | |
tree | 5c908bd6fd2d868f01fd14cad8b640ca07c771b7 | |
parent | 8b69bd7d8a8927d537f134c37bcca6cbfa58e1b2 (diff) |
mac80211: Don't access sk_queue_head->next directly.
Use __skb_peek() instead.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/mac80211/rx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index c6bfd4019d44..a0ca27aeb732 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -2077,6 +2077,7 @@ ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata, | |||
2077 | idx = sdata->fragment_next; | 2077 | idx = sdata->fragment_next; |
2078 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) { | 2078 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) { |
2079 | struct ieee80211_hdr *f_hdr; | 2079 | struct ieee80211_hdr *f_hdr; |
2080 | struct sk_buff *f_skb; | ||
2080 | 2081 | ||
2081 | idx--; | 2082 | idx--; |
2082 | if (idx < 0) | 2083 | if (idx < 0) |
@@ -2088,7 +2089,8 @@ ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata, | |||
2088 | entry->last_frag + 1 != frag) | 2089 | entry->last_frag + 1 != frag) |
2089 | continue; | 2090 | continue; |
2090 | 2091 | ||
2091 | f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data; | 2092 | f_skb = __skb_peek(&entry->skb_list); |
2093 | f_hdr = (struct ieee80211_hdr *) f_skb->data; | ||
2092 | 2094 | ||
2093 | /* | 2095 | /* |
2094 | * Check ftype and addresses are equal, else check next fragment | 2096 | * Check ftype and addresses are equal, else check next fragment |