Re: [PATCH v2 01/19] be2iscsi: Fix the issue with soft reset.

2012-11-13 Thread James Bottomley
On Sat, 2012-10-20 at 04:41 +0530, John Soni Jose wrote:
 From: Minh Tran minhduc.t...@emulex.com
 
  Fixed soft_reset problem which driver modified
  all 32bit before a write on second pass.
 
 Signed-off-by: Minh Tran minhduc.t...@emulex.com
 Signed-off-by: Jayamohan Kallickal jayamohan.kallic...@emulex.com

I'll put this in, this time, but please remember that if you send me a
patch, it needs your signoff as well.

James



--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 01/19] be2iscsi: Fix the issue with soft reset.

2012-10-19 Thread John Soni Jose
From: Minh Tran minhduc.t...@emulex.com

 Fixed soft_reset problem which driver modified
 all 32bit before a write on second pass.

Signed-off-by: Minh Tran minhduc.t...@emulex.com
Signed-off-by: Jayamohan Kallickal jayamohan.kallic...@emulex.com
---
 drivers/scsi/be2iscsi/be_cmds.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/be2iscsi/be_cmds.c b/drivers/scsi/be2iscsi/be_cmds.c
index 07d2cb1..05f70bb 100644
--- a/drivers/scsi/be2iscsi/be_cmds.c
+++ b/drivers/scsi/be2iscsi/be_cmds.c
@@ -56,7 +56,7 @@ int beiscsi_pci_soft_reset(struct beiscsi_hba *phba)
writel(pconline0, (void *)pci_online0_offset);
writel(pconline1, (void *)pci_online1_offset);
 
-   sreset = BE2_SET_RESET;
+   sreset |= BE2_SET_RESET;
writel(sreset, (void *)pci_reset_offset);
 
i = 0;
-- 
1.7.2

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html