2 * Generic SCSI Device support
4 * Copyright (c) 2007 Bull S.A.S.
5 * Based on code by Paul Brook
6 * Based on code by Fabrice Bellard
8 * Written by Laurent Vivier <Laurent.Vivier@bull.net>
10 * This code is licensed under the LGPL.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
16 #include "qemu/ctype.h"
17 #include "qemu/error-report.h"
18 #include "qemu/module.h"
19 #include "hw/scsi/scsi.h"
20 #include "migration/qemu-file-types.h"
21 #include "hw/qdev-properties.h"
22 #include "hw/scsi/emulation.h"
23 #include "sysemu/block-backend.h"
29 #include "scsi/constants.h"
32 #define MAX_UINT ((unsigned int)-1)
35 typedef struct SCSIGenericReq
{
40 sg_io_hdr_t io_header
;
43 static void scsi_generic_save_request(QEMUFile
*f
, SCSIRequest
*req
)
45 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
47 qemu_put_sbe32s(f
, &r
->buflen
);
48 if (r
->buflen
&& r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
50 qemu_put_buffer(f
, r
->buf
, r
->req
.cmd
.xfer
);
54 static void scsi_generic_load_request(QEMUFile
*f
, SCSIRequest
*req
)
56 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
58 qemu_get_sbe32s(f
, &r
->buflen
);
59 if (r
->buflen
&& r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
61 qemu_get_buffer(f
, r
->buf
, r
->req
.cmd
.xfer
);
65 static void scsi_free_request(SCSIRequest
*req
)
67 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
72 /* Helper function for command completion. */
73 static void scsi_command_complete_noio(SCSIGenericReq
*r
, int ret
)
78 assert(r
->req
.aiocb
== NULL
);
80 if (r
->req
.io_canceled
) {
81 scsi_req_cancel_complete(&r
->req
);
84 status
= sg_io_sense_from_errno(-ret
, &r
->io_header
, &sense
);
85 if (status
== CHECK_CONDITION
) {
86 if (r
->io_header
.driver_status
& SG_ERR_DRIVER_SENSE
) {
87 r
->req
.sense_len
= r
->io_header
.sb_len_wr
;
89 scsi_req_build_sense(&r
->req
, sense
);
93 trace_scsi_generic_command_complete_noio(r
, r
->req
.tag
, status
);
95 scsi_req_complete(&r
->req
, status
);
97 scsi_req_unref(&r
->req
);
100 static void scsi_command_complete(void *opaque
, int ret
)
102 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
103 SCSIDevice
*s
= r
->req
.dev
;
105 assert(r
->req
.aiocb
!= NULL
);
108 aio_context_acquire(blk_get_aio_context(s
->conf
.blk
));
109 scsi_command_complete_noio(r
, ret
);
110 aio_context_release(blk_get_aio_context(s
->conf
.blk
));
113 static int execute_command(BlockBackend
*blk
,
114 SCSIGenericReq
*r
, int direction
,
115 BlockCompletionFunc
*complete
)
117 r
->io_header
.interface_id
= 'S';
118 r
->io_header
.dxfer_direction
= direction
;
119 r
->io_header
.dxferp
= r
->buf
;
120 r
->io_header
.dxfer_len
= r
->buflen
;
121 r
->io_header
.cmdp
= r
->req
.cmd
.buf
;
122 r
->io_header
.cmd_len
= r
->req
.cmd
.len
;
123 r
->io_header
.mx_sb_len
= sizeof(r
->req
.sense
);
124 r
->io_header
.sbp
= r
->req
.sense
;
125 r
->io_header
.timeout
= MAX_UINT
;
126 r
->io_header
.usr_ptr
= r
;
127 r
->io_header
.flags
|= SG_FLAG_DIRECT_IO
;
129 r
->req
.aiocb
= blk_aio_ioctl(blk
, SG_IO
, &r
->io_header
, complete
, r
);
130 if (r
->req
.aiocb
== NULL
) {
137 static void scsi_handle_inquiry_reply(SCSIGenericReq
*r
, SCSIDevice
*s
)
139 uint8_t page
, page_idx
;
142 * EVPD set to zero returns the standard INQUIRY data.
144 * Check if scsi_version is unset (-1) to avoid re-defining it
145 * each time an INQUIRY with standard data is received.
146 * scsi_version is initialized with -1 in scsi_generic_reset
147 * and scsi_disk_reset, making sure that we'll set the
148 * scsi_version after a reset. If the version field of the
149 * INQUIRY response somehow changes after a guest reboot,
150 * we'll be able to keep track of it.
152 * On SCSI-2 and older, first 3 bits of byte 2 is the
153 * ANSI-approved version, while on later versions the
154 * whole byte 2 contains the version. Check if we're dealing
155 * with a newer version and, in that case, assign the
158 if (s
->scsi_version
== -1 && !(r
->req
.cmd
.buf
[1] & 0x01)) {
159 s
->scsi_version
= r
->buf
[2] & 0x07;
160 if (s
->scsi_version
> 2) {
161 s
->scsi_version
= r
->buf
[2];
165 if (s
->type
== TYPE_DISK
&& (r
->req
.cmd
.buf
[1] & 0x01)) {
166 page
= r
->req
.cmd
.buf
[2];
168 uint32_t max_transfer
=
169 blk_get_max_transfer(s
->conf
.blk
) / s
->blocksize
;
171 assert(max_transfer
);
172 stl_be_p(&r
->buf
[8], max_transfer
);
173 /* Also take care of the opt xfer len. */
174 stl_be_p(&r
->buf
[12],
175 MIN_NON_ZERO(max_transfer
, ldl_be_p(&r
->buf
[12])));
176 } else if (s
->needs_vpd_bl_emulation
&& page
== 0x00 && r
->buflen
>= 4) {
178 * Now we're capable of supplying the VPD Block Limits
179 * response if the hardware can't. Add it in the INQUIRY
180 * Supported VPD pages response in case we are using the
181 * emulation for this device.
183 * This way, the guest kernel will be aware of the support
184 * and will use it to proper setup the SCSI device.
186 * VPD page numbers must be sorted, so insert 0xb0 at the
187 * right place with an in-place insert. When the while loop
188 * begins the device response is at r[0] to r[page_idx - 1].
190 page_idx
= lduw_be_p(r
->buf
+ 2) + 4;
191 page_idx
= MIN(page_idx
, r
->buflen
);
192 while (page_idx
> 4 && r
->buf
[page_idx
- 1] >= 0xb0) {
193 if (page_idx
< r
->buflen
) {
194 r
->buf
[page_idx
] = r
->buf
[page_idx
- 1];
198 if (page_idx
< r
->buflen
) {
199 r
->buf
[page_idx
] = 0xb0;
201 stw_be_p(r
->buf
+ 2, lduw_be_p(r
->buf
+ 2) + 1);
206 static int scsi_generic_emulate_block_limits(SCSIGenericReq
*r
, SCSIDevice
*s
)
211 SCSIBlockLimits bl
= {
212 .max_io_sectors
= blk_get_max_transfer(s
->conf
.blk
) / s
->blocksize
215 memset(r
->buf
, 0, r
->buflen
);
217 stb_p(buf
+ 1, 0xb0);
218 len
= scsi_emulate_block_limits(buf
+ 4, &bl
);
219 assert(len
<= sizeof(buf
) - 4);
220 stw_be_p(buf
+ 2, len
);
222 memcpy(r
->buf
, buf
, MIN(r
->buflen
, len
+ 4));
224 r
->io_header
.sb_len_wr
= 0;
227 * We have valid contents in the reply buffer but the
228 * io_header can report a sense error coming from
229 * the hardware in scsi_command_complete_noio. Clean
230 * up the io_header to avoid reporting it.
232 r
->io_header
.driver_status
= 0;
233 r
->io_header
.status
= 0;
238 static void scsi_read_complete(void * opaque
, int ret
)
240 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
241 SCSIDevice
*s
= r
->req
.dev
;
244 assert(r
->req
.aiocb
!= NULL
);
247 aio_context_acquire(blk_get_aio_context(s
->conf
.blk
));
249 if (ret
|| r
->req
.io_canceled
) {
250 scsi_command_complete_noio(r
, ret
);
254 len
= r
->io_header
.dxfer_len
- r
->io_header
.resid
;
255 trace_scsi_generic_read_complete(r
->req
.tag
, len
);
259 if (r
->io_header
.driver_status
& SG_ERR_DRIVER_SENSE
) {
261 scsi_parse_sense_buf(r
->req
.sense
, r
->io_header
.sb_len_wr
);
264 * Check if this is a VPD Block Limits request that
265 * resulted in sense error but would need emulation.
266 * In this case, emulate a valid VPD response.
268 if (sense
.key
== ILLEGAL_REQUEST
&&
269 s
->needs_vpd_bl_emulation
&&
270 r
->req
.cmd
.buf
[0] == INQUIRY
&&
271 (r
->req
.cmd
.buf
[1] & 0x01) &&
272 r
->req
.cmd
.buf
[2] == 0xb0) {
273 len
= scsi_generic_emulate_block_limits(r
, s
);
275 * It's okay to jup to req_complete: no need to
276 * let scsi_handle_inquiry_reply handle an
277 * INQUIRY VPD BL request we created manually.
286 scsi_command_complete_noio(r
, 0);
290 /* Snoop READ CAPACITY output to set the blocksize. */
291 if (r
->req
.cmd
.buf
[0] == READ_CAPACITY_10
&&
292 (ldl_be_p(&r
->buf
[0]) != 0xffffffffU
|| s
->max_lba
== 0)) {
293 s
->blocksize
= ldl_be_p(&r
->buf
[4]);
294 s
->max_lba
= ldl_be_p(&r
->buf
[0]) & 0xffffffffULL
;
295 } else if (r
->req
.cmd
.buf
[0] == SERVICE_ACTION_IN_16
&&
296 (r
->req
.cmd
.buf
[1] & 31) == SAI_READ_CAPACITY_16
) {
297 s
->blocksize
= ldl_be_p(&r
->buf
[8]);
298 s
->max_lba
= ldq_be_p(&r
->buf
[0]);
300 blk_set_guest_block_size(s
->conf
.blk
, s
->blocksize
);
302 /* Patch MODE SENSE device specific parameters if the BDS is opened
305 if ((s
->type
== TYPE_DISK
|| s
->type
== TYPE_TAPE
) &&
306 blk_is_read_only(s
->conf
.blk
) &&
307 (r
->req
.cmd
.buf
[0] == MODE_SENSE
||
308 r
->req
.cmd
.buf
[0] == MODE_SENSE_10
) &&
309 (r
->req
.cmd
.buf
[1] & 0x8) == 0) {
310 if (r
->req
.cmd
.buf
[0] == MODE_SENSE
) {
316 if (r
->req
.cmd
.buf
[0] == INQUIRY
) {
317 scsi_handle_inquiry_reply(r
, s
);
321 scsi_req_data(&r
->req
, len
);
322 scsi_req_unref(&r
->req
);
325 aio_context_release(blk_get_aio_context(s
->conf
.blk
));
328 /* Read more data from scsi device into buffer. */
329 static void scsi_read_data(SCSIRequest
*req
)
331 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
332 SCSIDevice
*s
= r
->req
.dev
;
335 trace_scsi_generic_read_data(req
->tag
);
337 /* The request is used as the AIO opaque value, so add a ref. */
338 scsi_req_ref(&r
->req
);
340 scsi_command_complete_noio(r
, 0);
344 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_FROM_DEV
,
347 scsi_command_complete_noio(r
, ret
);
351 static void scsi_write_complete(void * opaque
, int ret
)
353 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
354 SCSIDevice
*s
= r
->req
.dev
;
356 trace_scsi_generic_write_complete(ret
);
358 assert(r
->req
.aiocb
!= NULL
);
361 aio_context_acquire(blk_get_aio_context(s
->conf
.blk
));
363 if (ret
|| r
->req
.io_canceled
) {
364 scsi_command_complete_noio(r
, ret
);
368 if (r
->req
.cmd
.buf
[0] == MODE_SELECT
&& r
->req
.cmd
.buf
[4] == 12 &&
369 s
->type
== TYPE_TAPE
) {
370 s
->blocksize
= (r
->buf
[9] << 16) | (r
->buf
[10] << 8) | r
->buf
[11];
371 trace_scsi_generic_write_complete_blocksize(s
->blocksize
);
374 scsi_command_complete_noio(r
, ret
);
377 aio_context_release(blk_get_aio_context(s
->conf
.blk
));
380 /* Write data to a scsi device. Returns nonzero on failure.
381 The transfer may complete asynchronously. */
382 static void scsi_write_data(SCSIRequest
*req
)
384 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
385 SCSIDevice
*s
= r
->req
.dev
;
388 trace_scsi_generic_write_data(req
->tag
);
391 scsi_req_data(&r
->req
, r
->len
);
395 /* The request is used as the AIO opaque value, so add a ref. */
396 scsi_req_ref(&r
->req
);
397 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_TO_DEV
, scsi_write_complete
);
399 scsi_command_complete_noio(r
, ret
);
403 /* Return a pointer to the data buffer. */
404 static uint8_t *scsi_get_buf(SCSIRequest
*req
)
406 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
411 static void scsi_generic_command_dump(uint8_t *cmd
, int len
)
414 char *line_buffer
, *p
;
416 line_buffer
= g_malloc(len
* 5 + 1);
418 for (i
= 0, p
= line_buffer
; i
< len
; i
++) {
419 p
+= sprintf(p
, " 0x%02x", cmd
[i
]);
421 trace_scsi_generic_send_command(line_buffer
);
426 /* Execute a scsi command. Returns the length of the data expected by the
427 command. This will be Positive for data transfers from the device
428 (eg. disk reads), negative for transfers to the device (eg. disk writes),
429 and zero if the command does not transfer any data. */
431 static int32_t scsi_send_command(SCSIRequest
*req
, uint8_t *cmd
)
433 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
434 SCSIDevice
*s
= r
->req
.dev
;
437 if (trace_event_get_state_backends(TRACE_SCSI_GENERIC_SEND_COMMAND
)) {
438 scsi_generic_command_dump(cmd
, r
->req
.cmd
.len
);
441 if (r
->req
.cmd
.xfer
== 0) {
445 /* The request is used as the AIO opaque value, so add a ref. */
446 scsi_req_ref(&r
->req
);
447 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_NONE
,
448 scsi_command_complete
);
450 scsi_command_complete_noio(r
, ret
);
456 if (r
->buflen
!= r
->req
.cmd
.xfer
) {
458 r
->buf
= g_malloc(r
->req
.cmd
.xfer
);
459 r
->buflen
= r
->req
.cmd
.xfer
;
462 memset(r
->buf
, 0, r
->buflen
);
463 r
->len
= r
->req
.cmd
.xfer
;
464 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
466 return -r
->req
.cmd
.xfer
;
468 return r
->req
.cmd
.xfer
;
472 static int read_naa_id(const uint8_t *p
, uint64_t *p_wwn
)
476 if ((p
[1] & 0xF) == 3) {
477 /* NAA designator type */
481 *p_wwn
= ldq_be_p(p
+ 4);
485 if ((p
[1] & 0xF) == 8) {
486 /* SCSI name string designator type */
487 if (p
[3] < 20 || memcmp(&p
[4], "naa.", 4)) {
490 if (p
[3] > 20 && p
[24] != ',') {
494 for (i
= 8; i
< 24; i
++) {
495 char c
= qemu_toupper(p
[i
]);
496 c
-= (c
>= '0' && c
<= '9' ? '0' : 'A' - 10);
497 *p_wwn
= (*p_wwn
<< 4) | c
;
505 int scsi_SG_IO_FROM_DEV(BlockBackend
*blk
, uint8_t *cmd
, uint8_t cmd_size
,
506 uint8_t *buf
, uint8_t buf_size
)
508 sg_io_hdr_t io_header
;
512 memset(&io_header
, 0, sizeof(io_header
));
513 io_header
.interface_id
= 'S';
514 io_header
.dxfer_direction
= SG_DXFER_FROM_DEV
;
515 io_header
.dxfer_len
= buf_size
;
516 io_header
.dxferp
= buf
;
517 io_header
.cmdp
= cmd
;
518 io_header
.cmd_len
= cmd_size
;
519 io_header
.mx_sb_len
= sizeof(sensebuf
);
520 io_header
.sbp
= sensebuf
;
521 io_header
.timeout
= 6000; /* XXX */
523 ret
= blk_ioctl(blk
, SG_IO
, &io_header
);
524 if (ret
< 0 || io_header
.driver_status
|| io_header
.host_status
) {
531 * Executes an INQUIRY request with EVPD set to retrieve the
532 * available VPD pages of the device. If the device does
533 * not support the Block Limits page (page 0xb0), set
534 * the needs_vpd_bl_emulation flag for future use.
536 static void scsi_generic_set_vpd_bl_emulation(SCSIDevice
*s
)
543 memset(cmd
, 0, sizeof(cmd
));
544 memset(buf
, 0, sizeof(buf
));
548 cmd
[4] = sizeof(buf
);
550 ret
= scsi_SG_IO_FROM_DEV(s
->conf
.blk
, cmd
, sizeof(cmd
),
554 * Do not assume anything if we can't retrieve the
555 * INQUIRY response to assert the VPD Block Limits
558 s
->needs_vpd_bl_emulation
= false;
563 for (i
= 4; i
< MIN(sizeof(buf
), page_len
+ 4); i
++) {
564 if (buf
[i
] == 0xb0) {
565 s
->needs_vpd_bl_emulation
= false;
569 s
->needs_vpd_bl_emulation
= true;
572 static void scsi_generic_read_device_identification(SCSIDevice
*s
)
579 memset(cmd
, 0, sizeof(cmd
));
580 memset(buf
, 0, sizeof(buf
));
584 cmd
[4] = sizeof(buf
);
586 ret
= scsi_SG_IO_FROM_DEV(s
->conf
.blk
, cmd
, sizeof(cmd
),
592 len
= MIN((buf
[2] << 8) | buf
[3], sizeof(buf
) - 4);
593 for (i
= 0; i
+ 3 <= len
; ) {
594 const uint8_t *p
= &buf
[i
+ 4];
597 if (i
+ (p
[3] + 4) > len
) {
601 if ((p
[1] & 0x10) == 0) {
602 /* Associated with the logical unit */
603 if (read_naa_id(p
, &wwn
) == 0) {
606 } else if ((p
[1] & 0x10) == 0x10) {
607 /* Associated with the target port */
608 if (read_naa_id(p
, &wwn
) == 0) {
617 void scsi_generic_read_device_inquiry(SCSIDevice
*s
)
619 scsi_generic_read_device_identification(s
);
620 if (s
->type
== TYPE_DISK
) {
621 scsi_generic_set_vpd_bl_emulation(s
);
623 s
->needs_vpd_bl_emulation
= false;
627 static int get_stream_blocksize(BlockBackend
*blk
)
633 memset(cmd
, 0, sizeof(cmd
));
634 memset(buf
, 0, sizeof(buf
));
636 cmd
[4] = sizeof(buf
);
638 ret
= scsi_SG_IO_FROM_DEV(blk
, cmd
, sizeof(cmd
), buf
, sizeof(buf
));
643 return (buf
[9] << 16) | (buf
[10] << 8) | buf
[11];
646 static void scsi_generic_reset(DeviceState
*dev
)
648 SCSIDevice
*s
= SCSI_DEVICE(dev
);
650 s
->scsi_version
= s
->default_scsi_version
;
651 scsi_device_purge_requests(s
, SENSE_CODE(RESET
));
654 static void scsi_generic_realize(SCSIDevice
*s
, Error
**errp
)
658 struct sg_scsi_id scsiid
;
661 error_setg(errp
, "drive property not set");
665 if (blk_get_on_error(s
->conf
.blk
, 0) != BLOCKDEV_ON_ERROR_ENOSPC
) {
666 error_setg(errp
, "Device doesn't support drive option werror");
669 if (blk_get_on_error(s
->conf
.blk
, 1) != BLOCKDEV_ON_ERROR_REPORT
) {
670 error_setg(errp
, "Device doesn't support drive option rerror");
674 /* check we are using a driver managing SG_IO (version 3 and after */
675 rc
= blk_ioctl(s
->conf
.blk
, SG_GET_VERSION_NUM
, &sg_version
);
677 error_setg_errno(errp
, -rc
, "cannot get SG_IO version number");
679 error_append_hint(errp
, "Is this a SCSI device?\n");
683 if (sg_version
< 30000) {
684 error_setg(errp
, "scsi generic interface too old");
688 /* get LUN of the /dev/sg? */
689 if (blk_ioctl(s
->conf
.blk
, SG_GET_SCSI_ID
, &scsiid
)) {
690 error_setg(errp
, "SG_GET_SCSI_ID ioctl failed");
693 if (!blkconf_apply_backend_options(&s
->conf
,
694 blk_is_read_only(s
->conf
.blk
),
699 /* define device state */
700 s
->type
= scsiid
.scsi_type
;
701 trace_scsi_generic_realize_type(s
->type
);
705 s
->blocksize
= get_stream_blocksize(s
->conf
.blk
);
706 if (s
->blocksize
== -1) {
711 /* Make a guess for block devices, we'll fix it when the guest sends.
712 * READ CAPACITY. If they don't, they likely would assume these sizes
713 * anyway. (TODO: they could also send MODE SENSE).
724 trace_scsi_generic_realize_blocksize(s
->blocksize
);
726 /* Only used by scsi-block, but initialize it nevertheless to be clean. */
727 s
->default_scsi_version
= -1;
728 scsi_generic_read_device_inquiry(s
);
731 const SCSIReqOps scsi_generic_req_ops
= {
732 .size
= sizeof(SCSIGenericReq
),
733 .free_req
= scsi_free_request
,
734 .send_command
= scsi_send_command
,
735 .read_data
= scsi_read_data
,
736 .write_data
= scsi_write_data
,
737 .get_buf
= scsi_get_buf
,
738 .load_request
= scsi_generic_load_request
,
739 .save_request
= scsi_generic_save_request
,
742 static SCSIRequest
*scsi_new_request(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
743 uint8_t *buf
, void *hba_private
)
745 return scsi_req_alloc(&scsi_generic_req_ops
, d
, tag
, lun
, hba_private
);
748 static Property scsi_generic_properties
[] = {
749 DEFINE_PROP_DRIVE("drive", SCSIDevice
, conf
.blk
),
750 DEFINE_PROP_BOOL("share-rw", SCSIDevice
, conf
.share_rw
, false),
751 DEFINE_PROP_END_OF_LIST(),
754 static int scsi_generic_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
,
755 uint8_t *buf
, void *hba_private
)
757 return scsi_bus_parse_cdb(dev
, cmd
, buf
, hba_private
);
760 static void scsi_generic_class_initfn(ObjectClass
*klass
, void *data
)
762 DeviceClass
*dc
= DEVICE_CLASS(klass
);
763 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
765 sc
->realize
= scsi_generic_realize
;
766 sc
->alloc_req
= scsi_new_request
;
767 sc
->parse_cdb
= scsi_generic_parse_cdb
;
768 dc
->fw_name
= "disk";
769 dc
->desc
= "pass through generic scsi device (/dev/sg*)";
770 dc
->reset
= scsi_generic_reset
;
771 device_class_set_props(dc
, scsi_generic_properties
);
772 dc
->vmsd
= &vmstate_scsi_device
;
775 static const TypeInfo scsi_generic_info
= {
776 .name
= "scsi-generic",
777 .parent
= TYPE_SCSI_DEVICE
,
778 .instance_size
= sizeof(SCSIDevice
),
779 .class_init
= scsi_generic_class_initfn
,
782 static void scsi_generic_register_types(void)
784 type_register_static(&scsi_generic_info
);
787 type_init(scsi_generic_register_types
)
789 #endif /* __linux__ */