aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aic7xxx_old.c
diff options
context:
space:
mode:
authorFUJITA Tomonori <tomof@acm.org>2008-01-13 01:46:12 -0500
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-01-23 12:29:26 -0500
commit94aa5e5f6251ca0e1d77e083f8c2f9f40ee548c5 (patch)
treec925a5a49f17331f069be6815b72983b03514702 /drivers/scsi/aic7xxx_old.c
parent382db811a8cc1427efabdc959cd1aeef8685ffa6 (diff)
[SCSI] aic7xxx_old, eata_pio, ips, libsas: don't zero out sense_buffer in queuecommand
LLDs don't need to zero out scsi_cmnd::sense_buffer in queuecommand since scsi-ml does. This is a preparation of the future changes to allocate the sense_buffer only when necessary. Many LLDs zero out the sense_buffer before touching it on the error case. This patch lets them alone for now because new APIs for them would be added later on. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: "Salyzyn, Mark" <Mark_Salyzyn@adaptec.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/aic7xxx_old.c')
-rw-r--r--drivers/scsi/aic7xxx_old.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 8f8db5f0aef7..2b402fafd009 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -10293,7 +10293,6 @@ static int aic7xxx_queue(struct scsi_cmnd *cmd, void (*fn)(struct scsi_cmnd *))
10293 aic7xxx_position(cmd) = scb->hscb->tag; 10293 aic7xxx_position(cmd) = scb->hscb->tag;
10294 cmd->scsi_done = fn; 10294 cmd->scsi_done = fn;
10295 cmd->result = DID_OK; 10295 cmd->result = DID_OK;
10296 memset(cmd->sense_buffer, 0, sizeof(cmd->sense_buffer));
10297 aic7xxx_error(cmd) = DID_OK; 10296 aic7xxx_error(cmd) = DID_OK;
10298 aic7xxx_status(cmd) = 0; 10297 aic7xxx_status(cmd) = 0;
10299 cmd->host_scribble = NULL; 10298 cmd->host_scribble = NULL;