RE: [PATCH -mm] mpt fusion: Shut up uninitialized variable warnings

2007-09-05 Thread Moore, Eric
On Sunday, September 02, 2007 2:20 PM, Satyam Sharma wrote: > > drivers/message/fusion/mptctl.c: In function 'mptctl_mpt_command': > drivers/message/fusion/mptctl.c:1764: warning: 'bufIn.len' > may be used uninitialized in this function > drivers/message/fusion/mptctl.c:1765: warning: 'bufOut.le

[PATCH] fusion -mm bits : Kconfig menuconfig objects, use kzalloc in mptctl, fix mem leaks, kill redundant memset

2007-09-05 Thread Eric Moore
James - These fusion patchs from -mm can be merged into scsi-misc. Here is a single patch containing all four changes. Changeset: [patch 08/30] Use menuconfig objects: Fusion http://marc.info/?l=linux-scsi&m=118678275800902&w=2 [patch 26/30] drivers/message/fusion/mptctl.c: mostly kmall

Re: [PATCH v3 2/2][BNX2]: Add iSCSI support to BNX2 devices.

2007-09-05 Thread Anil Veerabhadrappa
On Wed, 2007-09-05 at 13:34 -0500, Mike Christie wrote: > Michael Chan wrote: > > +* This file defines HSI constants for the iSCSI flows > > +*/ > > + > > +/* iSCSI request op codes */ > > +#define ISCSI_OPCODE_NOP_OUT (0 | 0x40) > > +#define ISCSI_OPCODE_SCSI_CMD

[PATCH] aic94xx: Add new PCI ID for ASC58300

2007-09-05 Thread Gilbert Wu
Add new HBA PCI ID (0x416) for ASC58300 which has eight port SAS and SATA PCI-X 133MHz low profile host bus adapter with two mini SAS 4x external connectors. Signed-off-by: Gilbert Wu <[EMAIL PROTECTED]> diff -urN a/drivers/scsi/aic94xx/aic94xx_hwi.h b/drivers/scsi/aic94xx/aic94xx_hwi.h --- a/

[PATCH] aic94xx: fix smartctl utility problem

2007-09-05 Thread Gilbert Wu
Fixed the problem that "smartctl -a /dev/some_sata_disk -d ata" does not work on SATA device. ( The smartctl v5.38 does need "-d ata" option.) The root cause is the aic94xx driver does not return ATA output register due to performance reason. The aic94xx need check ATA command which

Re: [PATCH v3 2/2][BNX2]: Add iSCSI support to BNX2 devices.

2007-09-05 Thread Mike Christie
Michael Chan wrote: diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig index 6f2c71e..adcfbbc 100644 --- a/drivers/scsi/Kconfig +++ b/drivers/scsi/Kconfig @@ -1800,6 +1800,8 @@ config ZFCP called zfcp. If you want to compile it as a module, say M here and read . +sou

Re: [PATCH 4/5] qla2xxx: add target mode support

2007-09-05 Thread FUJITA Tomonori
On Wed, 5 Sep 2007 08:05:34 -0700 Andrew Vasquez <[EMAIL PROTECTED]> wrote: > On Sat, 01 Sep 2007, FUJITA Tomonori wrote: > > > This adds target mode support to qla2xxx. > > > > With set ql2enable_target_mode module parameter to 1, the driver runs > > in target mode. By default, ql2enable_target

[PATCH] zfcp: add statistics and other zfcp relatedinformation to sysfs

2007-09-05 Thread Swen Schillig
From: Swen Schillig <[EMAIL PROTECTED]> add statistics and other zfcp related information to sysfs The zfcp adapter provides a variety of information which was never published to the external world. This patch adds a few of those "statistics" to the sysfs tree structure. These are reflected in t

Re: [PATCH 4/5] qla2xxx: add target mode support

2007-09-05 Thread Andrew Vasquez
On Sat, 01 Sep 2007, FUJITA Tomonori wrote: > This adds target mode support to qla2xxx. > > With set ql2enable_target_mode module parameter to 1, the driver runs > in target mode. By default, ql2enable_target_mode is set to 0, and the > driver should work in initiator mode as before. > > The dri

Re: [PATCH 3/7] blk_end_request: changing "normal" drivers

2007-09-05 Thread Kiyoshi Ueda
Hi Benny, Thank you for the comments. On Wed, 05 Sep 2007 10:45:54 +0300, Boaz Harrosh <[EMAIL PROTECTED]> wrote: > On Sat, Sep 01 2007 at 1:42 +0300, Kiyoshi Ueda <[EMAIL PROTECTED]> wrote: > > arch/arm/plat-omap/mailbox.c|9 ++--- > > arch/um/drivers/ubd_kern.c | 10 +---

Re: Fedora Core 5 Drivers

2007-09-05 Thread maximilian attems
On Wed, Sep 05, 2007 at 09:40:11AM -0400, Dev wrote: > Hi, I am a newbie to Linux. We are installing Fedora Core 5, but > unable to view the SCSI hard drives. > We are using Dell Power Edge 1850 with on-board SCSI RAID. From my > research, it requires the following drivers as the kernel is > 2.6.18

Fedora Core 5 Drivers

2007-09-05 Thread Dev
Hi, I am a newbie to Linux. We are installing Fedora Core 5, but unable to view the SCSI hard drives. We are using Dell Power Edge 1850 with on-board SCSI RAID. From my research, it requires the following drivers as the kernel is 2.6.18-1.2257.fc5smp, use the 'megaraid_mbox' and 'megaraid_mm' drive

Re: [RFC] zfcp: add statistics and other zfcp related information to sysfs

2007-09-05 Thread Swen Schillig
On Monday 03 September 2007 14:40, Matthew Wilcox wrote: > On Mon, Sep 03, 2007 at 02:16:21PM +0200, Swen Schillig wrote: > > /sys/bus/ccw/drivers/zfcp/0.0.1707 > > /* information for the virtual adapter */ > > statistic_services/ > > requests > > megabytes

Re: [PATCH 3/7] blk_end_request: changing "normal" drivers

2007-09-05 Thread Boaz Harrosh
On Sat, Sep 01 2007 at 1:42 +0300, Kiyoshi Ueda <[EMAIL PROTECTED]> wrote: > This patch converts "normal" drivers, which complete request > in a standard way shown below, to use blk_end_request(). > > a) end_that_request_{chunk/first} > spin_lock_irqsave() > (add_disk_randomness(), blk_qu

Re: [PATCH 6/7] blk_end_request: remove/unexport end_that_request_*

2007-09-05 Thread Boaz Harrosh
On Wed, Sep 05 2007 at 2:13 +0300, Kiyoshi Ueda <[EMAIL PROTECTED]> wrote: > Hi, > > On Tue, 4 Sep 2007 17:25:14 -0400, "Halevy, Benny" <[EMAIL PROTECTED]> wrote: >> We suspect we'll still need the extern entry points for handling the bidi >> request in the scsi_io_completion() path as we only wa