Commit 05d088b2 authored by James Bottomley's avatar James Bottomley

Merge

parents 73076248 7f66a4b3
...@@ -38,39 +38,23 @@ ...@@ -38,39 +38,23 @@
#include <linux/config.h> #include <linux/config.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/timer.h> #include <linux/timer.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/ioport.h> #include <linux/blkdev.h>
#include <linux/kernel.h>
#include <linux/stat.h>
#include <linux/blk.h>
#include <linux/interrupt.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/smp_lock.h>
#include <linux/completion.h> #include <linux/completion.h>
#include <linux/devfs_fs_kernel.h> #include <linux/devfs_fs_kernel.h>
#define __KERNEL_SYSCALLS__
#include <linux/unistd.h> #include <linux/unistd.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/kmod.h>
#include <asm/system.h>
#include <asm/irq.h>
#include <asm/dma.h>
#include <asm/uaccess.h>
#include "scsi.h" #include "scsi.h"
#include "hosts.h" #include "hosts.h"
#ifdef CONFIG_KMOD
#include <linux/kmod.h>
#endif
/* /*
* Definitions and constants. * Definitions and constants.
...@@ -87,18 +71,16 @@ ...@@ -87,18 +71,16 @@
* vendor unique and we will depend upon the command length being * vendor unique and we will depend upon the command length being
* supplied correctly in cmd_len. * supplied correctly in cmd_len.
*/ */
#define CDB_SIZE(SCpnt) ((((SCpnt->cmnd[0] >> 5) & 7) < 6) ? \ #define CDB_SIZE(cmd) (((((cmd)->cmnd[0] >> 5) & 7) < 6) ? \
COMMAND_SIZE(SCpnt->cmnd[0]) : SCpnt->cmd_len) COMMAND_SIZE((cmd)->cmnd[0]) : (cmd)->cmd_len)
/* /*
* Data declarations. * Data declarations.
*/ */
unsigned long scsi_pid; unsigned long scsi_pid;
Scsi_Cmnd *last_cmnd; struct scsi_cmnd *last_cmnd;
static unsigned long serial_number; static unsigned long serial_number;
static struct list_head done_q[NR_CPUS] __cacheline_aligned;
/* /*
* List of all highlevel drivers. * List of all highlevel drivers.
*/ */
...@@ -111,8 +93,7 @@ static DECLARE_RWSEM(scsi_devicelist_mutex); ...@@ -111,8 +93,7 @@ static DECLARE_RWSEM(scsi_devicelist_mutex);
*/ */
unsigned int scsi_logging_level; unsigned int scsi_logging_level;
const char *const scsi_device_types[MAX_SCSI_DEVICE_CODE] = const char *const scsi_device_types[MAX_SCSI_DEVICE_CODE] = {
{
"Direct-Access ", "Direct-Access ",
"Sequential-Access", "Sequential-Access",
"Printer ", "Printer ",
...@@ -137,14 +118,12 @@ LIST_HEAD(scsi_dev_info_list); ...@@ -137,14 +118,12 @@ LIST_HEAD(scsi_dev_info_list);
/* /*
* Function prototypes. * Function prototypes.
*/ */
extern void scsi_times_out(Scsi_Cmnd * SCpnt); extern void scsi_times_out(struct scsi_cmnd *cmd);
#ifdef MODULE
MODULE_PARM(scsi_logging_level, "i"); MODULE_PARM(scsi_logging_level, "i");
MODULE_PARM_DESC(scsi_logging_level, "SCSI logging level; should be zero or nonzero"); MODULE_PARM_DESC(scsi_logging_level, "SCSI logging level; should be zero or nonzero");
#else #ifndef MODULE
static int __init scsi_logging_setup(char *str) static int __init scsi_logging_setup(char *str)
{ {
int tmp; int tmp;
...@@ -158,9 +137,7 @@ static int __init scsi_logging_setup(char *str) ...@@ -158,9 +137,7 @@ static int __init scsi_logging_setup(char *str)
return 0; return 0;
} }
} }
__setup("scsi_logging=", scsi_logging_setup); __setup("scsi_logging=", scsi_logging_setup);
#endif #endif
/* /*
...@@ -178,30 +155,26 @@ __setup("scsi_logging=", scsi_logging_setup); ...@@ -178,30 +155,26 @@ __setup("scsi_logging=", scsi_logging_setup);
* to track the difference between a command and a * to track the difference between a command and a
* request. A request is a pending item in the queue that * request. A request is a pending item in the queue that
* has not yet reached the top of the queue. * has not yet reached the top of the queue.
*
* XXX(hch): Need to add a gfp_mask argument.
*/ */
struct scsi_request *scsi_allocate_request(struct scsi_device *sdev)
Scsi_Request *scsi_allocate_request(Scsi_Device * device)
{ {
Scsi_Request *SRpnt = NULL; const int offset = ALIGN(sizeof(struct scsi_request), 4);
const int offset = ALIGN(sizeof(Scsi_Request), 4);
const int size = offset + sizeof(struct request); const int size = offset + sizeof(struct request);
struct scsi_request *sreq;
if (!device)
panic("No device passed to scsi_allocate_request().\n"); sreq = kmalloc(size, GFP_ATOMIC);
if (likely(sreq != NULL)) {
SRpnt = (Scsi_Request *) kmalloc(size, GFP_ATOMIC); memset(sreq, 0, size);
if( SRpnt == NULL ) sreq->sr_request = (struct request *)(((char *)sreq) + offset);
{ sreq->sr_device = sdev;
return NULL; sreq->sr_host = sdev->host;
sreq->sr_magic = SCSI_REQ_MAGIC;
sreq->sr_data_direction = SCSI_DATA_UNKNOWN;
} }
memset(SRpnt, 0, size);
SRpnt->sr_request = (struct request *)(((char *)SRpnt) + offset); return sreq;
SRpnt->sr_device = device;
SRpnt->sr_host = device->host;
SRpnt->sr_magic = SCSI_REQ_MAGIC;
SRpnt->sr_data_direction = SCSI_DATA_UNKNOWN;
return SRpnt;
} }
/* /*
...@@ -209,29 +182,21 @@ Scsi_Request *scsi_allocate_request(Scsi_Device * device) ...@@ -209,29 +182,21 @@ Scsi_Request *scsi_allocate_request(Scsi_Device * device)
* *
* Purpose: Release a request descriptor. * Purpose: Release a request descriptor.
* *
* Arguments: device - device for which we want a request * Arguments: sreq - request to release
* *
* Lock status: No locks assumed to be held. This function is SMP-safe. * Lock status: No locks assumed to be held. This function is SMP-safe.
*
* Returns: Pointer to request block.
*
* Notes: With the new queueing code, it becomes important
* to track the difference between a command and a
* request. A request is a pending item in the queue that
* has not yet reached the top of the queue. We still need
* to free a request when we are done with it, of course.
*/ */
void scsi_release_request(Scsi_Request * req) void scsi_release_request(struct scsi_request *sreq)
{ {
if( req->sr_command != NULL ) if (likely(sreq->sr_command != NULL)) {
{ struct request_queue *q = sreq->sr_device->request_queue;
request_queue_t *q = req->sr_device->request_queue;
scsi_put_command(req->sr_command); scsi_put_command(sreq->sr_command);
req->sr_command = NULL; sreq->sr_command = NULL;
scsi_queue_next_request(q, NULL); scsi_queue_next_request(q, NULL);
} }
kfree(req); kfree(sreq);
} }
struct scsi_host_cmd_pool { struct scsi_host_cmd_pool {
...@@ -425,42 +390,31 @@ void scsi_destroy_command_freelist(struct Scsi_Host *shost) ...@@ -425,42 +390,31 @@ void scsi_destroy_command_freelist(struct Scsi_Host *shost)
* *
* Purpose: Dispatch a command to the low-level driver. * Purpose: Dispatch a command to the low-level driver.
* *
* Arguments: SCpnt - command block we are dispatching. * Arguments: cmd - command block we are dispatching.
* *
* Notes: * Notes:
*/ */
int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt) int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
{ {
#ifdef DEBUG_DELAY struct Scsi_Host *host = cmd->device->host;
unsigned long clock;
#endif
struct Scsi_Host *host;
int rtn = 0;
unsigned long flags = 0; unsigned long flags = 0;
unsigned long timeout; unsigned long timeout;
int rtn = 1;
#if DEBUG
unsigned long *ret = 0;
#ifdef __mips__
__asm__ __volatile__("move\t%0,$31":"=r"(ret));
#else
ret = __builtin_return_address(0);
#endif
#endif
host = SCpnt->device->host;
/* Assign a unique nonzero serial_number. */ /* Assign a unique nonzero serial_number. */
/* XXX(hch): this is racy */
if (++serial_number == 0) if (++serial_number == 0)
serial_number = 1; serial_number = 1;
SCpnt->serial_number = serial_number; cmd->serial_number = serial_number;
SCpnt->pid = scsi_pid++; cmd->pid = scsi_pid++;
/* /*
* If SCSI-2 or lower, store the LUN value in cmnd. * If SCSI-2 or lower, store the LUN value in cmnd.
*/ */
if (SCpnt->device->scsi_level <= SCSI_2) if (cmd->device->scsi_level <= SCSI_2) {
SCpnt->cmnd[1] = (SCpnt->cmnd[1] & 0x1f) | cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) |
(SCpnt->device->lun << 5 & 0xe0); (cmd->device->lun << 5 & 0xe0);
}
/* /*
* We will wait MIN_RESET_DELAY clock ticks after the last reset so * We will wait MIN_RESET_DELAY clock ticks after the last reset so
...@@ -484,65 +438,63 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt) ...@@ -484,65 +438,63 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt)
host->resetting = 0; host->resetting = 0;
} }
scsi_add_timer(SCpnt, SCpnt->timeout_per_command, scsi_times_out); scsi_add_timer(cmd, cmd->timeout_per_command, scsi_times_out);
/* /*
* We will use a queued command if possible, otherwise we will emulate the * We will use a queued command if possible, otherwise we will
* queuing and calling of completion function ourselves. * emulate the queuing and calling of completion function ourselves.
*/ */
SCSI_LOG_MLQUEUE(3, printk("scsi_dispatch_cmnd (host = %d, channel = %d, target = %d, " SCSI_LOG_MLQUEUE(3, printk("scsi_dispatch_cmnd (host = %d, "
"command = %p, buffer = %p, \nbufflen = %d, done = %p)\n", "channel = %d, target = %d, command = %p, "
SCpnt->device->host->host_no, SCpnt->device->channel, SCpnt->device->id, SCpnt->cmnd, "buffer = %p, \nbufflen = %d, done = %p)\n",
SCpnt->buffer, SCpnt->bufflen, SCpnt->done)); host->host_no, cmd->device->channel,
cmd->device->id, cmd->cmnd, cmd->buffer,
cmd->bufflen, cmd->done));
cmd->state = SCSI_STATE_QUEUED;
cmd->owner = SCSI_OWNER_LOWLEVEL;
SCpnt->state = SCSI_STATE_QUEUED;
SCpnt->owner = SCSI_OWNER_LOWLEVEL;
if (host->can_queue) {
SCSI_LOG_MLQUEUE(3, printk("queuecommand : routine at %p\n",
host->hostt->queuecommand));
/* /*
* Before we queue this command, check if the command * Before we queue this command, check if the command
* length exceeds what the host adapter can handle. * length exceeds what the host adapter can handle.
*/ */
if (CDB_SIZE(SCpnt) <= SCpnt->device->host->max_cmd_len) { if (CDB_SIZE(cmd) > cmd->device->host->max_cmd_len) {
spin_lock_irqsave(host->host_lock, flags);
rtn = host->hostt->queuecommand(SCpnt, scsi_done);
spin_unlock_irqrestore(host->host_lock, flags);
if (rtn != 0) {
scsi_queue_insert(SCpnt, rtn == SCSI_MLQUEUE_DEVICE_BUSY ? rtn : SCSI_MLQUEUE_HOST_BUSY);
SCSI_LOG_MLQUEUE(3,
printk("queuecommand : request rejected\n"));
}
} else {
SCSI_LOG_MLQUEUE(3, SCSI_LOG_MLQUEUE(3,
printk("queuecommand : command too long.\n")); printk("queuecommand : command too long.\n"));
SCpnt->result = (DID_ABORT << 16); cmd->result = (DID_ABORT << 16);
spin_lock_irqsave(host->host_lock, flags); spin_lock_irqsave(host->host_lock, flags);
scsi_done(SCpnt); scsi_done(cmd);
spin_unlock_irqrestore(host->host_lock, flags); spin_unlock_irqrestore(host->host_lock, flags);
rtn = 1; goto out;
} }
} else {
int temp;
SCSI_LOG_MLQUEUE(3, printk("command() : routine at %p\n", host->hostt->command)); if (host->can_queue) {
SCSI_LOG_MLQUEUE(3, printk("queuecommand : routine at %p\n",
host->hostt->queuecommand));
spin_lock_irqsave(host->host_lock, flags); spin_lock_irqsave(host->host_lock, flags);
temp = host->hostt->command(SCpnt); rtn = host->hostt->queuecommand(cmd, scsi_done);
SCpnt->result = temp;
#ifdef DEBUG_DELAY
spin_unlock_irqrestore(host->host_lock, flags); spin_unlock_irqrestore(host->host_lock, flags);
clock = jiffies + 4 * HZ; if (rtn) {
while (time_before(jiffies, clock)) { scsi_queue_insert(cmd,
barrier(); (rtn == SCSI_MLQUEUE_DEVICE_BUSY) ?
cpu_relax(); rtn : SCSI_MLQUEUE_HOST_BUSY);
SCSI_LOG_MLQUEUE(3,
printk("queuecommand : request rejected\n"));
} }
printk("done(host = %d, result = %04x) : routine at %p\n", } else {
host->host_no, temp, host->hostt->command); SCSI_LOG_MLQUEUE(3, printk("command() : routine at %p\n",
host->hostt->command));
spin_lock_irqsave(host->host_lock, flags); spin_lock_irqsave(host->host_lock, flags);
#endif cmd->result = host->hostt->command(cmd);
scsi_done(SCpnt); scsi_done(cmd);
spin_unlock_irqrestore(host->host_lock, flags); spin_unlock_irqrestore(host->host_lock, flags);
rtn = 0;
} }
out:
SCSI_LOG_MLQUEUE(3, printk("leaving scsi_dispatch_cmnd()\n")); SCSI_LOG_MLQUEUE(3, printk("leaving scsi_dispatch_cmnd()\n"));
return rtn; return rtn;
} }
...@@ -551,10 +503,10 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt) ...@@ -551,10 +503,10 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt)
* Function: scsi_init_cmd_from_req * Function: scsi_init_cmd_from_req
* *
* Purpose: Queue a SCSI command * Purpose: Queue a SCSI command
* Purpose: Initialize a Scsi_Cmnd from a Scsi_Request * Purpose: Initialize a struct scsi_cmnd from a struct scsi_request
* *
* Arguments: SCpnt - command descriptor. * Arguments: cmd - command descriptor.
* SRpnt - Request from the queue. * sreq - Request from the queue.
* *
* Lock status: None needed. * Lock status: None needed.
* *
...@@ -571,65 +523,61 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt) ...@@ -571,65 +523,61 @@ int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt)
* The request structure is generally used by ioctls and character * The request structure is generally used by ioctls and character
* devices. * devices.
*/ */
void scsi_init_cmd_from_req(Scsi_Cmnd * SCpnt, Scsi_Request * SRpnt) void scsi_init_cmd_from_req(struct scsi_cmnd *cmd, struct scsi_request *sreq)
{ {
struct Scsi_Host *host = SCpnt->device->host; sreq->sr_command = cmd;
SCpnt->owner = SCSI_OWNER_MIDLEVEL; cmd->owner = SCSI_OWNER_MIDLEVEL;
SRpnt->sr_command = SCpnt; cmd->cmd_len = sreq->sr_cmd_len;
cmd->use_sg = sreq->sr_use_sg;
if (!host) { cmd->request = sreq->sr_request;
panic("Invalid or not present host.\n"); memcpy(cmd->data_cmnd, sreq->sr_cmnd, sizeof(cmd->data_cmnd));
} cmd->reset_chain = NULL;
cmd->serial_number = 0;
cmd->serial_number_at_timeout = 0;
cmd->bufflen = sreq->sr_bufflen;
cmd->buffer = sreq->sr_buffer;
cmd->flags = 0;
cmd->retries = 0;
cmd->allowed = sreq->sr_allowed;
cmd->done = sreq->sr_done;
cmd->timeout_per_command = sreq->sr_timeout_per_command;
cmd->sc_data_direction = sreq->sr_data_direction;
cmd->sglist_len = sreq->sr_sglist_len;
cmd->underflow = sreq->sr_underflow;
cmd->sc_request = sreq;
memcpy(cmd->cmnd, sreq->sr_cmnd, sizeof(sreq->sr_cmnd));
SCpnt->cmd_len = SRpnt->sr_cmd_len; /*
SCpnt->use_sg = SRpnt->sr_use_sg; * Zero the sense buffer. Some host adapters automatically request
SCpnt->request = SRpnt->sr_request;
memcpy((void *) SCpnt->data_cmnd, (const void *) SRpnt->sr_cmnd,
sizeof(SCpnt->data_cmnd));
SCpnt->reset_chain = NULL;
SCpnt->serial_number = 0;
SCpnt->serial_number_at_timeout = 0;
SCpnt->bufflen = SRpnt->sr_bufflen;
SCpnt->buffer = SRpnt->sr_buffer;
SCpnt->flags = 0;
SCpnt->retries = 0;
SCpnt->allowed = SRpnt->sr_allowed;
SCpnt->done = SRpnt->sr_done;
SCpnt->timeout_per_command = SRpnt->sr_timeout_per_command;
SCpnt->sc_data_direction = SRpnt->sr_data_direction;
SCpnt->sglist_len = SRpnt->sr_sglist_len;
SCpnt->underflow = SRpnt->sr_underflow;
SCpnt->sc_request = SRpnt;
memcpy((void *) SCpnt->cmnd, (const void *) SRpnt->sr_cmnd,
sizeof(SCpnt->cmnd));
/* Zero the sense buffer. Some host adapters automatically request
* sense on error. 0 is not a valid sense code. * sense on error. 0 is not a valid sense code.
*/ */
memset((void *) SCpnt->sense_buffer, 0, sizeof SCpnt->sense_buffer); memset(cmd->sense_buffer, 0, sizeof(sreq->sr_sense_buffer));
SCpnt->request_buffer = SRpnt->sr_buffer; cmd->request_buffer = sreq->sr_buffer;
SCpnt->request_bufflen = SRpnt->sr_bufflen; cmd->request_bufflen = sreq->sr_bufflen;
SCpnt->old_use_sg = SCpnt->use_sg; cmd->old_use_sg = cmd->use_sg;
if (SCpnt->cmd_len == 0) if (cmd->cmd_len == 0)
SCpnt->cmd_len = COMMAND_SIZE(SCpnt->cmnd[0]); cmd->cmd_len = COMMAND_SIZE(cmd->cmnd[0]);
SCpnt->old_cmd_len = SCpnt->cmd_len; cmd->old_cmd_len = cmd->cmd_len;
SCpnt->sc_old_data_direction = SCpnt->sc_data_direction; cmd->sc_old_data_direction = cmd->sc_data_direction;
SCpnt->old_underflow = SCpnt->underflow; cmd->old_underflow = cmd->underflow;
/* Start the timer ticking. */
SCpnt->internal_timeout = NORMAL_TIMEOUT; /*
SCpnt->abort_reason = 0; * Start the timer ticking.
SCpnt->result = 0; */
cmd->internal_timeout = NORMAL_TIMEOUT;
cmd->abort_reason = 0;
cmd->result = 0;
SCSI_LOG_MLQUEUE(3, printk("Leaving scsi_init_cmd_from_req()\n")); SCSI_LOG_MLQUEUE(3, printk("Leaving scsi_init_cmd_from_req()\n"));
} }
/*
* Per-CPU I/O completion queue.
*/
static struct list_head done_q[NR_CPUS] __cacheline_aligned;
/** /**
* scsi_done - Enqueue the finished SCSI command into the done queue. * scsi_done - Enqueue the finished SCSI command into the done queue.
* @cmd: The SCSI Command for which a low-level device driver (LLDD) gives * @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
...@@ -645,9 +593,8 @@ void scsi_init_cmd_from_req(Scsi_Cmnd * SCpnt, Scsi_Request * SRpnt) ...@@ -645,9 +593,8 @@ void scsi_init_cmd_from_req(Scsi_Cmnd * SCpnt, Scsi_Request * SRpnt)
*/ */
void scsi_done(struct scsi_cmnd *cmd) void scsi_done(struct scsi_cmnd *cmd)
{ {
int cpu;
unsigned long flags; unsigned long flags;
struct list_head *pdone_q; int cpu;
/* /*
* We don't have to worry about this one timing out any more. * We don't have to worry about this one timing out any more.
...@@ -660,7 +607,9 @@ void scsi_done(struct scsi_cmnd *cmd) ...@@ -660,7 +607,9 @@ void scsi_done(struct scsi_cmnd *cmd)
if (!scsi_delete_timer(cmd)) if (!scsi_delete_timer(cmd))
return; return;
/* Set the serial numbers back to zero */ /*
* Set the serial numbers back to zero
*/
cmd->serial_number = 0; cmd->serial_number = 0;
cmd->serial_number_at_timeout = 0; cmd->serial_number_at_timeout = 0;
cmd->state = SCSI_STATE_BHQUEUE; cmd->state = SCSI_STATE_BHQUEUE;
...@@ -672,12 +621,9 @@ void scsi_done(struct scsi_cmnd *cmd) ...@@ -672,12 +621,9 @@ void scsi_done(struct scsi_cmnd *cmd)
* and need no spinlock. * and need no spinlock.
*/ */
local_irq_save(flags); local_irq_save(flags);
cpu = smp_processor_id(); cpu = smp_processor_id();
pdone_q = &done_q[cpu]; list_add_tail(&cmd->eh_entry, &done_q[cpu]);
list_add_tail(&cmd->eh_entry, pdone_q);
cpu_raise_softirq(cpu, SCSI_SOFTIRQ); cpu_raise_softirq(cpu, SCSI_SOFTIRQ);
local_irq_restore(flags); local_irq_restore(flags);
} }
...@@ -765,19 +711,17 @@ static void scsi_softirq(struct softirq_action *h) ...@@ -765,19 +711,17 @@ static void scsi_softirq(struct softirq_action *h)
/* /*
* Dump the sense information too. * Dump the sense information too.
*/ */
if ((status_byte(cmd->result)&CHECK_CONDITION) != 0) { if (status_byte(cmd->result) & CHECK_CONDITION)
SCSI_LOG_MLCOMPLETE(3, print_sense("bh", cmd)); SCSI_LOG_MLCOMPLETE(3, print_sense("bh", cmd));
}
if (!scsi_eh_scmd_add(cmd, 0)) {
/* /*
* We only get here if the error * We only fail here if the error recovery thread
* recovery thread has died. * has died.
*/ */
if (!scsi_eh_scmd_add(cmd, 0))
scsi_finish_command(cmd); scsi_finish_command(cmd);
} }
} }
}
} }
/* /*
...@@ -790,20 +734,20 @@ static void scsi_softirq(struct softirq_action *h) ...@@ -790,20 +734,20 @@ static void scsi_softirq(struct softirq_action *h)
* level drivers should not become re-entrant as a result of * level drivers should not become re-entrant as a result of
* this. * this.
*/ */
int scsi_retry_command(Scsi_Cmnd * SCpnt) int scsi_retry_command(struct scsi_cmnd *cmd)
{ {
/* /*
* Restore the SCSI command state. * Restore the SCSI command state.
*/ */
scsi_setup_cmd_retry(SCpnt); scsi_setup_cmd_retry(cmd);
/* /*
* Zero the sense information from the last time we tried * Zero the sense information from the last time we tried
* this command. * this command.
*/ */
memset((void *) SCpnt->sense_buffer, 0, sizeof SCpnt->sense_buffer); memset(cmd->sense_buffer, 0, sizeof(cmd->sense_buffer));
return scsi_dispatch_cmd(SCpnt); return scsi_dispatch_cmd(cmd);
} }
/* /*
...@@ -813,68 +757,66 @@ int scsi_retry_command(Scsi_Cmnd * SCpnt) ...@@ -813,68 +757,66 @@ int scsi_retry_command(Scsi_Cmnd * SCpnt)
* request, waking processes that are waiting on results, * request, waking processes that are waiting on results,
* etc. * etc.
*/ */
void scsi_finish_command(Scsi_Cmnd * SCpnt) void scsi_finish_command(struct scsi_cmnd *cmd)
{ {
struct Scsi_Host *host; struct scsi_device *sdev = cmd->device;
Scsi_Device *device; struct Scsi_Host *shost = sdev->host;
Scsi_Request * SRpnt; struct scsi_request *sreq;
unsigned long flags; unsigned long flags;
host = SCpnt->device->host; scsi_host_busy_dec_and_test(shost, sdev);
device = SCpnt->device;
/* /*
* We need to protect the decrement, as otherwise a race condition * XXX(hch): We really want a nice helper for this..
* would exist. Fiddling with SCpnt isn't a problem as the
* design only allows a single SCpnt to be active in only
* one execution context, but the device and host structures are
* shared.
*/ */
scsi_host_busy_dec_and_test(host, device); spin_lock_irqsave(&sdev->sdev_lock, flags);
spin_lock_irqsave(SCpnt->device->request_queue->queue_lock, flags); sdev->device_busy--;
SCpnt->device->device_busy--; spin_unlock_irqrestore(&sdev->sdev_lock, flags);
spin_unlock_irqrestore(SCpnt->device->request_queue->queue_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
* capable of accepting new commands. These are set in scsi_queue.c * capable of accepting new commands. These are set in scsi_queue.c
* for both the queue full condition on a device, and for a * for both the queue full condition on a device, and for a
* host full condition on the host. * host full condition on the host.
*
* XXX(hch): What about locking?
*/ */
host->host_blocked = 0; shost->host_blocked = 0;
device->device_blocked = 0; sdev->device_blocked = 0;
/* /*
* 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(cmd))
SCpnt->result |= (DRIVER_SENSE << 24); cmd->result |= (DRIVER_SENSE << 24);
}
SCSI_LOG_MLCOMPLETE(3, printk("Notifying upper driver of completion for device %d %x\n",
SCpnt->device->id, SCpnt->result));
SCpnt->owner = SCSI_OWNER_HIGHLEVEL; SCSI_LOG_MLCOMPLETE(3, printk("Notifying upper driver of completion "
SCpnt->state = SCSI_STATE_FINISHED; "for device %d %x\n", sdev->id, cmd->result));
/* We can get here with use_sg=0, causing a panic in the upper level (DB) */ cmd->owner = SCSI_OWNER_HIGHLEVEL;
SCpnt->use_sg = SCpnt->old_use_sg; cmd->state = SCSI_STATE_FINISHED;
/* /*
* If there is an associated request structure, copy the data over before we call the * We can get here with use_sg=0, causing a panic in the upper level
* completion function. */
*/ cmd->use_sg = cmd->old_use_sg;
SRpnt = SCpnt->sc_request;
if( SRpnt != NULL ) { /*
SRpnt->sr_result = SRpnt->sr_command->result; * If there is an associated request structure, copy the data over
if( SRpnt->sr_result != 0 ) { * before we call the completion function.
memcpy(SRpnt->sr_sense_buffer, */
SRpnt->sr_command->sense_buffer, sreq = cmd->sc_request;
sizeof(SRpnt->sr_sense_buffer)); if (sreq) {
sreq->sr_result = sreq->sr_command->result;
if (sreq->sr_result) {
memcpy(sreq->sr_sense_buffer,
sreq->sr_command->sense_buffer,
sizeof(sreq->sr_sense_buffer));
} }
} }
SCpnt->done(SCpnt); cmd->done(cmd);
} }
/* /*
...@@ -883,7 +825,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt) ...@@ -883,7 +825,7 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt)
* Purpose: Allow low level drivers to tell us to change the queue depth * Purpose: Allow low level drivers to tell us to change the queue depth
* on a specific SCSI device * on a specific SCSI device
* *
* Arguments: SDpnt - SCSI Device in question * Arguments: sdev - SCSI Device in question
* tagged - Do we use tagged queueing (non-0) or do we treat * tagged - Do we use tagged queueing (non-0) or do we treat
* this device as an untagged device (0) * this device as an untagged device (0)
* tags - Number of tags allowed if tagged queueing enabled, * tags - Number of tags allowed if tagged queueing enabled,
...@@ -898,8 +840,10 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt) ...@@ -898,8 +840,10 @@ void scsi_finish_command(Scsi_Cmnd * SCpnt)
* the right thing depending on whether or not the device is * the right thing depending on whether or not the device is
* currently active and whether or not it even has the * currently active and whether or not it even has the
* command blocks built yet. * command blocks built yet.
*
* XXX(hch): What exactly is device_request_lock trying to protect?
*/ */
void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags) void scsi_adjust_queue_depth(struct scsi_device *sdev, int tagged, int tags)
{ {
static spinlock_t device_request_lock = SPIN_LOCK_UNLOCKED; static spinlock_t device_request_lock = SPIN_LOCK_UNLOCKED;
unsigned long flags; unsigned long flags;
...@@ -907,35 +851,35 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags) ...@@ -907,35 +851,35 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags)
/* /*
* refuse to set tagged depth to an unworkable size * refuse to set tagged depth to an unworkable size
*/ */
if(tags <= 0) if (tags <= 0)
return; return;
/* /*
* Limit max queue depth on a single lun to 256 for now. Remember, * Limit max queue depth on a single lun to 256 for now. Remember,
* we allocate a struct scsi_command for each of these and keep it * we allocate a struct scsi_command for each of these and keep it
* around forever. Too deep of a depth just wastes memory. * around forever. Too deep of a depth just wastes memory.
*/ */
if(tags > 256) if (tags > 256)
return; return;
spin_lock_irqsave(&device_request_lock, flags); spin_lock_irqsave(&device_request_lock, flags);
SDpnt->queue_depth = tags; sdev->queue_depth = tags;
switch(tagged) { switch (tagged) {
case MSG_ORDERED_TAG: case MSG_ORDERED_TAG:
SDpnt->ordered_tags = 1; sdev->ordered_tags = 1;
SDpnt->simple_tags = 1; sdev->simple_tags = 1;
break; break;
case MSG_SIMPLE_TAG: case MSG_SIMPLE_TAG:
SDpnt->ordered_tags = 0; sdev->ordered_tags = 0;
SDpnt->simple_tags = 1; sdev->simple_tags = 1;
break; break;
default: default:
printk(KERN_WARNING "(scsi%d:%d:%d:%d) " printk(KERN_WARNING "(scsi%d:%d:%d:%d) "
"scsi_adjust_queue_depth, bad queue type, " "scsi_adjust_queue_depth, bad queue type, "
"disabled\n", SDpnt->host->host_no, "disabled\n", sdev->host->host_no,
SDpnt->channel, SDpnt->id, SDpnt->lun); sdev->channel, sdev->id, sdev->lun);
case 0: case 0:
SDpnt->ordered_tags = SDpnt->simple_tags = 0; sdev->ordered_tags = sdev->simple_tags = 0;
SDpnt->queue_depth = tags; sdev->queue_depth = tags;
break; break;
} }
spin_unlock_irqrestore(&device_request_lock, flags); spin_unlock_irqrestore(&device_request_lock, flags);
...@@ -948,7 +892,7 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags) ...@@ -948,7 +892,7 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags)
* specific SCSI device to determine if and when there is a * specific SCSI device to determine if and when there is a
* need to adjust the queue depth on the device. * need to adjust the queue depth on the device.
* *
* Arguments: SDpnt - SCSI Device in question * Arguments: sdev - SCSI Device in question
* depth - Current number of outstanding SCSI commands on * depth - Current number of outstanding SCSI commands on
* this device, not counting the one returned as * this device, not counting the one returned as
* QUEUE_FULL. * QUEUE_FULL.
...@@ -963,33 +907,32 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags) ...@@ -963,33 +907,32 @@ void scsi_adjust_queue_depth(Scsi_Device *SDpnt, int tagged, int tags)
* Notes: Low level drivers may call this at any time and we will do * Notes: Low level drivers may call this at any time and we will do
* "The Right Thing." We are interrupt context safe. * "The Right Thing." We are interrupt context safe.
*/ */
int scsi_track_queue_full(Scsi_Device *SDptr, int depth) int scsi_track_queue_full(struct scsi_device *sdev, int depth)
{ {
if((jiffies >> 4) != SDptr->last_queue_full_time) { if ((jiffies >> 4) == sdev->last_queue_full_time)
SDptr->last_queue_full_time = (jiffies >> 4); return 0;
if(SDptr->last_queue_full_depth == depth)
SDptr->last_queue_full_count++; sdev->last_queue_full_time = (jiffies >> 4);
else { if (sdev->last_queue_full_depth != depth) {
SDptr->last_queue_full_count = 1; sdev->last_queue_full_count = 1;
SDptr->last_queue_full_depth = depth; sdev->last_queue_full_depth = depth;
} else {
sdev->last_queue_full_count++;
} }
if(SDptr->last_queue_full_count > 10) {
if(SDptr->last_queue_full_depth < 8) { if (sdev->last_queue_full_count <= 10)
return 0;
if (sdev->last_queue_full_depth < 8) {
/* Drop back to untagged */ /* Drop back to untagged */
scsi_adjust_queue_depth(SDptr, 0 /* untagged */, scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
SDptr->host->cmd_per_lun);
return -1; return -1;
} }
if(SDptr->ordered_tags)
scsi_adjust_queue_depth(SDptr, MSG_ORDERED_TAG, if (sdev->ordered_tags)
depth); scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, depth);
else else
scsi_adjust_queue_depth(SDptr, MSG_SIMPLE_TAG, scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
depth);
return depth; return depth;
}
}
return 0;
} }
...@@ -1308,7 +1251,7 @@ void scsi_set_device_offline(struct scsi_device *sdev) ...@@ -1308,7 +1251,7 @@ void scsi_set_device_offline(struct scsi_device *sdev)
struct list_head *lh, *lh_sf; struct list_head *lh, *lh_sf;
unsigned long flags; unsigned long flags;
sdev->online = FALSE; sdev->online = 0;
spin_lock_irqsave(&sdev->list_lock, flags); spin_lock_irqsave(&sdev->list_lock, flags);
list_for_each_entry(scmd, &sdev->cmd_list, list) { list_for_each_entry(scmd, &sdev->cmd_list, list) {
...@@ -1318,9 +1261,8 @@ void scsi_set_device_offline(struct scsi_device *sdev) ...@@ -1318,9 +1261,8 @@ void scsi_set_device_offline(struct scsi_device *sdev)
* that the command has already timed out or * that the command has already timed out or
* finished. * finished.
*/ */
if (!scsi_delete_timer(scmd)) { if (!scsi_delete_timer(scmd))
continue; continue;
}
list_add_tail(&scmd->eh_entry, &active_list); list_add_tail(&scmd->eh_entry, &active_list);
} }
} }
...@@ -1368,10 +1310,8 @@ void scsi_slave_detach(struct scsi_device *sdev) ...@@ -1368,10 +1310,8 @@ void scsi_slave_detach(struct scsi_device *sdev)
{ {
sdev->attached--; sdev->attached--;
} }
/* /*
* This entry point should be called by a loadable module if it is trying
* add a high level scsi driver to the system.
*
* This entry point is called from the upper level module's module_init() * This entry point is called from the upper level module's module_init()
* routine. That implies that when this function is called, the * routine. That implies that when this function is called, the
* scsi_mod module is locked down because of upper module layering and * scsi_mod module is locked down because of upper module layering and
...@@ -1386,7 +1326,7 @@ void scsi_slave_detach(struct scsi_device *sdev) ...@@ -1386,7 +1326,7 @@ void scsi_slave_detach(struct scsi_device *sdev)
*/ */
int scsi_register_device(struct Scsi_Device_Template *tpnt) int scsi_register_device(struct Scsi_Device_Template *tpnt)
{ {
Scsi_Device *SDpnt; struct scsi_device *sdev;
struct Scsi_Host *shpnt; struct Scsi_Host *shpnt;
#ifdef CONFIG_KMOD #ifdef CONFIG_KMOD
...@@ -1405,15 +1345,15 @@ int scsi_register_device(struct Scsi_Device_Template *tpnt) ...@@ -1405,15 +1345,15 @@ int scsi_register_device(struct Scsi_Device_Template *tpnt)
for (shpnt = scsi_host_get_next(NULL); shpnt; for (shpnt = scsi_host_get_next(NULL); shpnt;
shpnt = scsi_host_get_next(shpnt)) shpnt = scsi_host_get_next(shpnt))
list_for_each_entry (SDpnt, &shpnt->my_devices, siblings) list_for_each_entry(sdev, &shpnt->my_devices, siblings)
(*tpnt->attach) (SDpnt); (*tpnt->attach)(sdev);
return 0; return 0;
} }
int scsi_unregister_device(struct Scsi_Device_Template *tpnt) int scsi_unregister_device(struct Scsi_Device_Template *tpnt)
{ {
Scsi_Device *SDpnt; struct scsi_device *sdev;
struct Scsi_Host *shpnt; struct Scsi_Host *shpnt;
/* /*
...@@ -1421,8 +1361,8 @@ int scsi_unregister_device(struct Scsi_Device_Template *tpnt) ...@@ -1421,8 +1361,8 @@ int scsi_unregister_device(struct Scsi_Device_Template *tpnt)
*/ */
for (shpnt = scsi_host_get_next(NULL); shpnt; for (shpnt = scsi_host_get_next(NULL); shpnt;
shpnt = scsi_host_get_next(shpnt)) { shpnt = scsi_host_get_next(shpnt)) {
list_for_each_entry(SDpnt, &shpnt->my_devices, siblings) list_for_each_entry(sdev, &shpnt->my_devices, siblings)
(*tpnt->detach) (SDpnt); (*tpnt->detach)(sdev);
} }
/* /*
...@@ -1449,8 +1389,7 @@ MODULE_DESCRIPTION("SCSI core"); ...@@ -1449,8 +1389,7 @@ MODULE_DESCRIPTION("SCSI core");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
#ifndef MODULE #ifndef MODULE
static int __init setup_scsi_dev_flags(char *str)
int __init setup_scsi_dev_flags(char *str)
{ {
scsi_dev_flags = str; scsi_dev_flags = str;
return 1; return 1;
...@@ -1472,7 +1411,6 @@ static int __init setup_scsi_default_dev_flags(char *str) ...@@ -1472,7 +1411,6 @@ static int __init setup_scsi_default_dev_flags(char *str)
} }
} }
__setup("scsi_default_dev_flags=", setup_scsi_default_dev_flags); __setup("scsi_default_dev_flags=", setup_scsi_default_dev_flags);
#endif #endif
static int __init init_scsi(void) static int __init init_scsi(void)
......
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