diff options
author | mav <mav@FreeBSD.org> | 2015-07-04 18:51:54 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2015-07-04 18:51:54 +0000 |
commit | 5bb6cc922befd55376911ec9427b7a5036ee050f (patch) | |
tree | 05239929f3d025f98941d8c02db7a00e90c4bf5e | |
parent | b474da265c20f5577b4a3391b308b176981249c6 (diff) | |
download | FreeBSD-src-5bb6cc922befd55376911ec9427b7a5036ee050f.zip FreeBSD-src-5bb6cc922befd55376911ec9427b7a5036ee050f.tar.gz |
Change comment added in r284540.
This appeared to be not card's issue, but driver's, though solution is
the same so far.
-rw-r--r-- | sys/dev/isp/isp_freebsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c index 8e26d73..0ca540f 100644 --- a/sys/dev/isp/isp_freebsd.c +++ b/sys/dev/isp/isp_freebsd.c @@ -2965,9 +2965,9 @@ isp_handle_platform_ctio(ispsoftc_t *isp, void *arg) } if (atp == NULL) { /* - * In case of target mode disable at least ISP2532 return - * invalid zero ct_rxid value. Try to workaround that using - * tag_id from the CCB, pointed by valid ct_syshandle. + * XXX: isp_clear_commands() generates fake CTIO with zero + * ct_rxid value, filling only ct_syshandle. Workaround + * that using tag_id from the CCB, pointed by ct_syshandle. */ atp = isp_find_atpd(isp, tptr, ccb->csio.tag_id); } |