pm8001 issue

2013-12-10 Thread Niall Drievers
Hi,  I've recently been trying install Linux on to a piece of hardware I picked up and I've noticed this error in the dmesg output when the kernel is loading. The error can be produced in version 0.1.36 and 0.1.37 of the pm8001 module. I was hoping that when I updated it, I might be able to

Re: Do anybody know the format of bsg device node name?

2013-12-10 Thread Douglas Gilbert
On 13-12-10 02:32 AM, Newtech Tan wrote: For example of bsg device node name: [4:0:0:0] Each field is Hex or Dec? [BackGroup] I am using lsscsi -g command to get SCSI device list as the following. If bsg device name's target number field is over ten, Will it display [4:0:10:0] or [4:0:a:0]?

[PATCH] qla2xxx: Fix schedule_delayed_work() timeout calculations

2013-12-10 Thread Shivaram Upadhyayula
Hi, The following patch is a fix for the timeout/delay passed to scheduled_delayed_work. Regards, Shivaram U commit 1e0ea25bb6c834c1f4b2485f49d36a6c314cb7a4 Author: Shivaram U shivara...@quadstor.com Date: Tue Dec 10 15:38:14 2013 +0530 Fix schedule_delayed_work() timeout calculations

[PATCH 0/5][RFC] Support 64-bit LUNs

2013-12-10 Thread Hannes Reinecke
Hi all, this patchset updates the SCSI stack to support full 64-bit LUNs. The first patch is a simple fix; the next two patches update the sequential scan logic to be compliant with SPC. The last two patches update the SCSI stack and all drivers to use 64-bit LUNs where appropriate. The patchset

[PATCH 2/5] scsi_scan: Restrict sequential scan to 256 LUNs

2013-12-10 Thread Hannes Reinecke
Sequential scan for more than 256 LUNs is very fragile as LUNs might not be numbered sequentially after that point. SAM revisions later than SCSI-3 impose a structure on LUNs larger than 256, making LUN numbers between 256 and 16384 illegal. SCSI-3, however allows for plain 64-bit numbers with no

[PATCH 1/5] scsi: Remove CONFIG_SCSI_MULTI_LUN

2013-12-10 Thread Hannes Reinecke
Obsolete; either use 'max_lun' if the host supports only a limited number of LUNs or BLIST_NOLUN if the target has problems addressing more than one LUN. Signed-off-by: Hannes Reinecke h...@suse.de --- drivers/scsi/Kconfig | 14 -- drivers/scsi/dc395x.c| 9 +

[PATCH 5/5] scsi: use 64-bit value for 'max_luns'

2013-12-10 Thread Hannes Reinecke
Now that we're using 64-bit LUNs internally we need to increase the size of max_luns to 64 bits, too. Signed-off-by: Hannes Reinecke h...@suse.de --- drivers/message/i2o/i2o_scsi.c | 2 +- drivers/scsi/cxgbi/libcxgbi.c| 2 +- drivers/scsi/cxgbi/libcxgbi.h| 2 +-

[PATCH 3/5] qla2xxx: Restrict max_luns to 16-bit for older HBAs

2013-12-10 Thread Hannes Reinecke
Older HBAs are only capable of supporting 16-bit LUNs, so we need to make sure to adjust the 'ql2xmaxlun' parameter accordingly. Cc: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Hannes Reinecke h...@suse.de --- drivers/scsi/qla2xxx/qla_os.c | 5 + 1 file changed, 5 insertions(+) diff

Re: 64-bit LUN support in Linux kernel?

2013-12-10 Thread Hannes Reinecke
On 11/28/2013 02:29 PM, Aleksey Dashevsky wrote: Hannes, thanks a lot for your detailed response. It would be really great if you can give access to your local git repository with all these patches -- I'm mainly interested in 64-bit LUNs stuff right now, but I'm pretty sure improvements

RE: [PATCH] isci: fix reset timeout handling

2013-12-10 Thread Dorau, Lukasz
On Monday, December 09, 2013 8:47 PM Williams, Dan J dan.j.willi...@intel.com wrote: Remove an erroneous BUG_ON() in the case of a hard reset timeout. If a SATA device is unable to restore the link in time we expect the port to go back to the awaiting link-up state. Since the timeout path

RE: pm8001 issue

2013-12-10 Thread Suresh Thiagarajan
Hi Niall, Please update the firmware from http://www.adaptec.com/en-us/support/sas/#sas_raid Adaptec Series 7 SAS/SATA 6 Gb - Host Bus Adapter section based on your card. What is the current firmware version? You can get from the sys file fw_version under /sys/devices. Can you please try

[Bug 13783] udev causes high cpu usage

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=13783 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 14572] No closing brace, in the example tag_info.

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=14572 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 15561] SCSI Generic READ_10 to SATA fails when starting multiple processes

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15561 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 15567] SCSI Generic queueing appears unfair between processes

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15567 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 15623] doesn't allow SMART-passthrough on Adaptec Series 5 controller

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15623 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added CC||a...@lxorguk.ukuu.org.uk

Re: [PATCH 3/5] qla2xxx: Restrict max_luns to 16-bit for older HBAs

2013-12-10 Thread Chad Dupuis
On Tue, 10 Dec 2013, Hannes Reinecke wrote: Older HBAs are only capable of supporting 16-bit LUNs, so we need to make sure to adjust the 'ql2xmaxlun' parameter accordingly. Cc: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Hannes Reinecke h...@suse.de --- drivers/scsi/qla2xxx/qla_os.c |

[Bug 15950] Hang in dc395x driver

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15950 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 15950] Hang in dc395x driver

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15950 ltski...@gmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|OBSOLETE

[Bug 15950] Hang in dc395x driver

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15950 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Kernel Version|2.6.31 |3.5.3 -- You are

[Bug 15950] Hang in dc395x driver

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15950 --- Comment #7 from Alan a...@lxorguk.ukuu.org.uk --- No need - there is one obscure bug fix in early 2013, but nothing else since 2010. You may be the only person on the planet who still uses one! -- You are receiving this mail because: You are

[Bug 16547] mptscsih: ioc0: attempting task abort, raid array LUNs not detected properly on some boots

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=16547 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 18652] mptscsih: ioc0: attempting task abort when heavy disk operations on MPT SAS

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=18652 Alan a...@lxorguk.ukuu.org.uk changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 15950] Hang in dc395x driver

2013-12-10 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15950 --- Comment #8 from ltski...@gmail.com --- Could be. Haven't found another inexpensive SCSI adapter. I say the driver probably needs to get fixed or removed, though. No point in having it in the kernel giving folks false hope that it'll work!

pm8001 issue‏

2013-12-10 Thread Niall Drievers
Jack, Suresh Thanks for your response! Here's what I get from lspci - 30:00.0 Serial Attached SCSI controller: PMC-Sierra Inc. Device 8001 (rev 05)  cat /sys/class/scsi_host/host7/version_product  PM8001  cat /sys/class/scsi_host/host7/version_fw  01.12.02.00 The Kernel version is