Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e078de03 authored by David S. Miller's avatar David S. Miller
Browse files

virtio_net: Remove references to NETIF_F_UFO.



It is going away.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2082499a
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -2429,7 +2429,7 @@ static int virtnet_probe(struct virtio_device *vdev)
			dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
			dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;


		if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
		if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
			dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
			dev->hw_features |= NETIF_F_TSO
				| NETIF_F_TSO_ECN | NETIF_F_TSO6;
				| NETIF_F_TSO_ECN | NETIF_F_TSO6;
		}
		}
		/* Individual feature bits: what can host handle? */
		/* Individual feature bits: what can host handle? */
@@ -2439,13 +2439,11 @@ static int virtnet_probe(struct virtio_device *vdev)
			dev->hw_features |= NETIF_F_TSO6;
			dev->hw_features |= NETIF_F_TSO6;
		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
			dev->hw_features |= NETIF_F_TSO_ECN;
			dev->hw_features |= NETIF_F_TSO_ECN;
		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
			dev->hw_features |= NETIF_F_UFO;


		dev->features |= NETIF_F_GSO_ROBUST;
		dev->features |= NETIF_F_GSO_ROBUST;


		if (gso)
		if (gso)
			dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
			dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
		/* (!csum && gso) case will be fixed by register_netdev() */
		/* (!csum && gso) case will be fixed by register_netdev() */
	}
	}
	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))