* [Qemu-devel] [PATCH] iSCSI: Add support for SG_IO to iscsi_ioctl()
@ 2012-08-31 0:28 Ronnie Sahlberg
2012-08-31 0:28 ` [Qemu-devel] [PATCH] iSCSI: We need to support SG_IO also from iscsi_ioctl() Ronnie Sahlberg
0 siblings, 1 reply; 3+ messages in thread
From: Ronnie Sahlberg @ 2012-08-31 0:28 UTC (permalink / raw)
To: pbonzini, qemu-devel
Paolo, List
Please find a small patch that adds support for SG_IO to the synchronous iscsi_ioctl() function.
This is needed to make scsi-block work with iscsi.
regards
ronnie sahlberg
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PATCH] iSCSI: We need to support SG_IO also from iscsi_ioctl()
2012-08-31 0:28 [Qemu-devel] [PATCH] iSCSI: Add support for SG_IO to iscsi_ioctl() Ronnie Sahlberg
@ 2012-08-31 0:28 ` Ronnie Sahlberg
2012-09-07 23:24 ` ronnie sahlberg
0 siblings, 1 reply; 3+ messages in thread
From: Ronnie Sahlberg @ 2012-08-31 0:28 UTC (permalink / raw)
To: pbonzini, qemu-devel; +Cc: Ronnie Sahlberg
We need to support SG_IO from the synchronous iscsi_ioctl() since
scsi-block uses this to do an INQ to the device to discover its properties
This patch makes scsi-block work with iscsi.
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
---
block/iscsi.c | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/block/iscsi.c b/block/iscsi.c
index 355ce65..189ab6f 100644
--- a/block/iscsi.c
+++ b/block/iscsi.c
@@ -537,7 +537,8 @@ iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status,
#define SG_ERR_DRIVER_SENSE 0x08
- if (status == SCSI_STATUS_CHECK_CONDITION && acb->task->datain.size >= 2) {
+ if (status == SCSI_STATUS_CHECK_CONDITION
+ && acb->task->datain.size >= 2) {
int ss;
acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE;
@@ -622,9 +623,17 @@ static BlockDriverAIOCB *iscsi_aio_ioctl(BlockDriverState *bs,
return &acb->common;
}
+
+static void ioctl_cb(void *opaque, int status)
+{
+ int *p_status = opaque;
+ *p_status = status;
+}
+
static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
{
IscsiLun *iscsilun = bs->opaque;
+ int status;
switch (req) {
case SG_GET_VERSION_NUM:
@@ -633,6 +642,15 @@ static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
case SG_GET_SCSI_ID:
((struct sg_scsi_id *)buf)->scsi_type = iscsilun->type;
break;
+ case SG_IO:
+ status = -EINPROGRESS;
+ iscsi_aio_ioctl(bs, req, buf, ioctl_cb, &status);
+
+ while (status == -EINPROGRESS) {
+ qemu_aio_wait();
+ }
+
+ return 0;
default:
return -1;
}
--
1.7.3.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] iSCSI: We need to support SG_IO also from iscsi_ioctl()
2012-08-31 0:28 ` [Qemu-devel] [PATCH] iSCSI: We need to support SG_IO also from iscsi_ioctl() Ronnie Sahlberg
@ 2012-09-07 23:24 ` ronnie sahlberg
0 siblings, 0 replies; 3+ messages in thread
From: ronnie sahlberg @ 2012-09-07 23:24 UTC (permalink / raw)
To: pbonzini, qemu-devel; +Cc: Ronnie Sahlberg
ping?
On Thu, Aug 30, 2012 at 5:28 PM, Ronnie Sahlberg
<ronniesahlberg@gmail.com> wrote:
> We need to support SG_IO from the synchronous iscsi_ioctl() since
> scsi-block uses this to do an INQ to the device to discover its properties
> This patch makes scsi-block work with iscsi.
>
> Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
> ---
> block/iscsi.c | 20 +++++++++++++++++++-
> 1 files changed, 19 insertions(+), 1 deletions(-)
>
> diff --git a/block/iscsi.c b/block/iscsi.c
> index 355ce65..189ab6f 100644
> --- a/block/iscsi.c
> +++ b/block/iscsi.c
> @@ -537,7 +537,8 @@ iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status,
>
> #define SG_ERR_DRIVER_SENSE 0x08
>
> - if (status == SCSI_STATUS_CHECK_CONDITION && acb->task->datain.size >= 2) {
> + if (status == SCSI_STATUS_CHECK_CONDITION
> + && acb->task->datain.size >= 2) {
> int ss;
>
> acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE;
> @@ -622,9 +623,17 @@ static BlockDriverAIOCB *iscsi_aio_ioctl(BlockDriverState *bs,
> return &acb->common;
> }
>
> +
> +static void ioctl_cb(void *opaque, int status)
> +{
> + int *p_status = opaque;
> + *p_status = status;
> +}
> +
> static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
> {
> IscsiLun *iscsilun = bs->opaque;
> + int status;
>
> switch (req) {
> case SG_GET_VERSION_NUM:
> @@ -633,6 +642,15 @@ static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
> case SG_GET_SCSI_ID:
> ((struct sg_scsi_id *)buf)->scsi_type = iscsilun->type;
> break;
> + case SG_IO:
> + status = -EINPROGRESS;
> + iscsi_aio_ioctl(bs, req, buf, ioctl_cb, &status);
> +
> + while (status == -EINPROGRESS) {
> + qemu_aio_wait();
> + }
> +
> + return 0;
> default:
> return -1;
> }
> --
> 1.7.3.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-09-07 23:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-31 0:28 [Qemu-devel] [PATCH] iSCSI: Add support for SG_IO to iscsi_ioctl() Ronnie Sahlberg
2012-08-31 0:28 ` [Qemu-devel] [PATCH] iSCSI: We need to support SG_IO also from iscsi_ioctl() Ronnie Sahlberg
2012-09-07 23:24 ` ronnie sahlberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).