Searched refs:vd_scsi_len (Results 1 – 2 of 2) sorted by relevance
5780 int vd_scsi_len = VD_SCSI_SIZE; in vdc_scsi_alloc() local5782 vd_scsi_len += P2ROUNDUP(cdb_len, sizeof (uint64_t)); in vdc_scsi_alloc()5783 vd_scsi_len += P2ROUNDUP(sense_len, sizeof (uint64_t)); in vdc_scsi_alloc()5784 vd_scsi_len += P2ROUNDUP(datain_len, sizeof (uint64_t)); in vdc_scsi_alloc()5785 vd_scsi_len += P2ROUNDUP(dataout_len, sizeof (uint64_t)); in vdc_scsi_alloc()5787 ASSERT(vd_scsi_len % sizeof (uint64_t) == 0); in vdc_scsi_alloc()5789 vd_scsi = kmem_zalloc(vd_scsi_len, KM_SLEEP); in vdc_scsi_alloc()5796 *alloc_len = vd_scsi_len; in vdc_scsi_alloc()5940 int vd_scsi_len; in vdc_uscsi_cmd() local5986 &vd_scsi_len); in vdc_uscsi_cmd()[all …]
2725 size_t vd_scsi_len; in vd_scsicmd_in() local2730 vd_scsi_len = VD_SCSI_SIZE; in vd_scsicmd_in()2731 vd_scsi_len += P2ROUNDUP(vd_scsi->cdb_len, sizeof (uint64_t)); in vd_scsicmd_in()2732 vd_scsi_len += P2ROUNDUP(vd_scsi->sense_len, sizeof (uint64_t)); in vd_scsicmd_in()2733 vd_scsi_len += P2ROUNDUP(vd_scsi->datain_len, sizeof (uint64_t)); in vd_scsicmd_in()2734 vd_scsi_len += P2ROUNDUP(vd_scsi->dataout_len, sizeof (uint64_t)); in vd_scsicmd_in()2736 ASSERT(vd_scsi_len % sizeof (uint64_t) == 0); in vd_scsicmd_in()2738 if (vd_buf_len < vd_scsi_len) in vd_scsicmd_in()