|
@@ -3873,9 +3873,9 @@ static inline netdev_features_t netdev_intersect_features(netdev_features_t f1,
|
|
|
{
|
|
|
if ((f1 ^ f2) & NETIF_F_HW_CSUM) {
|
|
|
if (f1 & NETIF_F_HW_CSUM)
|
|
|
- f1 |= (NETIF_F_IP_CSUM|NETIF_F_IP_CSUM);
|
|
|
+ f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
|
|
|
else
|
|
|
- f2 |= (NETIF_F_IP_CSUM|NETIF_F_IP_CSUM);
|
|
|
+ f2 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
|
|
|
}
|
|
|
|
|
|
return f1 & f2;
|