aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 43289127b458..afd80eff2725 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1016,7 +1016,8 @@ static inline int netif_needs_gso(struct net_device *dev, struct sk_buff *skb)
1016} 1016}
1017 1017
1018/* On bonding slaves other than the currently active slave, suppress 1018/* On bonding slaves other than the currently active slave, suppress
1019 * duplicates except for 802.3ad ETH_P_SLOW and alb non-mcast/bcast. 1019 * duplicates except for 802.3ad ETH_P_SLOW, alb non-mcast/bcast, and
1020 * ARP on active-backup slaves with arp_validate enabled.
1020 */ 1021 */
1021static inline int skb_bond_should_drop(struct sk_buff *skb) 1022static inline int skb_bond_should_drop(struct sk_buff *skb)
1022{ 1023{
@@ -1025,6 +1026,10 @@ static inline int skb_bond_should_drop(struct sk_buff *skb)
1025 1026
1026 if (master && 1027 if (master &&
1027 (dev->priv_flags & IFF_SLAVE_INACTIVE)) { 1028 (dev->priv_flags & IFF_SLAVE_INACTIVE)) {
1029 if ((dev->priv_flags & IFF_SLAVE_NEEDARP) &&
1030 skb->protocol == __constant_htons(ETH_P_ARP))
1031 return 0;
1032
1028 if (master->priv_flags & IFF_MASTER_ALB) { 1033 if (master->priv_flags & IFF_MASTER_ALB) {
1029 if (skb->pkt_type != PACKET_BROADCAST && 1034 if (skb->pkt_type != PACKET_BROADCAST &&
1030 skb->pkt_type != PACKET_MULTICAST) 1035 skb->pkt_type != PACKET_MULTICAST)