提交 837c3901 编写于 作者: P Peter Lieven 提交者: Paolo Bonzini

block/iscsi: fix deadlock on scsi check condition

the retry logic was broken because the complete status
of the task structure was not reset. this resulted in
an infinite loop retrying the command over and over.

CC: qemu-stable@nongnu.org
Signed-off-by: NPeter Lieven <pl@kamp.de>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 7ef8cf9a
...@@ -145,12 +145,13 @@ iscsi_co_generic_cb(struct iscsi_context *iscsi, int status, ...@@ -145,12 +145,13 @@ iscsi_co_generic_cb(struct iscsi_context *iscsi, int status,
if (iTask->retries-- > 0 && status == SCSI_STATUS_CHECK_CONDITION if (iTask->retries-- > 0 && status == SCSI_STATUS_CHECK_CONDITION
&& task->sense.key == SCSI_SENSE_UNIT_ATTENTION) { && task->sense.key == SCSI_SENSE_UNIT_ATTENTION) {
error_report("iSCSI CheckCondition: %s", iscsi_get_error(iscsi));
iTask->do_retry = 1; iTask->do_retry = 1;
goto out; goto out;
} }
if (status != SCSI_STATUS_GOOD) { if (status != SCSI_STATUS_GOOD) {
error_report("iSCSI: Failure. %s", iscsi_get_error(iscsi)); error_report("iSCSI Failure: %s", iscsi_get_error(iscsi));
} }
out: out:
...@@ -325,6 +326,7 @@ retry: ...@@ -325,6 +326,7 @@ retry:
} }
if (iTask.do_retry) { if (iTask.do_retry) {
iTask.complete = 0;
goto retry; goto retry;
} }
...@@ -399,6 +401,7 @@ retry: ...@@ -399,6 +401,7 @@ retry:
} }
if (iTask.do_retry) { if (iTask.do_retry) {
iTask.complete = 0;
goto retry; goto retry;
} }
...@@ -433,6 +436,7 @@ retry: ...@@ -433,6 +436,7 @@ retry:
} }
if (iTask.do_retry) { if (iTask.do_retry) {
iTask.complete = 0;
goto retry; goto retry;
} }
...@@ -683,6 +687,7 @@ retry: ...@@ -683,6 +687,7 @@ retry:
scsi_free_scsi_task(iTask.task); scsi_free_scsi_task(iTask.task);
iTask.task = NULL; iTask.task = NULL;
} }
iTask.complete = 0;
goto retry; goto retry;
} }
...@@ -767,6 +772,7 @@ retry: ...@@ -767,6 +772,7 @@ retry:
} }
if (iTask.do_retry) { if (iTask.do_retry) {
iTask.complete = 0;
goto retry; goto retry;
} }
...@@ -836,6 +842,7 @@ retry: ...@@ -836,6 +842,7 @@ retry:
} }
if (iTask.do_retry) { if (iTask.do_retry) {
iTask.complete = 0;
goto retry; goto retry;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册