diff options
author | Javier Cardona <javier@cozybit.com> | 2012-10-24 12:43:31 -0700 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-10-25 13:52:20 +0200 |
commit | 2ac64cd17f9af6d6adaa921bd9846a3c9bb9235c (patch) | |
tree | e894fcd7bfb9dee8e1d242ecd79f082090510ce3 /net | |
parent | 555cb715be8ef98b8ec362b23dfc254d432a35b1 (diff) | |
download | linux-2ac64cd17f9af6d6adaa921bd9846a3c9bb9235c.tar.bz2 |
mac80211: Don't drop frames received with mesh ttl == 1
Prior this fix, those frames were not received, nor forwarded. Fix
this to receive and not forward.
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 1222127de9be..f73e0dda0d86 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -1944,7 +1944,7 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx) if (!--mesh_hdr->ttl) { IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl); - return RX_DROP_MONITOR; + goto out; } if (!ifmsh->mshcfg.dot11MeshForwarding) |