From 005b6181806cea0fedbd9d5a070a6aa7ed21c13d Mon Sep 17 00:00:00 2001 From: araujo Date: Mon, 9 Mar 2015 08:43:27 +0000 Subject: [PATCH] Now ifconfig(8) can set the media option as 10Gbase-T for ixgbe(4). Differential Revision: D823 Reviewed by: jfvogel Approved by: jfvogel Sponsored by: QNAP Systems Inc. --- sys/dev/ixgbe/ixgbe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/ixgbe/ixgbe.c b/sys/dev/ixgbe/ixgbe.c index ecaa37a9483..0d5021cb142 100644 --- a/sys/dev/ixgbe/ixgbe.c +++ b/sys/dev/ixgbe/ixgbe.c @@ -1764,6 +1764,7 @@ ixgbe_media_change(struct ifnet * ifp) return (EINVAL); switch (IFM_SUBTYPE(ifm->ifm_media)) { + case IFM_10G_T: case IFM_AUTO: adapter->hw.phy.autoneg_advertised = IXGBE_LINK_SPEED_100_FULL | -- 2.45.0