From: Steven Rostedt Date: Wed, 19 Oct 2005 12:22:13 +0000 (-0400) Subject: [PATCH] scsi_error thread exits in TASK_INTERRUPTIBLE state. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;ds=sidebyside;h=461a0ffbec1bcea896bd5daf1a98a18232a1e9c7;p=deliverable%2Flinux.git [PATCH] scsi_error thread exits in TASK_INTERRUPTIBLE state. Found in the -rt patch set. The scsi_error thread likely will be in the TASK_INTERRUPTIBLE state upon exit. This patch fixes this bug. Signed-off-by: Steven Rostedt Signed-off-by: Linus Torvalds --- diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index ad5342165079..52b348c36d56 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -1645,6 +1645,8 @@ int scsi_error_handler(void *data) set_current_state(TASK_INTERRUPTIBLE); } + __set_current_state(TASK_RUNNING); + SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler scsi_eh_%d" " exiting\n",shost->host_no));