Re: [PATCH 1/1] aacraid: Series 7 Async. (performance) mode support

2012-07-13 Thread James Bottomley
On Wed, 2012-07-11 at 13:26 +0530, Mahesh Rajashekhara wrote: > - Series 7 Async. (performance) mode support added > - New scatter/gather list format for Series 7 > - Driver converts s/g list to a firmware suitable list for best performance > on Series 7, this can be disabled > with driver param

RE: [PATCH 1/1] aacraid: Series 7 Async. (performance) mode support

2012-07-13 Thread Mahesh Rajashekhara
Hi James, We downloaded the upstream aacraid sources from "git clone git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git". Looks like Endian fix patches are not available. Can you please send us the current pointer to download sources? So that, we rebuild our Series 7 Async performance

RE: [PATCH 1/1] aacraid: Series 7 Async. (performance) mode support

2012-07-13 Thread James Bottomley
On Fri, 2012-07-13 at 02:39 -0700, Mahesh Rajashekhara wrote: > Hi James, > > We downloaded the upstream aacraid sources from "git clone > git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git". Looks > like Endian fix patches are not available. Can you please send us the > current pointer t

[PATCH V2 0/4] [SCSI] ufs: Adds glue drivers to ufshcd

2012-07-13 Thread Vinayak Holikatti
This patch set adds following features - Seprates PCI specific code from ufshcd.c to make it as core - Adds PCI glue driver ufshcd-pci.c - Adds Platform glue driver ufshcd-pltfrm.c - Update correct transfer size in Command UPIU Vinayak Holikatti (4): [SCSI] drivers/scsi/ufs: Remove PCI speci

[PATCH V2 1/4] [SCSI] drivers/scsi/ufs: Remove PCI specific code

2012-07-13 Thread Vinayak Holikatti
This patch removes the PCI specific code to make it into core ufs driver. This separation allows room for other bus specific glue drivers to be added in future Signed-off-by: Vinayak Holikatti Signed-off-by: Santosh Yaraganavi --- drivers/scsi/ufs/Kconfig | 15 ++- drivers/scsi/ufs/ufshcd.c

[PATCH V2 2/4] [SCSI] drivers/scsi/ufs: Add PCI glue driver

2012-07-13 Thread Vinayak Holikatti
This patch adds PCI glue driver support Signed-off-by: Vinayak Holikatti Signed-off-by: Santosh Yaraganavi --- drivers/scsi/ufs/Kconfig | 11 ++ drivers/scsi/ufs/Makefile|1 + drivers/scsi/ufs/ufshcd-pci.c| 227 ++ drivers/scsi/ufs/

[PATCH V2 3/4] [SCSI] ufs: Add Platform glue driver for ufshcd

2012-07-13 Thread Vinayak Holikatti
This patch adds Platform glue driver for ufshcd. Signed-off-by: Vinayak Holikatti Signed-off-by: Santosh Yaraganavi --- drivers/scsi/ufs/Kconfig | 11 ++ drivers/scsi/ufs/Makefile|1 + drivers/scsi/ufs/ufshcd-pltfrm.c | 215 ++ 3 files

[PATCH V2 4/4] [SCSI] ufs: Correct the expected data transfer size

2012-07-13 Thread Vinayak Holikatti
This patch corrects the expected data transfer size of the command UPIU. The current implementation of cmd->transfersize is wrong as it probably equal to sector size. With this implementation the transfer size is updated correctly Signed-off-by: Vinayak Holikatti Signed-off-by: Santosh Yaraganavi

Re: [PATCH V2 0/4] [SCSI] ufs: Adds glue drivers to ufshcd

2012-07-13 Thread Arnd Bergmann
On Friday 13 July 2012, Vinayak Holikatti wrote: > This patch set adds following features > - Seprates PCI specific code from ufshcd.c to make it as core > - Adds PCI glue driver ufshcd-pci.c > - Adds Platform glue driver ufshcd-pltfrm.c > - Update correct transfer size in Command UPIU Acked-b

Re: [PATCH V2 2/4] [SCSI] drivers/scsi/ufs: Add PCI glue driver

2012-07-13 Thread Rolf Eike Beer
Vinayak Holikatti wrote: > +static int __devinit > +ufshcd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) > +{ > + struct ufs_hba *hba; > + void __iomem *mmio_base; > + int err; > + > + err = pci_enable_device(pdev); > + if (err) { > + dev_err(&pdev

[PATCH] bfa: Fix to set correct return error codes and misc cleanup.

2012-07-13 Thread kgudipat
From: Krishna Gudipati Change details: - Remove unnecessary if NULL check in function bfa_fcs_vport_free(). - Set correct return error codes in case of memory allocation failure in the BSG ELS/CT passthru command handler. Signed-off-by: Krishna Gudipati --- drivers/sc