git: ab899f8937c1 - main - Fix typo in xhci nvlist node name, and also increment device counter.

Peter Grehan grehan at FreeBSD.org
Sat Apr 3 06:40:20 UTC 2021


The branch main has been updated by grehan:

URL: https://cgit.FreeBSD.org/src/commit/?id=ab899f8937c1c7c79197baf7192b727ddc9cfe54

commit ab899f8937c1c7c79197baf7192b727ddc9cfe54
Author:     Peter Grehan <grehan at FreeBSD.org>
AuthorDate: 2021-04-03 04:32:54 +0000
Commit:     Peter Grehan <grehan at FreeBSD.org>
CommitDate: 2021-04-03 04:32:54 +0000

    Fix typo in xhci nvlist node name, and also increment device counter.
    
    This allows the xhci tablet device to be recognized and a PCI device
    instantiated.
    
    Reviewed by:    jhb
    Fixes:          621b5090487d Refactor configuration management in bhyve.
    MFC after:      3 months.
---
 usr.sbin/bhyve/pci_xhci.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/usr.sbin/bhyve/pci_xhci.c b/usr.sbin/bhyve/pci_xhci.c
index dd6dfc39d014..b71d66337048 100644
--- a/usr.sbin/bhyve/pci_xhci.c
+++ b/usr.sbin/bhyve/pci_xhci.c
@@ -2720,7 +2720,7 @@ pci_xhci_parse_devices(struct pci_xhci_softc *sc, nvlist_t *nvl)
 
 	ndevices = 0;
 
-	slots_nvl = find_relative_config_node(nvl, "slots");
+	slots_nvl = find_relative_config_node(nvl, "slot");
 	if (slots_nvl == NULL)
 		goto portsfinal;
 
@@ -2806,6 +2806,7 @@ pci_xhci_parse_devices(struct pci_xhci_softc *sc, nvlist_t *nvl)
 		dev->dev_sc = devsc;
 
 		XHCI_SLOTDEV_PTR(sc, slot) = dev;
+		ndevices++;
 	}
 
 portsfinal:


More information about the dev-commits-src-all mailing list