svn commit: r250965 - stable/9/usr.sbin/pciconf

Konstantin Belousov kib at FreeBSD.org
Fri May 24 09:33:56 UTC 2013


Author: kib
Date: Fri May 24 09:33:55 2013
New Revision: 250965
URL: http://svnweb.freebsd.org/changeset/base/250965

Log:
  MFC r250741:
  Decode new HT 3.00 and 3.10 capabilities.

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

Modified: stable/9/usr.sbin/pciconf/cap.c
==============================================================================
--- stable/9/usr.sbin/pciconf/cap.c	Fri May 24 09:30:10 2013	(r250964)
+++ stable/9/usr.sbin/pciconf/cap.c	Fri May 24 09:33:55 2013	(r250965)
@@ -276,6 +276,18 @@ cap_ht(int fd, struct pci_conf *p, uint8
 		case PCIM_HTCAP_X86_ENCODING:
 			printf("X86 encoding");
 			break;
+		case PCIM_HTCAP_GEN3:
+			printf("Gen3");
+			break;
+		case PCIM_HTCAP_FLE:
+			printf("function-level extension");
+			break;
+		case PCIM_HTCAP_PM:
+			printf("power management");
+			break;
+		case PCIM_HTCAP_HIGH_NODE_COUNT:
+			printf("high node count");
+			break;
 		default:
 			printf("unknown %02x", command);
 			break;


More information about the svn-src-all mailing list