diff options
author | Javier Cardona <javier@cozybit.com> | 2009-12-09 18:43:00 -0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-12-10 16:09:52 -0500 |
commit | 5d618cb81aeea19879975cd1f9a1e707694dfd7c (patch) | |
tree | 1998238244c80531e09526eba11b9d3530e46622 /net/mac80211 | |
parent | 0c3cee72a403e3b4992a5478c9c33d668c246c22 (diff) | |
download | op-kernel-dev-5d618cb81aeea19879975cd1f9a1e707694dfd7c.zip op-kernel-dev-5d618cb81aeea19879975cd1f9a1e707694dfd7c.tar.gz |
mac80211: Fixed bug in mesh portal paths
Paths to mesh portals were being timed out immediately after each use in
intermediate forwarding nodes. mppath->exp_time is set to the expiration time
so assigning it to jiffies was marking the path as expired.
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: Andrey Yurovsky <andrey@cozybit.com>
Cc: stable@kernel.org
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/rx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index f237df4..9f2807a 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -1712,7 +1712,6 @@ ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx) mpp_path_add(proxied_addr, mpp_addr, sdata); } else { spin_lock_bh(&mppath->state_lock); - mppath->exp_time = jiffies; if (compare_ether_addr(mppath->mpp, mpp_addr) != 0) memcpy(mppath->mpp, mpp_addr, ETH_ALEN); spin_unlock_bh(&mppath->state_lock); |