Re: [Bug 62811] New: Don't Modify the scsi subcmd as LUN value when using VENDOR cmd

2013-10-17 Thread yili
James Bottomley HansenPartnership.com> writes: >>What are these vendor commands you'retrying to send that are out of spec? ---it is STEC Vendor Command code 0xA5 >>>Should your device be reporting compliance with a SCSI level > 2? ---it is a usb flash device, i will try do the test.

Re: [PATCH 1/1] remove cpqarray from mainline kernel

2013-10-17 Thread Hannes Reinecke
On 10/17/2013 07:52 PM, Mike Miller wrote: > From: Mike Miller > > cpqarray hasn't been used in over 12 years. It's doubtful that anyone still > uses the board. It's time the driver was removed from the mainline kernel. > The only updates these days are minor and mostly done by people outside of

Re: [PATCH 1/1] remove cpqarray from mainline kernel

2013-10-17 Thread Jens Axboe
On Thu, Oct 17 2013, Andrew Morton wrote: > On Thu, 17 Oct 2013 12:52:26 -0500 Mike Miller wrote: > > > cpqarray hasn't been used in over 12 years. It's doubtful that anyone still > > uses the board. It's time the driver was removed from the mainline kernel. > > The only updates these days are mi

Re: [PATCH 1/1] remove cpqarray from mainline kernel

2013-10-17 Thread Andrew Morton
On Thu, 17 Oct 2013 12:52:26 -0500 Mike Miller wrote: > cpqarray hasn't been used in over 12 years. It's doubtful that anyone still > uses the board. It's time the driver was removed from the mainline kernel. > The only updates these days are minor and mostly done by people outside of HP. It's a

[PATCH/RESEND v2 2/2] SATA disk resume time optimization, asynchronous sd_resume

2013-10-17 Thread Todd E Brandt
On resume, the SD driver currently waits until the block driver finishes executing a disk start command with blk_execute_rq. This patch changes the sd_resume callback to use blk_execute_rq_nowait instead, which allows it to return immediately, thus allowing the next device in the pm queue to res

[PATCH/RESEND v2 1/2] SATA disk resume time optimization, asynchronous ata_port_resume

2013-10-17 Thread Todd E Brandt
On resume, the ATA port driver currently waits until the AHCI controller finishes executing the port wakeup command. This patch changes the ata_port_resume callback to issue the wakeup and then return immediately, thus allowing the next device in the pm queue to resume. Any commands issued to th

[PATCH/RESEND v2 0/2] SATA disk resume time optimization

2013-10-17 Thread Todd E Brandt
The essential issue behind hard disks' lengthy resume time is the ata port driver blocking until the ATA port hardware is finished coming online. So the kernel isn't really doing anything during all those seconds that the disks are resuming, it's just blocking until the hardware says it's ready

Re: eSATA Drive Detection issues on mvsas

2013-10-17 Thread Dan Williams
On Wed, Oct 16, 2013 at 10:28 AM, Praveen Murali wrote: >> diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c >> index 161c98efade9..d0fb99d5da95 100644 >> --- a/drivers/scsi/libsas/sas_ata.c >> +++ b/drivers/scsi/libsas/sas_ata.c >> @@ -211,7 +211,7 @@ static unsigned int

Re: kernel cant access SATA adapter device

2013-10-17 Thread Robert Story
On Thu, 17 Oct 2013 23:59:24 +0800 taco wrote: T> What is the version of mptsas driver? modinfo mptsas reports verion 3.04.20. Kernel is 2.6.32-358 (RHEL 6.3). T> It seems that the mptsas's driver can't recognize the the type of SD T> card and treat it as normal hard disk drive. Ok. So how would

RE: [PATCH][SCSI] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path

2013-10-17 Thread Saxena, Sumit
>-Original Message- >From: Tomas Henzl [mailto:the...@redhat.com] >Sent: Thursday, October 17, 2013 9:18 PM >To: Saxena, Sumit; linux-scsi@vger.kernel.org >Cc: jbottom...@parallels.com; Desai, Kashyap; aradf...@gmail.com >Subject: Re: [PATCH][SCSI] megaraid_sas: Fix synchronization proble

Re: kernel cant access SATA adapter device

2013-10-17 Thread taco
What is the version of mptsas driver? It seems that the mptsas's driver can't recognize the the type of SD card and treat it as normal hard disk drive. On Wed, Oct 16, 2013 at 03:46:51PM -0400, Robert Story wrote: > Hi, > > I've got a SATA adapter for a SD card in a Dell Poweredge R610. The BIOS

Re: [PATCH][SCSI] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path

2013-10-17 Thread Tomas Henzl
On 10/17/2013 05:10 PM, Saxena, Sumit wrote: > >> -Original Message- >> From: Tomas Henzl [mailto:the...@redhat.com] >> Sent: Thursday, October 17, 2013 7:35 PM >> To: Saxena, Sumit; linux-scsi@vger.kernel.org >> Cc: jbottom...@parallels.com; Desai, Kashyap; aradf...@gmail.com >> Subject: R

RE: [PATCH][SCSI] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path

2013-10-17 Thread Saxena, Sumit
>-Original Message- >From: Tomas Henzl [mailto:the...@redhat.com] >Sent: Thursday, October 17, 2013 7:35 PM >To: Saxena, Sumit; linux-scsi@vger.kernel.org >Cc: jbottom...@parallels.com; Desai, Kashyap; aradf...@gmail.com >Subject: Re: [PATCH][SCSI] megaraid_sas: Fix synchronization proble

Re: [PATCH 7/7] scsi: Add 'eh_deadline' to limit SCSI EH runtime

2013-10-17 Thread Ewan Milne
On Wed, 2013-10-16 at 19:22 +, James Bottomley wrote: > What about instead: > > static int scsi_host_eh_past_deadline(struct Scsi_Host *shost, int percent) { > if (!shost->last_reset || !shost->eh_deadline) > return 0; > > if (time_before(jiffies, >

Re: [PATCH][SCSI] megaraid_sas: Fix synchronization problem between sysPD IO path and AEN path

2013-10-17 Thread Tomas Henzl
On 10/16/2013 01:34 PM, sumit.sax...@lsi.com wrote: > There is syncronization problem between sysPD IO path and AEN path. Driver > maintains instance->pd_list[] array, which will get updated(by calling > function megasas_get_pd_list[]), whenever any of below events occurs- Hi Sumit, - I'm a bit

Re: [PATCH] scsi: BusLogic: Fix an oops when intializing multimaster adapter

2013-10-17 Thread Josh Boyer
On Wed, Sep 25, 2013 at 10:45 AM, Khalid Aziz wrote: > This fixes an oops caused by buslogic driver when initializing a BusLogic > MultiMaster adapter. Initialization code used scope of a variable > incorrectly which created a NULL pointer. Oops message is below: > > BUG: unable to handle kernel N

[Bug 62971] Kernel 3.11.1 and higher does not boot on VMware VM

2013-10-17 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=62971 Bojan Smojver changed: What|Removed |Added Regression|No |Yes -- You are receiving this mail becau

[Bug 62971] Kernel 3.11.1 and higher does not boot on VMware VM

2013-10-17 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=62971 --- Comment #2 from Bojan Smojver --- BTW, as tested in the downstream bug, the patch from the link is the fix. -- You are receiving this mail because: You are watching the assignee of the bug. -- To unsubscribe from this list: send the line "un

Re: [PATCH 2/2] target_core_alua: Referrals configfs integration

2013-10-17 Thread Hannes Reinecke
On 10/17/2013 02:36 AM, Nicholas A. Bellinger wrote: > On Wed, 2013-10-16 at 09:25 +0200, Hannes Reinecke wrote: >> Referrals need an LBA map, which needs to be kept >> consistent across all target port groups. So >> instead of tying the map to the target port groups >> I've implemented a single at

Re: [PATCH 1/2] target_core_alua: Referrals infrastructure

2013-10-17 Thread Hannes Reinecke
On 10/17/2013 12:28 AM, Nicholas A. Bellinger wrote: > On Wed, 2013-10-16 at 09:25 +0200, Hannes Reinecke wrote: >> Add infrastructure for referrals. >> >> Signed-off-by: Hannes Reinecke >> --- >> drivers/target/target_core_alua.c | 151 >> ++ >> drivers/targe

Es ist Privat

2013-10-17 Thread George Daniels
-- Es ist Privat Ich bin George Daniels, ein Banker und Credit-System-Programmierer (HSBC Bank). Ich sah Ihre E-Mail-Adresse während des Surfens durch die Bank DTC Bildschirm in mein Büro gestern so beschloss ich, diese Chance zu nutzen sehr, Sie kennenzulernen. I glaube, wir sollten jede Gelege