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:
parent
366f451b6f
commit
a82bff7dcf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user