svn commit: r362754 - head/usr.sbin/bhyve

Chuck Tuffli chuck at FreeBSD.org
Mon Jun 29 00:32:02 UTC 2020


Author: chuck
Date: Mon Jun 29 00:31:44 2020
New Revision: 362754
URL: https://svnweb.freebsd.org/changeset/base/362754

Log:
  bhyve: make unsupported NVMe commands a debug message
  
  Tested by:	Jason Tubnor
  MFC after:	2 weeks
  Differential Revision: https://reviews.freebsd.org/D24888

Modified:
  head/usr.sbin/bhyve/pci_nvme.c

Modified: head/usr.sbin/bhyve/pci_nvme.c
==============================================================================
--- head/usr.sbin/bhyve/pci_nvme.c	Mon Jun 29 00:31:41 2020	(r362753)
+++ head/usr.sbin/bhyve/pci_nvme.c	Mon Jun 29 00:31:44 2020	(r362754)
@@ -1353,7 +1353,7 @@ pci_nvme_handle_admin_cmd(struct pci_nvme_softc* sc, u
 			compl.status = NVME_NO_STATUS;
 			break;
 		default:
-			WPRINTF("0x%x command is not implemented",
+			DPRINTF("0x%x command is not implemented",
 			    cmd->opc);
 			pci_nvme_status_genc(&compl.status, NVME_SC_INVALID_OPCODE);
 		}


More information about the svn-src-all mailing list