[Midnightbsd-cvs] src [7988] trunk/sys/dev/isp: fix an oops where we wiped out DMA maps
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Thu Sep 15 04:27:38 EDT 2016
Revision: 7988
http://svnweb.midnightbsd.org/src/?rev=7988
Author: laffer1
Date: 2016-09-15 04:27:37 -0400 (Thu, 15 Sep 2016)
Log Message:
-----------
fix an oops where we wiped out DMA maps
Modified Paths:
--------------
trunk/sys/dev/isp/isp_freebsd.c
trunk/sys/dev/isp/isp_pci.c
Modified: trunk/sys/dev/isp/isp_freebsd.c
===================================================================
--- trunk/sys/dev/isp/isp_freebsd.c 2016-09-15 08:27:12 UTC (rev 7987)
+++ trunk/sys/dev/isp/isp_freebsd.c 2016-09-15 08:27:37 UTC (rev 7988)
@@ -779,8 +779,13 @@
isp_free_pcmd(ispsoftc_t *isp, union ccb *ccb)
{
if (ISP_PCMD(ccb)) {
- memset(ISP_PCMD(ccb), 0, sizeof (struct isp_pcmd));
- ((struct isp_pcmd *)ISP_PCMD(ccb))->next = isp->isp_osinfo.pcmd_free;
+#ifdef ISP_TARGET_MODE
+ PISP_PCMD(ccb)->datalen = 0;
+ PISP_PCMD(ccb)->totslen = 0;
+ PISP_PCMD(ccb)->cumslen = 0;
+ PISP_PCMD(ccb)->crn = 0;
+#endif
+ PISP_PCMD(ccb)->next = isp->isp_osinfo.pcmd_free;
isp->isp_osinfo.pcmd_free = ISP_PCMD(ccb);
ISP_PCMD(ccb) = NULL;
}
@@ -6326,13 +6331,21 @@
int
isp_fcp_next_crn(ispsoftc_t *isp, uint8_t *crnp, XS_T *cmd)
{
- uint32_t chan = XS_CHANNEL(cmd);
- uint32_t tgt = XS_TGT(cmd);
- uint32_t lun = XS_LUN(cmd);
- struct isp_fc *fc = &isp->isp_osinfo.pc.fc[chan];
- int idx = NEXUS_HASH(tgt, lun);
- struct isp_nexus *nxp = fc->nexus_hash[idx];
+ uint32_t chan, tgt, lun;
+ struct isp_fc *fc;
+ struct isp_nexus *nxp;
+ int idx;
+ if (isp->isp_type < ISP_HA_FC_2300)
+ return (0);
+
+ chan = XS_CHANNEL(cmd);
+ tgt = XS_TGT(cmd);
+ lun = XS_LUN(cmd);
+ fc = &isp->isp_osinfo.pc.fc[chan];
+ idx = NEXUS_HASH(tgt, lun);
+ nxp = fc->nexus_hash[idx];
+
while (nxp) {
if (nxp->tgt == tgt && nxp->lun == lun)
break;
Modified: trunk/sys/dev/isp/isp_pci.c
===================================================================
--- trunk/sys/dev/isp/isp_pci.c 2016-09-15 08:27:12 UTC (rev 7987)
+++ trunk/sys/dev/isp/isp_pci.c 2016-09-15 08:27:37 UTC (rev 7988)
@@ -1688,18 +1688,20 @@
bus_dma_tag_destroy(fc->tdmat);
goto bad;
}
- for (i = 0; i < INITIAL_NEXUS_COUNT; i++) {
- struct isp_nexus *n = malloc(sizeof (struct isp_nexus), M_DEVBUF, M_NOWAIT | M_ZERO);
- if (n == NULL) {
- while (fc->nexus_free_list) {
- n = fc->nexus_free_list;
- fc->nexus_free_list = n->next;
- free(n, M_DEVBUF);
+ if (isp->isp_type >= ISP_HA_FC_2300) {
+ for (i = 0; i < INITIAL_NEXUS_COUNT; i++) {
+ struct isp_nexus *n = malloc(sizeof (struct isp_nexus), M_DEVBUF, M_NOWAIT | M_ZERO);
+ if (n == NULL) {
+ while (fc->nexus_free_list) {
+ n = fc->nexus_free_list;
+ fc->nexus_free_list = n->next;
+ free(n, M_DEVBUF);
+ }
+ goto bad;
}
- goto bad;
+ n->next = fc->nexus_free_list;
+ fc->nexus_free_list = n;
}
- n->next = fc->nexus_free_list;
- fc->nexus_free_list = n;
}
}
}
More information about the Midnightbsd-cvs
mailing list