svn commit: r208498 - stable/8/sys/dev/mxge
Andrew Gallatin
gallatin at FreeBSD.org
Mon May 24 12:51:01 UTC 2010
Author: gallatin
Date: Mon May 24 12:51:00 2010
New Revision: 208498
URL: http://svn.freebsd.org/changeset/base/208498
Log:
MFC 208312: Correctly identify some twinax cables, which report
a media type of 1
Modified:
stable/8/sys/dev/mxge/if_mxge.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
stable/8/sys/geom/sched/ (props changed)
Modified: stable/8/sys/dev/mxge/if_mxge.c
==============================================================================
--- stable/8/sys/dev/mxge/if_mxge.c Mon May 24 12:50:55 2010 (r208497)
+++ stable/8/sys/dev/mxge/if_mxge.c Mon May 24 12:51:00 2010 (r208498)
@@ -2781,7 +2781,8 @@ static struct mxge_media_type mxge_sfp_m
{0, (1 << 7), "Reserved"},
{IFM_10G_LRM, (1 << 6), "10GBASE-LRM"},
{IFM_10G_LR, (1 << 5), "10GBASE-LR"},
- {IFM_10G_SR, (1 << 4), "10GBASE-SR"}
+ {IFM_10G_SR, (1 << 4), "10GBASE-SR"},
+ {IFM_10G_TWINAX,(1 << 0), "10GBASE-Twinax"}
};
static void
More information about the svn-src-all
mailing list