Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Aug 2019 00:13:12 +0000 (UTC)
From:      Andrew Gallatin <gallatin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r350527 - stable/12/usr.sbin/pciconf
Message-ID:  <201908020013.x720DC8f090978@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gallatin
Date: Fri Aug  2 00:13:11 2019
New Revision: 350527
URL: https://svnweb.freebsd.org/changeset/base/350527

Log:
  MFC r350245
  
  pciconf: report PCI Gen4 speeds
  
  PCIe gen4 runs at 16GT/s.  Report this as
  the speed of Gen4 links.
  
  Reviewed by:    imp
  Sponsored by:   Netflix

Modified:
  stable/12/usr.sbin/pciconf/cap.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/usr.sbin/pciconf/cap.c
==============================================================================
--- stable/12/usr.sbin/pciconf/cap.c	Thu Aug  1 23:28:54 2019	(r350526)
+++ stable/12/usr.sbin/pciconf/cap.c	Fri Aug  2 00:13:11 2019	(r350527)
@@ -389,6 +389,8 @@ link_speed_string(uint8_t speed)
 		return ("5.0");
 	case 3:
 		return ("8.0");
+	case 4:
+		return ("16.0");
 	default:
 		return ("undef");
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908020013.x720DC8f090978>