From: Hugh Dickins <hughd@google.com>
To: Arvydas Sidorenko <asido4@gmail.com>
Cc: Jeff Garzik <jgarzik@pobox.com>,
Zheng Liu <wenqing.lz@taobao.com>,
linux-kernel@vger.kernel.org,
IDE/ATA development list <linux-ide@vger.kernel.org>
Subject: Re: Storage related regression in linux-next 20120824
Date: Sun, 9 Sep 2012 00:38:27 -0700 (PDT) [thread overview]
Message-ID: <alpine.LSU.2.00.1209090012390.2416@eggly.anvils> (raw)
In-Reply-To: <503BB4BB.4080307@gmail.com>
On Mon, 27 Aug 2012, Arvydas Sidorenko wrote:
> On 08/27/2012 06:39 PM, Arvydas Sidorenko wrote:
> > > Can you pastebin 'dmesg' and 'lspci'? Did this occur only once, or is
> > > it reproducible?
> > >
> > > Jeff
> > It does happen every time when booting into -next 20120824.
I don't know what went into next-20120824 versus next-20120813 (which
you reported to be good), but I'm seeing similar behaviour on PowerMac
G5 on Thursday's mmotm based on next-20120907 - critical target error,
root remounted read-only, the reboot with good kernel then has to fsck
(although fsck doesn't find anything interesting to fix in my case).
> > [ 11.035530] sd 0:0:0:0: [sda]
> > [ 11.035533] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
> > [ 11.035535] sd 0:0:0:0: [sda]
> > [ 11.035536] Sense Key : Illegal Request [current]
> > [ 11.035539] sd 0:0:0:0: [sda]
> > [ 11.035541] Add. Sense: Invalid field in cdb
> > [ 11.035543] sd 0:0:0:0: [sda] CDB:
> > [ 11.035544] Write(10): 2a 08 0b ad d1 78 00 00 08 00
> > [ 11.035550] end_request: critical target error, dev sda, sector
> > 195940728
> > [ 11.035552] end_request: critical target error, dev sda, sector
> > 195940728
> > [ 11.035557] Aborting journal on device sda4-8.
> > [ 11.046413] EXT4-fs error (device sda4): ext4_journal_start_sb:348:
> > Detected aborted journal
> > [ 11.046418] EXT4-fs (sda4): Remounting filesystem read-only
> >
> I believe the problem is in SCSI. Mode sense command catches my attention:
> [ 3.955397] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 10
> All logs from older kernels has different mode page code: 00 3a 00 00
>
> sg_modes from broken kernel shows DPOFUA set, which is 0x10th bit.
> Anyone knowing SCSI better could tell if that might cause the problems?
I think you know your way around SCSI/libata much better than I do.
I just bisected linux-next, and it comes down to the commit below, which
introduces the regression for me, and I'm guessing for you also. Maybe
it can be fixed up to satisfy us, but otherwise will have to be reverted:
we don't invert a default if it's going to break older working systems.
A good workaround for me meanwhile is to add boot option "libata.fua=0":
please try that (or reverting the commit) and let us know the result.
Thanks,
Hugh
commit 91895b786e631ab47b618c901231f22b5a44115b
Author: Zheng Liu <wenqing.lz@taobao.com>
Date: Tue May 8 11:24:03 2012 +0800
libata: enable SATA disk fua detection on default
Currently, SATA disk fua detection is disabled on default because most of
devices don't support this feature at that time. With the development of
technology, more and more SATA disks support this feature. So now we can enable
this detection on default.
Although fua detection is defined as a kernel module parameter, it is too hard
to set its value because it must be loaded and set before system starts up.
That needs to modify initrd file. So it is inconvenient for administrator who
needs to manage a huge number of servers.
Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 5eee1c1..c3fbdca 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -135,9 +135,9 @@ int atapi_passthru16 = 1;
module_param(atapi_passthru16, int, 0444);
MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices (0=off, 1=on [default])");
-int libata_fua = 0;
+int libata_fua = 1;
module_param_named(fua, libata_fua, int, 0444);
-MODULE_PARM_DESC(fua, "FUA support (0=off [default], 1=on)");
+MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on [default])");
static int ata_ignore_hpa;
module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644);
next prev parent reply other threads:[~2012-09-09 7:39 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CA+6av4=uxu_q5U_46HtpUt=FSgbh3pZuAEY54J5_xK=MKWq-YQ@mail.gmail.com>
2012-08-27 14:40 ` Storage related regression in linux-next 20120824 Jeff Garzik
2012-08-27 16:39 ` Dieter Ries
2012-08-29 21:58 ` Storage regression in v3.6-rc3 was: " Dieter Ries
2012-08-27 16:39 ` Arvydas Sidorenko
2012-08-27 17:56 ` Arvydas Sidorenko
2012-09-09 7:38 ` Hugh Dickins [this message]
2012-09-09 20:11 ` Arvydas Sidorenko
2012-09-09 20:28 ` Jeff Garzik
2012-09-09 20:36 ` Hugh Dickins
2012-09-09 20:50 ` Jeff Garzik
2012-09-12 4:36 ` Zheng Liu
2012-09-10 17:43 ` Hugh Dickins
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=alpine.LSU.2.00.1209090012390.2416@eggly.anvils \
--to=hughd@google.com \
--cc=asido4@gmail.com \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=wenqing.lz@taobao.com \
/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