diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-04-04 09:42:14 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-05-01 11:22:40 -0400 |
commit | 5cd049a59913f359e7d30c11d2dc6187822e77b1 (patch) | |
tree | f1406a16f6f0b786857e4433467d7ad762e45186 /drivers/scsi/qla4xxx | |
parent | f04ca1b65480df9ecbaaa797e62b063387429410 (diff) |
[SCSI] remove cmd->serial_number litter
Stop using cmd->serial_number in printks.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/qla4xxx')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_os.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index 230ba097d28c..c22f2a764d9d 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c | |||
@@ -2068,15 +2068,14 @@ static int qla4xxx_eh_abort(struct scsi_cmnd *cmd) | |||
2068 | struct scsi_qla_host *ha = to_qla_host(cmd->device->host); | 2068 | struct scsi_qla_host *ha = to_qla_host(cmd->device->host); |
2069 | unsigned int id = cmd->device->id; | 2069 | unsigned int id = cmd->device->id; |
2070 | unsigned int lun = cmd->device->lun; | 2070 | unsigned int lun = cmd->device->lun; |
2071 | unsigned long serial = cmd->serial_number; | ||
2072 | unsigned long flags; | 2071 | unsigned long flags; |
2073 | struct srb *srb = NULL; | 2072 | struct srb *srb = NULL; |
2074 | int ret = SUCCESS; | 2073 | int ret = SUCCESS; |
2075 | int wait = 0; | 2074 | int wait = 0; |
2076 | 2075 | ||
2077 | ql4_printk(KERN_INFO, ha, | 2076 | ql4_printk(KERN_INFO, ha, |
2078 | "scsi%ld:%d:%d: Abort command issued cmd=%p, pid=%ld\n", | 2077 | "scsi%ld:%d:%d: Abort command issued cmd=%p\n", |
2079 | ha->host_no, id, lun, cmd, serial); | 2078 | ha->host_no, id, lun, cmd); |
2080 | 2079 | ||
2081 | spin_lock_irqsave(&ha->hardware_lock, flags); | 2080 | spin_lock_irqsave(&ha->hardware_lock, flags); |
2082 | srb = (struct srb *) CMD_SP(cmd); | 2081 | srb = (struct srb *) CMD_SP(cmd); |