提交 f37bd73b 编写于 作者: H Hannes Reinecke 提交者: Kevin Wolf

scsi-disk: Remove 'drive_kind'

Instead of using its own definitions scsi-disk should
be using the device type of the parent device.
Signed-off-by: NHannes Reinecke <hare@suse.de>
Signed-off-by: NKevin Wolf <kwolf@redhat.com>
上级 5e30a07d
...@@ -164,6 +164,7 @@ ...@@ -164,6 +164,7 @@
#define TYPE_DISK 0x00 #define TYPE_DISK 0x00
#define TYPE_TAPE 0x01 #define TYPE_TAPE 0x01
#define TYPE_PRINTER 0x02
#define TYPE_PROCESSOR 0x03 /* HP scanners use this */ #define TYPE_PROCESSOR 0x03 /* HP scanners use this */
#define TYPE_WORM 0x04 /* Treated as ROM by our system */ #define TYPE_WORM 0x04 /* Treated as ROM by our system */
#define TYPE_ROM 0x05 #define TYPE_ROM 0x05
...@@ -171,6 +172,9 @@ ...@@ -171,6 +172,9 @@
#define TYPE_MOD 0x07 /* Magneto-optical disk - #define TYPE_MOD 0x07 /* Magneto-optical disk -
* - treated as TYPE_DISK */ * - treated as TYPE_DISK */
#define TYPE_MEDIUM_CHANGER 0x08 #define TYPE_MEDIUM_CHANGER 0x08
#define TYPE_ENCLOSURE 0x0d /* Enclosure Services Device */ #define TYPE_STORAGE_ARRAY 0x0c /* Storage array device */
#define TYPE_ENCLOSURE 0x0d /* Enclosure Services Device */
#define TYPE_RBC 0x0e /* Simplified Direct-Access Device */
#define TYPE_OSD 0x11 /* Object-storage Device */
#define TYPE_NO_LUN 0x7f #define TYPE_NO_LUN 0x7f
...@@ -59,8 +59,6 @@ typedef struct SCSIDiskReq { ...@@ -59,8 +59,6 @@ typedef struct SCSIDiskReq {
uint32_t status; uint32_t status;
} SCSIDiskReq; } SCSIDiskReq;
typedef enum { SCSI_HD, SCSI_CD } SCSIDriveKind;
struct SCSIDiskState struct SCSIDiskState
{ {
SCSIDevice qdev; SCSIDevice qdev;
...@@ -74,7 +72,6 @@ struct SCSIDiskState ...@@ -74,7 +72,6 @@ struct SCSIDiskState
char *version; char *version;
char *serial; char *serial;
SCSISense sense; SCSISense sense;
SCSIDriveKind drive_kind;
}; };
static int scsi_handle_rw_error(SCSIDiskReq *r, int error, int type); static int scsi_handle_rw_error(SCSIDiskReq *r, int error, int type);
...@@ -382,7 +379,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) ...@@ -382,7 +379,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
return -1; return -1;
} }
if (s->drive_kind == SCSI_CD) { if (s->qdev.type == TYPE_ROM) {
outbuf[buflen++] = 5; outbuf[buflen++] = 5;
} else { } else {
outbuf[buflen++] = 0; outbuf[buflen++] = 0;
...@@ -401,7 +398,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) ...@@ -401,7 +398,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
if (s->serial) if (s->serial)
outbuf[buflen++] = 0x80; // unit serial number outbuf[buflen++] = 0x80; // unit serial number
outbuf[buflen++] = 0x83; // device identification outbuf[buflen++] = 0x83; // device identification
if (s->drive_kind == SCSI_HD) { if (s->qdev.type == TYPE_DISK) {
outbuf[buflen++] = 0xb0; // block limits outbuf[buflen++] = 0xb0; // block limits
outbuf[buflen++] = 0xb2; // thin provisioning outbuf[buflen++] = 0xb2; // thin provisioning
} }
...@@ -460,7 +457,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) ...@@ -460,7 +457,7 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
unsigned int opt_io_size = unsigned int opt_io_size =
s->qdev.conf.opt_io_size / s->qdev.blocksize; s->qdev.conf.opt_io_size / s->qdev.blocksize;
if (s->drive_kind == SCSI_CD) { if (s->qdev.type == TYPE_ROM) {
DPRINTF("Inquiry (EVPD[%02X] not supported for CDROM\n", DPRINTF("Inquiry (EVPD[%02X] not supported for CDROM\n",
page_code); page_code);
return -1; return -1;
...@@ -530,12 +527,11 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) ...@@ -530,12 +527,11 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
return buflen; return buflen;
} }
if (s->drive_kind == SCSI_CD) { outbuf[0] = s->qdev.type & 0x1f;
outbuf[0] = 5; if (s->qdev.type == TYPE_ROM) {
outbuf[1] = 0x80; outbuf[1] = 0x80;
memcpy(&outbuf[16], "QEMU CD-ROM ", 16); memcpy(&outbuf[16], "QEMU CD-ROM ", 16);
} else { } else {
outbuf[0] = 0;
outbuf[1] = s->removable ? 0x80 : 0; outbuf[1] = s->removable ? 0x80 : 0;
memcpy(&outbuf[16], "QEMU HARDDISK ", 16); memcpy(&outbuf[16], "QEMU HARDDISK ", 16);
} }
...@@ -661,7 +657,7 @@ static int mode_sense_page(SCSIRequest *req, int page, uint8_t *p, ...@@ -661,7 +657,7 @@ static int mode_sense_page(SCSIRequest *req, int page, uint8_t *p,
return p[1] + 2; return p[1] + 2;
case 0x2a: /* CD Capabilities and Mechanical Status page. */ case 0x2a: /* CD Capabilities and Mechanical Status page. */
if (s->drive_kind != SCSI_CD) if (s->qdev.type != TYPE_ROM)
return 0; return 0;
p[0] = 0x2a; p[0] = 0x2a;
p[1] = 0x14; p[1] = 0x14;
...@@ -877,7 +873,7 @@ static int scsi_disk_emulate_command(SCSIDiskReq *r, uint8_t *outbuf) ...@@ -877,7 +873,7 @@ static int scsi_disk_emulate_command(SCSIDiskReq *r, uint8_t *outbuf)
goto illegal_request; goto illegal_request;
break; break;
case START_STOP: case START_STOP:
if (s->drive_kind == SCSI_CD && (req->cmd.buf[4] & 2)) { if (s->qdev.type == TYPE_ROM && (req->cmd.buf[4] & 2)) {
/* load/eject medium */ /* load/eject medium */
bdrv_eject(s->bs, !(req->cmd.buf[4] & 1)); bdrv_eject(s->bs, !(req->cmd.buf[4] & 1));
} }
...@@ -1183,7 +1179,7 @@ static void scsi_destroy(SCSIDevice *dev) ...@@ -1183,7 +1179,7 @@ static void scsi_destroy(SCSIDevice *dev)
blockdev_mark_auto_del(s->qdev.conf.bs); blockdev_mark_auto_del(s->qdev.conf.bs);
} }
static int scsi_initfn(SCSIDevice *dev, SCSIDriveKind kind) static int scsi_initfn(SCSIDevice *dev, uint8_t scsi_type)
{ {
SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev); SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
DriveInfo *dinfo; DriveInfo *dinfo;
...@@ -1193,9 +1189,8 @@ static int scsi_initfn(SCSIDevice *dev, SCSIDriveKind kind) ...@@ -1193,9 +1189,8 @@ static int scsi_initfn(SCSIDevice *dev, SCSIDriveKind kind)
return -1; return -1;
} }
s->bs = s->qdev.conf.bs; s->bs = s->qdev.conf.bs;
s->drive_kind = kind;
if (kind == SCSI_HD && !bdrv_is_inserted(s->bs)) { if (scsi_type == TYPE_DISK && !bdrv_is_inserted(s->bs)) {
error_report("Device needs media, but drive is empty"); error_report("Device needs media, but drive is empty");
return -1; return -1;
} }
...@@ -1217,44 +1212,47 @@ static int scsi_initfn(SCSIDevice *dev, SCSIDriveKind kind) ...@@ -1217,44 +1212,47 @@ static int scsi_initfn(SCSIDevice *dev, SCSIDriveKind kind)
return -1; return -1;
} }
if (kind == SCSI_CD) { if (scsi_type == TYPE_ROM) {
s->qdev.blocksize = 2048; s->qdev.blocksize = 2048;
} else { } else if (scsi_type == TYPE_DISK) {
s->qdev.blocksize = s->qdev.conf.logical_block_size; s->qdev.blocksize = s->qdev.conf.logical_block_size;
} else {
error_report("scsi-disk: Unhandled SCSI type %02x", scsi_type);
return -1;
} }
s->cluster_size = s->qdev.blocksize / 512; s->cluster_size = s->qdev.blocksize / 512;
s->bs->buffer_alignment = s->qdev.blocksize; s->bs->buffer_alignment = s->qdev.blocksize;
s->qdev.type = TYPE_DISK; s->qdev.type = scsi_type;
qemu_add_vm_change_state_handler(scsi_dma_restart_cb, s); qemu_add_vm_change_state_handler(scsi_dma_restart_cb, s);
bdrv_set_removable(s->bs, kind == SCSI_CD); bdrv_set_removable(s->bs, scsi_type == TYPE_ROM);
add_boot_device_path(s->qdev.conf.bootindex, &dev->qdev, ",0"); add_boot_device_path(s->qdev.conf.bootindex, &dev->qdev, ",0");
return 0; return 0;
} }
static int scsi_hd_initfn(SCSIDevice *dev) static int scsi_hd_initfn(SCSIDevice *dev)
{ {
return scsi_initfn(dev, SCSI_HD); return scsi_initfn(dev, TYPE_DISK);
} }
static int scsi_cd_initfn(SCSIDevice *dev) static int scsi_cd_initfn(SCSIDevice *dev)
{ {
return scsi_initfn(dev, SCSI_CD); return scsi_initfn(dev, TYPE_ROM);
} }
static int scsi_disk_initfn(SCSIDevice *dev) static int scsi_disk_initfn(SCSIDevice *dev)
{ {
SCSIDriveKind kind;
DriveInfo *dinfo; DriveInfo *dinfo;
uint8_t scsi_type;
if (!dev->conf.bs) { if (!dev->conf.bs) {
kind = SCSI_HD; /* will die in scsi_initfn() */ scsi_type = TYPE_DISK; /* will die in scsi_initfn() */
} else { } else {
dinfo = drive_get_by_blockdev(dev->conf.bs); dinfo = drive_get_by_blockdev(dev->conf.bs);
kind = dinfo->media_cd ? SCSI_CD : SCSI_HD; scsi_type = dinfo->media_cd ? TYPE_ROM : TYPE_DISK;
} }
return scsi_initfn(dev, kind); return scsi_initfn(dev, scsi_type);
} }
#define DEFINE_SCSI_DISK_PROPERTIES() \ #define DEFINE_SCSI_DISK_PROPERTIES() \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册