From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Nicholas A. Bellinger" Subject: [RFC v3 13/15] dpt_i2o: Add scsi_cmd_get_serial() call Date: Thu, 23 Sep 2010 16:39:22 -0700 Message-ID: <1285285162-16606-1-git-send-email-nab@linux-iscsi.org> Return-path: Sender: linux-kernel-owner@vger.kernel.org To: linux-scsi , linux-kernel , Vasu Dev , Tim Chen , Andi Kleen Cc: James Smart , Andrew Vasquez , FUJITA Tomonori , Hannes Reinecke , Joe Eykholt , Christoph Hellwig , MPTFusionLinux , "eata.c maintainer" , Nicholas Bellinger List-Id: linux-scsi@vger.kernel.org From: Nicholas Bellinger This patch adds a scsi_cmd_get_serial() call in adpt_queue() to setup a valid struct scsi_cmnd->serial_number because adpt_cmd_to_context() still depends upon this being set. Signed-off-by: Nicholas A. Bellinger --- drivers/scsi/dpt_i2o.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index ffc1edf..b4dfaf7 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c @@ -429,6 +429,11 @@ static int adpt_queue(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *)) cmd->scsi_done = done; /* + * Call scsi_cmd_get_serial() because we need a valid serial number + * for adpt_cmd_to_context() + */ + scsi_cmd_get_serial(cmd); + /* * SCSI REQUEST_SENSE commands will be executed automatically by the * Host Adapter for any errors, so they should not be executed * explicitly unless the Sense Data is zero indicating that no error -- 1.7.3