Re: [RFC PATCH 2/2] ata: acpi: rework the ata acpi bind support

2013-08-23 Thread Aaron Lu
On 08/23/2013 03:02 PM, Dirk Griesbach wrote: Hello Aaron, On Do, Aug 22, 2013 at 03:15:16 +0800, Aaron Lu wrote: Hi Drik, Can you please test the two patches regarding your ATA bay? Thanks. No problems with the bay. I applied the patches on top of 3.11-rc6. Thanks a lot for the test!

Re: [RFC PATCH 2/2] ata: acpi: rework the ata acpi bind support

2013-08-23 Thread Dirk Griesbach
Hello Aaron, On Do, Aug 22, 2013 at 03:15:16 +0800, Aaron Lu wrote: Hi Drik, Can you please test the two patches regarding your ATA bay? Thanks. No problems with the bay. I applied the patches on top of 3.11-rc6. Regards, Dirk -- To unsubscribe from this list: send the line unsubscribe

[PATCH 1/4] qla4xxx: Add pex-dma support for capturing minidump

2013-08-23 Thread vikas.chaudhary
From: Santosh Vernekar santosh.verne...@qlogic.com Add pex-dma support for ISP8324 and ISP8042 to improve the minidump capture time. Signed-off-by: Santosh Vernekar santosh.verne...@qlogic.com Signed-off-by: Vikas Chaudhary vikas.chaudh...@qlogic.com --- drivers/scsi/qla4xxx/ql4_83xx.c | 4 +-

[PATCH 4/4] qla4xxx: Update driver version to 5.04.00-k1

2013-08-23 Thread vikas.chaudhary
From: Vikas Chaudhary vikas.chaudh...@qlogic.com Signed-off-by: Vikas Chaudhary vikas.chaudh...@qlogic.com --- drivers/scsi/qla4xxx/ql4_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/qla4xxx/ql4_version.h b/drivers/scsi/qla4xxx/ql4_version.h index

Hallinnollisia tiedotteita

2013-08-23 Thread hallinnollinen keskus
-- Hyvä webmail Käyttäjän; Olet ylittänyt 23432 varastointi postilaatikkoon asettaman Web IT- SERVICE/Administrator, ja sinut on ongelmia lähettää ja vastaanottaa viestejä kuin jotkut sähköpostiviesti ei voi toimittaa ajoissa, ennen kuin olet uudelleen Vahvista. Sinun täytyy päivittää

Re: [PATCH 0/9] target: Add support for EXTENDED_COPY (VAAI) offload emulation

2013-08-23 Thread Douglas Gilbert
On 13-08-23 04:26 AM, Nicholas A. Bellinger wrote: From: Nicholas Bellinger n...@daterainc.com Hi folks! This series adds support to target-core for generic EXTENDED_COPY offload emulation as defined by SPC-4 using virtual (IBLOCK, FILEIO, RAMDISK) backends. EXTENDED_COPY is a VMWare ESX VAAI

[patch] [SCSI] eata_pio: off by one in eata_pio_detect()

2013-08-23 Thread Dan Carpenter
Smatch complains that the reg_IRQ[] array only has MAXIRQ (16) elements so we are one space beyond the end of the array here. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/drivers/scsi/eata_pio.c b/drivers/scsi/eata_pio.c index 356def4..1663173 100644 ---

Re: [RFC PATCH] scsi: Add failfast mode to avoid infinite retry loop

2013-08-23 Thread Ric Wheeler
On 08/23/2013 05:10 AM, Eiichi Tsukata wrote: (2013/08/21 3:09), Ewan Milne wrote: On Tue, 2013-08-20 at 16:13 +0900, Eiichi Tsukata wrote: (2013/08/19 23:30), James Bottomley wrote: On Mon, 2013-08-19 at 18:39 +0900, Eiichi Tsukata wrote: Hello, This patch adds scsi device failfast mode to

Re: [PATCH 0/9] target: Add support for EXTENDED_COPY (VAAI) offload emulation

2013-08-23 Thread Martin K. Petersen
Doug == Douglas Gilbert dgilb...@interlog.com writes: Doug The SCSI opcodes associated with it (0x83 and 0x84) have been Doug renamed THIRD PARTY COPY OUT and IN, and Where did you see that? My SPC still has EXTENDED COPY. Doug Confused? I certainly was. Yeah, this is UNMAP all over again,

[PATCH v2 0/6] scsi: ufs: some fixes and updates

2013-08-23 Thread Seungwon Jeon
This path series contain driver's fixes and updates. Changes in v2: - [scsi: ufs: amend the ocs handling with fatal error] is excluded. Host behavior needs to be defined clearly in UFSHCI specification. - Some minor changes are applied with comments from Subhash, Sujit and Santosh. Seungwon

[PATCH v2 1/6] scsi: ufs: find out sense data over scsi status values

2013-08-23 Thread Seungwon Jeon
Unlike 'GOOD' and 'CHECK CONDITION', other status values in Response UPIU may or may not contain sense data. That is returning sense data isn't obvious. So, in this case the Data Segment Length field should be checked. If a non-zero value, it means that UPIU has Sense Data in the Data Segment

[PATCH v2 2/6] scsi: ufs: fix the setting interrupt aggregation counter

2013-08-23 Thread Seungwon Jeon
IACTH(Interrupt aggregation counter threshold) value is allowed up to 0x1F and current setting value is the maximum. This value is related with NUTRS(max:0x20) of HCI's capability. Considering HCI controller doesn't support the maximum, IACTH setting should be adjusted with possible value. For

[PATCH v2 4/6] scsi: ufs: add unipro attribute IDs

2013-08-23 Thread Seungwon Jeon
'drivers/scsi/ufs/unipro.h' is added. Attributes in the layers of the UNIPRO stack can be read and written via the DME. Signed-off-by: Seungwon Jeon tgih@samsung.com Reviewed-by: Subhash Jadavani subha...@codeaurora.org --- drivers/scsi/ufs/unipro.h | 130

[PATCH v2 3/6] scsi: ufs: add dme configuration primitives

2013-08-23 Thread Seungwon Jeon
Implements to support GET and SET operations of the DME. These operations are used to configure the behavior of the UNIPRO. Along with basic operation, {Peer/AttrSetType} can be mixed. Signed-off-by: Seungwon Jeon tgih@samsung.com Reviewed-by: Subhash Jadavani subha...@codeaurora.org ---

[PATCH v2 5/6] scsi: ufs: add operation for the uic power mode change

2013-08-23 Thread Seungwon Jeon
Setting PA_PWRMode using DME_SET triggers the power mode change. And then the result will be given by the HCS.UPMCRS. This operation should be done atomically. Signed-off-by: Seungwon Jeon tgih@samsung.com --- drivers/scsi/ufs/ufshcd.c | 84 ++--

[PATCH v2 6/6] scsi: ufs: configure the attribute for power mode

2013-08-23 Thread Seungwon Jeon
UIC attributes can be set with using DME_SET command for power mode change. For configuration the link capability attributes are used, which is updated after successful link startup. Signed-off-by: Seungwon Jeon tgih@samsung.com Reviewed-by: Subhash Jadavani subha...@codeaurora.org ---

Re: [PATCH 0/9] target: Add support for EXTENDED_COPY (VAAI) offload emulation

2013-08-23 Thread Douglas Gilbert
On 13-08-23 02:33 PM, Martin K. Petersen wrote: Doug == Douglas Gilbert dgilb...@interlog.com writes: Doug The SCSI opcodes associated with it (0x83 and 0x84) have been Doug renamed THIRD PARTY COPY OUT and IN, and Where did you see that? My SPC still has EXTENDED COPY. SCSI _opcodes_ ==

Re: [RFC PATCH] scsi: Add failfast mode to avoid infinite retry loop

2013-08-23 Thread James Bottomley
On Fri, 2013-08-23 at 18:10 +0900, Eiichi Tsukata wrote: (2013/08/21 3:09), Ewan Milne wrote: On Tue, 2013-08-20 at 16:13 +0900, Eiichi Tsukata wrote: (2013/08/19 23:30), James Bottomley wrote: On Mon, 2013-08-19 at 18:39 +0900, Eiichi Tsukata wrote: Hello, This patch adds scsi device

[PATCH v4 03/10] SCSI: esas2r: Add initialization functions

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_init.c | 1773 + 1 file changed, 1773 insertions(+) create mode 100644 drivers/scsi/esas2r/esas2r_init.c diff --git a/drivers/scsi/esas2r/esas2r_init.c

[PATCH v4 02/10] SCSI: esas2r: Add main file

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_main.c | 2032 + 1 file changed, 2032 insertions(+) create mode 100644 drivers/scsi/esas2r/esas2r_main.c diff --git a/drivers/scsi/esas2r/esas2r_main.c

[PATCH v4 00/10] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver

2013-08-23 Thread Bradley Grove
This is a new driver for ATTO Technology's ExpressSAS series of hardware RAID adapters. It supports the following adapters: - ExpressSAS R60F - ExpressSAS R680 - ExpressSAS R608 - ExpressSAS R644 This patch is split into ten parts, all of which need to be applied to build the

[PATCH v4 06/10] SCSI: esas2r: Add flash and target database functions

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_flash.c | 1514 +++ drivers/scsi/esas2r/esas2r_targdb.c | 306 +++ 2 files changed, 1820 insertions(+) create mode 100644 drivers/scsi/esas2r/esas2r_flash.c create mode 100644

[PATCH v4 05/10] SCSI: esas2r: Add interrupt and IO functions

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_int.c | 941 +++ drivers/scsi/esas2r/esas2r_io.c | 883 2 files changed, 1824 insertions(+) create mode 100644

[PATCH v4 01/10] SCSI: esas2r: Add main header file

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r.h | 1441 ++ 1 file changed, 1441 insertions(+) create mode 100644 drivers/scsi/esas2r/esas2r.h diff --git a/drivers/scsi/esas2r/esas2r.h b/drivers/scsi/esas2r/esas2r.h new

[PATCH v4 07/10] SCSI: esas2r: Add IOCTL header file

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/atioctl.h | 1254 + 1 file changed, 1254 insertions(+) create mode 100644 drivers/scsi/esas2r/atioctl.h diff --git a/drivers/scsi/esas2r/atioctl.h b/drivers/scsi/esas2r/atioctl.h

[PATCH v4 04/10] SCSI: esas2r: Add device discovery and logging functions

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_disc.c | 1190 + drivers/scsi/esas2r/esas2r_log.c | 255 drivers/scsi/esas2r/esas2r_log.h | 118 3 files changed, 1563 insertions(+) create mode 100644

[PATCH v4 08/10] SCSI: esas2r: Add IOCTL functions

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/esas2r_ioctl.c | 2110 1 file changed, 2110 insertions(+) create mode 100644 drivers/scsi/esas2r/esas2r_ioctl.c diff --git a/drivers/scsi/esas2r/esas2r_ioctl.c

[PATCH v4 10/10] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- MAINTAINERS | 7 +++ drivers/scsi/Kconfig | 1 + drivers/scsi/Makefile| 1 + drivers/scsi/esas2r/Kconfig | 6 ++ drivers/scsi/esas2r/Makefile | 5 + 5 files changed, 20 insertions(+) create mode

[PATCH v4 09/10] SCSI: esas2r: Add ATTO VDA Firmware API headers and functions. This API is used to control and manage the RAID adapter.

2013-08-23 Thread Bradley Grove
Signed-off-by: Bradley Grove bgr...@attotech.com --- drivers/scsi/esas2r/atvda.h | 1320 ++ drivers/scsi/esas2r/esas2r_vda.c | 523 +++ 2 files changed, 1843 insertions(+) create mode 100644 drivers/scsi/esas2r/atvda.h create mode 100644

Re: [PATCH 1/9] scsi: ufs: Add support for sending NOP OUT UPIU

2013-08-23 Thread James Bottomley
On Tue, 2013-07-30 at 00:35 +0530, Santosh Y wrote: From: Sujit Reddy Thumma sthu...@codeaurora.org As part of device initialization sequence, sending NOP OUT UPIU and waiting for NOP IN UPIU response is mandatory. This confirms that the device UFS Transport (UTP) layer is functional and

Re: [PATCH 1/7] qla4xxx: Allow removal of failed session using logout.

2013-08-23 Thread James Bottomley
On Mon, 2013-07-08 at 08:33 -0400, adheer.chandravan...@qlogic.com wrote: + /* wait until next relogin is triggered using DF_RELOGIN and +* clear DF_RELOGIN to avoid invocation of further relogin +*/ + wtime = jiffies + (HZ * RELOGIN_TOV); + do { +

Re: [PATCH 1/3] arcmsr: Modify maxium outstanding command

2013-08-23 Thread James Bottomley
On Wed, 2013-07-17 at 10:52 +0800, 黃清隆 wrote: From: Chingching2...@areca.com.tw Modify maximum outstanding command number, notify command complete with auto request sense, reassign ARC12x4 series to SATA type adapter Signed-off-by: chingching2...@areca.com.tw That should be Signed-off-by:

Re: [RFC PATCH] scsi: Add failfast mode to avoid infinite retry loop

2013-08-23 Thread Ewan Milne
On Fri, 2013-08-23 at 06:19 -0700, James Bottomley wrote: On Fri, 2013-08-23 at 18:10 +0900, Eiichi Tsukata wrote: Yes, basically the device should be offlined on error detection. Just offlining the disk is enough when an error occurs on not os-installed system disk. Panic is going too far

[PATCH 1/1] bfa: firmware update to 3.2.1.1

2013-08-23 Thread Rasesh Mody
This patch updates the firmware to address the thermal notification issue Signed-off-by: Rasesh Mody rm...@brocade.com --- drivers/scsi/bfa/bfad.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/bfa/bfad.c b/drivers/scsi/bfa/bfad.c index 9611195..f8ca7be