svn commit: r363359 - stable/12/usr.sbin/bhyve

Chuck Tuffli chuck at FreeBSD.org
Mon Jul 20 00:44:28 UTC 2020


Author: chuck
Date: Mon Jul 20 00:44:27 2020
New Revision: 363359
URL: https://svnweb.freebsd.org/changeset/base/363359

Log:
  MFC r362766 bhyve: fix NVMe Active Namespace list

Modified:
  stable/12/usr.sbin/bhyve/pci_nvme.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/usr.sbin/bhyve/pci_nvme.c
==============================================================================
--- stable/12/usr.sbin/bhyve/pci_nvme.c	Mon Jul 20 00:42:34 2020	(r363358)
+++ stable/12/usr.sbin/bhyve/pci_nvme.c	Mon Jul 20 00:44:27 2020	(r363359)
@@ -1144,8 +1144,9 @@ nvme_opc_identify(struct pci_nvme_softc* sc, struct nv
 	case 0x02: /* list of 1024 active NSIDs > CDW1.NSID */
 		dest = vm_map_gpa(sc->nsc_pi->pi_vmctx, command->prp1,
 		                  sizeof(uint32_t) * 1024);
+		/* All unused entries shall be zero */
+		bzero(dest, sizeof(uint32_t) * 1024);
 		((uint32_t *)dest)[0] = 1;
-		((uint32_t *)dest)[1] = 0;
 		break;
 	case 0x03: /* list of NSID structures in CDW1.NSID, 4096 bytes */
 		if (command->nsid != 1) {


More information about the svn-src-all mailing list