diff options
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 75f02d8c6ed3..c0c2b46face1 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1012,6 +1012,30 @@ static inline int netif_needs_gso(struct net_device *dev, struct sk_buff *skb) | |||
1012 | unlikely(skb->ip_summed != CHECKSUM_HW)); | 1012 | unlikely(skb->ip_summed != CHECKSUM_HW)); |
1013 | } | 1013 | } |
1014 | 1014 | ||
1015 | /* On bonding slaves other than the currently active slave, suppress | ||
1016 | * duplicates except for 802.3ad ETH_P_SLOW and alb non-mcast/bcast. | ||
1017 | */ | ||
1018 | static inline int skb_bond_should_drop(struct sk_buff *skb) | ||
1019 | { | ||
1020 | struct net_device *dev = skb->dev; | ||
1021 | struct net_device *master = dev->master; | ||
1022 | |||
1023 | if (master && | ||
1024 | (dev->priv_flags & IFF_SLAVE_INACTIVE)) { | ||
1025 | if (master->priv_flags & IFF_MASTER_ALB) { | ||
1026 | if (skb->pkt_type != PACKET_BROADCAST && | ||
1027 | skb->pkt_type != PACKET_MULTICAST) | ||
1028 | return 0; | ||
1029 | } | ||
1030 | if (master->priv_flags & IFF_MASTER_8023AD && | ||
1031 | skb->protocol == __constant_htons(ETH_P_SLOW)) | ||
1032 | return 0; | ||
1033 | |||
1034 | return 1; | ||
1035 | } | ||
1036 | return 0; | ||
1037 | } | ||
1038 | |||
1015 | #endif /* __KERNEL__ */ | 1039 | #endif /* __KERNEL__ */ |
1016 | 1040 | ||
1017 | #endif /* _LINUX_DEV_H */ | 1041 | #endif /* _LINUX_DEV_H */ |