Re: [PATCH net-next] qed*: Utilize Firmware 8.15.3.0

2017-03-10 Thread kbuild test robot
Hi Yuval, [auto build test WARNING on net-next/master] url: https://github.com/0day-ci/linux/commits/Yuval-Mintz/qed-Utilize-Firmware-8-15-3-0/20170310-154337 config: xtensa-allmodconfig (attached as .config) compiler: xtensa-linux-gcc (GCC) 4.9.0 reproduce: wget https

Re: [PATCH 0/4 v2] block: Fixes for bdi handling

2017-03-10 Thread Jan Kara
On Thu 09-03-17 09:41:01, Jens Axboe wrote: > On 03/09/2017 03:16 AM, Jan Kara wrote: > > Hi! > > > > this is a second revision of the series fixing the most urgent bugs that > > were > > introduced by commit 165a5e22fafb "block: Move bdi_unregister() to > > del_gendisk()" and by 0dba1314d4f8

Re: [PATCH 1/3] hpsa: update check for logical volume status

2017-03-10 Thread Tomas Henzl
On 6.3.2017 22:24, Don Brace wrote: > - Add in a new case for volume offline. Resolves internal >testing bug for multilun array management. > - Return correct status for failed TURs. > > Reviewed-by: Scott Benesh > Reviewed-by: Scott Teel

Re: [PATCH 2/3] hpsa: limit outstanding rescans

2017-03-10 Thread Tomas Henzl
On 6.3.2017 22:24, Don Brace wrote: > avoid rescan storms. No need to queue another > if one is pending. > > Reviewed-by: Scott Benesh > Reviewed-by: Scott Teel > Signed-off-by: Don Brace > --- > drivers/scsi/hpsa.c

Re: [PATCH 3/3] hpsa: do not timeout reset operations

2017-03-10 Thread Tomas Henzl
On 6.3.2017 22:24, Don Brace wrote: > resets can take longer than DEFAULT_TIMEOUT > > Reviewed-by: Scott Benesh > Reviewed-by: Scott Teel > Signed-off-by: Don Brace Reviewed-by: Tomas Henzl

RE: [PATCH 1/3] hpsa: update check for logical volume status

2017-03-10 Thread Don Brace
> -Original Message- > From: Tomas Henzl [mailto:the...@redhat.com] > Sent: Friday, March 10, 2017 7:24 AM > To: Don Brace ; joseph.szczy...@hpe.com; > Gerry Morong ; John Hall > ; j...@linux.vnet.ibm.com; Kevin

Re: [PATCH 4/4] megaraid_sas: Driver version upgrade

2017-03-10 Thread Tomas Henzl
On 10.3.2017 12:22, Shivasharan S wrote: > Signed-off-by: Kashyap Desai > Signed-off-by: Shivasharan S Reviewed-by: Tomas Henzl tomash

Re: [PATCH 2/4] megaraid_sas: add correct return type check for ldio hint logic for raid1

2017-03-10 Thread Tomas Henzl
On 10.3.2017 12:22, Shivasharan S wrote: > Return value check of atomic_dec_if_positive is required as it returns old > value minus one. > Without this fix, driver will send small ios to firmware path and that will > be a performance issue. > > Not a critical, but good to have r1_ldio_hint as

Re: [PATCH 1/4] megaraid_sas: enable intx only if msix request fails

2017-03-10 Thread Tomas Henzl
On 10.3.2017 12:22, Shivasharan S wrote: > Without this fix, driver will enable INTx Interrupt pin even though > MSI-x vectors are enabled. See below lspci output. DisINTx is unset > for MSIx setup. > > lspci -s 85:00.0 -vvv |grep INT |grep Control > Control: I/O+ Mem+ BusMaster+ SpecCycle-

Re: [PATCH 3/4] megaraid_sas: raid6 also require cpuSel check same as raid5

2017-03-10 Thread Tomas Henzl
On 10.3.2017 12:22, Shivasharan S wrote: > Without this fix, raid6 performance will not be an optimal. > > Signed-off-by: Kashyap Desai > Signed-off-by: Shivasharan S Reviewed-by: Tomas Henzl tomash

[PATCH V2 0/3] hpsa updates

2017-03-10 Thread Don Brace
These patches are based on Linus's tree The changes are: - add in a new offline volume status - limit the number of outstanding rescan operation - do not timeout reset operations Changes since V1: - hpsa-update-check-for-volume-status - changed return type of hpsa_volume_offline from

[PATCH V2 3/3] hpsa: do not timeout reset operations

2017-03-10 Thread Don Brace
resets can take longer than DEFAULT_TIMEOUT Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Reviewed-by: Tomas Henzl review Signed-off-by: Don Brace --- drivers/scsi/hpsa.c |2 +- 1 file

[PATCH V2 2/3] hpsa: limit outstanding rescans

2017-03-10 Thread Don Brace
avoid rescan storms. No need to queue another if one is pending. Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Reviewed-by: Tomas Henzl review Signed-off-by: Don Brace ---

[PATCH V2 1/3] hpsa: update check for logical volume status

2017-03-10 Thread Don Brace
- Add in a new case for volume offline. Resolves internal testing bug for multilun array management. - Return correct status for failed TURs. Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Signed-off-by: Don Brace

[PATCH V3 3/3] hpsa: do not timeout reset operations

2017-03-10 Thread Don Brace
resets can take longer than DEFAULT_TIMEOUT Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Reviewed-by: Tomas Henzl review Signed-off-by: Don Brace --- drivers/scsi/hpsa.c |2 +- 1 file

[PATCH V3 1/3] hpsa: update check for logical volume status

2017-03-10 Thread Don Brace
- Add in a new case for volume offline. Resolves internal testing bug for multilun array management. - Return correct status for failed TURs. Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Signed-off-by: Don Brace

[PATCH V3 0/3] hpsa updates

2017-03-10 Thread Don Brace
These patches are based on Linus's tree The changes are: - add in a new offline volume status - limit the number of outstanding rescan operation - do not timeout reset operations Changes since V1: - hpsa-update-check-for-volume-status - changed return type of hpsa_volume_offline from

[PATCH V3 2/3] hpsa: limit outstanding rescans

2017-03-10 Thread Don Brace
avoid rescan storms. No need to queue another if one is pending. Reviewed-by: Scott Benesh Reviewed-by: Scott Teel Reviewed-by: Tomas Henzl review Signed-off-by: Don Brace ---

Re: [LFS/MM TOPIC][LFS/MM ATTEND]: - Storage Stack and Driver Testing methodology.

2017-03-10 Thread Bart Van Assche
On Tue, 2017-01-10 at 22:40 +, Chaitanya Kulkarni wrote: > Participants:- > -- > I'd like to invite developers from different subsystems to discuss an > approach towards  > a unified testing methodology for storage stack and device drivers belongs to  > different subsystems. >

RE

2017-03-10 Thread Aleena Aasim Abdulaziz
Assalam Alaikum, how are you doing my friend? my name is Madam Aleena Aasim Abdulaziz from Turkey and i have something very important to discuss with you please contact me now on my private email: aleen@hotmail.com

[PATCH 0/4] megaraid_sas: Bug fixes and improvements for 4.11-rc

2017-03-10 Thread Shivasharan S
This patchset fixes few issues introduced during previous set of patch submissions for 4.11 Shivasharan S (4): megaraid_sas: enable intx only if msix request fails megaraid_sas: add correct return type check for ldio hint logic for raid1 megaraid_sas: raid6 also require cpuSel check

[PATCH 1/4] megaraid_sas: enable intx only if msix request fails

2017-03-10 Thread Shivasharan S
Without this fix, driver will enable INTx Interrupt pin even though MSI-x vectors are enabled. See below lspci output. DisINTx is unset for MSIx setup. lspci -s 85:00.0 -vvv |grep INT |grep Control Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-

[PATCH 3/4] megaraid_sas: raid6 also require cpuSel check same as raid5

2017-03-10 Thread Shivasharan S
Without this fix, raid6 performance will not be an optimal. Signed-off-by: Kashyap Desai Signed-off-by: Shivasharan S --- drivers/scsi/megaraid/megaraid_sas_fusion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 4/4] megaraid_sas: Driver version upgrade

2017-03-10 Thread Shivasharan S
Signed-off-by: Kashyap Desai Signed-off-by: Shivasharan S --- drivers/scsi/megaraid/megaraid_sas.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/megaraid/megaraid_sas.h

Re: [PATCH v5 01/19] block: DAC960: Replace PCI pool old API

2017-03-10 Thread kbuild test robot
Hi Romain, [auto build test WARNING on scsi/for-next] [also build test WARNING on v4.11-rc1 next-20170310] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Romain-Perier/Replace-PCI-pool-by-DMA

[PATCH] block: DAC960: fix ifnullfree.cocci warnings

2017-03-10 Thread kbuild test robot
drivers/block/DAC960.c:441:3-19: WARNING: NULL check before freeing functions like kfree, debugfs_remove, debugfs_remove_recursive or usb_free_urb is not needed. Maybe consider reorganizing relevant code to avoid passing NULL values. drivers/block/DAC960.c:446:1-17: WARNING: NULL check before