diff options
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 1da57c8e849a..e0c944fb6fc9 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -10,6 +10,7 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/jiffies.h> | 12 | #include <linux/jiffies.h> |
13 | #include <linux/slab.h> | ||
13 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
14 | #include <linux/skbuff.h> | 15 | #include <linux/skbuff.h> |
15 | #include <linux/netdevice.h> | 16 | #include <linux/netdevice.h> |
@@ -1964,6 +1965,11 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx) | |||
1964 | goto handled; | 1965 | goto handled; |
1965 | } | 1966 | } |
1966 | break; | 1967 | break; |
1968 | case MESH_PLINK_CATEGORY: | ||
1969 | case MESH_PATH_SEL_CATEGORY: | ||
1970 | if (ieee80211_vif_is_mesh(&sdata->vif)) | ||
1971 | return ieee80211_mesh_rx_mgmt(sdata, rx->skb); | ||
1972 | break; | ||
1967 | } | 1973 | } |
1968 | 1974 | ||
1969 | /* | 1975 | /* |