diff options
author | Paolo Bonzini | 2011-07-27 23:24:50 +0200 |
---|---|---|
committer | Kevin Wolf | 2011-10-28 19:25:51 +0200 |
commit | 0d3545e76c856be4cce26cf1c96981b26cafb6b1 (patch) | |
tree | 9882e28d6a168fe77753f0e5a1490669f067cb2a /hw/esp.c | |
parent | scsi: allow arbitrary LUNs (diff) | |
download | qemu-0d3545e76c856be4cce26cf1c96981b26cafb6b1.tar.gz qemu-0d3545e76c856be4cce26cf1c96981b26cafb6b1.tar.xz qemu-0d3545e76c856be4cce26cf1c96981b26cafb6b1.zip |
scsi: add channel to addressing
This also requires little more than adding the new argument to
scsi_device_find, and the qdev property. All devices by default
end up on channel 0.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/esp.c')
-rw-r--r-- | hw/esp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -217,7 +217,7 @@ static uint32_t get_cmd(ESPState *s, uint8_t *buf) s->async_len = 0; } - s->current_dev = scsi_device_find(&s->bus, target, 0); + s->current_dev = scsi_device_find(&s->bus, 0, target, 0); if (!s->current_dev) { // No such drive s->rregs[ESP_RSTAT] = 0; @@ -237,7 +237,7 @@ static void do_busid_cmd(ESPState *s, uint8_t *buf, uint8_t busid) trace_esp_do_busid_cmd(busid); lun = busid & 7; - current_lun = scsi_device_find(&s->bus, s->current_dev->id, lun); + current_lun = scsi_device_find(&s->bus, 0, s->current_dev->id, lun); s->current_req = scsi_req_new(current_lun, 0, lun, buf, NULL); datalen = scsi_req_enqueue(s->current_req); s->ti_size = datalen; |