svn commit: r250971 - stable/8/usr.sbin/pciconf

Konstantin Belousov kib at FreeBSD.org
Fri May 24 18:28:27 UTC 2013


Author: kib
Date: Fri May 24 18:28:27 2013
New Revision: 250971
URL: http://svnweb.freebsd.org/changeset/base/250971

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

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

Modified: stable/8/usr.sbin/pciconf/cap.c
==============================================================================
--- stable/8/usr.sbin/pciconf/cap.c	Fri May 24 18:26:12 2013	(r250970)
+++ stable/8/usr.sbin/pciconf/cap.c	Fri May 24 18:28:27 2013	(r250971)
@@ -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