diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2008-02-29 15:04:13 -0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-06 16:40:51 -0500 |
commit | cfa22c716f65b4d286a68aeacee4a7361a4035e6 (patch) | |
tree | 52c9c31b7f77b06daa504e283aa73da41be1e6aa /net/mac80211/cfg.c | |
parent | 89a1ad6990d884796c5280d13aa58d216dffa08d (diff) | |
download | linux-3.10-cfa22c716f65b4d286a68aeacee4a7361a4035e6.tar.gz linux-3.10-cfa22c716f65b4d286a68aeacee4a7361a4035e6.tar.bz2 linux-3.10-cfa22c716f65b4d286a68aeacee4a7361a4035e6.zip |
mac80211: always force mesh_path deletions
Postponing the deletion is not really useful anymore.
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 69238fa67bf..6b183a3526b 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -785,7 +785,7 @@ static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev, u8 *dst) { if (dst) - return mesh_path_del(dst, dev, false); + return mesh_path_del(dst, dev); mesh_path_flush(dev); return 0; |