From: David S. Miller Date: Mon, 3 Jul 2017 13:36:07 +0000 (-0700) Subject: dummy: Remove references to NETIF_F_UFO. X-Git-Tag: v4.14-rc1~130^2~496^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2082499a95ad31b88466e50f4c61513e3873ba9e;p=platform%2Fkernel%2Flinux-rpi.git dummy: Remove references to NETIF_F_UFO. It is going away. Signed-off-by: David S. Miller --- diff --git a/drivers/net/dummy.c b/drivers/net/dummy.c index d0c165d..d0a1f9c 100644 --- a/drivers/net/dummy.c +++ b/drivers/net/dummy.c @@ -345,7 +345,7 @@ static void dummy_setup(struct net_device *dev) dev->flags &= ~IFF_MULTICAST; dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE; dev->features |= NETIF_F_SG | NETIF_F_FRAGLIST; - dev->features |= NETIF_F_ALL_TSO | NETIF_F_UFO; + dev->features |= NETIF_F_ALL_TSO; dev->features |= NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_LLTX; dev->features |= NETIF_F_GSO_ENCAP_ALL; dev->hw_features |= dev->features;