Searched refs:hdl (Results 1 – 3 of 3) sorted by relevance
/dflybsd-src/sys/dev/disk/isp/ |
H A D | ispvar.h | 303 #define ISP_H2HT(hdl) ((hdl & ISP_HANDLE_USAGE_MASK) >> ISP_HANDLE_USAGE_SHIFT) argument 309 #define ISP_H2SEQ(hdl) ((hdl & ISP_HANDLE_SEQ_MASK) >> ISP_HANDLE_SEQ_SHIFT) argument 310 #define ISP_VALID_INI_HANDLE(c, hdl) \ argument 311 (ISP_H2HT(hdl) == ISP_HANDLE_INITIATOR && (hdl & ISP_HANDLE_CMD_MASK) < (c)->isp_maxcmds && \ 312 ISP_H2SEQ(hdl) == ISP_H2SEQ((c)->isp_xflist[hdl & ISP_HANDLE_CMD_MASK].handle)) 314 #define ISP_VALID_TGT_HANDLE(c, hdl) \ argument 315 (ISP_H2HT(hdl) == ISP_HANDLE_TARGET && (hdl & ISP_HANDLE_CMD_MASK) < (c)->isp_maxcmds && \ 316 ISP_H2SEQ(hdl) == ISP_H2SEQ((c)->isp_tgtlist[hdl & ISP_HANDLE_CMD_MASK].handle)) 317 #define ISP_VALID_HANDLE(c, hdl) \ argument 318 (ISP_VALID_INI_HANDLE((c), hdl) || ISP_VALID_TGT_HANDLE((c), hdl))
|
H A D | isp_target.c | 603 uint32_t code, hdl; in isp_endcmd() local 628 hdl = va_arg(ap, uint32_t); in isp_endcmd() 666 cto->ct_syshandle = hdl; in isp_endcmd() 674 hdl = va_arg(ap, uint32_t); in isp_endcmd() 693 if (hdl == 0) { in isp_endcmd() 709 cto->ct_syshandle = hdl; in isp_endcmd() 717 hdl = va_arg(ap, uint32_t); in isp_endcmd() 734 if (hdl == 0) { in isp_endcmd() 738 cto->ct_syshandle = hdl; in isp_endcmd()
|
H A D | isp_freebsd.c | 5734 isp_common_dmateardown(ispsoftc_t *isp, struct ccb_scsiio *csio, uint32_t hdl) in isp_common_dmateardown() argument
|