Fix typo in baudrate initialization that was causing ixl to be seen as

a 4GbE NIC, rather than a 40GbE NIC.

Reviewed by:	Eric Joyner <eric.joyner@intel.com>
MFC after:	3 days
Sponsored by:	Netflix
This commit is contained in:
Andrew Gallatin 2015-06-19 21:40:26 +00:00
parent 10b942e5d3
commit 53aab9ea70
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284612

View File

@ -2551,7 +2551,7 @@ ixl_setup_interface(device_t dev, struct ixl_vsi *vsi)
}
if_initname(ifp, device_get_name(dev), device_get_unit(dev));
ifp->if_mtu = ETHERMTU;
ifp->if_baudrate = 4000000000; // ??
ifp->if_baudrate = IF_Gbps(40);
ifp->if_init = ixl_init;
ifp->if_softc = vsi;
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;