mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 12:36:10 +07:00
net: loopback: convert to using IFF_NO_QUEUE
Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ed961ac233
commit
e65db2b724
@ -165,10 +165,9 @@ static void loopback_setup(struct net_device *dev)
|
|||||||
dev->mtu = 64 * 1024;
|
dev->mtu = 64 * 1024;
|
||||||
dev->hard_header_len = ETH_HLEN; /* 14 */
|
dev->hard_header_len = ETH_HLEN; /* 14 */
|
||||||
dev->addr_len = ETH_ALEN; /* 6 */
|
dev->addr_len = ETH_ALEN; /* 6 */
|
||||||
dev->tx_queue_len = 0;
|
|
||||||
dev->type = ARPHRD_LOOPBACK; /* 0x0001*/
|
dev->type = ARPHRD_LOOPBACK; /* 0x0001*/
|
||||||
dev->flags = IFF_LOOPBACK;
|
dev->flags = IFF_LOOPBACK;
|
||||||
dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
|
dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
|
||||||
netif_keep_dst(dev);
|
netif_keep_dst(dev);
|
||||||
dev->hw_features = NETIF_F_ALL_TSO | NETIF_F_UFO;
|
dev->hw_features = NETIF_F_ALL_TSO | NETIF_F_UFO;
|
||||||
dev->features = NETIF_F_SG | NETIF_F_FRAGLIST
|
dev->features = NETIF_F_SG | NETIF_F_FRAGLIST
|
||||||
|
Loading…
Reference in New Issue
Block a user