Lines Matching defs:inq
1337 struct scsipi_inquiry_data inq;
1340 bzero(&inq, sizeof(inq));
1345 inq.device = T_CDROM;
1346 inq.dev_qual2 = SID_REMOVABLE;
1347 bcopy("Virtual CDROM ", inq.product, sizeof(inq.product));
1350 inq.device = T_DIRECT;
1351 bcopy("Virtual Disk ", inq.product, sizeof(inq.product));
1356 inq.version = 0x05; /* SPC-3 */
1357 inq.response_format = 2;
1358 inq.additional_length = 32;
1359 inq.flags3 |= SID_CmdQue;
1360 bcopy("SUN ", inq.vendor, sizeof(inq.vendor));
1362 bcopy(buf, inq.revision, sizeof(inq.revision));
1364 bcopy(&inq, xs->data, MIN(sizeof(inq), xs->datalen));