Re: [PATCH v4 0/5] tcmu: Add Type of reconfig into netlink

2017-06-11 Thread Mike Christie
On 06/09/2017 01:11 AM, Nicholas A. Bellinger wrote: > Hi Bryant & Co, > > On Tue, 2017-06-06 at 09:28 -0500, Bryant G. Ly wrote: >> From: "Bryant G. Ly" >> >> This patch consists of adding a netlink to allow for reconfiguration >> of a device in tcmu. >> >> It also changes and

arcmsr: abort device command message weirdness (LUN mismatch)

2017-06-11 Thread Jérôme Carretero
Hi Ching, Context: when a drive finally failed in my JBOD array, I discovered that the whole ARC1880X controller would timeout, disabling access to any drive, which is kind of sad. I've performed a firmware upgrade and added back the failing drive to see what happens with a newer device firmware

I Would love to discuse something with you.

2017-06-11 Thread Dave Dawes

Re: [PATCH 1/2] scsi: qedi: Fix a return value in case of error in 'qedi_alloc_global_queues'

2017-06-11 Thread walter harms
Am 11.06.2017 08:40, schrieb Christophe JAILLET: > We should return -ENOMEM in case of memory allocation error, as done > elsewhere in this function. > > Fixes: ace7f46ba5fde ("scsi: qedi: Add QLogic FastLinQ offload iSCSI driver > framework.") > Signed-off-by: Christophe JAILLET

Re: [PATCH 1/3] scsi: qedf: Fix a return value in case of error in 'qedf_alloc_global_queues'

2017-06-11 Thread walter harms
Am 11.06.2017 08:16, schrieb Christophe JAILLET: > We should return -ENOMEM in case of memory allocation error, as done > elsewhere in this function. > > Fixes: 61d8658b4a435 ("scsi: qedf: Add QLogic FastLinQ offload FCoE driver > framework.") > Signed-off-by: Christophe JAILLET

[PATCH 2/2] scsi: qedi: Use 'dma_zalloc_coherent' to reduce code verbosity.

2017-06-11 Thread Christophe JAILLET
Replace some 'dma_alloc_coherent+memset' by some quivalent 'dma_zalloc_coherent' in order to reduce code verbosity Signed-off-by: Christophe JAILLET --- This patch generates some checkpatch errors about the use of space to indent code. I've left it as-is to keep

[PATCH 1/2] scsi: qedi: Fix a return value in case of error in 'qedi_alloc_global_queues'

2017-06-11 Thread Christophe JAILLET
We should return -ENOMEM in case of memory allocation error, as done elsewhere in this function. Fixes: ace7f46ba5fde ("scsi: qedi: Add QLogic FastLinQ offload iSCSI driver framework.") Signed-off-by: Christophe JAILLET --- drivers/scsi/qedi/qedi_main.c | 1 + 1

[PATCH 0/2] Fix a return value + some cleanups

2017-06-11 Thread Christophe JAILLET
This patch serie first fixes a case where an error code was missing. The other path is just a cleanup in the same area. Christophe JAILLET (2): scsi: qedi: Fix a return value in case of error in 'qedi_alloc_global_queues' scsi: qedi: Use 'dma_zalloc_coherent' to reduce code verbosity.

[PATCH 2/3] scsi: qedf: Use 'dma_zalloc_coherent' to reduce code verbosity.

2017-06-11 Thread Christophe JAILLET
Replace some 'dma_alloc_coherent+memset' by some quivalent 'dma_zalloc_coherent' in order to reduce code verbosity Signed-off-by: Christophe JAILLET --- drivers/scsi/qedf/qedf_main.c | 19 ++- 1 file changed, 6 insertions(+), 13 deletions(-) diff

[PATCH 3/3] scsi: qedf: Merge a few quoted strings split across lines

2017-06-11 Thread Christophe JAILLET
Merge some quoted strings to improve readability and to save some lines of code. Signed-off-by: Christophe JAILLET --- drivers/scsi/qedf/qedf_main.c | 18 ++ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git

[PATCH 1/3] scsi: qedf: Fix a return value in case of error in 'qedf_alloc_global_queues'

2017-06-11 Thread Christophe JAILLET
We should return -ENOMEM in case of memory allocation error, as done elsewhere in this function. Fixes: 61d8658b4a435 ("scsi: qedf: Add QLogic FastLinQ offload FCoE driver framework.") Signed-off-by: Christophe JAILLET --- drivers/scsi/qedf/qedf_main.c | 1 + 1

[PATCH 0/3] scsi: qedf: Fix a return value + some cleanups

2017-06-11 Thread Christophe JAILLET
This patch serie first fixes a case where an error code was missing. The 2 other patches are just cleanups in the same area. Christophe JAILLET (3): scsi: qedf: Fix a return value in case of error in 'qedf_alloc_global_queues' scsi: qedf: Use 'dma_zalloc_coherent' to reduce code