Module Name: src
Committed By: jdolecek
Date: Sat Sep 17 20:15:09 UTC 2016
Modified Files:
src/sys/dev/pci: nvme_pci.c
Log Message:
remove dev code included in previous commit by mistake
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/pci/nvme_pci.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/nvme_pci.c
diff -u src/sys/dev/pci/nvme_pci.c:1.11 src/sys/dev/pci/nvme_pci.c:1.12
--- src/sys/dev/pci/nvme_pci.c:1.11 Sat Sep 17 20:12:53 2016
+++ src/sys/dev/pci/nvme_pci.c Sat Sep 17 20:15:09 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: nvme_pci.c,v 1.11 2016/09/17 20:12:53 jdolecek Exp $ */
+/* $NetBSD: nvme_pci.c,v 1.12 2016/09/17 20:15:09 jdolecek Exp $ */
/* $OpenBSD: nvme_pci.c,v 1.3 2016/04/14 11:18:32 dlg Exp $ */
/*
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nvme_pci.c,v 1.11 2016/09/17 20:12:53 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nvme_pci.c,v 1.12 2016/09/17 20:15:09 jdolecek Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -192,16 +192,9 @@ nvme_pci_attach(device_t parent, device_
goto intr_release;
}
- sc->sc_softih = kmem_zalloc(sizeof(*sc->sc_softih) * psc->psc_nintrs,
- KM_SLEEP);
- if (sc->sc_softih == NULL) {
- aprint_error_dev(self, "unable to allocate softih memory\n");
- goto intr_free;
- }
-
if (nvme_attach(sc) != 0) {
/* error printed by nvme_attach() */
- goto softintr_free;
+ goto intr_free;
}
if (!pmf_device_register(self, NULL, NULL))
@@ -210,8 +203,6 @@ nvme_pci_attach(device_t parent, device_
SET(sc->sc_flags, NVME_F_ATTACHED);
return;
-softintr_free:
- kmem_free(sc->sc_softih, sizeof(*sc->sc_softih) * psc->psc_nintrs);
intr_free:
kmem_free(sc->sc_ih, sizeof(*sc->sc_ih) * psc->psc_nintrs);
sc->sc_nq = 0;