diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2008-03-31 18:33:39 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-01 17:14:11 -0400 |
commit | 966a54282257ce1c43a5410dab2f2778a6f4dcf9 (patch) | |
tree | 168c6a64bf84e0ef379e4a7e48ecc71826ebe80d /net/mac80211 | |
parent | cb585bccfedab0c228344ffa258950c417dea6b5 (diff) |
mac80211: use recent multicast table for all mesh multicast frames
...not only broadcast.
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-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 d9c6ed5be4fc..0ac6db5c09ea 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -433,7 +433,7 @@ ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx) | |||
433 | } | 433 | } |
434 | 434 | ||
435 | } else if ((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA && | 435 | } else if ((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA && |
436 | is_broadcast_ether_addr(hdr->addr1) && | 436 | is_multicast_ether_addr(hdr->addr1) && |
437 | mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->dev)) | 437 | mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->dev)) |
438 | return RX_DROP_MONITOR; | 438 | return RX_DROP_MONITOR; |
439 | #undef msh_h_get | 439 | #undef msh_h_get |