mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
e08f5f76e4
These 210 messages are in several long threads, which is good for testing our threading code, and may be useful just as a larger test corpus in the future.
68 lines
2.8 KiB
Text
68 lines
2.8 KiB
Text
From: Joe Perches <joe@perches.com>
|
|
Subject: [PATCH 22/44] drivers/scsi/be2iscsi: Remove unnecessary semicolons
|
|
Date: Sun, 14 Nov 2010 19:04:41 -0800
|
|
Lines: 30
|
|
Message-ID: <7d4fbb8d3ac34861808dac24efeebe05011f6b0c.1289789605.git.joe@perches.com>
|
|
References: <cover.1289789604.git.joe@perches.com>
|
|
Cc: Jayamohan Kallickal <jayamohank@serverengines.com>,
|
|
"James E.J. Bottomley" <James.Bottomley@suse.de>,
|
|
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
|
|
To: Jiri Kosina <trivial@kernel.org>
|
|
X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 04:10:52 2010
|
|
Return-path: <linux-kernel-owner@vger.kernel.org>
|
|
Envelope-to: glk-linux-kernel-3@lo.gmane.org
|
|
Received: from vger.kernel.org ([209.132.180.67])
|
|
by lo.gmane.org with esmtp (Exim 4.69)
|
|
(envelope-from <linux-kernel-owner@vger.kernel.org>)
|
|
id 1PHpSz-0002p1-Hv
|
|
for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 04:10:49 +0100
|
|
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
|
|
id S932862Ab0KODKi (ORCPT <rfc822;glk-linux-kernel-3@m.gmane.org>);
|
|
Sun, 14 Nov 2010 22:10:38 -0500
|
|
Received: from mail.perches.com ([173.55.12.10]:1188 "EHLO mail.perches.com"
|
|
rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP
|
|
id S932757Ab0KODFm (ORCPT <rfc822;linux-kernel@vger.kernel.org>);
|
|
Sun, 14 Nov 2010 22:05:42 -0500
|
|
Received: from Joe-Laptop.home (unknown [192.168.1.162])
|
|
by mail.perches.com (Postfix) with ESMTP id 610FF24371;
|
|
Sun, 14 Nov 2010 19:04:09 -0800 (PST)
|
|
X-Mailer: git-send-email 1.7.3.1.g432b3.dirty
|
|
In-Reply-To: <cover.1289789604.git.joe@perches.com>
|
|
Sender: linux-kernel-owner@vger.kernel.org
|
|
Precedence: bulk
|
|
List-ID: <linux-kernel.vger.kernel.org>
|
|
X-Mailing-List: linux-kernel@vger.kernel.org
|
|
Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/1062302>
|
|
|
|
Signed-off-by: Joe Perches <joe@perches.com>
|
|
---
|
|
drivers/scsi/be2iscsi/be_main.c | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
|
|
index 75a85aa..db60563 100644
|
|
--- a/drivers/scsi/be2iscsi/be_main.c
|
|
+++ b/drivers/scsi/be2iscsi/be_main.c
|
|
@@ -618,7 +618,7 @@ static void beiscsi_get_params(struct beiscsi_hba *phba)
|
|
+ BE2_NOPOUT_REQ));
|
|
phba->params.cxns_per_ctrl = phba->fw_config.iscsi_cid_count;
|
|
phba->params.asyncpdus_per_ctrl = phba->fw_config.iscsi_cid_count * 2;
|
|
- phba->params.icds_per_ctrl = phba->fw_config.iscsi_icd_count;;
|
|
+ phba->params.icds_per_ctrl = phba->fw_config.iscsi_icd_count;
|
|
phba->params.num_sge_per_io = BE2_SGE;
|
|
phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ;
|
|
phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ;
|
|
@@ -781,7 +781,7 @@ static irqreturn_t be_isr(int irq, void *dev_id)
|
|
int isr;
|
|
|
|
phba = dev_id;
|
|
- ctrl = &phba->ctrl;;
|
|
+ ctrl = &phba->ctrl;
|
|
isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET +
|
|
(PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE));
|
|
if (!isr)
|
|
--
|
|
1.7.3.1.g432b3.dirty
|
|
|
|
|
|
|