public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@infradead.org>
To: Jeff DeFouw <mrj@plorb.com>
Cc: "James E.J. Bottomley" <JBottomley@parallels.com>,
	linux-scsi@vger.kernel.org, usb-storage@lists.one-eyed-alien.net
Subject: Re: 3.16 commit 89fb4cd errors on drives without SYNC CACHE
Date: Wed, 19 Nov 2014 22:42:33 -0800	[thread overview]
Message-ID: <20141120064233.GA29412@infradead.org> (raw)
In-Reply-To: <20141116011457.GA19264@blorp.plorb.com>

On Sat, Nov 15, 2014 at 08:14:57PM -0500, Jeff DeFouw wrote:
> Kernel 3.16 includes commit
> 89fb4cd1f717a871ef79fa7debbe840e3225cd54
> scsi: handle flush errors properly
> 
> I have an old USB backup drive that indicates a write cache but does not 
> support Synchronize Cache(10).  The request error now gets returned, 
> resulting in a journal abort and inability to write to the ext3 
> filesystem.  I was able to work around the problem by adding a new USB 
> storage quirk that completes the request without contacting the drive.  
> Is it acceptable for a drive to respond this way, and therefore need to 
> be handled in the SCSI layer, or is a new USB storage quirk the right 
> way to go?

Maybe the problem is that usb-storage sets the wce_default_on flag, and
we thus send a SYNCHRONIZE_CACHE even if the devices never claimed to
support it?

Adding the 

> 
> Detection:
> 
> [  471.204020] usb 1-2: new high-speed USB device number 2 using ehci-pci
> [  471.336900] usb 1-2: New USB device found, idVendor=0d49, idProduct=7100
> [  471.336903] usb 1-2: New USB device strings: Mfr=1, Product=3, SerialNumber=2
> [  471.336906] usb 1-2: Product: OneTouch II
> [  471.336908] usb 1-2: Manufacturer: Maxtor
> [  471.336910] usb 1-2: SerialNumber: L60N3ANG    
> [  471.450333] usb-storage 1-2:1.0: USB Mass Storage device detected
> [  471.450421] scsi8 : usb-storage 1-2:1.0
> [  471.450512] usbcore: registered new interface driver usb-storage
> [  472.501374] scsi 8:0:0:0: Direct-Access     Maxtor   OneTouch II      023g PQ: 0 ANSI: 4
> [  472.501712] sd 8:0:0:0: Attached scsi generic sg4 type 0
> [  472.554993] sd 8:0:0:0: [sdd] 586114704 512-byte logical blocks: (300 GB/279 GiB)
> [  472.608733] sd 8:0:0:0: [sdd] Write Protect is off
> [  472.608735] sd 8:0:0:0: [sdd] Mode Sense: 24 00 00 00
> [  472.662478] sd 8:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> [  472.847985]  sdd: sdd1 sdd2
> [  473.063339] sd 8:0:0:0: [sdd] Attached SCSI disk
> 
> Write failure:
> 
> [ 2812.782271] sd 9:0:0:0: [sdd] Done: 
> [ 2812.782276] 0xffff88007960c9c0 SUCCESS
> [ 2812.782279] sd 9:0:0:0: [sdd]  
> [ 2812.782282] Result: hostbyte=DID_OK driverbyte=DRIVER_OK
> [ 2812.782285] sd 9:0:0:0: [sdd] CDB: 
> [ 2812.782286] Write(10): 2a 00 00 90 10 3f 00 00 30 00
> [ 2812.782293] sd 9:0:0:0: [sdd] scsi host busy 1 failed 0
> [ 2812.782897] sd 9:0:0:0: [sdd] Done: 
> [ 2812.782900] 0xffff88007960c9c0 SUCCESS
> [ 2812.782902] sd 9:0:0:0: [sdd]  
> [ 2812.782904] Result: hostbyte=DID_TARGET_FAILURE driverbyte=DRIVER_OK
> [ 2812.782905] sd 9:0:0:0: [sdd] CDB: 
> [ 2812.782906] Synchronize Cache(10): 35 00 00 00 00 00 00 00 00 00
> [ 2812.782911] sd 9:0:0:0: [sdd]  
> [ 2812.782912] Sense Key : Illegal Request [current] 
> [ 2812.782914] sd 9:0:0:0: [sdd]  
> [ 2812.782916] Add. Sense: Invalid command operation code
> [ 2812.782917] sd 9:0:0:0: [sdd] scsi host busy 1 failed 0
> [ 2812.782922] end_request: critical target error, dev sdd, sector 9441391
> [ 2812.782931] Aborting journal on device sdd1-8.
> 
> -- 
> Jeff DeFouw <mrj@plorb.com>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
---end quoted text---

  reply	other threads:[~2014-11-20  6:42 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-16  1:14 3.16 commit 89fb4cd errors on drives without SYNC CACHE Jeff DeFouw
2014-11-20  6:42 ` Christoph Hellwig [this message]
2014-11-20 15:11   ` [usb-storage] " Alan Stern
2014-11-21 10:17     ` Christoph Hellwig
2014-11-21 15:08       ` Alan Stern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141120064233.GA29412@infradead.org \
    --to=hch@infradead.org \
    --cc=JBottomley@parallels.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=mrj@plorb.com \
    --cc=usb-storage@lists.one-eyed-alien.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox