Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for-linus-4.14c-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fix from Juergen Gross:
"A fix for the Xen pv network drivers (frontend and backend) avoiding
the network connection to become unusable due to an illegal MTU"

* tag 'for-linus-4.14c-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen-netfront, xen-netback: Use correct minimum MTU values

+2 -2
+1 -1
drivers/net/xen-netback/interface.c
··· 486 486 487 487 dev->tx_queue_len = XENVIF_QUEUE_LENGTH; 488 488 489 - dev->min_mtu = 0; 489 + dev->min_mtu = ETH_MIN_MTU; 490 490 dev->max_mtu = ETH_MAX_MTU - VLAN_ETH_HLEN; 491 491 492 492 /*
+1 -1
drivers/net/xen-netfront.c
··· 1316 1316 netdev->features |= netdev->hw_features; 1317 1317 1318 1318 netdev->ethtool_ops = &xennet_ethtool_ops; 1319 - netdev->min_mtu = 0; 1319 + netdev->min_mtu = ETH_MIN_MTU; 1320 1320 netdev->max_mtu = XEN_NETIF_MAX_TX_SIZE; 1321 1321 SET_NETDEV_DEV(netdev, &dev->dev); 1322 1322