diff options
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 375cecc837a1..3466e1f7fd12 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c | |||
@@ -1683,21 +1683,25 @@ netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb, | |||
1683 | /* packet from other interface */ | 1683 | /* packet from other interface */ |
1684 | struct mesh_path *mppath; | 1684 | struct mesh_path *mppath; |
1685 | int is_mesh_mcast = 1; | 1685 | int is_mesh_mcast = 1; |
1686 | char *mesh_da; | 1686 | const u8 *mesh_da; |
1687 | 1687 | ||
1688 | rcu_read_lock(); | 1688 | rcu_read_lock(); |
1689 | if (is_multicast_ether_addr(skb->data)) | 1689 | if (is_multicast_ether_addr(skb->data)) |
1690 | /* DA TA mSA AE:SA */ | 1690 | /* DA TA mSA AE:SA */ |
1691 | mesh_da = skb->data; | 1691 | mesh_da = skb->data; |
1692 | else { | 1692 | else { |
1693 | static const u8 bcast[ETH_ALEN] = | ||
1694 | { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; | ||
1695 | |||
1693 | mppath = mpp_path_lookup(skb->data, sdata); | 1696 | mppath = mpp_path_lookup(skb->data, sdata); |
1694 | if (mppath) { | 1697 | if (mppath) { |
1695 | /* RA TA mDA mSA AE:DA SA */ | 1698 | /* RA TA mDA mSA AE:DA SA */ |
1696 | mesh_da = mppath->mpp; | 1699 | mesh_da = mppath->mpp; |
1697 | is_mesh_mcast = 0; | 1700 | is_mesh_mcast = 0; |
1698 | } else | 1701 | } else { |
1699 | /* DA TA mSA AE:SA */ | 1702 | /* DA TA mSA AE:SA */ |
1700 | mesh_da = dev->broadcast; | 1703 | mesh_da = bcast; |
1704 | } | ||
1701 | } | 1705 | } |
1702 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, | 1706 | hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc, |
1703 | mesh_da, dev->dev_addr); | 1707 | mesh_da, dev->dev_addr); |