summaryrefslogtreecommitdiffstats
path: root/src/net
diff options
context:
space:
mode:
authorMichael Brown2018-07-17 13:01:30 +0200
committerMichael Brown2018-07-17 13:14:43 +0200
commitb9d68b9de02cc474c8a713f1232ce69fefafe18e (patch)
treebb78cdd2596ec08a7d926315519e2c30b3e2b892 /src/net
parent[rndis] Clean up error handling path in register_rndis() (diff)
downloadipxe-b9d68b9de02cc474c8a713f1232ce69fefafe18e.tar.gz
ipxe-b9d68b9de02cc474c8a713f1232ce69fefafe18e.tar.xz
ipxe-b9d68b9de02cc474c8a713f1232ce69fefafe18e.zip
[ethernet] Use standard 1500 byte MTU unless explicitly overridden
Devices that support jumbo frames will currently default to the largest possible MTU. This assumption is valid for virtual adapters such as virtio-net, where the MTU must have been configured by a system administrator, but is unsafe in the general case of a physical adapter. Default to the standard Ethernet MTU, unless explicitly overridden either by the driver or via the ${netX/mtu} setting. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net')
-rw-r--r--src/net/ethernet.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/ethernet.c b/src/net/ethernet.c
index 26fdedea..707bdf90 100644
--- a/src/net/ethernet.c
+++ b/src/net/ethernet.c
@@ -269,6 +269,7 @@ struct net_device * alloc_etherdev ( size_t priv_size ) {
netdev->ll_protocol = &ethernet_protocol;
netdev->ll_broadcast = eth_broadcast;
netdev->max_pkt_len = ETH_FRAME_LEN;
+ netdev->mtu = ETH_MAX_MTU;
}
return netdev;
}