Home | History | Annotate | Download | only in scsictl

Lines Matching defs:inqbuf

719 	struct scsipi_inquiry_data inqbuf;
734 char vendor[(sizeof(inqbuf.vendor) * 4) + 1],
735 product[(sizeof(inqbuf.product) * 4) + 1],
736 revision[(sizeof(inqbuf.revision) * 4) + 1],
749 memset(&inqbuf, 0, sizeof(inqbuf));
752 cmd.length = sizeof(inqbuf);
754 scsi_command(fd, &cmd, sizeof(cmd), &inqbuf, sizeof(inqbuf),
757 scsi_strvis(vendor, sizeof(vendor), inqbuf.vendor,
758 sizeof(inqbuf.vendor));
759 scsi_strvis(product, sizeof(product), inqbuf.product,
760 sizeof(inqbuf.product));
761 scsi_strvis(revision, sizeof(revision), inqbuf.revision,
762 sizeof(inqbuf.revision));