aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/skb_dma_map.c2
-rw-r--r--net/mac80211/rx.c5
-rw-r--r--net/netfilter/nf_tproxy_core.c1
-rw-r--r--net/wireless/core.c1
4 files changed, 5 insertions, 4 deletions
diff --git a/net/core/skb_dma_map.c b/net/core/skb_dma_map.c
index 1f49afcd8e86..86234923a3b7 100644
--- a/net/core/skb_dma_map.c
+++ b/net/core/skb_dma_map.c
@@ -35,7 +35,7 @@ int skb_dma_map(struct device *dev, struct sk_buff *skb,
35 return 0; 35 return 0;
36 36
37unwind: 37unwind:
38 while (i-- >= 0) { 38 while (--i >= 0) {
39 skb_frag_t *fp = &sp->frags[i]; 39 skb_frag_t *fp = &sp->frags[i];
40 40
41 dma_unmap_page(dev, sp->dma_maps[i + 1], 41 dma_unmap_page(dev, sp->dma_maps[i + 1],
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 77e7b014872b..cf6b121e1bbf 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -1379,6 +1379,7 @@ ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
1379 return RX_QUEUED; 1379 return RX_QUEUED;
1380} 1380}
1381 1381
1382#ifdef CONFIG_MAC80211_MESH
1382static ieee80211_rx_result 1383static ieee80211_rx_result
1383ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx) 1384ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1384{ 1385{
@@ -1453,7 +1454,7 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1453 else 1454 else
1454 return RX_DROP_MONITOR; 1455 return RX_DROP_MONITOR;
1455} 1456}
1456 1457#endif
1457 1458
1458static ieee80211_rx_result debug_noinline 1459static ieee80211_rx_result debug_noinline
1459ieee80211_rx_h_data(struct ieee80211_rx_data *rx) 1460ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
@@ -1780,8 +1781,10 @@ static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
1780 /* must be after MMIC verify so header is counted in MPDU mic */ 1781 /* must be after MMIC verify so header is counted in MPDU mic */
1781 CALL_RXH(ieee80211_rx_h_remove_qos_control) 1782 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1782 CALL_RXH(ieee80211_rx_h_amsdu) 1783 CALL_RXH(ieee80211_rx_h_amsdu)
1784#ifdef CONFIG_MAC80211_MESH
1783 if (ieee80211_vif_is_mesh(&sdata->vif)) 1785 if (ieee80211_vif_is_mesh(&sdata->vif))
1784 CALL_RXH(ieee80211_rx_h_mesh_fwding); 1786 CALL_RXH(ieee80211_rx_h_mesh_fwding);
1787#endif
1785 CALL_RXH(ieee80211_rx_h_data) 1788 CALL_RXH(ieee80211_rx_h_data)
1786 CALL_RXH(ieee80211_rx_h_ctrl) 1789 CALL_RXH(ieee80211_rx_h_ctrl)
1787 CALL_RXH(ieee80211_rx_h_action) 1790 CALL_RXH(ieee80211_rx_h_action)
diff --git a/net/netfilter/nf_tproxy_core.c b/net/netfilter/nf_tproxy_core.c
index fe34f4bf74cc..cdc97f3105a3 100644
--- a/net/netfilter/nf_tproxy_core.c
+++ b/net/netfilter/nf_tproxy_core.c
@@ -10,7 +10,6 @@
10 * 10 *
11 */ 11 */
12 12
13#include <linux/version.h>
14#include <linux/module.h> 13#include <linux/module.h>
15 14
16#include <linux/net.h> 15#include <linux/net.h>
diff --git a/net/wireless/core.c b/net/wireless/core.c
index 5cadbeb76a14..24fdd4cd22cb 100644
--- a/net/wireless/core.c
+++ b/net/wireless/core.c
@@ -13,7 +13,6 @@
13#include <linux/debugfs.h> 13#include <linux/debugfs.h>
14#include <linux/notifier.h> 14#include <linux/notifier.h>
15#include <linux/device.h> 15#include <linux/device.h>
16#include <linux/list.h>
17#include <net/genetlink.h> 16#include <net/genetlink.h>
18#include <net/cfg80211.h> 17#include <net/cfg80211.h>
19#include <net/wireless.h> 18#include <net/wireless.h>