Commit fd0a1c61 authored by James Bottomley's avatar James Bottomley

Merge mulgrave.(none):/home/jejb/BK/linux-2.5

into mulgrave.(none):/home/jejb/BK/scsi-for-linus-2.5
parents 1c6232c3 9b46c836
...@@ -284,6 +284,7 @@ NCR_700_detect(Scsi_Host_Template *tpnt, ...@@ -284,6 +284,7 @@ NCR_700_detect(Scsi_Host_Template *tpnt,
tpnt->use_clustering = DISABLE_CLUSTERING; tpnt->use_clustering = DISABLE_CLUSTERING;
tpnt->proc_info = NCR_700_proc_directory_info; tpnt->proc_info = NCR_700_proc_directory_info;
tpnt->use_blk_tcq = 1; tpnt->use_blk_tcq = 1;
tpnt->highmem_io = 1;
if(tpnt->name == NULL) if(tpnt->name == NULL)
tpnt->name = "53c700"; tpnt->name = "53c700";
......
...@@ -259,6 +259,48 @@ struct Scsi_Host * scsi_register(Scsi_Host_Template * tpnt, int j) ...@@ -259,6 +259,48 @@ struct Scsi_Host * scsi_register(Scsi_Host_Template * tpnt, int j)
return retval; return retval;
} }
void scsi_host_busy_inc(struct Scsi_Host *shost, Scsi_Device *sdev)
{
unsigned long flags;
spin_lock_irqsave(shost->host_lock, flags);
shost->host_busy++;
sdev->device_busy++;
spin_unlock_irqrestore(shost->host_lock, flags);
}
void scsi_host_busy_dec_and_test(struct Scsi_Host *shost, Scsi_Device *sdev)
{
unsigned long flags;
spin_lock_irqsave(shost->host_lock, flags);
shost->host_busy--;
sdev->device_busy--;
if (shost->in_recovery && (shost->host_busy == shost->host_failed)) {
up(shost->eh_wait);
SCSI_LOG_ERROR_RECOVERY(5, printk("Waking error handler"
"thread (%d)\n",
atomic_read(&shost->eh_wait->count)));
}
spin_unlock_irqrestore(shost->host_lock, flags);
}
void scsi_host_failed_inc_and_test(struct Scsi_Host *shost)
{
unsigned long flags;
spin_lock_irqsave(shost->host_lock, flags);
shost->in_recovery = 1;
shost->host_failed++;
if (shost->host_busy == shost->host_failed) {
up(shost->eh_wait);
SCSI_LOG_ERROR_RECOVERY(5, printk("Waking error handler"
"thread (%d)\n",
atomic_read(&shost->eh_wait->count)));
}
spin_unlock_irqrestore(shost->host_lock, flags);
}
/* /*
* Overrides for Emacs so that we follow Linus's tabbing style. * Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically * Emacs will notice this stuff at the end of the file and automatically
......
...@@ -543,6 +543,13 @@ extern int scsi_unregister_device(struct Scsi_Device_Template *); ...@@ -543,6 +543,13 @@ extern int scsi_unregister_device(struct Scsi_Device_Template *);
extern int scsi_register_host(Scsi_Host_Template *); extern int scsi_register_host(Scsi_Host_Template *);
extern int scsi_unregister_host(Scsi_Host_Template *); extern int scsi_unregister_host(Scsi_Host_Template *);
/*
* host_busy inc/dec/test functions
*/
extern void scsi_host_busy_inc(struct Scsi_Host *, Scsi_Device *);
extern void scsi_host_busy_dec_and_test(struct Scsi_Host *, Scsi_Device *);
extern void scsi_host_failed_inc_and_test(struct Scsi_Host *);
/* /*
* This is an ugly hack. If we expect to be able to load devices at run time, * This is an ugly hack. If we expect to be able to load devices at run time,
......
...@@ -566,22 +566,6 @@ inline void __scsi_release_command(Scsi_Cmnd * SCpnt) ...@@ -566,22 +566,6 @@ inline void __scsi_release_command(Scsi_Cmnd * SCpnt)
SCpnt->target, SCpnt->target,
atomic_read(&SCpnt->host->host_active), atomic_read(&SCpnt->host->host_active),
SCpnt->host->host_failed)); SCpnt->host->host_failed));
if (SCpnt->host->host_failed != 0) {
SCSI_LOG_ERROR_RECOVERY(5, printk("Error handler thread %d %d\n",
SCpnt->host->in_recovery,
SCpnt->host->eh_active));
}
/*
* If the host is having troubles, then look to see if this was the last
* command that might have failed. If so, wake up the error handler.
*/
if (SCpnt->host->in_recovery
&& !SCpnt->host->eh_active
&& SCpnt->host->host_busy == SCpnt->host->host_failed) {
SCSI_LOG_ERROR_RECOVERY(5, printk("Waking error handler thread (%d)\n",
atomic_read(&SCpnt->host->eh_wait->count)));
up(SCpnt->host->eh_wait);
}
spin_unlock_irqrestore(&device_request_lock, flags); spin_unlock_irqrestore(&device_request_lock, flags);
...@@ -1217,28 +1201,11 @@ void scsi_done(Scsi_Cmnd * SCpnt) ...@@ -1217,28 +1201,11 @@ void scsi_done(Scsi_Cmnd * SCpnt)
* etc, etc. * etc, etc.
*/ */
if (!tstatus) { if (!tstatus) {
SCpnt->done_late = 1;
return; return;
} }
/* Set the serial numbers back to zero */ /* Set the serial numbers back to zero */
SCpnt->serial_number = 0; SCpnt->serial_number = 0;
/*
* First, see whether this command already timed out. If so, we ignore
* the response. We treat it as if the command never finished.
*
* Since serial_number is now 0, the error handler cound detect this
* situation and avoid to call the low level driver abort routine.
* (DB)
*
* FIXME(eric) - I believe that this test is now redundant, due to
* the test of the return status of del_timer().
*/
if (SCpnt->state == SCSI_STATE_TIMEOUT) {
SCSI_LOG_MLCOMPLETE(1, printk("Ignoring completion of %p due to timeout status", SCpnt));
return;
}
SCpnt->serial_number_at_timeout = 0; SCpnt->serial_number_at_timeout = 0;
SCpnt->state = SCSI_STATE_BHQUEUE; SCpnt->state = SCSI_STATE_BHQUEUE;
SCpnt->owner = SCSI_OWNER_BH_HANDLER; SCpnt->owner = SCSI_OWNER_BH_HANDLER;
...@@ -1349,21 +1316,11 @@ static void scsi_softirq(struct softirq_action *h) ...@@ -1349,21 +1316,11 @@ static void scsi_softirq(struct softirq_action *h)
SCSI_LOG_MLCOMPLETE(3, print_sense("bh", SCpnt)); SCSI_LOG_MLCOMPLETE(3, print_sense("bh", SCpnt));
} }
if (SCpnt->host->eh_wait != NULL) { if (SCpnt->host->eh_wait != NULL) {
SCpnt->host->host_failed++; scsi_eh_eflags_set(SCpnt, SCSI_EH_CMD_FAILED | SCSI_EH_CMD_ERR);
SCpnt->owner = SCSI_OWNER_ERROR_HANDLER; SCpnt->owner = SCSI_OWNER_ERROR_HANDLER;
SCpnt->state = SCSI_STATE_FAILED; SCpnt->state = SCSI_STATE_FAILED;
SCpnt->host->in_recovery = 1;
/* scsi_host_failed_inc_and_test(SCpnt->host);
* If the host is having troubles, then
* look to see if this was the last
* command that might have failed. If
* so, wake up the error handler.
*/
if (SCpnt->host->host_busy == SCpnt->host->host_failed) {
SCSI_LOG_ERROR_RECOVERY(5, printk("Waking error handler thread (%d)\n",
atomic_read(&SCpnt->host->eh_wait->count)));
up(SCpnt->host->eh_wait);
}
} else { } else {
/* /*
* We only get here if the error * We only get here if the error
...@@ -1418,7 +1375,6 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt) ...@@ -1418,7 +1375,6 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt)
struct Scsi_Host *host; struct Scsi_Host *host;
Scsi_Device *device; Scsi_Device *device;
Scsi_Request * SRpnt; Scsi_Request * SRpnt;
unsigned long flags;
host = SCpnt->host; host = SCpnt->host;
device = SCpnt->device; device = SCpnt->device;
...@@ -1432,10 +1388,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt) ...@@ -1432,10 +1388,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt)
* one execution context, but the device and host structures are * one execution context, but the device and host structures are
* shared. * shared.
*/ */
spin_lock_irqsave(host->host_lock, flags); scsi_host_busy_dec_and_test(host, device);
host->host_busy--; /* Indicate that we are free */
device->device_busy--; /* Decrement device usage counter. */
spin_unlock_irqrestore(host->host_lock, flags);
/* /*
* Clear the flags which say that the device/host is no longer * Clear the flags which say that the device/host is no longer
...@@ -1450,7 +1403,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt) ...@@ -1450,7 +1403,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt)
* If we have valid sense information, then some kind of recovery * If we have valid sense information, then some kind of recovery
* must have taken place. Make a note of this. * must have taken place. Make a note of this.
*/ */
if (scsi_sense_valid(SCpnt)) { if (SCSI_SENSE_VALID(SCpnt)) {
SCpnt->result |= (DRIVER_SENSE << 24); SCpnt->result |= (DRIVER_SENSE << 24);
} }
SCSI_LOG_MLCOMPLETE(3, printk("Notifying upper driver of completion for device %d %x\n", SCSI_LOG_MLCOMPLETE(3, printk("Notifying upper driver of completion for device %d %x\n",
......
...@@ -428,7 +428,6 @@ extern void scsi_add_timer(Scsi_Cmnd * SCset, int timeout, ...@@ -428,7 +428,6 @@ extern void scsi_add_timer(Scsi_Cmnd * SCset, int timeout,
void (*complete) (Scsi_Cmnd *)); void (*complete) (Scsi_Cmnd *));
extern int scsi_delete_timer(Scsi_Cmnd * SCset); extern int scsi_delete_timer(Scsi_Cmnd * SCset);
extern void scsi_error_handler(void *host); extern void scsi_error_handler(void *host);
extern int scsi_sense_valid(Scsi_Cmnd *);
extern int scsi_decide_disposition(Scsi_Cmnd * SCpnt); extern int scsi_decide_disposition(Scsi_Cmnd * SCpnt);
extern int scsi_block_when_processing_errors(Scsi_Device *); extern int scsi_block_when_processing_errors(Scsi_Device *);
extern void scsi_sleep(int); extern void scsi_sleep(int);
...@@ -701,6 +700,7 @@ struct scsi_cmnd { ...@@ -701,6 +700,7 @@ struct scsi_cmnd {
struct scsi_cmnd *reset_chain; struct scsi_cmnd *reset_chain;
int eh_state; /* Used for state tracking in error handlr */ int eh_state; /* Used for state tracking in error handlr */
int eh_eflags; /* Used by error handlr */
void (*done) (struct scsi_cmnd *); /* Mid-level done function */ void (*done) (struct scsi_cmnd *); /* Mid-level done function */
/* /*
A SCSI Command is assigned a nonzero serial_number when internal_cmnd A SCSI Command is assigned a nonzero serial_number when internal_cmnd
...@@ -940,4 +940,26 @@ static inline Scsi_Cmnd *scsi_find_tag(Scsi_Device *SDpnt, int tag) { ...@@ -940,4 +940,26 @@ static inline Scsi_Cmnd *scsi_find_tag(Scsi_Device *SDpnt, int tag) {
return (Scsi_Cmnd *)req->special; return (Scsi_Cmnd *)req->special;
} }
#define scsi_eh_eflags_chk(scp, flags) (scp->eh_eflags & flags)
#define scsi_eh_eflags_set(scp, flags) do { \
scp->eh_eflags |= flags; \
} while(0)
#define scsi_eh_eflags_clr(scp, flags) do { \
scp->eh_eflags &= ~flags; \
} while(0)
#define scsi_eh_eflags_clr_all(scp) (scp->eh_eflags = 0)
/*
* Scsi Error Handler Flags
*/
#define SCSI_EH_CMD_ERR 0x0001 /* Orig cmd error'd */
#define SCSI_EH_CMD_FAILED 0x0002 /* Orig cmd error type failed */
#define SCSI_EH_CMD_TIMEOUT 0x0004 /* Orig cmd error type timeout */
#define SCSI_EH_REC_TIMEOUT 0x0008 /* Recovery cmd timeout */
#define SCSI_SENSE_VALID(scmd) ((scmd->sense_buffer[0] & 0x70) == 0x70)
#endif #endif
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
* Leonard Zubkoff and David Miller at Linux Expo, * Leonard Zubkoff and David Miller at Linux Expo,
* ideas originating from all over the place. * ideas originating from all over the place.
* *
* Restructured scsi_unjam_host and associated functions.
* September 04, 2002 Mike Anderson (andmike@us.ibm.com)
*/ */
#include <linux/module.h> #include <linux/module.h>
...@@ -49,16 +51,10 @@ ...@@ -49,16 +51,10 @@
#ifdef DEBUG #ifdef DEBUG
#define SENSE_TIMEOUT SCSI_TIMEOUT #define SENSE_TIMEOUT SCSI_TIMEOUT
#define ABORT_TIMEOUT SCSI_TIMEOUT
#define RESET_TIMEOUT SCSI_TIMEOUT
#else #else
#define SENSE_TIMEOUT (10*HZ) #define SENSE_TIMEOUT (10*HZ)
#define RESET_TIMEOUT (2*HZ)
#define ABORT_TIMEOUT (15*HZ)
#endif #endif
#define STATIC
/* /*
* These should *probably* be handled by the host itself. * These should *probably* be handled by the host itself.
* Since it is allowed to sleep, it probably should. * Since it is allowed to sleep, it probably should.
...@@ -66,47 +62,21 @@ ...@@ -66,47 +62,21 @@
#define BUS_RESET_SETTLE_TIME 5*HZ #define BUS_RESET_SETTLE_TIME 5*HZ
#define HOST_RESET_SETTLE_TIME 10*HZ #define HOST_RESET_SETTLE_TIME 10*HZ
/**
static const char RCSid[] = "$Header: /mnt/ide/home/eric/CVSROOT/linux/drivers/scsi/scsi_error.c,v 1.10 1997/12/08 04:50:35 eric Exp $"; * scsi_add_timer - Start timeout timer for a single scsi command.
* @scmd: scsi command that is about to start running.
STATIC int scsi_check_sense(Scsi_Cmnd * SCpnt); * @timeout: amount of time to allow this command to run.
STATIC int scsi_request_sense(Scsi_Cmnd *); * @complete: timeout function to call if timer isn't canceled.
STATIC void scsi_send_eh_cmnd(Scsi_Cmnd * SCpnt, int timeout);
STATIC int scsi_try_to_abort_command(Scsi_Cmnd *, int);
STATIC int scsi_test_unit_ready(Scsi_Cmnd *);
STATIC int scsi_try_bus_device_reset(Scsi_Cmnd *, int timeout);
STATIC int scsi_try_bus_reset(Scsi_Cmnd *);
STATIC int scsi_try_host_reset(Scsi_Cmnd *);
STATIC int scsi_unit_is_ready(Scsi_Cmnd *);
STATIC void scsi_eh_action_done(Scsi_Cmnd *, int);
STATIC int scsi_eh_retry_command(Scsi_Cmnd *);
STATIC int scsi_eh_completed_normally(Scsi_Cmnd * SCpnt);
STATIC void scsi_restart_operations(struct Scsi_Host *);
STATIC void scsi_eh_finish_command(Scsi_Cmnd ** SClist, Scsi_Cmnd * SCpnt);
/*
* Function: scsi_add_timer()
*
* Purpose: Start timeout timer for a single scsi command.
*
* Arguments: SCset - command that is about to start running.
* timeout - amount of time to allow this command to run.
* complete - timeout function to call if timer isn't
* canceled.
* *
* Returns: Nothing * Notes:
* * This should be turned into an inline function. Each scsi command
* Notes: This should be turned into an inline function. * has it's own timer, and as it is added to the queue, we set up the
* * timer. When the command completes, we cancel the timer. Pretty
* More Notes: Each scsi command has it's own timer, and as it is added to * simple, really, especially compared to the old way of handling this
* the queue, we set up the timer. When the command completes, * crap.
* we cancel the timer. Pretty simple, really, especially **/
* compared to the old way of handling this crap. void scsi_add_timer(Scsi_Cmnd *scmd, int timeout, void (*complete)
*/ (Scsi_Cmnd *))
void scsi_add_timer(Scsi_Cmnd * SCset,
int timeout,
void (*complete) (Scsi_Cmnd *))
{ {
/* /*
...@@ -114,320 +84,541 @@ void scsi_add_timer(Scsi_Cmnd * SCset, ...@@ -114,320 +84,541 @@ void scsi_add_timer(Scsi_Cmnd * SCset,
* first delete the timer. The timer handling code gets rather * first delete the timer. The timer handling code gets rather
* confused if we don't do this. * confused if we don't do this.
*/ */
if (SCset->eh_timeout.function != NULL) { if (scmd->eh_timeout.function != NULL) {
del_timer(&SCset->eh_timeout); del_timer(&scmd->eh_timeout);
} }
SCset->eh_timeout.data = (unsigned long) SCset; scmd->eh_timeout.data = (unsigned long) scmd;
SCset->eh_timeout.expires = jiffies + timeout; scmd->eh_timeout.expires = jiffies + timeout;
SCset->eh_timeout.function = (void (*)(unsigned long)) complete; scmd->eh_timeout.function = (void (*)(unsigned long)) complete;
SCset->done_late = 0;
SCSI_LOG_ERROR_RECOVERY(5, printk("Adding timer for command %p at %d (%p)\n", SCset, timeout, complete)); SCSI_LOG_ERROR_RECOVERY(5, printk("Adding timer for command %p at"
"%d (%p)\n", scmd, timeout,
complete));
add_timer(&SCset->eh_timeout); add_timer(&scmd->eh_timeout);
} }
/* /**
* Function: scsi_delete_timer() * scsi_delete_timer - Delete/cancel timer for a given function.
* * @scmd: Cmd that we are canceling timer for
* Purpose: Delete/cancel timer for a given function.
* *
* Arguments: SCset - command that we are canceling timer for. * Notes:
* * This should be turned into an inline function.
* Returns: 1 if we were able to detach the timer. 0 if we
* blew it, and the timer function has already started
* to run.
* *
* Notes: This should be turned into an inline function. * Return value:
*/ * 1 if we were able to detach the timer. 0 if we blew it, and the
int scsi_delete_timer(Scsi_Cmnd * SCset) * timer function has already started to run.
**/
int scsi_delete_timer(Scsi_Cmnd *scmd)
{ {
int rtn; int rtn;
rtn = del_timer(&SCset->eh_timeout); rtn = del_timer(&scmd->eh_timeout);
SCSI_LOG_ERROR_RECOVERY(5, printk("Clearing timer for command %p %d\n", SCset, rtn)); SCSI_LOG_ERROR_RECOVERY(5, printk("Clearing timer for command %p"
" %d\n", scmd, rtn));
SCset->eh_timeout.data = (unsigned long) NULL; scmd->eh_timeout.data = (unsigned long) NULL;
SCset->eh_timeout.function = NULL; scmd->eh_timeout.function = NULL;
return rtn; return rtn;
} }
/* /**
* Function: scsi_times_out() * scsi_times_out - Timeout function for normal scsi commands.
* @scmd: Cmd that is timing out.
* *
* Purpose: Timeout function for normal scsi commands.. * Notes:
* We do not need to lock this. There is the potential for a race
* only in that the normal completion handling might run, but if the
* normal completion function determines that the timer has already
* fired, then it mustn't do anything.
**/
void scsi_times_out(Scsi_Cmnd *scmd)
{
/* Set the serial_number_at_timeout to the current serial_number */
scmd->serial_number_at_timeout = scmd->serial_number;
scsi_eh_eflags_set(scmd, SCSI_EH_CMD_TIMEOUT | SCSI_EH_CMD_ERR);
if( scmd->host->eh_wait == NULL ) {
panic("Error handler thread not present at %p %p %s %d",
scmd, scmd->host, __FILE__, __LINE__);
}
scsi_host_failed_inc_and_test(scmd->host);
SCSI_LOG_TIMEOUT(3, printk("Command timed out active=%d busy=%d "
"failed=%d\n",
atomic_read(&scmd->host->host_active),
scmd->host->host_busy,
scmd->host->host_failed));
}
/**
* scsi_block_when_processing_errors - Prevent cmds from being queued.
* @sdev: Device on which we are performing recovery.
* *
* Arguments: SCpnt - command that is timing out. * Description:
* We block until the host is out of error recovery, and then check to
* see whether the host or the device is offline.
* *
* Returns: Nothing. * Return value:
* FALSE when dev was taken offline by error recovery. TRUE OK to
* proceed.
**/
int scsi_block_when_processing_errors(Scsi_Device *sdev)
{
SCSI_SLEEP(&sdev->host->host_wait, sdev->host->in_recovery);
SCSI_LOG_ERROR_RECOVERY(5, printk("Open returning %d\n",
sdev->online));
return sdev->online;
}
#if CONFIG_SCSI_LOGGING
/**
* scsi_eh_prt_fail_stats - Log info on failures.
* @sc_list: List for failed cmds.
* @shost: scsi host being recovered.
**/
static void scsi_eh_prt_fail_stats(Scsi_Cmnd *sc_list, struct Scsi_Host *shost)
{
Scsi_Cmnd *scmd;
Scsi_Device *sdev;
int total_failures = 0;
int cmd_failed = 0;
int cmd_timed_out = 0;
int devices_failed = 0;
for (sdev = shost->host_queue; sdev; sdev = sdev->next) {
for (scmd = sc_list; scmd; scmd = scmd->bh_next) {
if (scmd->device == sdev) {
++total_failures;
if (scsi_eh_eflags_chk(scmd,
SCSI_EH_CMD_TIMEOUT))
++cmd_timed_out;
else
++cmd_failed;
}
}
if (cmd_timed_out || cmd_failed) {
SCSI_LOG_ERROR_RECOVERY(3,
printk("scsi_eh: %d:%d:%d:%d cmds failed: %d,"
"timedout: %d\n",
shost->host_no, sdev->channel,
sdev->id, sdev->lun,
cmd_failed, cmd_timed_out));
cmd_timed_out = 0;
cmd_failed = 0;
++devices_failed;
}
}
SCSI_LOG_ERROR_RECOVERY(2, printk("Total of %d commands on %d "
"devices require eh work\n",
total_failures, devices_failed));
}
#endif
/**
* scsi_eh_get_failed - Gather failed cmds.
* @sc_list: A pointer to a list for failed cmds.
* @shost: Scsi host being recovered.
* *
* Notes: We do not need to lock this. There is the potential for * XXX Add opaque interator for device / shost. Investigate direct
* a race only in that the normal completion handling might * addition to per eh list on error allowing skipping of this step.
* run, but if the normal completion function determines **/
* that the timer has already fired, then it mustn't do static void scsi_eh_get_failed(Scsi_Cmnd **sc_list, struct Scsi_Host *shost)
* anything.
*/
void scsi_times_out(Scsi_Cmnd * SCpnt)
{ {
int found;
Scsi_Device *sdev;
Scsi_Cmnd *scmd;
for (found = 0, sdev = shost->host_queue; sdev; sdev = sdev->next) {
for (scmd = sdev->device_queue; scmd; scmd = scmd->next) {
if (scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR)) {
scmd->bh_next = *sc_list;
*sc_list = scmd;
found++;
} else {
/* /*
* Notify the low-level code that this operation failed and we are * FIXME Verify how this can happen and if
* reposessing the command. * this is still needed??
*/ */
#ifdef ERIC_neverdef if (scmd->state != SCSI_STATE_INITIALIZING
&& scmd->state != SCSI_STATE_UNUSED) {
/* /*
* FIXME(eric) * Rats. Something is still floating
* Allow the host adapter to push a queue ordering tag * around out there This could be the
* out to the bus to force the command in question to complete. * result of the fact that the upper level
* If the host wants to do this, then we just restart the timer * drivers are still frobbing commands
* for the command. Before we really do this, some real thought * that might have succeeded. There are
* as to the optimum way to handle this should be done. We *do* * two outcomes. One is that the command
* need to force ordering every so often to ensure that all requests * block will eventually be freed, and the
* do eventually complete, but I am not sure if this is the best way * other one is that the command will be
* to actually go about it. * queued and will be finished along the
* * way.
* Better yet, force a sync here, but don't block since we are in an
* interrupt.
*/ */
if (SCpnt->host->hostt->eh_ordered_queue_tag) { SCSI_LOG_ERROR_RECOVERY(1, printk("Error hdlr "
if ((*SCpnt->host->hostt->eh_ordered_queue_tag) (SCpnt)) { "prematurely woken "
scsi_add_timer(SCpnt, SCpnt->internal_timeout, "cmds still active "
scsi_times_out); "(%p %x %d)\n",
return; scmd, scmd->state,
scmd->target));
}
} }
} }
/*
* FIXME(eric) - add a second special interface to handle this
* case. Ideally that interface can also be used to request
* a queu
*/
if (SCpnt->host->can_queue) {
SCpnt->host->hostt->queuecommand(SCpnt, NULL);
} }
#endif
/* Set the serial_number_at_timeout to the current serial_number */ SCSI_LOG_ERROR_RECOVERY(1, scsi_eh_prt_fail_stats(*sc_list, shost));
SCpnt->serial_number_at_timeout = SCpnt->serial_number;
SCpnt->eh_state = FAILED; BUG_ON(shost->host_failed != found);
SCpnt->state = SCSI_STATE_TIMEOUT; }
SCpnt->owner = SCSI_OWNER_ERROR_HANDLER;
SCpnt->host->in_recovery = 1; /**
SCpnt->host->host_failed++; * scsi_check_sense - Examine scsi cmd sense
* @scmd: Cmd to have sense checked.
**/
static int scsi_check_sense(Scsi_Cmnd *scmd)
{
if (!SCSI_SENSE_VALID(scmd)) {
return FAILED;
}
if (scmd->sense_buffer[2] & 0xe0)
return SUCCESS;
SCSI_LOG_TIMEOUT(3, printk("Command timed out active=%d busy=%d failed=%d\n", switch (scmd->sense_buffer[2] & 0xf) {
atomic_read(&SCpnt->host->host_active), case NO_SENSE:
SCpnt->host->host_busy, return SUCCESS;
SCpnt->host->host_failed)); case RECOVERED_ERROR:
return /* soft_error */ SUCCESS;
case ABORTED_COMMAND:
return NEEDS_RETRY;
case NOT_READY:
case UNIT_ATTENTION:
/* /*
* If the host is having troubles, then look to see if this was the last * if we are expecting a cc/ua because of a bus reset that we
* command that might have failed. If so, wake up the error handler. * performed, treat this just as a retry. otherwise this is
* information that we should pass up to the upper-level driver
* so that we can deal with it there.
*/ */
if( SCpnt->host->eh_wait == NULL ) { if (scmd->device->expecting_cc_ua) {
panic("Error handler thread not present at %p %p %s %d", scmd->device->expecting_cc_ua = 0;
SCpnt, SCpnt->host, __FILE__, __LINE__); return NEEDS_RETRY;
} }
if (SCpnt->host->host_busy == SCpnt->host->host_failed) { /*
up(SCpnt->host->eh_wait); * if the device is in the process of becoming ready, we
* should retry.
*/
if ((scmd->sense_buffer[12] == 0x04) &&
(scmd->sense_buffer[13] == 0x01)) {
return NEEDS_RETRY;
}
return SUCCESS;
/* these three are not supported */
case COPY_ABORTED:
case VOLUME_OVERFLOW:
case MISCOMPARE:
return SUCCESS;
case MEDIUM_ERROR:
return NEEDS_RETRY;
case ILLEGAL_REQUEST:
case BLANK_CHECK:
case DATA_PROTECT:
case HARDWARE_ERROR:
default:
return SUCCESS;
} }
} }
/* /**
* Function scsi_block_when_processing_errors * scsi_eh_completed_normally - Disposition a eh cmd on return from LLD.
* * @scmd: SCSI cmd to examine.
* Purpose: Prevent more commands from being queued while error recovery
* is taking place.
* *
* Arguments: SDpnt - device on which we are performing recovery. * Notes:
* * This is *only* called when we are examining the status of commands
* Returns: FALSE The device was taken offline by error recovery. * queued during error recovery. the main difference here is that we
* TRUE OK to proceed. * don't allow for the possibility of retries here, and we are a lot
* * more restrictive about what we consider acceptable.
* Notes: We block until the host is out of error recovery, and then **/
* check to see whether the host or the device is offline. static int scsi_eh_completed_normally(Scsi_Cmnd *scmd)
*/
int scsi_block_when_processing_errors(Scsi_Device * SDpnt)
{ {
int rtn;
SCSI_SLEEP(&SDpnt->host->host_wait, SDpnt->host->in_recovery); /*
* first check the host byte, to see if there is anything in there
SCSI_LOG_ERROR_RECOVERY(5, printk("Open returning %d\n", SDpnt->online)); * that would indicate what we need to do.
*/
if (host_byte(scmd->result) == DID_RESET) {
if (scmd->flags & IS_RESETTING) {
/*
* ok, this is normal. we don't know whether in fact
* the command in question really needs to be rerun
* or not - if this was the original data command then
* the answer is yes, otherwise we just flag it as
* SUCCESS.
*/
scmd->flags &= ~IS_RESETTING;
goto maybe_retry;
}
/*
* rats. we are already in the error handler, so we now
* get to try and figure out what to do next. if the sense
* is valid, we have a pretty good idea of what to do.
* if not, we mark it as FAILED.
*/
rtn = scsi_check_sense(scmd);
if (rtn == NEEDS_RETRY)
goto maybe_retry;
return rtn;
}
if (host_byte(scmd->result) != DID_OK) {
return FAILED;
}
/*
* next, check the message byte.
*/
if (msg_byte(scmd->result) != COMMAND_COMPLETE) {
return FAILED;
}
/*
* now, check the status byte to see if this indicates
* anything special.
*/
switch (status_byte(scmd->result)) {
case GOOD:
case COMMAND_TERMINATED:
return SUCCESS;
case CHECK_CONDITION:
rtn = scsi_check_sense(scmd);
if (rtn == NEEDS_RETRY)
goto maybe_retry;
return rtn;
case CONDITION_GOOD:
case INTERMEDIATE_GOOD:
case INTERMEDIATE_C_GOOD:
/*
* who knows? FIXME(eric)
*/
return SUCCESS;
case BUSY:
case QUEUE_FULL:
case RESERVATION_CONFLICT:
default:
return FAILED;
}
return FAILED;
return SDpnt->online; maybe_retry:
if ((++scmd->retries) < scmd->allowed) {
return NEEDS_RETRY;
} else {
/* no more retries - report this one back to upper level */
return SUCCESS;
}
} }
/* /**
* Function: scsi_eh_times_out() * scsi_eh_times_out - timeout function for error handling.
* * @scmd: Cmd that is timing out.
* Purpose: Timeout function for error handling.
*
* Arguments: SCpnt - command that is timing out.
* *
* Returns: Nothing. * Notes:
* * During error handling, the kernel thread will be sleeping waiting
* Notes: During error handling, the kernel thread will be sleeping * for some action to complete on the device. our only job is to
* waiting for some action to complete on the device. Our only * record that it timed out, and to wake up the thread.
* job is to record that it timed out, and to wake up the **/
* thread. static void scsi_eh_times_out(Scsi_Cmnd *scmd)
*/
STATIC
void scsi_eh_times_out(Scsi_Cmnd * SCpnt)
{ {
SCpnt->eh_state = SCSI_STATE_TIMEOUT; scsi_eh_eflags_set(scmd, SCSI_EH_REC_TIMEOUT);
SCSI_LOG_ERROR_RECOVERY(5, printk("In scsi_eh_times_out %p\n", SCpnt)); SCSI_LOG_ERROR_RECOVERY(3, printk("in scsi_eh_times_out %p\n", scmd));
if (SCpnt->host->eh_action != NULL) if (scmd->host->eh_action != NULL)
up(SCpnt->host->eh_action); up(scmd->host->eh_action);
else else
printk("Missing scsi error handler thread\n"); printk("missing scsi error handler thread\n");
} }
/**
/* * scsi_eh_done - Completion function for error handling.
* Function: scsi_eh_done() * @scmd: Cmd that is done.
* **/
* Purpose: Completion function for error handling. static void scsi_eh_done(Scsi_Cmnd *scmd)
*
* Arguments: SCpnt - command that is timing out.
*
* Returns: Nothing.
*
* Notes: During error handling, the kernel thread will be sleeping
* waiting for some action to complete on the device. Our only
* job is to record that the action completed, and to wake up the
* thread.
*/
STATIC
void scsi_eh_done(Scsi_Cmnd * SCpnt)
{ {
int rtn; int rtn;
/* /*
* If the timeout handler is already running, then just set the * if the timeout handler is already running, then just set the
* flag which says we finished late, and return. We have no * flag which says we finished late, and return. we have no
* way of stopping the timeout handler from running, so we must * way of stopping the timeout handler from running, so we must
* always defer to it. * always defer to it.
*/ */
rtn = del_timer(&SCpnt->eh_timeout); rtn = del_timer(&scmd->eh_timeout);
if (!rtn) { if (!rtn) {
SCpnt->done_late = 1;
return; return;
} }
SCpnt->request->rq_status = RQ_SCSI_DONE; scmd->request->rq_status = RQ_SCSI_DONE;
SCpnt->owner = SCSI_OWNER_ERROR_HANDLER; scmd->owner = SCSI_OWNER_ERROR_HANDLER;
SCpnt->eh_state = SUCCESS;
SCSI_LOG_ERROR_RECOVERY(5, printk("In eh_done %p result:%x\n", SCpnt, SCSI_LOG_ERROR_RECOVERY(3, printk("in eh_done %p result:%x\n", scmd,
SCpnt->result)); scmd->result));
if (SCpnt->host->eh_action != NULL) if (scmd->host->eh_action != NULL)
up(SCpnt->host->eh_action); up(scmd->host->eh_action);
} }
/* /**
* Function: scsi_eh_action_done() * scsi_send_eh_cmnd - send a cmd to a device as part of error recovery.
* * @scmd: SCSI Cmd to send.
* Purpose: Completion function for error handling. * @timeout: Timeout for cmd.
* *
* Arguments: SCpnt - command that is timing out. * Notes:
* answer - boolean that indicates whether operation succeeded. * The initialization of the structures is quite a bit different in
* * this case, and furthermore, there is a different completion handler
* Returns: Nothing. * vs scsi_dispatch_cmd.
* * Return value:
* Notes: This callback is only used for abort and reset operations. * SUCCESS/FAILED
*/ **/
STATIC static int scsi_send_eh_cmnd(Scsi_Cmnd *scmd, int timeout)
void scsi_eh_action_done(Scsi_Cmnd * SCpnt, int answer)
{ {
SCpnt->request->rq_status = RQ_SCSI_DONE; unsigned long flags;
struct Scsi_Host *host = scmd->host;
int rtn = SUCCESS;
SCpnt->owner = SCSI_OWNER_ERROR_HANDLER; ASSERT_LOCK(host->host_lock, 0);
SCpnt->eh_state = (answer ? SUCCESS : FAILED);
if (SCpnt->host->eh_action != NULL) retry:
up(SCpnt->host->eh_action); /*
} * we will use a queued command if possible, otherwise we will
* emulate the queuing and calling of completion function ourselves.
*/
scmd->owner = SCSI_OWNER_LOWLEVEL;
/* if (host->can_queue) {
* Function: scsi_sense_valid() DECLARE_MUTEX_LOCKED(sem);
scsi_add_timer(scmd, timeout, scsi_eh_times_out);
/*
* set up the semaphore so we wait for the command to complete.
*/
scmd->host->eh_action = &sem;
scmd->request->rq_status = RQ_SCSI_BUSY;
spin_lock_irqsave(scmd->host->host_lock, flags);
host->hostt->queuecommand(scmd, scsi_eh_done);
spin_unlock_irqrestore(scmd->host->host_lock, flags);
down(&sem);
scmd->host->eh_action = NULL;
/*
* see if timeout. if so, tell the host to forget about it.
* in other words, we don't want a callback any more.
*/
if (scsi_eh_eflags_chk(scmd, SCSI_EH_REC_TIMEOUT)) {
scsi_eh_eflags_clr(scmd, SCSI_EH_REC_TIMEOUT);
scmd->owner = SCSI_OWNER_LOWLEVEL;
/*
* as far as the low level driver is
* concerned, this command is still active, so
* we must give the low level driver a chance
* to abort it. (db)
* *
* Purpose: Determine whether a host has automatically obtained sense * FIXME(eric) - we are not tracking whether we could
* information or not. If we have it, then give a recommendation * abort a timed out command or not. not sure how
* as to what we should do next. * we should treat them differently anyways.
*/ */
int scsi_sense_valid(Scsi_Cmnd * SCpnt) spin_lock_irqsave(scmd->host->host_lock, flags);
{ if (scmd->host->hostt->eh_abort_handler)
if (((SCpnt->sense_buffer[0] & 0x70) >> 4) != 7) { scmd->host->hostt->eh_abort_handler(scmd);
return FALSE; spin_unlock_irqrestore(scmd->host->host_lock, flags);
scmd->request->rq_status = RQ_SCSI_DONE;
scmd->owner = SCSI_OWNER_ERROR_HANDLER;
rtn = FAILED;
} }
return TRUE; SCSI_LOG_ERROR_RECOVERY(3, printk("%s: %p rtn:%x\n",
} __FUNCTION__, scmd,
rtn));
} else {
int temp;
/* /*
* Function: scsi_eh_retry_command() * we damn well had better never use this code. there is no
* * timeout protection here, since we would end up waiting in
* Purpose: Retry the original command * the actual low level driver, we don't know how to wake it up.
*
* Returns: SUCCESS - we were able to get the sense data.
* FAILED - we were not able to get the sense data.
*
* Notes: This function will *NOT* return until the command either
* times out, or it completes.
*/ */
STATIC int scsi_eh_retry_command(Scsi_Cmnd * SCpnt) spin_lock_irqsave(host->host_lock, flags);
{ temp = host->hostt->command(scmd);
memcpy((void *) SCpnt->cmnd, (void *) SCpnt->data_cmnd, spin_unlock_irqrestore(host->host_lock, flags);
sizeof(SCpnt->data_cmnd));
SCpnt->request_buffer = SCpnt->buffer;
SCpnt->request_bufflen = SCpnt->bufflen;
SCpnt->use_sg = SCpnt->old_use_sg;
SCpnt->cmd_len = SCpnt->old_cmd_len;
SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
SCpnt->underflow = SCpnt->old_underflow;
scsi_send_eh_cmnd(SCpnt, SCpnt->timeout_per_command); scmd->result = temp;
/* fall through to code below to examine status. */
}
/* /*
* Hey, we are done. Let's look to see what happened. * now examine the actual status codes to see whether the command
* actually did complete normally.
*/ */
return SCpnt->eh_state; if (rtn == SUCCESS) {
int ret = scsi_eh_completed_normally(scmd);
SCSI_LOG_ERROR_RECOVERY(3,
printk("%s: scsi_eh_completed_normally %x\n",
__FUNCTION__, ret));
switch (ret) {
case SUCCESS:
break;
case NEEDS_RETRY:
goto retry;
case FAILED:
default:
rtn = FAILED;
break;
}
}
return rtn;
} }
/* /**
* Function: scsi_request_sense() * scsi_request_sense - Request sense data from a particular target.
* * @scmd: SCSI cmd for request sense.
* Purpose: Request sense data from a particular target.
*
* Returns: SUCCESS - we were able to get the sense data.
* FAILED - we were not able to get the sense data.
* *
* Notes: Some hosts automatically obtain this information, others * Notes:
* require that we obtain it on our own. * Some hosts automatically obtain this information, others require
* * that we obtain it on our own. This function will *not* return until
* This function will *NOT* return until the command either * the command either times out, or it completes.
* times out, or it completes. **/
*/ static int scsi_request_sense(Scsi_Cmnd *scmd)
STATIC int scsi_request_sense(Scsi_Cmnd * SCpnt)
{ {
static unsigned char generic_sense[6] = static unsigned char generic_sense[6] =
{REQUEST_SENSE, 0, 0, 0, 255, 0}; {REQUEST_SENSE, 0, 0, 0, 255, 0};
unsigned char scsi_result0[256], *scsi_result = NULL; unsigned char scsi_result0[256], *scsi_result = NULL;
int saved_result; int saved_result;
int rtn;
memcpy((void *) SCpnt->cmnd, (void *) generic_sense, memcpy((void *) scmd->cmnd, (void *) generic_sense,
sizeof(generic_sense)); sizeof(generic_sense));
if (SCpnt->device->scsi_level <= SCSI_2) if (scmd->device->scsi_level <= SCSI_2)
SCpnt->cmnd[1] = SCpnt->lun << 5; scmd->cmnd[1] = scmd->lun << 5;
scsi_result = (!SCpnt->host->hostt->unchecked_isa_dma) scsi_result = (!scmd->host->hostt->unchecked_isa_dma)
? &scsi_result0[0] : kmalloc(512, GFP_ATOMIC | GFP_DMA); ? &scsi_result0[0] : kmalloc(512, GFP_ATOMIC | GFP_DMA);
if (scsi_result == NULL) { if (scsi_result == NULL) {
...@@ -435,1393 +626,876 @@ STATIC int scsi_request_sense(Scsi_Cmnd * SCpnt) ...@@ -435,1393 +626,876 @@ STATIC int scsi_request_sense(Scsi_Cmnd * SCpnt)
return FAILED; return FAILED;
} }
/* /*
* Zero the sense buffer. Some host adapters automatically always request * zero the sense buffer. some host adapters automatically always
* sense, so it is not a good idea that SCpnt->request_buffer and * request sense, so it is not a good idea that
* SCpnt->sense_buffer point to the same address (DB). * scmd->request_buffer and scmd->sense_buffer point to the same
* 0 is not a valid sense code. * address (db). 0 is not a valid sense code.
*/ */
memset((void *) SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer)); memset((void *) scmd->sense_buffer, 0, sizeof(scmd->sense_buffer));
memset((void *) scsi_result, 0, 256); memset((void *) scsi_result, 0, 256);
saved_result = SCpnt->result; saved_result = scmd->result;
SCpnt->request_buffer = scsi_result; scmd->request_buffer = scsi_result;
SCpnt->request_bufflen = 256; scmd->request_bufflen = 256;
SCpnt->use_sg = 0; scmd->use_sg = 0;
SCpnt->cmd_len = COMMAND_SIZE(SCpnt->cmnd[0]); scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
SCpnt->sc_data_direction = SCSI_DATA_READ; scmd->sc_data_direction = SCSI_DATA_READ;
SCpnt->underflow = 0; scmd->underflow = 0;
scsi_send_eh_cmnd(SCpnt, SENSE_TIMEOUT); rtn = scsi_send_eh_cmnd(scmd, SENSE_TIMEOUT);
/* Last chance to have valid sense data */ /* last chance to have valid sense data */
if (!scsi_sense_valid(SCpnt)) if (!SCSI_SENSE_VALID(scmd))
memcpy((void *) SCpnt->sense_buffer, memcpy((void *) scmd->sense_buffer,
SCpnt->request_buffer, scmd->request_buffer,
sizeof(SCpnt->sense_buffer)); sizeof(scmd->sense_buffer));
if (scsi_result != &scsi_result0[0] && scsi_result != NULL) if (scsi_result != &scsi_result0[0] && scsi_result != NULL)
kfree(scsi_result); kfree(scsi_result);
/* /*
* When we eventually call scsi_finish, we really wish to complete * when we eventually call scsi_finish, we really wish to complete
* the original request, so let's restore the original data. (DB) * the original request, so let's restore the original data. (db)
*/ */
memcpy((void *) SCpnt->cmnd, (void *) SCpnt->data_cmnd, memcpy((void *) scmd->cmnd, (void *) scmd->data_cmnd,
sizeof(SCpnt->data_cmnd)); sizeof(scmd->data_cmnd));
SCpnt->result = saved_result; scmd->result = saved_result;
SCpnt->request_buffer = SCpnt->buffer; scmd->request_buffer = scmd->buffer;
SCpnt->request_bufflen = SCpnt->bufflen; scmd->request_bufflen = scmd->bufflen;
SCpnt->use_sg = SCpnt->old_use_sg; scmd->use_sg = scmd->old_use_sg;
SCpnt->cmd_len = SCpnt->old_cmd_len; scmd->cmd_len = scmd->old_cmd_len;
SCpnt->sc_data_direction = SCpnt->sc_old_data_direction; scmd->sc_data_direction = scmd->sc_old_data_direction;
SCpnt->underflow = SCpnt->old_underflow; scmd->underflow = scmd->old_underflow;
/* /*
* Hey, we are done. Let's look to see what happened. * hey, we are done. let's look to see what happened.
*/ */
return SCpnt->eh_state; return rtn;
} }
/* /**
* Function: scsi_test_unit_ready() * scsi_eh_retry_cmd - Retry the original command
* @scmd: Original failed SCSI cmd.
* *
* Purpose: Run test unit ready command to see if the device is talking to us or not. * Notes:
* * This function will *not* return until the command either times out,
*/ * or it completes.
STATIC int scsi_test_unit_ready(Scsi_Cmnd * SCpnt) **/
static int scsi_eh_retry_cmd(Scsi_Cmnd *scmd)
{ {
static unsigned char tur_command[6] = memcpy((void *) scmd->cmnd, (void *) scmd->data_cmnd,
{TEST_UNIT_READY, 0, 0, 0, 0, 0}; sizeof(scmd->data_cmnd));
scmd->request_buffer = scmd->buffer;
memcpy((void *) SCpnt->cmnd, (void *) tur_command, scmd->request_bufflen = scmd->bufflen;
sizeof(tur_command)); scmd->use_sg = scmd->old_use_sg;
scmd->cmd_len = scmd->old_cmd_len;
scmd->sc_data_direction = scmd->sc_old_data_direction;
scmd->underflow = scmd->old_underflow;
return scsi_send_eh_cmnd(scmd, scmd->timeout_per_command);
}
if (SCpnt->device->scsi_level <= SCSI_2) /**
SCpnt->cmnd[1] = SCpnt->lun << 5; * scsi_eh_finish_cmd - Handle a cmd that eh is finished with.
* @scmd: Original SCSI cmd that eh has finished.
* @shost: SCSI host that cmd originally failed on.
*
* Notes:
* We don't want to use the normal command completion while we are are
* still handling errors - it may cause other commands to be queued,
* and that would disturb what we are doing. thus we really want to
* keep a list of pending commands for final completion, and once we
* are ready to leave error handling we handle completion for real.
**/
static void scsi_eh_finish_cmd(Scsi_Cmnd *scmd, struct Scsi_Host *shost)
{
shost->host_failed--;
scmd->state = SCSI_STATE_BHQUEUE;
scsi_eh_eflags_clr_all(scmd);
/* /*
* Zero the sense buffer. The SCSI spec mandates that any * set this back so that the upper level can correctly free up
* untransferred sense data should be interpreted as being zero. * things.
*/ */
memset((void *) SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer)); scmd->use_sg = scmd->old_use_sg;
scmd->sc_data_direction = scmd->sc_old_data_direction;
SCpnt->request_buffer = NULL; scmd->underflow = scmd->old_underflow;
SCpnt->request_bufflen = 0;
SCpnt->use_sg = 0;
SCpnt->cmd_len = COMMAND_SIZE(SCpnt->cmnd[0]);
SCpnt->underflow = 0;
SCpnt->sc_data_direction = SCSI_DATA_NONE;
scsi_send_eh_cmnd(SCpnt, SENSE_TIMEOUT);
/*
* When we eventually call scsi_finish, we really wish to complete
* the original request, so let's restore the original data. (DB)
*/
memcpy((void *) SCpnt->cmnd, (void *) SCpnt->data_cmnd,
sizeof(SCpnt->data_cmnd));
SCpnt->request_buffer = SCpnt->buffer;
SCpnt->request_bufflen = SCpnt->bufflen;
SCpnt->use_sg = SCpnt->old_use_sg;
SCpnt->cmd_len = SCpnt->old_cmd_len;
SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
SCpnt->underflow = SCpnt->old_underflow;
/*
* Hey, we are done. Let's look to see what happened.
*/
SCSI_LOG_ERROR_RECOVERY(3,
printk("scsi_test_unit_ready: SCpnt %p eh_state %x\n",
SCpnt, SCpnt->eh_state));
return SCpnt->eh_state;
}
/*
* This would normally need to get the IO request lock,
* but as it doesn't actually touch anything that needs
* to be locked we can avoid the lock here..
*/
STATIC
void scsi_sleep_done(struct semaphore *sem)
{
if (sem != NULL) {
up(sem);
}
}
void scsi_sleep(int timeout)
{
DECLARE_MUTEX_LOCKED(sem);
struct timer_list timer;
init_timer(&timer);
timer.data = (unsigned long) &sem;
timer.expires = jiffies + timeout;
timer.function = (void (*)(unsigned long)) scsi_sleep_done;
SCSI_LOG_ERROR_RECOVERY(5, printk("Sleeping for timer tics %d\n", timeout));
add_timer(&timer);
down(&sem);
del_timer(&timer);
} }
/* /**
* Function: scsi_send_eh_cmnd * scsi_eh_get_sense - Get device sense data.
* @sc_todo: list of cmds that have failed.
* @shost: scsi host being recovered.
* *
* Purpose: Send a command out to a device as part of error recovery. * Description:
* See if we need to request sense information. if so, then get it
* now, so we have a better idea of what to do.
* *
* Notes: The initialization of the structures is quite a bit different *
* in this case, and furthermore, there is a different completion * Notes:
* handler. * This has the unfortunate side effect that if a shost adapter does
*/ * not automatically request sense information, that we end up shutting
STATIC void scsi_send_eh_cmnd(Scsi_Cmnd * SCpnt, int timeout) * it down before we request it. All shosts should be doing this
* anyways, so for now all I have to say is tough noogies if you end up
* in here. On second thought, this is probably a good idea. We
* *really* want to give authors an incentive to automatically request
* this.
*
* In 2.5 this capability will be going away.
**/
static int scsi_eh_get_sense(Scsi_Cmnd *sc_todo, struct Scsi_Host *shost)
{ {
unsigned long flags; int rtn;
struct Scsi_Host *host = SCpnt->host; Scsi_Cmnd *scmd;
ASSERT_LOCK(host->host_lock, 0);
retry:
/*
* We will use a queued command if possible, otherwise we will
* emulate the queuing and calling of completion function ourselves.
*/
SCpnt->owner = SCSI_OWNER_LOWLEVEL;
if (host->can_queue) {
DECLARE_MUTEX_LOCKED(sem);
SCpnt->eh_state = SCSI_STATE_QUEUED;
scsi_add_timer(SCpnt, timeout, scsi_eh_times_out); SCSI_LOG_ERROR_RECOVERY(3, printk("%s: checking to see if we need"
" to request sense\n",
__FUNCTION__));
/* for (scmd = sc_todo; scmd; scmd = scmd->bh_next) {
* Set up the semaphore so we wait for the command to complete. if (!scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_FAILED) ||
*/ SCSI_SENSE_VALID(scmd))
SCpnt->host->eh_action = &sem; continue;
SCpnt->request->rq_status = RQ_SCSI_BUSY;
spin_lock_irqsave(SCpnt->host->host_lock, flags);
host->hostt->queuecommand(SCpnt, scsi_eh_done);
spin_unlock_irqrestore(SCpnt->host->host_lock, flags);
down(&sem); SCSI_LOG_ERROR_RECOVERY(2, printk("%s: requesting sense"
"for %d\n", __FUNCTION__,
scmd->target));
rtn = scsi_request_sense(scmd);
if (rtn != SUCCESS)
continue;
SCpnt->host->eh_action = NULL; SCSI_LOG_ERROR_RECOVERY(3, printk("sense requested for %p"
"- result %x\n", scmd,
scmd->result));
SCSI_LOG_ERROR_RECOVERY(3, print_sense("bh", scmd));
/* rtn = scsi_decide_disposition(scmd);
* See if timeout. If so, tell the host to forget about it.
* In other words, we don't want a callback any more.
*/
if (SCpnt->eh_state == SCSI_STATE_TIMEOUT) {
SCpnt->owner = SCSI_OWNER_LOWLEVEL;
/* /*
* As far as the low level driver is * if the result was normal, then just pass it along to the
* concerned, this command is still active, so * upper level.
* we must give the low level driver a chance
* to abort it. (DB)
*
* FIXME(eric) - we are not tracking whether we could
* abort a timed out command or not. Not sure how
* we should treat them differently anyways.
*/ */
spin_lock_irqsave(SCpnt->host->host_lock, flags); if (rtn == SUCCESS)
if (SCpnt->host->hostt->eh_abort_handler) scsi_eh_finish_cmd(scmd, shost);
SCpnt->host->hostt->eh_abort_handler(SCpnt); if (rtn != NEEDS_RETRY)
spin_unlock_irqrestore(SCpnt->host->host_lock, flags); continue;
SCpnt->request->rq_status = RQ_SCSI_DONE;
SCpnt->owner = SCSI_OWNER_ERROR_HANDLER;
SCpnt->eh_state = FAILED;
}
SCSI_LOG_ERROR_RECOVERY(5, printk("send_eh_cmnd: %p eh_state:%x\n",
SCpnt, SCpnt->eh_state));
} else {
int temp;
/* /*
* We damn well had better never use this code. There is no * we only come in here if we want to retry a
* timeout protection here, since we would end up waiting in * command. the test to see whether the command
* the actual low level driver, we don't know how to wake it up. * should be retried should be keeping track of the
* number of tries, so we don't end up looping, of
* course.
*/ */
spin_lock_irqsave(host->host_lock, flags); scmd->state = NEEDS_RETRY;
temp = host->hostt->command(SCpnt); rtn = scsi_eh_retry_cmd(scmd);
spin_unlock_irqrestore(host->host_lock, flags); if (rtn != SUCCESS)
continue;
SCpnt->result = temp;
/* Fall through to code below to examine status. */
SCpnt->eh_state = SUCCESS;
}
/* /*
* Now examine the actual status codes to see whether the command * we eventually hand this one back to the top level.
* actually did complete normally.
*/ */
if (SCpnt->eh_state == SUCCESS) { scsi_eh_finish_cmd(scmd, shost);
int ret = scsi_eh_completed_normally(SCpnt);
SCSI_LOG_ERROR_RECOVERY(3,
printk("scsi_send_eh_cmnd: scsi_eh_completed_normally %x\n", ret));
switch (ret) {
case SUCCESS:
SCpnt->eh_state = SUCCESS;
break;
case NEEDS_RETRY:
goto retry;
case FAILED:
default:
SCpnt->eh_state = FAILED;
break;
}
} else {
SCpnt->eh_state = FAILED;
} }
}
/* return shost->host_failed;
* Function: scsi_unit_is_ready()
*
* Purpose: Called after TEST_UNIT_READY is run, to test to see if
* the unit responded in a way that indicates it is ready.
*/
STATIC int scsi_unit_is_ready(Scsi_Cmnd * SCpnt)
{
if (SCpnt->result) {
if (((driver_byte(SCpnt->result) & DRIVER_SENSE) ||
(status_byte(SCpnt->result) & CHECK_CONDITION)) &&
((SCpnt->sense_buffer[0] & 0x70) >> 4) == 7) {
if (((SCpnt->sense_buffer[2] & 0xf) != NOT_READY) &&
((SCpnt->sense_buffer[2] & 0xf) != UNIT_ATTENTION) &&
((SCpnt->sense_buffer[2] & 0xf) != ILLEGAL_REQUEST)) {
return 0;
}
}
}
return 1;
}
/*
* Function: scsi_eh_finish_command
*
* Purpose: Handle a command that we are finished with WRT error handling.
*
* Arguments: SClist - pointer to list into which we are putting completed commands.
* SCpnt - command that is completing
*
* Notes: We don't want to use the normal command completion while we are
* are still handling errors - it may cause other commands to be queued,
* and that would disturb what we are doing. Thus we really want to keep
* a list of pending commands for final completion, and once we
* are ready to leave error handling we handle completion for real.
*/
STATIC void scsi_eh_finish_command(Scsi_Cmnd ** SClist, Scsi_Cmnd * SCpnt)
{
SCpnt->state = SCSI_STATE_BHQUEUE;
SCpnt->bh_next = *SClist;
/*
* Set this back so that the upper level can correctly free up
* things.
*/
SCpnt->use_sg = SCpnt->old_use_sg;
SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
SCpnt->underflow = SCpnt->old_underflow;
*SClist = SCpnt;
} }
/* /**
* Function: scsi_try_to_abort_command * scsi_try_to_abort_cmd - Ask host to abort a running command.
* @scmd: SCSI cmd to abort from Lower Level.
* *
* Purpose: Ask host adapter to abort a running command. * Notes:
* * This function will not return until the user's completion function
* Returns: FAILED Operation failed or not supported. * has been called. there is no timeout on this operation. if the
* SUCCESS Succeeded. * author of the low-level driver wishes this operation to be timed,
* * they can provide this facility themselves. helper functions in
* Notes: This function will not return until the user's completion * scsi_error.c can be supplied to make this easier to do.
* function has been called. There is no timeout on this **/
* operation. If the author of the low-level driver wishes static int scsi_try_to_abort_cmd(Scsi_Cmnd *scmd)
* this operation to be timed, they can provide this facility
* themselves. Helper functions in scsi_error.c can be supplied
* to make this easier to do.
*
* Notes: It may be possible to combine this with all of the reset
* handling to eliminate a lot of code duplication. I don't
* know what makes more sense at the moment - this is just a
* prototype.
*/
STATIC int scsi_try_to_abort_command(Scsi_Cmnd * SCpnt, int timeout)
{ {
int rtn; int rtn = FAILED;
unsigned long flags; unsigned long flags;
SCpnt->eh_state = FAILED; /* Until we come up with something better */ if (scmd->host->hostt->eh_abort_handler == NULL) {
return rtn;
if (SCpnt->host->hostt->eh_abort_handler == NULL) {
return FAILED;
} }
/* /*
* scsi_done was called just after the command timed out and before * scsi_done was called just after the command timed out and before
* we had a chance to process it. (DB) * we had a chance to process it. (db)
*/ */
if (SCpnt->serial_number == 0) if (scmd->serial_number == 0)
return SUCCESS; return SUCCESS;
SCpnt->owner = SCSI_OWNER_LOWLEVEL; scmd->owner = SCSI_OWNER_LOWLEVEL;
spin_lock_irqsave(SCpnt->host->host_lock, flags); spin_lock_irqsave(scmd->host->host_lock, flags);
rtn = SCpnt->host->hostt->eh_abort_handler(SCpnt); rtn = scmd->host->hostt->eh_abort_handler(scmd);
spin_unlock_irqrestore(SCpnt->host->host_lock, flags); spin_unlock_irqrestore(scmd->host->host_lock, flags);
return rtn; return rtn;
} }
/* /**
* Function: scsi_try_bus_device_reset * scsi_eh_tur - Send TUR to device.
* * @scmd: Scsi cmd to send TUR
* Purpose: Ask host adapter to perform a bus device reset for a given
* device.
* *
* Returns: FAILED Operation failed or not supported. * Return value:
* SUCCESS Succeeded. * 0 - Device is ready. 1 - Device NOT ready.
* **/
* Notes: There is no timeout for this operation. If this operation is static int scsi_eh_tur(Scsi_Cmnd *scmd)
* unreliable for a given host, then the host itself needs to put a
* timer on it, and set the host back to a consistent state prior
* to returning.
*/
STATIC int scsi_try_bus_device_reset(Scsi_Cmnd * SCpnt, int timeout)
{ {
unsigned long flags; static unsigned char tur_command[6] =
{TEST_UNIT_READY, 0, 0, 0, 0, 0};
int rtn; int rtn;
SCpnt->eh_state = FAILED; /* Until we come up with something better */ memcpy((void *) scmd->cmnd, (void *) tur_command,
sizeof(tur_command));
if (SCpnt->host->hostt->eh_device_reset_handler == NULL) {
return FAILED;
}
SCpnt->owner = SCSI_OWNER_LOWLEVEL;
spin_lock_irqsave(SCpnt->host->host_lock, flags);
rtn = SCpnt->host->hostt->eh_device_reset_handler(SCpnt);
spin_unlock_irqrestore(SCpnt->host->host_lock, flags);
if (rtn == SUCCESS)
SCpnt->eh_state = SUCCESS;
return SCpnt->eh_state; if (scmd->device->scsi_level <= SCSI_2)
} scmd->cmnd[1] = scmd->lun << 5;
/* /*
* Function: scsi_try_bus_reset * zero the sense buffer. the scsi spec mandates that any
* * untransferred sense data should be interpreted as being zero.
* Purpose: Ask host adapter to perform a bus reset for a host.
*
* Returns: FAILED Operation failed or not supported.
* SUCCESS Succeeded.
*
* Notes:
*/ */
STATIC int scsi_try_bus_reset(Scsi_Cmnd * SCpnt) memset((void *) scmd->sense_buffer, 0, sizeof(scmd->sense_buffer));
{
unsigned long flags;
int rtn;
SCpnt->eh_state = FAILED; /* Until we come up with something better */ scmd->request_buffer = NULL;
SCpnt->owner = SCSI_OWNER_LOWLEVEL; scmd->request_bufflen = 0;
SCpnt->serial_number_at_timeout = SCpnt->serial_number; scmd->use_sg = 0;
scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
scmd->underflow = 0;
scmd->sc_data_direction = SCSI_DATA_NONE;
if (SCpnt->host->hostt->eh_bus_reset_handler == NULL) { rtn = scsi_send_eh_cmnd(scmd, SENSE_TIMEOUT);
return FAILED;
}
spin_lock_irqsave(SCpnt->host->host_lock, flags); /*
rtn = SCpnt->host->hostt->eh_bus_reset_handler(SCpnt); * when we eventually call scsi_finish, we really wish to complete
spin_unlock_irqrestore(SCpnt->host->host_lock, flags); * the original request, so let's restore the original data. (db)
*/
if (rtn == SUCCESS) memcpy((void *) scmd->cmnd, (void *) scmd->data_cmnd,
SCpnt->eh_state = SUCCESS; sizeof(scmd->data_cmnd));
scmd->request_buffer = scmd->buffer;
scmd->request_bufflen = scmd->bufflen;
scmd->use_sg = scmd->old_use_sg;
scmd->cmd_len = scmd->old_cmd_len;
scmd->sc_data_direction = scmd->sc_old_data_direction;
scmd->underflow = scmd->old_underflow;
/* /*
* If we had a successful bus reset, mark the command blocks to expect * hey, we are done. let's look to see what happened.
* a condition code of unit attention.
*/ */
scsi_sleep(BUS_RESET_SETTLE_TIME); SCSI_LOG_ERROR_RECOVERY(3,
if (SCpnt->eh_state == SUCCESS) { printk("%s: scmd %p rtn %x\n",
Scsi_Device *SDloop; __FUNCTION__, scmd, rtn));
for (SDloop = SCpnt->host->host_queue; SDloop; SDloop = SDloop->next) { if ((rtn == SUCCESS) && scmd->result) {
if (SCpnt->channel == SDloop->channel) { if (((driver_byte(scmd->result) & DRIVER_SENSE) ||
SDloop->was_reset = 1; (status_byte(scmd->result) & CHECK_CONDITION)) &&
SDloop->expecting_cc_ua = 1; (SCSI_SENSE_VALID(scmd))) {
if (((scmd->sense_buffer[2] & 0xf) != NOT_READY) &&
((scmd->sense_buffer[2] & 0xf) != UNIT_ATTENTION) &&
((scmd->sense_buffer[2] & 0xf) != ILLEGAL_REQUEST)) {
return 0;
} }
} }
} }
return SCpnt->eh_state; return 1;
} }
/* /**
* Function: scsi_try_host_reset * scsi_eh_abort_cmd - abort a timed-out cmd.
* * @sc_todo: A list of cmds that have failed.
* Purpose: Ask host adapter to reset itself, and the bus. * @shost: scsi host being recovered.
* *
* Returns: FAILED Operation failed or not supported. * Decription:
* SUCCESS Succeeded. * Try and see whether or not it makes sense to try and abort the
* * running command. this only works out to be the case if we have one
* Notes: * command that has timed out. if the command simply failed, it makes
*/ * no sense to try and abort the command, since as far as the shost
STATIC int scsi_try_host_reset(Scsi_Cmnd * SCpnt) * adapter is concerned, it isn't running.
**/
static int scsi_eh_abort_cmd(Scsi_Cmnd *sc_todo, struct Scsi_Host *shost)
{ {
unsigned long flags;
int rtn; int rtn;
Scsi_Cmnd *scmd;
SCpnt->eh_state = FAILED; /* Until we come up with something better */ SCSI_LOG_ERROR_RECOVERY(3, printk("%s: checking to see if we need"
SCpnt->owner = SCSI_OWNER_LOWLEVEL; " to abort cmd\n", __FUNCTION__));
SCpnt->serial_number_at_timeout = SCpnt->serial_number;
if (SCpnt->host->hostt->eh_host_reset_handler == NULL) { for (scmd = sc_todo; scmd; scmd = scmd->bh_next) {
return FAILED; if (!scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_TIMEOUT))
} continue;
spin_lock_irqsave(SCpnt->host->host_lock, flags);
rtn = SCpnt->host->hostt->eh_host_reset_handler(SCpnt);
spin_unlock_irqrestore(SCpnt->host->host_lock, flags);
rtn = scsi_try_to_abort_cmd(scmd);
if (rtn == SUCCESS) {
if (scsi_eh_tur(scmd)) {
rtn = scsi_eh_retry_cmd(scmd);
if (rtn == SUCCESS) if (rtn == SUCCESS)
SCpnt->eh_state = SUCCESS; scsi_eh_finish_cmd(scmd, shost);
}
/*
* If we had a successful host reset, mark the command blocks to expect
* a condition code of unit attention.
*/
scsi_sleep(HOST_RESET_SETTLE_TIME);
if (SCpnt->eh_state == SUCCESS) {
Scsi_Device *SDloop;
for (SDloop = SCpnt->host->host_queue; SDloop; SDloop = SDloop->next) {
SDloop->was_reset = 1;
SDloop->expecting_cc_ua = 1;
} }
} }
return SCpnt->eh_state; return shost->host_failed;
} }
/* /**
* Function: scsi_decide_disposition * scsi_try_bus_device_reset - Ask host to perform a BDR on a dev
* @scmd: SCSI cmd used to send BDR
* *
* Purpose: Examine a command block that has come back from the low-level * Notes:
* and figure out what to do next. * There is no timeout for this operation. if this operation is
* * unreliable for a given host, then the host itself needs to put a
* Returns: SUCCESS - pass on to upper level. * timer on it, and set the host back to a consistent state prior to
* FAILED - pass on to error handler thread. * returning.
* RETRY - command should be retried. **/
* SOFTERR - command succeeded, but we need to log static int scsi_try_bus_device_reset(Scsi_Cmnd *scmd)
* a soft error.
*
* Notes: This is *ONLY* called when we are examining the status
* after sending out the actual data command. Any commands
* that are queued for error recovery (i.e. TEST_UNIT_READY)
* do *NOT* come through here.
*
* NOTE - When this routine returns FAILED, it means the error
* handler thread is woken. In cases where the error code
* indicates an error that doesn't require the error handler
* thread (i.e. we don't need to abort/reset), then this function
* should return SUCCESS.
*/
int scsi_decide_disposition(Scsi_Cmnd * SCpnt)
{ {
int rtn; unsigned long flags;
int rtn = FAILED;
/*
* If the device is offline, then we clearly just pass the result back
* up to the top level.
*/
if (SCpnt->device->online == FALSE) {
SCSI_LOG_ERROR_RECOVERY(5, printk("scsi_error.c: device offline - report as SUCCESS\n"));
return SUCCESS;
}
/*
* First check the host byte, to see if there is anything in there
* that would indicate what we need to do.
*/
switch (host_byte(SCpnt->result)) {
case DID_PASSTHROUGH:
/*
* No matter what, pass this through to the upper layer.
* Nuke this special code so that it looks like we are saying
* DID_OK.
*/
SCpnt->result &= 0xff00ffff;
return SUCCESS;
case DID_OK:
/*
* Looks good. Drop through, and check the next byte.
*/
break;
case DID_NO_CONNECT:
case DID_BAD_TARGET:
case DID_ABORT:
/*
* Note - this means that we just report the status back to the
* top level driver, not that we actually think that it indicates
* success.
*/
return SUCCESS;
/*
* When the low level driver returns DID_SOFT_ERROR,
* it is responsible for keeping an internal retry counter
* in order to avoid endless loops (DB)
*
* Actually this is a bug in this function here. We should
* be mindful of the maximum number of retries specified
* and not get stuck in a loop.
*/
case DID_SOFT_ERROR:
goto maybe_retry;
case DID_ERROR:
if (msg_byte(SCpnt->result) == COMMAND_COMPLETE &&
status_byte(SCpnt->result) == RESERVATION_CONFLICT)
/*
* execute reservation conflict processing code
* lower down
*/
break;
/* FALLTHROUGH */
case DID_BUS_BUSY:
case DID_PARITY:
goto maybe_retry;
case DID_TIME_OUT:
/*
* When we scan the bus, we get timeout messages for
* these commands if there is no device available.
* Other hosts report DID_NO_CONNECT for the same thing.
*/
if ((SCpnt->cmnd[0] == TEST_UNIT_READY ||
SCpnt->cmnd[0] == INQUIRY)) {
return SUCCESS;
} else {
return FAILED;
}
case DID_RESET:
/*
* In the normal case where we haven't initiated a reset, this is
* a failure.
*/
if (SCpnt->flags & IS_RESETTING) {
SCpnt->flags &= ~IS_RESETTING;
goto maybe_retry;
}
return SUCCESS;
default:
return FAILED;
}
/* if (scmd->host->hostt->eh_device_reset_handler == NULL) {
* Next, check the message byte.
*/
if (msg_byte(SCpnt->result) != COMMAND_COMPLETE) {
return FAILED;
}
/*
* Now, check the status byte to see if this indicates anything special.
*/
switch (status_byte(SCpnt->result)) {
case QUEUE_FULL:
/*
* The case of trying to send too many commands to a tagged queueing
* device.
*/
return ADD_TO_MLQUEUE;
case GOOD:
case COMMAND_TERMINATED:
return SUCCESS;
case CHECK_CONDITION:
rtn = scsi_check_sense(SCpnt);
if (rtn == NEEDS_RETRY) {
goto maybe_retry;
}
return rtn; return rtn;
case CONDITION_GOOD:
case INTERMEDIATE_GOOD:
case INTERMEDIATE_C_GOOD:
/*
* Who knows? FIXME(eric)
*/
return SUCCESS;
case BUSY:
goto maybe_retry;
case RESERVATION_CONFLICT:
printk("scsi%d (%d,%d,%d) : RESERVATION CONFLICT\n",
SCpnt->host->host_no, SCpnt->channel,
SCpnt->device->id, SCpnt->device->lun);
return SUCCESS; /* causes immediate I/O error */
default:
return FAILED;
} }
return FAILED; scmd->owner = SCSI_OWNER_LOWLEVEL;
maybe_retry: spin_lock_irqsave(scmd->host->host_lock, flags);
rtn = scmd->host->hostt->eh_device_reset_handler(scmd);
spin_unlock_irqrestore(scmd->host->host_lock, flags);
if ((++SCpnt->retries) < SCpnt->allowed) { return rtn;
return NEEDS_RETRY;
} else {
/*
* No more retries - report this one back to upper level.
*/
return SUCCESS;
}
} }
/* /**
* Function: scsi_eh_completed_normally * scsi_eh_bus_device_reset - send bdr is needed
* @sc_todo: a list of cmds that have failed.
* @shost: scsi host being recovered.
* *
* Purpose: Examine a command block that has come back from the low-level * Notes:
* and figure out what to do next. * Try a bus device reset. still, look to see whether we have multiple
* * devices that are jammed or not - if we have multiple devices, it
* Returns: SUCCESS - pass on to upper level. * makes no sense to try bus_device_reset - we really would need to try
* FAILED - pass on to error handler thread. * a bus_reset instead.
* RETRY - command should be retried. **/
* SOFTERR - command succeeded, but we need to log static int scsi_eh_bus_device_reset(Scsi_Cmnd *sc_todo, struct Scsi_Host *shost)
* a soft error.
*
* Notes: This is *ONLY* called when we are examining the status
* of commands queued during error recovery. The main
* difference here is that we don't allow for the possibility
* of retries here, and we are a lot more restrictive about what
* we consider acceptable.
*/
STATIC int scsi_eh_completed_normally(Scsi_Cmnd * SCpnt)
{ {
int rtn; int rtn;
Scsi_Cmnd *scmd;
Scsi_Device *sdev;
/* SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Trying BDR\n", __FUNCTION__));
* First check the host byte, to see if there is anything in there
* that would indicate what we need to do.
*/
if (host_byte(SCpnt->result) == DID_RESET) {
if (SCpnt->flags & IS_RESETTING) {
/*
* OK, this is normal. We don't know whether in fact
* the command in question really needs to be rerun
* or not - if this was the original data command then
* the answer is yes, otherwise we just flag it as
* success.
*/
SCpnt->flags &= ~IS_RESETTING;
goto maybe_retry;
}
/*
* Rats. We are already in the error handler, so we now
* get to try and figure out what to do next. If the sense
* is valid, we have a pretty good idea of what to do.
* If not, we mark it as failed.
*/
rtn = scsi_check_sense(SCpnt);
if (rtn == NEEDS_RETRY)
goto maybe_retry;
return rtn;
}
if (host_byte(SCpnt->result) != DID_OK) {
return FAILED;
}
/*
* Next, check the message byte.
*/
if (msg_byte(SCpnt->result) != COMMAND_COMPLETE) {
return FAILED;
}
/*
* Now, check the status byte to see if this indicates
* anything special.
*/
switch (status_byte(SCpnt->result)) {
case GOOD:
case COMMAND_TERMINATED:
return SUCCESS;
case CHECK_CONDITION:
rtn = scsi_check_sense(SCpnt);
if (rtn == NEEDS_RETRY)
goto maybe_retry;
return rtn;
case CONDITION_GOOD:
case INTERMEDIATE_GOOD:
case INTERMEDIATE_C_GOOD:
/*
* Who knows? FIXME(eric)
*/
return SUCCESS;
case BUSY:
case QUEUE_FULL:
case RESERVATION_CONFLICT:
default:
return FAILED;
}
return FAILED;
maybe_retry:
if ((++SCpnt->retries) < SCpnt->allowed) {
return NEEDS_RETRY;
} else {
/* No more retries - report this one back to upper level */
return SUCCESS;
}
}
/* for (sdev = shost->host_queue; sdev; sdev = sdev->next) {
* Function: scsi_check_sense for (scmd = sc_todo; scmd; scmd = scmd->bh_next)
* if ((scmd->device == sdev) &&
* Purpose: Examine sense information - give suggestion as to what scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR))
* we should do with it. break;
*/
STATIC int scsi_check_sense(Scsi_Cmnd * SCpnt)
{
if (!scsi_sense_valid(SCpnt)) {
return FAILED;
}
if (SCpnt->sense_buffer[2] & 0xe0)
return SUCCESS;
switch (SCpnt->sense_buffer[2] & 0xf) { if (!scmd)
case NO_SENSE: continue;
return SUCCESS;
case RECOVERED_ERROR:
return /* SOFT_ERROR */ SUCCESS;
case ABORTED_COMMAND:
return NEEDS_RETRY;
case NOT_READY:
case UNIT_ATTENTION:
/* /*
* If we are expecting a CC/UA because of a bus reset that we * ok, we have a device that is having problems. try and send
* performed, treat this just as a retry. Otherwise this is * a bus device reset to it.
* information that we should pass up to the upper-level driver
* so that we can deal with it there.
*/ */
if (SCpnt->device->expecting_cc_ua) { rtn = scsi_try_bus_device_reset(scmd);
SCpnt->device->expecting_cc_ua = 0; if ((rtn == SUCCESS) && (scsi_eh_tur(scmd)))
return NEEDS_RETRY; for (scmd = sc_todo; scmd; scmd = scmd->bh_next)
if ((scmd->device == sdev) &&
scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR)) {
rtn = scsi_eh_retry_cmd(scmd);
if (rtn == SUCCESS)
scsi_eh_finish_cmd(scmd, shost);
} }
/*
* If the device is in the process of becoming ready, we
* should retry.
*/
if ((SCpnt->sense_buffer[12] == 0x04) &&
(SCpnt->sense_buffer[13] == 0x01)) {
return NEEDS_RETRY;
} }
return SUCCESS;
/* these three are not supported */ return shost->host_failed;
case COPY_ABORTED:
case VOLUME_OVERFLOW:
case MISCOMPARE:
return SUCCESS;
case MEDIUM_ERROR:
return NEEDS_RETRY;
case ILLEGAL_REQUEST:
case BLANK_CHECK:
case DATA_PROTECT:
case HARDWARE_ERROR:
default:
return SUCCESS;
}
} }
/**
/* * scsi_try_bus_reset - ask host to perform a bus reset
* Function: scsi_restart_operations * @scmd: SCSI cmd to send bus reset.
* **/
* Purpose: Restart IO operations to the specified host. static int scsi_try_bus_reset(Scsi_Cmnd *scmd)
*
* Arguments: host - host that we are restarting
*
* Lock status: Assumed that locks are not held upon entry.
*
* Returns: Nothing
*
* Notes: When we entered the error handler, we blocked all further
* I/O to this device. We need to 'reverse' this process.
*/
STATIC void scsi_restart_operations(struct Scsi_Host *host)
{ {
Scsi_Device *SDpnt;
unsigned long flags; unsigned long flags;
int rtn;
Scsi_Device *sdev;
ASSERT_LOCK(host->host_lock, 0); SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Bus RST\n",
__FUNCTION__));
/* scmd->owner = SCSI_OWNER_LOWLEVEL;
* Next free up anything directly waiting upon the host. This will be scmd->serial_number_at_timeout = scmd->serial_number;
* requests for character device operations, and also for ioctls to queued
* block devices.
*/
SCSI_LOG_ERROR_RECOVERY(5, printk("scsi_error.c: Waking up host to restart\n"));
wake_up(&host->host_wait);
/*
* Finally we need to re-initiate requests that may be pending. We will
* have had everything blocked while error handling is taking place, and
* now that error recovery is done, we will need to ensure that these
* requests are started.
*/
spin_lock_irqsave(host->host_lock, flags);
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
request_queue_t *q = &SDpnt->request_queue;
if ((host->can_queue > 0 && (host->host_busy >= host->can_queue))
|| (host->host_blocked)
|| (host->host_self_blocked)
|| (SDpnt->device_blocked)) {
break;
}
q->request_fn(q);
}
spin_unlock_irqrestore(host->host_lock, flags);
}
/*
* Function: scsi_unjam_host
*
* Purpose: Attempt to fix a host which has a command that failed for
* some reason.
*
* Arguments: host - host that needs unjamming.
*
* Returns: Nothing
*
* Notes: When we come in here, we *know* that all commands on the
* bus have either completed, failed or timed out. We also
* know that no further commands are being sent to the host,
* so things are relatively quiet and we have freedom to
* fiddle with things as we wish.
*
* Additional note: This is only the *default* implementation. It is possible
* for individual drivers to supply their own version of this
* function, and if the maintainer wishes to do this, it is
* strongly suggested that this function be taken as a template
* and modified. This function was designed to correctly handle
* problems for about 95% of the different cases out there, and
* it should always provide at least a reasonable amount of error
* recovery.
*
* Note3: Any command marked 'FAILED' or 'TIMEOUT' must eventually
* have scsi_finish_command() called for it. We do all of
* the retry stuff here, so when we restart the host after we
* return it should have an empty queue.
*/
STATIC int scsi_unjam_host(struct Scsi_Host *host)
{
int devices_failed;
int numfailed;
int ourrtn;
int rtn = FALSE;
int result;
Scsi_Cmnd *SCloop;
Scsi_Cmnd *SCpnt;
Scsi_Device *SDpnt;
Scsi_Device *SDloop;
Scsi_Cmnd *SCdone;
int timed_out;
ASSERT_LOCK(host->host_lock, 0);
SCdone = NULL;
/*
* First, protect against any sort of race condition. If any of the outstanding
* commands are in states that indicate that we are not yet blocked (i.e. we are
* not in a quiet state) then we got woken up in error. If we ever end up here,
* we need to re-examine some of the assumptions.
*/
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next) {
if (SCpnt->state == SCSI_STATE_FAILED
|| SCpnt->state == SCSI_STATE_TIMEOUT
|| SCpnt->state == SCSI_STATE_INITIALIZING
|| SCpnt->state == SCSI_STATE_UNUSED) {
continue;
}
/*
* Rats. Something is still floating around out there. This could
* be the result of the fact that the upper level drivers are still frobbing
* commands that might have succeeded. There are two outcomes. One is that
* the command block will eventually be freed, and the other one is that
* the command will be queued and will be finished along the way.
*/
SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler prematurely woken - commands still active (%p %x %d)\n", SCpnt, SCpnt->state, SCpnt->target));
/* if (scmd->host->hostt->eh_bus_reset_handler == NULL)
* panic("SCSI Error handler woken too early\n"); return FAILED;
*
* This is no longer a problem, since now the code cares only about spin_lock_irqsave(scmd->host->host_lock, flags);
* SCSI_STATE_TIMEOUT and SCSI_STATE_FAILED. rtn = scmd->host->hostt->eh_bus_reset_handler(scmd);
* Other states are useful only to release active commands when devices are spin_unlock_irqrestore(scmd->host->host_lock, flags);
* set offline. If (host->host_active == host->host_busy) we can safely assume
* that there are no commands in state other then TIMEOUT od FAILED. (DB)
*
* FIXME:
* It is not easy to release correctly commands according to their state when
* devices are set offline, when the state is neither TIMEOUT nor FAILED.
* When a device is set offline, we can have some command with
* rq_status=RQ_SCSY_BUSY, owner=SCSI_STATE_HIGHLEVEL,
* state=SCSI_STATE_INITIALIZING and the driver module cannot be released.
* (DB, 17 May 1998)
*/
}
}
if (rtn == SUCCESS) {
scsi_sleep(BUS_RESET_SETTLE_TIME);
/* /*
* Next, see if we need to request sense information. if so, * Mark all affected devices to expect a unit attention.
* then get it now, so we have a better idea of what to do.
* FIXME(eric) this has the unfortunate side effect that if a host
* adapter does not automatically request sense information, that we end
* up shutting it down before we request it. All hosts should be doing this
* anyways, so for now all I have to say is tough noogies if you end up in here.
* On second thought, this is probably a good idea. We *really* want to give
* authors an incentive to automatically request this.
*/ */
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Checking to see if we need to request sense\n")); for (sdev = scmd->host->host_queue; sdev; sdev = sdev->next)
if (scmd->channel == sdev->channel) {
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) { sdev->was_reset = 1;
for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next) { sdev->expecting_cc_ua = 1;
if (SCpnt->state != SCSI_STATE_FAILED || scsi_sense_valid(SCpnt)) {
continue;
} }
SCSI_LOG_ERROR_RECOVERY(2, printk("scsi_unjam_host: Requesting sense for %d\n",
SCpnt->target));
rtn = scsi_request_sense(SCpnt);
if (rtn != SUCCESS) {
continue;
} }
SCSI_LOG_ERROR_RECOVERY(3, printk("Sense requested for %p - result %x\n", return rtn;
SCpnt, SCpnt->result)); }
SCSI_LOG_ERROR_RECOVERY(3, print_sense("bh", SCpnt));
/**
* scsi_try_host_reset - ask host adapter to reset itself
* @scmd: SCSI cmd to send hsot reset.
**/
static int scsi_try_host_reset(Scsi_Cmnd *scmd)
{
unsigned long flags;
int rtn;
Scsi_Device *sdev;
SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Host RST\n",
__FUNCTION__));
scmd->owner = SCSI_OWNER_LOWLEVEL;
scmd->serial_number_at_timeout = scmd->serial_number;
if (scmd->host->hostt->eh_host_reset_handler == NULL)
return FAILED;
result = scsi_decide_disposition(SCpnt); spin_lock_irqsave(scmd->host->host_lock, flags);
rtn = scmd->host->hostt->eh_host_reset_handler(scmd);
spin_unlock_irqrestore(scmd->host->host_lock, flags);
if (rtn == SUCCESS) {
scsi_sleep(HOST_RESET_SETTLE_TIME);
/* /*
* If the result was normal, then just pass it along to the * Mark all affected devices to expect a unit attention.
* upper level.
*/ */
if (result == SUCCESS) { for (sdev = scmd->host->host_queue; sdev; sdev = sdev->next)
SCpnt->host->host_failed--; if (scmd->channel == sdev->channel) {
scsi_eh_finish_command(&SCdone, SCpnt); sdev->was_reset = 1;
sdev->expecting_cc_ua = 1;
} }
if (result != NEEDS_RETRY) {
continue;
} }
return rtn;
}
/**
* scsi_eh_bus_host_reset - send a bus reset and on failure try host reset
* @sc_todo: a list of cmds that have failed.
* @shost: scsi host being recovered.
**/
static int scsi_eh_bus_host_reset(Scsi_Cmnd *sc_todo, struct Scsi_Host *shost)
{
int rtn;
Scsi_Cmnd *scmd;
Scsi_Cmnd *chan_scmd;
unsigned int channel;
/* /*
* We only come in here if we want to retry a * if we ended up here, we have serious problems. the only thing left
* command. The test to see whether the command * to try is a full bus reset. if someone has grabbed the bus and isn't
* should be retried should be keeping track of the * letting go, then perhaps this will help.
* number of tries, so we don't end up looping, of
* course.
*/ */
SCpnt->state = NEEDS_RETRY; SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Try Bus/Host RST\n",
rtn = scsi_eh_retry_command(SCpnt); __FUNCTION__));
if (rtn != SUCCESS) {
continue;
}
/* /*
* We eventually hand this one back to the top level. * we really want to loop over the various channels, and do this on
* a channel by channel basis. we should also check to see if any
* of the failed commands are on soft_reset devices, and if so, skip
* the reset.
*/ */
SCpnt->host->host_failed--;
scsi_eh_finish_command(&SCdone, SCpnt);
}
}
for (channel = 0; channel <= shost->max_channel; channel++) {
for (scmd = sc_todo; scmd; scmd = scmd->bh_next) {
if (!scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR))
continue;
if (channel == scmd->channel) {
chan_scmd = scmd;
break;
/* /*
* Go through the list of commands and figure out where we stand and how bad things * FIXME add back in some support for
* really are. * soft_reset devices.
*/ */
numfailed = 0;
timed_out = 0;
devices_failed = 0;
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
unsigned int device_error = 0;
for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next) {
if (SCpnt->state == SCSI_STATE_FAILED) {
SCSI_LOG_ERROR_RECOVERY(5, printk("Command to ID %d failed\n",
SCpnt->target));
numfailed++;
device_error++;
}
if (SCpnt->state == SCSI_STATE_TIMEOUT) {
SCSI_LOG_ERROR_RECOVERY(5, printk("Command to ID %d timedout\n",
SCpnt->target));
timed_out++;
device_error++;
}
}
if (device_error > 0) {
devices_failed++;
} }
} }
SCSI_LOG_ERROR_RECOVERY(2, printk("Total of %d+%d commands on %d devices require eh work\n", if (!scmd)
numfailed, timed_out, devices_failed)); continue;
if (host->host_failed == 0) {
ourrtn = TRUE;
goto leave;
}
/* /*
* Next, try and see whether or not it makes sense to try and abort * we now know that we are able to perform a reset for the
* the running command. This only works out to be the case if we have * channel that scmd points to.
* one command that has timed out. If the command simply failed, it
* makes no sense to try and abort the command, since as far as the
* host adapter is concerned, it isn't running.
*/ */
rtn = scsi_try_bus_reset(scmd);
if (rtn != SUCCESS)
rtn = scsi_try_host_reset(scmd);
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Checking to see if we want to try abort\n"));
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
for (SCloop = SDpnt->device_queue; SCloop; SCloop = SCloop->next) {
if (SCloop->state != SCSI_STATE_TIMEOUT) {
continue;
}
rtn = scsi_try_to_abort_command(SCloop, ABORT_TIMEOUT);
if (rtn == SUCCESS) { if (rtn == SUCCESS) {
rtn = scsi_test_unit_ready(SCloop); for (scmd = sc_todo; scmd; scmd = scmd->bh_next) {
if (!scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR)
if (rtn == SUCCESS && scsi_unit_is_ready(SCloop)) { || channel != scmd->channel)
rtn = scsi_eh_retry_command(SCloop); continue;
if (scsi_eh_tur(scmd)) {
rtn = scsi_eh_retry_cmd(scmd);
if (rtn == SUCCESS) { if (rtn == SUCCESS)
SCloop->host->host_failed--; scsi_eh_finish_cmd(scmd, shost);
scsi_eh_finish_command(&SCdone, SCloop);
}
}
} }
} }
} }
/*
* If we have corrected all of the problems, then we are done.
*/
if (host->host_failed == 0) {
ourrtn = TRUE;
goto leave;
} }
/* return shost->host_failed;
* Either the abort wasn't appropriate, or it didn't succeed. }
* Now try a bus device reset. Still, look to see whether we have
* multiple devices that are jammed or not - if we have multiple devices, /**
* it makes no sense to try BUS_DEVICE_RESET - we really would need * scsi_eh_offline_sdevs - offline scsi devices that fail to recover
* to try a BUS_RESET instead. * @sc_todo: a list of cmds that have failed.
* @shost: scsi host being recovered.
* *
* Does this make sense - should we try BDR on each device individually? **/
* Yes, definitely. static void scsi_eh_offline_sdevs(Scsi_Cmnd *sc_todo, struct Scsi_Host *shost)
*/ {
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Checking to see if we want to try BDR\n")); Scsi_Cmnd *scmd;
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) { for (scmd = sc_todo; scmd; scmd = scmd->bh_next) {
for (SCloop = SDpnt->device_queue; SCloop; SCloop = SCloop->next) { if (!scsi_eh_eflags_chk(scmd, SCSI_EH_CMD_ERR))
if (SCloop->state == SCSI_STATE_FAILED continue;
|| SCloop->state == SCSI_STATE_TIMEOUT) {
break; printk(KERN_INFO "%s: Device set offline - not"
} "ready or command retry failed"
"after error recovery: host"
"%d channel %d id %d lun %d\n",
__FUNCTION__, shost->host_no,
scmd->device->channel,
scmd->device->id,
scmd->device->lun);
scmd->device->online = FALSE;
scsi_eh_finish_cmd(scmd, shost);
} }
return;
}
if (SCloop == NULL) { /**
continue; * scsi_sleep_done - timer function for scsi_sleep
* @sem: semphore to signal
*
**/
static
void scsi_sleep_done(struct semaphore *sem)
{
if (sem != NULL) {
up(sem);
} }
/* }
* OK, we have a device that is having problems. Try and send
* a bus device reset to it. /**
* scsi_sleep - sleep for specified timeout
* @timeout: timeout value
* *
* FIXME(eric) - make sure we handle the case where multiple **/
* commands to the same device have failed. They all must void scsi_sleep(int timeout)
* get properly restarted. {
*/ DECLARE_MUTEX_LOCKED(sem);
rtn = scsi_try_bus_device_reset(SCloop, RESET_TIMEOUT); struct timer_list timer;
if (rtn == SUCCESS) { init_timer(&timer);
rtn = scsi_test_unit_ready(SCloop); timer.data = (unsigned long) &sem;
timer.expires = jiffies + timeout;
timer.function = (void (*)(unsigned long)) scsi_sleep_done;
if (rtn == SUCCESS && scsi_unit_is_ready(SCloop)) { SCSI_LOG_ERROR_RECOVERY(5, printk("sleeping for timer tics %d\n",
rtn = scsi_eh_retry_command(SCloop); timeout));
if (rtn == SUCCESS) { add_timer(&timer);
SCloop->host->host_failed--;
scsi_eh_finish_command(&SCdone, SCloop); down(&sem);
} del_timer(&timer);
} }
}
} /**
* scsi_decide_disposition - Disposition a cmd on return from LLD.
* @scmd: SCSI cmd to examine.
*
* Notes:
* This is *only* called when we are examining the status after sending
* out the actual data command. any commands that are queued for error
* recovery (i.e. test_unit_ready) do *not* come through here.
*
* When this routine returns failed, it means the error handler thread
* is woken. in cases where the error code indicates an error that
* doesn't require the error handler read (i.e. we don't need to
* abort/reset), then this function should return SUCCESS.
**/
int scsi_decide_disposition(Scsi_Cmnd *scmd)
{
int rtn;
if (host->host_failed == 0) { /*
ourrtn = TRUE; * if the device is offline, then we clearly just pass the result back
goto leave; * up to the top level.
*/
if (scmd->device->online == FALSE) {
SCSI_LOG_ERROR_RECOVERY(5, printk("%s: device offline - report"
"as SUCCESS\n",
__FUNCTION__));
return SUCCESS;
} }
/* /*
* If we ended up here, we have serious problems. The only thing left * first check the host byte, to see if there is anything in there
* to try is a full bus reset. If someone has grabbed the bus and isn't * that would indicate what we need to do.
* letting go, then perhaps this will help.
*/ */
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Try hard bus reset\n"));
switch (host_byte(scmd->result)) {
case DID_PASSTHROUGH:
/* /*
* We really want to loop over the various channels, and do this on * no matter what, pass this through to the upper layer.
* a channel by channel basis. We should also check to see if any * nuke this special code so that it looks like we are saying
* of the failed commands are on soft_reset devices, and if so, skip * did_ok.
* the reset.
*/ */
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) { scmd->result &= 0xff00ffff;
next_device: return SUCCESS;
for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next) { case DID_OK:
if (SCpnt->state != SCSI_STATE_FAILED
&& SCpnt->state != SCSI_STATE_TIMEOUT) {
continue;
}
/* /*
* We have a failed command. Make sure there are no other failed * looks good. drop through, and check the next byte.
* commands on the same channel that are timed out and implement a
* soft reset.
*/ */
for (SDloop = host->host_queue; SDloop; SDloop = SDloop->next) { break;
for (SCloop = SDloop->device_queue; SCloop; SCloop = SCloop->next) { case DID_NO_CONNECT:
if (SCloop->channel != SCpnt->channel) { case DID_BAD_TARGET:
continue; case DID_ABORT:
}
if (SCloop->state != SCSI_STATE_FAILED
&& SCloop->state != SCSI_STATE_TIMEOUT) {
continue;
}
if (SDloop->soft_reset && SCloop->state == SCSI_STATE_TIMEOUT) {
/* /*
* If this device uses the soft reset option, and this * note - this means that we just report the status back
* is one of the devices acting up, then our only * to the top level driver, not that we actually think
* option is to wait a bit, since the command is * that it indicates SUCCESS.
* supposedly still running. */
* return SUCCESS;
* FIXME(eric) - right now we will just end up falling /*
* through to the 'take device offline' case. * when the low level driver returns did_soft_error,
* it is responsible for keeping an internal retry counter
* in order to avoid endless loops (db)
* *
* FIXME(eric) - It is possible that the command completed * actually this is a bug in this function here. we should
* *after* the error recovery procedure started, and if this * be mindful of the maximum number of retries specified
* is the case, we are worrying about nothing here. * and not get stuck in a loop.
*/ */
case DID_SOFT_ERROR:
goto maybe_retry;
scsi_sleep(1 * HZ); case DID_ERROR:
goto next_device; if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
} status_byte(scmd->result) == RESERVATION_CONFLICT)
}
}
/* /*
* We now know that we are able to perform a reset for the * execute reservation conflict processing code
* bus that SCpnt points to. There are no soft-reset devices * lower down
* with outstanding timed out commands.
*/ */
rtn = scsi_try_bus_reset(SCpnt); break;
if (rtn == SUCCESS) { /* fallthrough */
for (SDloop = host->host_queue; SDloop; SDloop = SDloop->next) {
for (SCloop = SDloop->device_queue; SCloop; SCloop = SCloop->next) {
if (SCloop->channel != SCpnt->channel) {
continue;
}
if (SCloop->state != SCSI_STATE_FAILED
&& SCloop->state != SCSI_STATE_TIMEOUT) {
continue;
}
rtn = scsi_test_unit_ready(SCloop);
if (rtn == SUCCESS && scsi_unit_is_ready(SCloop)) {
rtn = scsi_eh_retry_command(SCloop);
if (rtn == SUCCESS) { case DID_BUS_BUSY:
SCpnt->host->host_failed--; case DID_PARITY:
scsi_eh_finish_command(&SCdone, SCloop); goto maybe_retry;
} case DID_TIME_OUT:
}
/* /*
* If the bus reset worked, but we are still unable to * when we scan the bus, we get timeout messages for
* talk to the device, take it offline. * these commands if there is no device available.
* FIXME(eric) - is this really the correct thing to do? * other hosts report did_no_connect for the same thing.
*/ */
if (rtn != SUCCESS) { if ((scmd->cmnd[0] == TEST_UNIT_READY ||
printk(KERN_INFO "scsi: device set offline - not ready or command retry failed after bus reset: host %d channel %d id %d lun %d\n", SDloop->host->host_no, SDloop->channel, SDloop->id, SDloop->lun); scmd->cmnd[0] == INQUIRY)) {
return SUCCESS;
SDloop->online = FALSE; } else {
SDloop->host->host_failed--; return FAILED;
scsi_eh_finish_command(&SCdone, SCloop);
}
}
}
} }
case DID_RESET:
/*
* in the normal case where we haven't initiated a reset,
* this is a failure.
*/
if (scmd->flags & IS_RESETTING) {
scmd->flags &= ~IS_RESETTING;
goto maybe_retry;
} }
return SUCCESS;
default:
return FAILED;
} }
if (host->host_failed == 0) {
ourrtn = TRUE;
goto leave;
}
/* /*
* If we ended up here, we have serious problems. The only thing left * next, check the message byte.
* to try is a full host reset - perhaps the firmware on the device */
* crashed, or something like that. if (msg_byte(scmd->result) != COMMAND_COMPLETE) {
* return FAILED;
* It is assumed that a succesful host reset will cause *all* information
* about the command to be flushed from both the host adapter *and* the
* device.
*
* FIXME(eric) - it isn't clear that devices that implement the soft reset
* option can ever be cleared except via cycling the power. The problem is
* that sending the host reset command will cause the host to forget
* about the pending command, but the device won't forget. For now, we
* skip the host reset option if any of the failed devices are configured
* to use the soft reset option.
*/
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
next_device2:
for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next) {
if (SCpnt->state != SCSI_STATE_FAILED
&& SCpnt->state != SCSI_STATE_TIMEOUT) {
continue;
} }
if (SDpnt->soft_reset && SCpnt->state == SCSI_STATE_TIMEOUT) {
/* /*
* If this device uses the soft reset option, and this * now, check the status byte to see if this indicates anything special.
* is one of the devices acting up, then our only
* option is to wait a bit, since the command is
* supposedly still running.
*
* FIXME(eric) - right now we will just end up falling
* through to the 'take device offline' case.
*/ */
SCSI_LOG_ERROR_RECOVERY(3, switch (status_byte(scmd->result)) {
printk("scsi_unjam_host: Unable to try hard host reset\n")); case QUEUE_FULL:
/* /*
* Due to the spinlock, we will never get out of this * the case of trying to send too many commands to a
* loop without a proper wait. (DB) * tagged queueing device.
*/ */
scsi_sleep(1 * HZ); return ADD_TO_MLQUEUE;
case GOOD:
goto next_device2; case COMMAND_TERMINATED:
return SUCCESS;
case CHECK_CONDITION:
rtn = scsi_check_sense(scmd);
if (rtn == NEEDS_RETRY) {
goto maybe_retry;
} }
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Try hard host reset\n")); return rtn;
case CONDITION_GOOD:
/* case INTERMEDIATE_GOOD:
* FIXME(eric) - we need to obtain a valid SCpnt to perform this call. case INTERMEDIATE_C_GOOD:
*/
rtn = scsi_try_host_reset(SCpnt);
if (rtn == SUCCESS) {
/* /*
* FIXME(eric) we assume that all commands are flushed from the * who knows? FIXME(eric)
* controller. We should get a DID_RESET for all of the commands
* that were pending. We should ignore these so that we can
* guarantee that we are in a consistent state.
*
* I believe this to be the case right now, but this needs to be
* tested.
*/ */
for (SDloop = host->host_queue; SDloop; SDloop = SDloop->next) { return SUCCESS;
for (SCloop = SDloop->device_queue; SCloop; SCloop = SCloop->next) { case BUSY:
if (SCloop->state != SCSI_STATE_FAILED goto maybe_retry;
&& SCloop->state != SCSI_STATE_TIMEOUT) {
continue;
}
rtn = scsi_test_unit_ready(SCloop);
if (rtn == SUCCESS && scsi_unit_is_ready(SCloop)) {
rtn = scsi_eh_retry_command(SCloop);
if (rtn == SUCCESS) { case RESERVATION_CONFLICT:
SCpnt->host->host_failed--; printk("scsi%d (%d,%d,%d) : reservation conflict\n",
scsi_eh_finish_command(&SCdone, SCloop); scmd->host->host_no, scmd->channel,
} scmd->device->id, scmd->device->lun);
} return SUCCESS; /* causes immediate i/o error */
if (rtn != SUCCESS) { default:
printk(KERN_INFO "scsi: device set offline - not ready or command retry failed after host reset: host %d channel %d id %d lun %d\n", SDloop->host->host_no, SDloop->channel, SDloop->id, SDloop->lun); return FAILED;
SDloop->online = FALSE;
SDloop->host->host_failed--;
scsi_eh_finish_command(&SCdone, SCloop);
}
}
}
}
}
} }
return FAILED;
maybe_retry:
if ((++scmd->retries) < scmd->allowed) {
return NEEDS_RETRY;
} else {
/* /*
* If we solved all of the problems, then let's rev up the engines again. * no more retries - report this one back to upper level.
*/ */
if (host->host_failed == 0) { return SUCCESS;
ourrtn = TRUE;
goto leave;
} }
}
/**
* scsi_restart_operations - restart io operations to the specified host.
* @shost: Host we are restarting.
*
* Notes:
* When we entered the error handler, we blocked all further i/o to
* this device. we need to 'reverse' this process.
**/
static void scsi_restart_operations(struct Scsi_Host *shost)
{
Scsi_Device *sdev;
unsigned long flags;
ASSERT_LOCK(shost->host_lock, 0);
/* /*
* If the HOST RESET failed, then for now we assume that the entire host * next free up anything directly waiting upon the host. this
* adapter is too hosed to be of any use. For our purposes, however, it is * will be requests for character device operations, and also for
* easier to simply take the devices offline that correspond to commands * ioctls to queued block devices.
* that failed.
*/ */
SCSI_LOG_ERROR_RECOVERY(1, printk("scsi_unjam_host: Take device offline\n")); SCSI_LOG_ERROR_RECOVERY(3, printk("%s: waking up host to restart\n",
__FUNCTION__));
for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) { wake_up(&shost->host_wait);
for (SCloop = SDpnt->device_queue; SCloop; SCloop = SCloop->next) {
if (SCloop->state == SCSI_STATE_FAILED || SCloop->state == SCSI_STATE_TIMEOUT) {
SDloop = SCloop->device;
if (SDloop->online == TRUE) {
printk(KERN_INFO "scsi: device set offline - command error recover failed: host %d channel %d id %d lun %d\n", SDloop->host->host_no, SDloop->channel, SDloop->id, SDloop->lun);
SDloop->online = FALSE;
}
/* /*
* This should pass the failure up to the top level driver, and * finally we need to re-initiate requests that may be pending. we will
* it will have to try and do something intelligent with it. * have had everything blocked while error handling is taking place, and
* now that error recovery is done, we will need to ensure that these
* requests are started.
*/ */
SCloop->host->host_failed--; spin_lock_irqsave(shost->host_lock, flags);
for (sdev = shost->host_queue; sdev; sdev = sdev->next) {
request_queue_t *q = &sdev->request_queue;
if (SCloop->state == SCSI_STATE_TIMEOUT) { if ((shost->can_queue > 0 &&
SCloop->result |= (DRIVER_TIMEOUT << 24); (shost->host_busy >= shost->can_queue))
|| (shost->host_blocked)
|| (shost->host_self_blocked)
|| (sdev->device_blocked)) {
break;
} }
SCSI_LOG_ERROR_RECOVERY(3, printk("Finishing command for device %d %x\n",
SDloop->id, SCloop->result));
scsi_eh_finish_command(&SCdone, SCloop); q->request_fn(q);
}
}
} }
spin_unlock_irqrestore(shost->host_lock, flags);
}
if (host->host_failed != 0) { /**
panic("scsi_unjam_host: Miscount of number of failed commands.\n"); * scsi_unjam_host - Attempt to fix a host which has a cmd that failed.
} * @shost: Host to unjam.
SCSI_LOG_ERROR_RECOVERY(3, printk("scsi_unjam_host: Returning\n")); *
* Notes:
* When we come in here, we *know* that all commands on the bus have
* either completed, failed or timed out. we also know that no further
* commands are being sent to the host, so things are relatively quiet
* and we have freedom to fiddle with things as we wish.
*
* This is only the *default* implementation. it is possible for
* individual drivers to supply their own version of this function, and
* if the maintainer wishes to do this, it is strongly suggested that
* this function be taken as a template and modified. this function
* was designed to correctly handle problems for about 95% of the
* different cases out there, and it should always provide at least a
* reasonable amount of error recovery.
*
* Any command marked 'failed' or 'timeout' must eventually have
* scsi_finish_cmd() called for it. we do all of the retry stuff
* here, so when we restart the host after we return it should have an
* empty queue.
**/
static void scsi_unjam_host(struct Scsi_Host *shost)
{
Scsi_Cmnd *sc_todo = NULL;
Scsi_Cmnd *scmd;
/*
* Is this assert really ok anymore (andmike). Should we at least
* be using spin_lock_unlocked.
*/
ASSERT_LOCK(shost->host_lock, 0);
scsi_eh_get_failed(&sc_todo, shost);
if (scsi_eh_get_sense(sc_todo, shost))
if (scsi_eh_abort_cmd(sc_todo, shost))
if (scsi_eh_bus_device_reset(sc_todo, shost))
if(scsi_eh_bus_host_reset(sc_todo, shost))
scsi_eh_offline_sdevs(sc_todo, shost);
ourrtn = FALSE; BUG_ON(shost->host_failed);
leave:
/* /*
* We should have a list of commands that we 'finished' during the course of * We are currently holding these things in a linked list - we
* error recovery. This should be the same as the list of commands that timed out * didn't put them in the bottom half queue because we wanted to
* or failed. We are currently holding these things in a linked list - we didn't * keep things quiet while we were working on recovery, and
* put them in the bottom half queue because we wanted to keep things quiet while * passing them up to the top level could easily cause the top
* we were working on recovery, and passing them up to the top level could easily * level to try and queue something else again.
* cause the top level to try and queue something else again.
* *
* Start by marking that the host is no longer in error recovery. * start by marking that the host is no longer in error recovery.
*/ */
host->in_recovery = 0; shost->in_recovery = 0;
/* /*
* Take the list of commands, and stick them in the bottom half queue. * take the list of commands, and stick them in the bottom half queue.
* The current implementation of scsi_done will do this for us - if need * the current implementation of scsi_done will do this for us - if need
* be we can create a special version of this function to do the * be we can create a special version of this function to do the
* same job for us. * same job for us.
*/ */
for (SCpnt = SCdone; SCpnt != NULL; SCpnt = SCdone) { for (scmd = sc_todo; scmd; scmd = sc_todo) {
SCdone = SCpnt->bh_next; sc_todo = scmd->bh_next;
SCpnt->bh_next = NULL; scmd->bh_next = NULL;
/* /*
* Oh, this is a vile hack. scsi_done() expects a timer * Oh, this is a vile hack. scsi_done() expects a timer
* to be running on the command. If there isn't, it assumes * to be running on the command. If there isn't, it assumes
...@@ -1832,35 +1506,26 @@ STATIC int scsi_unjam_host(struct Scsi_Host *host) ...@@ -1832,35 +1506,26 @@ STATIC int scsi_unjam_host(struct Scsi_Host *host)
* scsi_done() will immediately remove said timer from * scsi_done() will immediately remove said timer from
* the command, and then process it. * the command, and then process it.
*/ */
scsi_add_timer(SCpnt, 100, scsi_eh_times_out); scsi_add_timer(scmd, 100, scsi_eh_times_out);
scsi_done(SCpnt); scsi_done(scmd);
} }
return (ourrtn);
} }
/**
/* * scsi_error_handler - Handle errors/timeouts of SCSI cmds.
* Function: scsi_error_handler * @data: Host for which we are running.
*
* Purpose: Handle errors/timeouts of scsi commands, try and clean up
* and unjam the bus, and restart things.
*
* Arguments: host - host for which we are running.
* *
* Returns: Never returns. * Notes:
* * This is always run in the context of a kernel thread. The idea is
* Notes: This is always run in the context of a kernel thread. The * that we start this thing up when the kernel starts up (one per host
* idea is that we start this thing up when the kernel starts * that we detect), and it immediately goes to sleep and waits for some
* up (one per host that we detect), and it immediately goes to * event (i.e. failure). When this takes place, we have the job of
* sleep and waits for some event (i.e. failure). When this * trying to unjam the bus and restarting things.
* takes place, we have the job of trying to unjam the bus **/
* and restarting things.
*
*/
void scsi_error_handler(void *data) void scsi_error_handler(void *data)
{ {
struct Scsi_Host *host = (struct Scsi_Host *) data; struct Scsi_Host *shost = (struct Scsi_Host *) data;
int rtn; int rtn;
DECLARE_MUTEX_LOCKED(sem); DECLARE_MUTEX_LOCKED(sem);
...@@ -1883,19 +1548,20 @@ void scsi_error_handler(void *data) ...@@ -1883,19 +1548,20 @@ void scsi_error_handler(void *data)
* Set the name of this process. * Set the name of this process.
*/ */
sprintf(current->comm, "scsi_eh_%d", host->host_no); sprintf(current->comm, "scsi_eh_%d", shost->host_no);
host->eh_wait = &sem; shost->eh_wait = &sem;
host->ehandler = current; shost->ehandler = current;
unlock_kernel(); unlock_kernel();
/* /*
* Wake up the thread that created us. * Wake up the thread that created us.
*/ */
SCSI_LOG_ERROR_RECOVERY(3, printk("Wake up parent %d\n", host->eh_notify->count.counter)); SCSI_LOG_ERROR_RECOVERY(3, printk("Wake up parent %d\n",
shost->eh_notify->count.counter));
up(host->eh_notify); up(shost->eh_notify);
while (1) { while (1) {
/* /*
...@@ -1920,20 +1586,20 @@ void scsi_error_handler(void *data) ...@@ -1920,20 +1586,20 @@ void scsi_error_handler(void *data)
SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler waking up\n")); SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler waking up\n"));
host->eh_active = 1; shost->eh_active = 1;
/* /*
* We have a host that is failing for some reason. Figure out * We have a host that is failing for some reason. Figure out
* what we need to do to get it up and online again (if we can). * what we need to do to get it up and online again (if we can).
* If we fail, we end up taking the thing offline. * If we fail, we end up taking the thing offline.
*/ */
if (host->hostt->eh_strategy_handler != NULL) { if (shost->hostt->eh_strategy_handler != NULL) {
rtn = host->hostt->eh_strategy_handler(host); rtn = shost->hostt->eh_strategy_handler(shost);
} else { } else {
rtn = scsi_unjam_host(host); scsi_unjam_host(shost);
} }
host->eh_active = 0; shost->eh_active = 0;
/* /*
* Note - if the above fails completely, the action is to take * Note - if the above fails completely, the action is to take
...@@ -1942,7 +1608,7 @@ void scsi_error_handler(void *data) ...@@ -1942,7 +1608,7 @@ void scsi_error_handler(void *data)
* restart, we restart any I/O to any other devices on the bus * restart, we restart any I/O to any other devices on the bus
* which are still online. * which are still online.
*/ */
scsi_restart_operations(host); scsi_restart_operations(shost);
} }
...@@ -1951,7 +1617,7 @@ void scsi_error_handler(void *data) ...@@ -1951,7 +1617,7 @@ void scsi_error_handler(void *data)
/* /*
* Make sure that nobody tries to wake us up again. * Make sure that nobody tries to wake us up again.
*/ */
host->eh_wait = NULL; shost->eh_wait = NULL;
/* /*
* Knock this down too. From this point on, the host is flying * Knock this down too. From this point on, the host is flying
...@@ -1959,9 +1625,9 @@ void scsi_error_handler(void *data) ...@@ -1959,9 +1625,9 @@ void scsi_error_handler(void *data)
* that's fine. If the user sent a signal to this thing, we are * that's fine. If the user sent a signal to this thing, we are
* potentially in real danger. * potentially in real danger.
*/ */
host->in_recovery = 0; shost->in_recovery = 0;
host->eh_active = 0; shost->eh_active = 0;
host->ehandler = NULL; shost->ehandler = NULL;
/* /*
* If anyone is waiting for us to exit (i.e. someone trying to unload * If anyone is waiting for us to exit (i.e. someone trying to unload
...@@ -1971,41 +1637,39 @@ void scsi_error_handler(void *data) ...@@ -1971,41 +1637,39 @@ void scsi_error_handler(void *data)
* the error handling thread wakes up that it would just exit without * the error handling thread wakes up that it would just exit without
* needing to touch any memory associated with the driver itself. * needing to touch any memory associated with the driver itself.
*/ */
if (host->eh_notify != NULL) if (shost->eh_notify != NULL)
up(host->eh_notify); up(shost->eh_notify);
} }
/* /**
* Function: scsi_new_reset * scsi_new_reset - Send reset to a bus or device at any phase.
* * @scmd: Cmd to send reset with (usually a dummy)
* Purpose: Send requested reset to a bus or device at any phase. * @flag: Reset type.
* *
* Arguments: SCpnt - command ptr to send reset with (usually a dummy) * Description:
* flag - reset type (see scsi.h) * This is used by the SCSI Generic driver to provide Bus/Device reset
* capability.
* *
* Returns: SUCCESS/FAILURE. * Return value:
* * SUCCESS/FAILED.
* Notes: This is used by the SCSI Generic driver to provide **/
* Bus/Device reset capability. int scsi_new_reset(Scsi_Cmnd *scmd, int flag)
*/
int
scsi_new_reset(Scsi_Cmnd *SCpnt, int flag)
{ {
int rtn; int rtn;
switch(flag) { switch(flag) {
case SCSI_TRY_RESET_DEVICE: case SCSI_TRY_RESET_DEVICE:
rtn = scsi_try_bus_device_reset(SCpnt, 0); rtn = scsi_try_bus_device_reset(scmd);
if (rtn == SUCCESS) if (rtn == SUCCESS)
break; break;
/* FALLTHROUGH */ /* FALLTHROUGH */
case SCSI_TRY_RESET_BUS: case SCSI_TRY_RESET_BUS:
rtn = scsi_try_bus_reset(SCpnt); rtn = scsi_try_bus_reset(scmd);
if (rtn == SUCCESS) if (rtn == SUCCESS)
break; break;
/* FALLTHROUGH */ /* FALLTHROUGH */
case SCSI_TRY_RESET_HOST: case SCSI_TRY_RESET_HOST:
rtn = scsi_try_host_reset(SCpnt); rtn = scsi_try_host_reset(scmd);
break; break;
default: default:
rtn = FAILED; rtn = FAILED;
......
...@@ -140,7 +140,7 @@ void scsi_initialize_merge_fn(Scsi_Device * SDpnt) ...@@ -140,7 +140,7 @@ void scsi_initialize_merge_fn(Scsi_Device * SDpnt)
* Enable highmem I/O, if appropriate. * Enable highmem I/O, if appropriate.
*/ */
bounce_limit = BLK_BOUNCE_HIGH; bounce_limit = BLK_BOUNCE_HIGH;
if (SHpnt->highmem_io && (SDpnt->type == TYPE_DISK)) { if (SHpnt->highmem_io) {
if (!PCI_DMA_BUS_IS_PHYS) if (!PCI_DMA_BUS_IS_PHYS)
/* Platforms with virtual-DMA translation /* Platforms with virtual-DMA translation
* hardware have no practical limit. * hardware have no practical limit.
......
...@@ -82,6 +82,19 @@ static void sg_proc_cleanup(void); ...@@ -82,6 +82,19 @@ static void sg_proc_cleanup(void);
#define SG_MAX_DEVS_MASK ((1U << KDEV_MINOR_BITS) - 1) #define SG_MAX_DEVS_MASK ((1U << KDEV_MINOR_BITS) - 1)
/*
* Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
* Then when using 32 bit integers x * m may overflow during the calculation.
* Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
* calculates the same, but prevents the overflow when both m and d
* are "small" numbers (like HZ and USER_HZ).
* Of course an overflow is inavoidable if the result of muldiv doesn't fit
* in 32 bits.
*/
#define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
#define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
int sg_big_buff = SG_DEF_RESERVED_SIZE; int sg_big_buff = SG_DEF_RESERVED_SIZE;
/* N.B. This variable is readable and writeable via /* N.B. This variable is readable and writeable via
/proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
...@@ -151,6 +164,7 @@ typedef struct sg_fd { /* holds the state of a file descriptor */ ...@@ -151,6 +164,7 @@ typedef struct sg_fd { /* holds the state of a file descriptor */
wait_queue_head_t read_wait; /* queue read until command done */ wait_queue_head_t read_wait; /* queue read until command done */
rwlock_t rq_list_lock; /* protect access to list in req_arr */ rwlock_t rq_list_lock; /* protect access to list in req_arr */
int timeout; /* defaults to SG_DEFAULT_TIMEOUT */ int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
Sg_scatter_hold reserve; /* buffer held for this file descriptor */ Sg_scatter_hold reserve; /* buffer held for this file descriptor */
unsigned save_scat_len; /* original length of trunc. scat. element */ unsigned save_scat_len; /* original length of trunc. scat. element */
Sg_request *headrp; /* head of request slist, NULL->empty */ Sg_request *headrp; /* head of request slist, NULL->empty */
...@@ -790,10 +804,15 @@ sg_ioctl(struct inode *inode, struct file *filp, ...@@ -790,10 +804,15 @@ sg_ioctl(struct inode *inode, struct file *filp,
return result; return result;
if (val < 0) if (val < 0)
return -EIO; return -EIO;
sfp->timeout = val; if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
val = MULDIV (INT_MAX, USER_HZ, HZ);
sfp->timeout_user = val;
sfp->timeout = MULDIV (val, HZ, USER_HZ);
return 0; return 0;
case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */ case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
return sfp->timeout; /* strange ..., for backward compatibility */ /* strange ..., for backward compatibility */
return sfp->timeout_user;
case SG_SET_FORCE_LOW_DMA: case SG_SET_FORCE_LOW_DMA:
result = get_user(val, (int *) arg); result = get_user(val, (int *) arg);
if (result) if (result)
...@@ -2432,6 +2451,7 @@ sg_add_sfp(Sg_device * sdp, int dev) ...@@ -2432,6 +2451,7 @@ sg_add_sfp(Sg_device * sdp, int dev)
sfp->rq_list_lock = RW_LOCK_UNLOCKED; sfp->rq_list_lock = RW_LOCK_UNLOCKED;
sfp->timeout = SG_DEFAULT_TIMEOUT; sfp->timeout = SG_DEFAULT_TIMEOUT;
sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
sfp->force_packid = SG_DEF_FORCE_PACK_ID; sfp->force_packid = SG_DEF_FORCE_PACK_ID;
sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ? sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
sdp->device->host->unchecked_isa_dma : 1; sdp->device->host->unchecked_isa_dma : 1;
......
...@@ -304,7 +304,12 @@ struct sg_header ...@@ -304,7 +304,12 @@ struct sg_header
/* Defaults, commented if they differ from original sg driver */ /* Defaults, commented if they differ from original sg driver */
#ifdef __KERNEL__
#define SG_DEFAULT_TIMEOUT_USER (60*USER_HZ) /* HZ == 'jiffies in 1 second' */
#else
#define SG_DEFAULT_TIMEOUT (60*HZ) /* HZ == 'jiffies in 1 second' */ #define SG_DEFAULT_TIMEOUT (60*HZ) /* HZ == 'jiffies in 1 second' */
#endif
#define SG_DEF_COMMAND_Q 0 /* command queuing is always on when #define SG_DEF_COMMAND_Q 0 /* command queuing is always on when
the new interface is used */ the new interface is used */
#define SG_DEF_UNDERRUN_FLAG 0 #define SG_DEF_UNDERRUN_FLAG 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment