svn commit: r250741 - head/usr.sbin/pciconf

Konstantin Belousov kib at FreeBSD.org
Fri May 17 14:05:32 UTC 2013


Author: kib
Date: Fri May 17 14:05:31 2013
New Revision: 250741
URL: http://svnweb.freebsd.org/changeset/base/250741

Log:
  Decode new HT 3.00 and 3.10 capabilities.
  
  Submitted by:	Dmitry Luhtionov <dmitryluhtionov at gmail.com>
  MFC after:	1 week

Modified:
  head/usr.sbin/pciconf/cap.c

Modified: head/usr.sbin/pciconf/cap.c
==============================================================================
--- head/usr.sbin/pciconf/cap.c	Fri May 17 14:04:31 2013	(r250740)
+++ head/usr.sbin/pciconf/cap.c	Fri May 17 14:05:31 2013	(r250741)
@@ -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