* Re: 2.6.29 regression: ATA bus errors on resume [not found] ` <cllvN-2Gf-1@gated-at.bofh.it> @ 2009-03-30 14:30 ` Niel Lambrechts 2009-03-30 14:40 ` Jeff Garzik 2009-04-02 1:50 ` Tejun Heo 0 siblings, 2 replies; 20+ messages in thread From: Niel Lambrechts @ 2009-03-30 14:30 UTC (permalink / raw) To: Tejun Heo, linux.kernel On 03/30/2009 11:00 AM, Tejun Heo wrote: > Hello, > > For some reason, I can't find the original thread, so replying here. > > Niel Lambrechts wrote: >>>>>> The ext4 errors are interleaved with hardware errors, and the ext4 >>>>>> errors are about I/O errors. >>>>>> >>>>>> EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=2346519 >>>>>> EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure >>>>>> >>>>>> This looks more like a hibernation problem than an ext4 problem. >>>>>> Looks like the hard drive is being left in some inconsistent state >>>>>> after resuming from hibernation. > > Yeap, ext4 is just the victim here. > >>>>> ata1.00: irq_stat 0x00400008, PHY RDY changed >>>>> ata1: SError: { PHYRdyChg CommWake } >>>> Your SATA hardware flags a connect-or-disconnect event ("PHY RDY"), >>>> which requires us to abort a bunch of queued commands: >>>> >>>>> ata1.00: cmd 60/18:00:77:88:6f/00:00:0e:00:00/40 tag 0 ncq 12288 in >>>>> res 50/00:30:07:b3:10/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) >>>> [...] > ... >>>> The SCSI subsystem aborts each of the queued commands. >>> No .. this is the SCSI subsystem receives an ABORTED COMMAND return in >>> sense data for each of the outstanding I/Os >>> >>> The only place these are generated is in ata_sense_to_error() which only >>> occurs if there's some type of ata error. >>> >>> If I had to theorise, I'd say the system suspended with commands >>> outstanding to the device. On resume, the device gets reset and returns >>> some type of ATA error which gets translated to ABORTED COMMAND which >>> causes a failure. >>> >>> In the mid layer, we translate ABORTED_COMMAND into a retry until the >>> command runs out of them ... could it be there's a race readying the >>> device and we run through the retries before it can accept the command? > > When libata-eh thinks that the problem isn't worth retrying, it sets > scmd->retries to scmd->allowed so that it gets aborted immediately. > The code is in ata_eh_qc_complete(). > > Whether a command is to be retried or not is determined with > ATA_QCFLAG_RETRY which is set in ata_eh_link_autopsy() for each failed > command. Immediate-failure criteria is pretty strict - only driver > software errors (AC_ERR_INVALID) and PC or other special commands > which failed which got aborted by the device get the immediate pink > slip. In this case, the commands are from FS and failed with > AC_ERR_ATA_BUS, so it definitely doesn't fit into the criteria. > Strange. > > How reproducible is the problem? Are you interested in trying out > some debug patches? Hi Tejun, I think I should be able to reproduce when actively using X with 2.6.29, and I have an external disk where I could backup to / boot from if the corruption became a problem. These issues are keeping me from 2.6.29 so I'll gladly help where I can, if you can please provide me the patches and the .config settings that may be required? Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-03-30 14:30 ` 2.6.29 regression: ATA bus errors on resume Niel Lambrechts @ 2009-03-30 14:40 ` Jeff Garzik 2009-04-01 19:48 ` Niel Lambrechts 2009-04-02 1:50 ` Tejun Heo 1 sibling, 1 reply; 20+ messages in thread From: Jeff Garzik @ 2009-03-30 14:40 UTC (permalink / raw) To: Niel Lambrechts; +Cc: Tejun Heo, linux.kernel Niel Lambrechts wrote: > On 03/30/2009 11:00 AM, Tejun Heo wrote: >> Hello, >> >> For some reason, I can't find the original thread, so replying here. >> >> Niel Lambrechts wrote: >>>>>>> The ext4 errors are interleaved with hardware errors, and the ext4 >>>>>>> errors are about I/O errors. >>>>>>> >>>>>>> EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=2346519 >>>>>>> EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure >>>>>>> >>>>>>> This looks more like a hibernation problem than an ext4 problem. >>>>>>> Looks like the hard drive is being left in some inconsistent state >>>>>>> after resuming from hibernation. >> Yeap, ext4 is just the victim here. >> >>>>>> ata1.00: irq_stat 0x00400008, PHY RDY changed >>>>>> ata1: SError: { PHYRdyChg CommWake } >>>>> Your SATA hardware flags a connect-or-disconnect event ("PHY RDY"), >>>>> which requires us to abort a bunch of queued commands: >>>>> >>>>>> ata1.00: cmd 60/18:00:77:88:6f/00:00:0e:00:00/40 tag 0 ncq 12288 in >>>>>> res 50/00:30:07:b3:10/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) >>>>> [...] >> ... >>>>> The SCSI subsystem aborts each of the queued commands. >>>> No .. this is the SCSI subsystem receives an ABORTED COMMAND return in >>>> sense data for each of the outstanding I/Os >>>> >>>> The only place these are generated is in ata_sense_to_error() which only >>>> occurs if there's some type of ata error. >>>> >>>> If I had to theorise, I'd say the system suspended with commands >>>> outstanding to the device. On resume, the device gets reset and returns >>>> some type of ATA error which gets translated to ABORTED COMMAND which >>>> causes a failure. >>>> >>>> In the mid layer, we translate ABORTED_COMMAND into a retry until the >>>> command runs out of them ... could it be there's a race readying the >>>> device and we run through the retries before it can accept the command? >> When libata-eh thinks that the problem isn't worth retrying, it sets >> scmd->retries to scmd->allowed so that it gets aborted immediately. >> The code is in ata_eh_qc_complete(). >> >> Whether a command is to be retried or not is determined with >> ATA_QCFLAG_RETRY which is set in ata_eh_link_autopsy() for each failed >> command. Immediate-failure criteria is pretty strict - only driver >> software errors (AC_ERR_INVALID) and PC or other special commands >> which failed which got aborted by the device get the immediate pink >> slip. In this case, the commands are from FS and failed with >> AC_ERR_ATA_BUS, so it definitely doesn't fit into the criteria. >> Strange. >> >> How reproducible is the problem? Are you interested in trying out >> some debug patches? > > Hi Tejun, > > I think I should be able to reproduce when actively using X with 2.6.29, > and I have an external disk where I could backup to / boot from if the > corruption became a problem. > > These issues are keeping me from 2.6.29 so I'll gladly help where I can, > if you can please provide me the patches and the .config settings that > may be required? > > Niel > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > Any chance you could use bisect to narrow down the problem commit? http://kernel.org/pub/software/scm/git/docs/v1.4.4.4/howto/isolate-bugs-with-bisect.txt This should identify which patch caused your problems, if you have a known good starting point (such as 2.6.28). Jeff ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-03-30 14:40 ` Jeff Garzik @ 2009-04-01 19:48 ` Niel Lambrechts 2009-04-03 20:09 ` Jeff Garzik 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-01 19:48 UTC (permalink / raw) To: Jeff Garzik; +Cc: Tejun Heo, linux.kernel On 03/30/2009 04:40 PM, Jeff Garzik wrote: > Niel Lambrechts wrote: >> On 03/30/2009 11:00 AM, Tejun Heo wrote: >>> Hello, >>> >>> For some reason, I can't find the original thread, so replying here. >>> >>> Niel Lambrechts wrote: >>>>>>>> The ext4 errors are interleaved with hardware errors, and the ext4 >>>>>>>> errors are about I/O errors. >>>>>>>> >>>>>>>> EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to >>>>>>>> read inode block - inode=2346519 >>>>>>>> EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO >>>>>>>> failure >>>>>>>> >>>>>>>> This looks more like a hibernation problem than an ext4 problem. >>>>>>>> Looks like the hard drive is being left in some inconsistent state >>>>>>>> after resuming from hibernation. >>> Yeap, ext4 is just the victim here. >>> >>>>>>> ata1.00: irq_stat 0x00400008, PHY RDY changed >>>>>>> ata1: SError: { PHYRdyChg CommWake } >>>>>> Your SATA hardware flags a connect-or-disconnect event ("PHY >>>>>> RDY"), which requires us to abort a bunch of queued commands: >>>>>> >>>>>>> ata1.00: cmd 60/18:00:77:88:6f/00:00:0e:00:00/40 tag 0 ncq 12288 in >>>>>>> res 50/00:30:07:b3:10/00:00:0c:00:00/40 Emask 0x10 (ATA >>>>>>> bus error) >>>>>> [...] >>> ... >>>>>> The SCSI subsystem aborts each of the queued commands. >>>>> No .. this is the SCSI subsystem receives an ABORTED COMMAND >>>>> return in >>>>> sense data for each of the outstanding I/Os >>>>> >>>>> The only place these are generated is in ata_sense_to_error() >>>>> which only >>>>> occurs if there's some type of ata error. >>>>> >>>>> If I had to theorise, I'd say the system suspended with commands >>>>> outstanding to the device. On resume, the device gets reset and >>>>> returns >>>>> some type of ATA error which gets translated to ABORTED COMMAND which >>>>> causes a failure. >>>>> >>>>> In the mid layer, we translate ABORTED_COMMAND into a retry until the >>>>> command runs out of them ... could it be there's a race readying the >>>>> device and we run through the retries before it can accept the >>>>> command? >>> When libata-eh thinks that the problem isn't worth retrying, it sets >>> scmd->retries to scmd->allowed so that it gets aborted immediately. >>> The code is in ata_eh_qc_complete(). >>> >>> Whether a command is to be retried or not is determined with >>> ATA_QCFLAG_RETRY which is set in ata_eh_link_autopsy() for each failed >>> command. Immediate-failure criteria is pretty strict - only driver >>> software errors (AC_ERR_INVALID) and PC or other special commands >>> which failed which got aborted by the device get the immediate pink >>> slip. In this case, the commands are from FS and failed with >>> AC_ERR_ATA_BUS, so it definitely doesn't fit into the criteria. >>> Strange. >>> >>> How reproducible is the problem? Are you interested in trying out >>> some debug patches? >> >> Hi Tejun, >> >> I think I should be able to reproduce when actively using X with 2.6.29, >> and I have an external disk where I could backup to / boot from if the >> corruption became a problem. >> >> These issues are keeping me from 2.6.29 so I'll gladly help where I can, >> if you can please provide me the patches and the .config settings that >> may be required? >> >> Niel >> -- >> To unsubscribe from this list: send the line "unsubscribe >> linux-kernel" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> Please read the FAQ at http://www.tux.org/lkml/ >> > > Any chance you could use bisect to narrow down the problem commit? > > http://kernel.org/pub/software/scm/git/docs/v1.4.4.4/howto/isolate-bugs-with-bisect.txt > > > This should identify which patch caused your problems, if you have a > known good starting point (such as 2.6.28). I'm struggling with this - my good kernel is 2.6.28.9 and as far as I can tell the closest thing good kernel I can tell git to use is 2.6.28 base itself. So now what happens is that resume entirely fails during some of the bisects due to entirely other regressions that are present in older and newer kernels than mine, so I can't test the real issue! :( cheers Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-01 19:48 ` Niel Lambrechts @ 2009-04-03 20:09 ` Jeff Garzik 2009-04-03 20:54 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Jeff Garzik @ 2009-04-03 20:09 UTC (permalink / raw) To: Niel Lambrechts; +Cc: Tejun Heo, linux.kernel Niel Lambrechts wrote: > On 03/30/2009 04:40 PM, Jeff Garzik wrote: >> Niel Lambrechts wrote: >>> On 03/30/2009 11:00 AM, Tejun Heo wrote: >>>> Hello, >>>> >>>> For some reason, I can't find the original thread, so replying here. >>>> >>>> Niel Lambrechts wrote: >>>>>>>>> The ext4 errors are interleaved with hardware errors, and the ext4 >>>>>>>>> errors are about I/O errors. >>>>>>>>> >>>>>>>>> EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to >>>>>>>>> read inode block - inode=2346519 >>>>>>>>> EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO >>>>>>>>> failure >>>>>>>>> >>>>>>>>> This looks more like a hibernation problem than an ext4 problem. >>>>>>>>> Looks like the hard drive is being left in some inconsistent state >>>>>>>>> after resuming from hibernation. >>>> Yeap, ext4 is just the victim here. >>>> >>>>>>>> ata1.00: irq_stat 0x00400008, PHY RDY changed >>>>>>>> ata1: SError: { PHYRdyChg CommWake } >>>>>>> Your SATA hardware flags a connect-or-disconnect event ("PHY >>>>>>> RDY"), which requires us to abort a bunch of queued commands: >>>>>>> >>>>>>>> ata1.00: cmd 60/18:00:77:88:6f/00:00:0e:00:00/40 tag 0 ncq 12288 in >>>>>>>> res 50/00:30:07:b3:10/00:00:0c:00:00/40 Emask 0x10 (ATA >>>>>>>> bus error) >>>>>>> [...] >>>> ... >>>>>>> The SCSI subsystem aborts each of the queued commands. >>>>>> No .. this is the SCSI subsystem receives an ABORTED COMMAND >>>>>> return in >>>>>> sense data for each of the outstanding I/Os >>>>>> >>>>>> The only place these are generated is in ata_sense_to_error() >>>>>> which only >>>>>> occurs if there's some type of ata error. >>>>>> >>>>>> If I had to theorise, I'd say the system suspended with commands >>>>>> outstanding to the device. On resume, the device gets reset and >>>>>> returns >>>>>> some type of ATA error which gets translated to ABORTED COMMAND which >>>>>> causes a failure. >>>>>> >>>>>> In the mid layer, we translate ABORTED_COMMAND into a retry until the >>>>>> command runs out of them ... could it be there's a race readying the >>>>>> device and we run through the retries before it can accept the >>>>>> command? >>>> When libata-eh thinks that the problem isn't worth retrying, it sets >>>> scmd->retries to scmd->allowed so that it gets aborted immediately. >>>> The code is in ata_eh_qc_complete(). >>>> >>>> Whether a command is to be retried or not is determined with >>>> ATA_QCFLAG_RETRY which is set in ata_eh_link_autopsy() for each failed >>>> command. Immediate-failure criteria is pretty strict - only driver >>>> software errors (AC_ERR_INVALID) and PC or other special commands >>>> which failed which got aborted by the device get the immediate pink >>>> slip. In this case, the commands are from FS and failed with >>>> AC_ERR_ATA_BUS, so it definitely doesn't fit into the criteria. >>>> Strange. >>>> >>>> How reproducible is the problem? Are you interested in trying out >>>> some debug patches? >>> Hi Tejun, >>> >>> I think I should be able to reproduce when actively using X with 2.6.29, >>> and I have an external disk where I could backup to / boot from if the >>> corruption became a problem. >>> >>> These issues are keeping me from 2.6.29 so I'll gladly help where I can, >>> if you can please provide me the patches and the .config settings that >>> may be required? >>> >>> Niel >>> -- >>> To unsubscribe from this list: send the line "unsubscribe >>> linux-kernel" in >>> the body of a message to majordomo@vger.kernel.org >>> More majordomo info at http://vger.kernel.org/majordomo-info.html >>> Please read the FAQ at http://www.tux.org/lkml/ >>> >> Any chance you could use bisect to narrow down the problem commit? >> >> http://kernel.org/pub/software/scm/git/docs/v1.4.4.4/howto/isolate-bugs-with-bisect.txt >> >> >> This should identify which patch caused your problems, if you have a >> known good starting point (such as 2.6.28). > I'm struggling with this - my good kernel is 2.6.28.9 and as far as I > can tell the closest thing good kernel I can tell git to use is 2.6.28 > base itself. So now what happens is that resume entirely fails during > some of the bisects due to entirely other regressions that are present > in older and newer kernels than mine, so I can't test the real issue! :( "git help bisect" or "man git-bisect" has a wealth of information. Most notably, you can use "git bisect skip" if the current commit cannot be tested, and thus cannot be declared good or bad. Jeff ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-03 20:09 ` Jeff Garzik @ 2009-04-03 20:54 ` Niel Lambrechts 0 siblings, 0 replies; 20+ messages in thread From: Niel Lambrechts @ 2009-04-03 20:54 UTC (permalink / raw) To: Jeff Garzik; +Cc: Tejun Heo, linux.kernel On 04/03/2009 10:09 PM, Jeff Garzik wrote: > Niel Lambrechts wrote: >> On 03/30/2009 04:40 PM, Jeff Garzik wrote: >>> Niel Lambrechts wrote: >>>> On 03/30/2009 11:00 AM, Tejun Heo wrote: >>>>> Hello, >>>>> >>>>> For some reason, I can't find the original thread, so replying here. >>>>> >>>>> Niel Lambrechts wrote: >>>>>>>>>> The ext4 errors are interleaved with hardware errors, and the >>>>>>>>>> ext4 >>>>>>>>>> errors are about I/O errors. >>>>>>>>>> >>>>>>>>>> EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to >>>>>>>>>> read inode block - inode=2346519 >>>>>>>>>> EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO >>>>>>>>>> failure >>>>>>>>>> >>>>>>>>>> This looks more like a hibernation problem than an ext4 problem. >>>>>>>>>> Looks like the hard drive is being left in some inconsistent >>>>>>>>>> state >>>>>>>>>> after resuming from hibernation. >>>>> Yeap, ext4 is just the victim here. >>>>> >>>>>>>>> ata1.00: irq_stat 0x00400008, PHY RDY changed >>>>>>>>> ata1: SError: { PHYRdyChg CommWake } >>>>>>>> Your SATA hardware flags a connect-or-disconnect event ("PHY >>>>>>>> RDY"), which requires us to abort a bunch of queued commands: >>>>>>>> >>>>>>>>> ata1.00: cmd 60/18:00:77:88:6f/00:00:0e:00:00/40 tag 0 ncq >>>>>>>>> 12288 in >>>>>>>>> res 50/00:30:07:b3:10/00:00:0c:00:00/40 Emask 0x10 (ATA >>>>>>>>> bus error) >>>>>>>> [...] >>>>> ... >>>>>>>> The SCSI subsystem aborts each of the queued commands. >>>>>>> No .. this is the SCSI subsystem receives an ABORTED COMMAND >>>>>>> return in >>>>>>> sense data for each of the outstanding I/Os >>>>>>> >>>>>>> The only place these are generated is in ata_sense_to_error() >>>>>>> which only >>>>>>> occurs if there's some type of ata error. >>>>>>> >>>>>>> If I had to theorise, I'd say the system suspended with commands >>>>>>> outstanding to the device. On resume, the device gets reset and >>>>>>> returns >>>>>>> some type of ATA error which gets translated to ABORTED COMMAND >>>>>>> which >>>>>>> causes a failure. >>>>>>> >>>>>>> In the mid layer, we translate ABORTED_COMMAND into a retry >>>>>>> until the >>>>>>> command runs out of them ... could it be there's a race readying >>>>>>> the >>>>>>> device and we run through the retries before it can accept the >>>>>>> command? >>>>> When libata-eh thinks that the problem isn't worth retrying, it sets >>>>> scmd->retries to scmd->allowed so that it gets aborted immediately. >>>>> The code is in ata_eh_qc_complete(). >>>>> >>>>> Whether a command is to be retried or not is determined with >>>>> ATA_QCFLAG_RETRY which is set in ata_eh_link_autopsy() for each >>>>> failed >>>>> command. Immediate-failure criteria is pretty strict - only driver >>>>> software errors (AC_ERR_INVALID) and PC or other special commands >>>>> which failed which got aborted by the device get the immediate pink >>>>> slip. In this case, the commands are from FS and failed with >>>>> AC_ERR_ATA_BUS, so it definitely doesn't fit into the criteria. >>>>> Strange. >>>>> >>>>> How reproducible is the problem? Are you interested in trying out >>>>> some debug patches? >>>> Hi Tejun, >>>> >>>> I think I should be able to reproduce when actively using X with >>>> 2.6.29, >>>> and I have an external disk where I could backup to / boot from if the >>>> corruption became a problem. >>>> >>>> These issues are keeping me from 2.6.29 so I'll gladly help where I >>>> can, >>>> if you can please provide me the patches and the .config settings that >>>> may be required? >>>> >>>> Niel >>>> -- >>>> To unsubscribe from this list: send the line "unsubscribe >>>> linux-kernel" in >>>> the body of a message to majordomo@vger.kernel.org >>>> More majordomo info at http://vger.kernel.org/majordomo-info.html >>>> Please read the FAQ at http://www.tux.org/lkml/ >>>> >>> Any chance you could use bisect to narrow down the problem commit? >>> >>> http://kernel.org/pub/software/scm/git/docs/v1.4.4.4/howto/isolate-bugs-with-bisect.txt >>> >>> >>> >>> This should identify which patch caused your problems, if you have a >>> known good starting point (such as 2.6.28). >> I'm struggling with this - my good kernel is 2.6.28.9 and as far as I >> can tell the closest thing good kernel I can tell git to use is 2.6.28 >> base itself. So now what happens is that resume entirely fails during >> some of the bisects due to entirely other regressions that are present >> in older and newer kernels than mine, so I can't test the real issue! :( > > "git help bisect" or "man git-bisect" has a wealth of information. > > Most notably, you can use "git bisect skip" if the current commit > cannot be tested, and thus cannot be declared good or bad. Thanks Jeff, still finding my way around git, it was not that clear to me if there is a way to tell git that 2.6.28.9 was good, to me it looked like the main kernel only consists of the RC and the final release, not any subsequent patches? Anyhow, Tejun's patch is holding up well apart from the glitch I reported on yesterday - I guess it could have simply been part of the debugging output Tejun included in the patch and not a real issue. I haven't heard from him (yet), but I wonder if you might know if the results give enough of a clue for a patch that could be included in say 2.6.29.1? Thanks! Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-03-30 14:30 ` 2.6.29 regression: ATA bus errors on resume Niel Lambrechts 2009-03-30 14:40 ` Jeff Garzik @ 2009-04-02 1:50 ` Tejun Heo 2009-04-02 6:20 ` Niel Lambrechts 1 sibling, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-02 1:50 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 533 bytes --] Hello, Sorry about the delay. Niel Lambrechts wrote: > I think I should be able to reproduce when actively using X with 2.6.29, > and I have an external disk where I could backup to / boot from if the > corruption became a problem. > > These issues are keeping me from 2.6.29 so I'll gladly help where I can, > if you can please provide me the patches and the .config settings that > may be required? Attached is the debug patch. Please reproduce the problem with the patch applied and post full kernel log. Thanks. -- tejun [-- Attachment #2: libata-eh-debug.patch --] [-- Type: text/x-patch, Size: 2989 bytes --] diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 0183131..1597874 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -1274,7 +1274,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, { struct ata_port *ap = link->ap; struct ata_eh_info *ehi = &link->eh_info; - struct ata_eh_context *ehc = &link->eh_context; + //struct ata_eh_context *ehc = &link->eh_context; unsigned long flags; spin_lock_irqsave(ap->lock, flags); @@ -1284,7 +1284,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, /* About to take EH action, set RECOVERED. Ignore actions on * slave links as master will do them again. */ - if (!(ehc->i.flags & ATA_EHI_QUIET) && link != ap->slave_link) + if (/*!(ehc->i.flags & ATA_EHI_QUIET) && */link != ap->slave_link) ap->pflags |= ATA_PFLAG_RECOVERED; spin_unlock_irqrestore(ap->lock, flags); @@ -2017,8 +2017,13 @@ static void ata_eh_link_autopsy(struct ata_link *link) /* determine whether the command is worth retrying */ if (!(qc->err_mask & AC_ERR_INVALID) && - ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) + ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) { + ata_dev_printk(qc->dev, KERN_INFO, + "XXX setting retry on qc%d\n", tag); qc->flags |= ATA_QCFLAG_RETRY; + } else + ata_dev_printk(qc->dev, KERN_INFO, + "XXX no retry for qc%d\n", tag); /* accumulate error info */ ehc->i.dev = qc->dev; @@ -2126,8 +2131,8 @@ static void ata_eh_link_report(struct ata_link *link) char tries_buf[6]; int tag, nr_failed = 0; - if (ehc->i.flags & ATA_EHI_QUIET) - return; + /*if (ehc->i.flags & ATA_EHI_QUIET) + return;*/ desc = NULL; if (ehc->i.desc[0] != '\0') @@ -2147,8 +2152,8 @@ static void ata_eh_link_report(struct ata_link *link) nr_failed++; } - if (!nr_failed && !ehc->i.err_mask) - return; + /*if (!nr_failed && !ehc->i.err_mask) + return;*/ frozen = ""; if (ap->pflags & ATA_PFLAG_FROZEN) @@ -3350,16 +3355,23 @@ void ata_eh_finish(struct ata_port *ap) * generate sense data in this function, * considering both err_mask and tf. */ - if (qc->flags & ATA_QCFLAG_RETRY) + if (qc->flags & ATA_QCFLAG_RETRY) { + ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d, retries=%d\n", + tag, qc->scsicmd->retries); ata_eh_qc_retry(qc); - else + } else { + ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d\n", tag); ata_eh_qc_complete(qc); + } } else { if (qc->flags & ATA_QCFLAG_SENSE_VALID) { + ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d (SENSE), retries=%d\n", + tag, qc->scsicmd->retries); ata_eh_qc_complete(qc); } else { /* feed zero TF to sense generation */ memset(&qc->result_tf, 0, sizeof(qc->result_tf)); + ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d (bogus SENSE)\n", tag); ata_eh_qc_retry(qc); } } ^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-02 1:50 ` Tejun Heo @ 2009-04-02 6:20 ` Niel Lambrechts 2009-04-02 6:52 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-02 6:20 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 840 bytes --] On 04/02/2009 03:50 AM, Tejun Heo wrote: > Hello, > > Sorry about the delay. > > Niel Lambrechts wrote: > >> I think I should be able to reproduce when actively using X with 2.6.29, >> and I have an external disk where I could backup to / boot from if the >> corruption became a problem. >> >> These issues are keeping me from 2.6.29 so I'll gladly help where I can, >> if you can please provide me the patches and the .config settings that >> may be required? >> > > Attached is the debug patch. Please reproduce the problem with the > patch applied and post full kernel log. > Hi there, Here is the output, it took 2 attempts to reproduce the EXT4 corruption (clean with errors). Niel [-- Attachment #2: resume-t2.txt --] [-- Type: text/plain, Size: 29377 bytes --] Apr 2 08:13:00 linux-7vph kernel: Syncing filesystems ... done. Apr 2 08:13:01 linux-7vph kernel: Freezing user space processes ... (elapsed 0.00 seconds) done. Apr 2 08:13:01 linux-7vph kernel: Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. Apr 2 08:13:01 linux-7vph kernel: PM: Shrinking memory... done (48421 pages freed) Apr 2 08:13:01 linux-7vph kernel: PM: Freed 193684 kbytes in 3.08 seconds (62.88 MB/s) Apr 2 08:13:01 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) Apr 2 08:13:01 linux-7vph kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache Apr 2 08:13:01 linux-7vph kernel: ACPI handle has no context! Apr 2 08:13:01 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A disabled Apr 2 08:13:01 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 2 08:13:01 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 2 08:13:02 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D disabled Apr 2 08:13:02 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 08:13:02 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled Apr 2 08:13:02 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled Apr 2 08:13:02 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled Apr 2 08:13:02 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B disabled Apr 2 08:13:02 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D disabled Apr 2 08:13:02 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 08:13:02 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C disabled Apr 2 08:13:02 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B disabled Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A disabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A disabled Apr 2 08:13:04 linux-7vph kernel: ACPI: Preparing to enter system sleep state S4 Apr 2 08:13:04 linux-7vph kernel: PM: Saving platform NVS memory Apr 2 08:13:04 linux-7vph kernel: Disabling non-boot CPUs ... Apr 2 08:13:04 linux-7vph kernel: CPU 1 is now offline Apr 2 08:13:04 linux-7vph kernel: SMP alternatives: switching to UP code Apr 2 08:13:04 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 08:13:04 linux-7vph kernel: CPU1 attaching NULL sched-domain. Apr 2 08:13:04 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 08:13:04 linux-7vph kernel: CPU1 is down Apr 2 08:13:04 linux-7vph kernel: Extended CMOS year: 2000 Apr 2 08:13:04 linux-7vph kernel: PM: Creating hibernation image: Apr 2 08:13:04 linux-7vph kernel: PM: Need to copy 125230 pages Apr 2 08:13:04 linux-7vph kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Apr 2 08:13:04 linux-7vph kernel: Intel machine check architecture supported. Apr 2 08:13:04 linux-7vph kernel: Intel machine check reporting enabled on CPU#0. Apr 2 08:13:04 linux-7vph kernel: PM: Restoring platform NVS memory Apr 2 08:13:04 linux-7vph kernel: Extended CMOS year: 2000 Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) Apr 2 08:13:04 linux-7vph kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) Apr 2 08:13:04 linux-7vph kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Apr 2 08:13:04 linux-7vph kernel: Enabling non-boot CPUs ... Apr 2 08:13:04 linux-7vph kernel: SMP alternatives: switching to SMP code Apr 2 08:13:04 linux-7vph kernel: Booting processor 1 APIC 0x1 ip 0x6000 Apr 2 08:13:04 linux-7vph kernel: Initializing CPU#1 Apr 2 08:13:04 linux-7vph kernel: Calibrating delay using timer specific routine.. 5054.19 BogoMIPS (lpj=10108381) Apr 2 08:13:04 linux-7vph kernel: CPU: L1 I cache: 32K, L1 D cache: 32K Apr 2 08:13:04 linux-7vph kernel: CPU: L2 cache: 6144K Apr 2 08:13:04 linux-7vph kernel: [ds] using Core 2/Atom configuration Apr 2 08:13:04 linux-7vph kernel: CPU: Physical Processor ID: 0 Apr 2 08:13:04 linux-7vph kernel: CPU: Processor Core ID: 1 Apr 2 08:13:04 linux-7vph kernel: Intel machine check architecture supported. Apr 2 08:13:04 linux-7vph kernel: Intel machine check reporting enabled on CPU#1. Apr 2 08:13:04 linux-7vph kernel: x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 Apr 2 08:13:04 linux-7vph kernel: CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 Apr 2 08:13:04 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 08:13:04 linux-7vph kernel: Switched to high resolution mode on CPU 1 Apr 2 08:13:04 linux-7vph kernel: CPU0 attaching sched-domain: Apr 2 08:13:04 linux-7vph kernel: domain 0: span 0-1 level MC Apr 2 08:13:04 linux-7vph kernel: groups: 0 1 Apr 2 08:13:04 linux-7vph kernel: domain 1: span 0-1 level CPU Apr 2 08:13:04 linux-7vph kernel: groups: 0-1 Apr 2 08:13:04 linux-7vph kernel: CPU1 attaching sched-domain: Apr 2 08:13:04 linux-7vph kernel: domain 0: span 0-1 level MC Apr 2 08:13:04 linux-7vph kernel: groups: 1 0 Apr 2 08:13:04 linux-7vph kernel: domain 1: span 0-1 level CPU Apr 2 08:13:04 linux-7vph kernel: groups: 0-1 Apr 2 08:13:04 linux-7vph kernel: CPU1 is up Apr 2 08:13:04 linux-7vph kernel: ACPI: Waking up from system sleep state S4 Apr 2 08:13:04 linux-7vph kernel: ACPI: EC: non-query interrupt received, switching to interrupt mode Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.1: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:03.0: PME# disabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 2 08:13:04 linux-7vph kernel: e1000e 0000:00:19.0: irq 29 for MSI/MSI-X Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 08:13:04 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 2 08:13:04 linux-7vph kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: pcieport-driver 0000:00:1c.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: pcieport-driver 0000:00:1c.1: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: pcieport-driver 0000:00:1c.3: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: pcieport-driver 0000:00:1c.4: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 Apr 2 08:13:04 linux-7vph kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:1e.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ahci 0000:00:1f.2: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 2 08:13:04 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 2 08:13:04 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 Apr 2 08:13:04 linux-7vph kernel: iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X Apr 2 08:13:04 linux-7vph kernel: pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 2 08:13:04 linux-7vph kernel: Registered led device: iwl-phy0:radio Apr 2 08:13:04 linux-7vph kernel: Registered led device: iwl-phy0:assoc Apr 2 08:13:04 linux-7vph kernel: Registered led device: iwl-phy0:RX Apr 2 08:13:04 linux-7vph kernel: Registered led device: iwl-phy0:TX Apr 2 08:13:04 linux-7vph kernel: ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] Apr 2 08:13:04 linux-7vph kernel: pci 0000:15:00.2: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:15:00.3: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:15:00.4: PME# disabled Apr 2 08:13:04 linux-7vph kernel: pci 0000:15:00.5: PME# disabled Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Starting disk Apr 2 08:13:04 linux-7vph kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 2 08:13:04 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 2 08:13:04 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed Apr 2 08:13:04 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: ata1: EH complete Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 08:13:04 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 2 08:13:04 linux-7vph kernel: ata2: irq_stat 0x40000001 Apr 2 08:13:04 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: ata2: EH complete Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) Apr 2 08:13:04 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 2 08:13:04 linux-7vph kernel: Restarting tasks ... done. Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc1 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc2 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc3 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc4 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc5 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc6 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc7 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc8 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc9 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc10 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc11 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc12 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc13 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc14 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc15 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc16 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc17 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc18 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc19 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc20 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc21 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc22 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc23 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc24 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc25 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc26 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX setting retry on qc27 Apr 2 08:13:04 linux-7vph kernel: ata1: limiting SATA link speed to 1.5 Gbps Apr 2 08:13:04 linux-7vph kernel: ata1.00: exception Emask 0x10 SAct 0xfffffff SErr 0x50000 action 0xe frozen Apr 2 08:13:04 linux-7vph kernel: ata1.00: irq_stat 0x00400008, PHY RDY changed Apr 2 08:13:04 linux-7vph kernel: ata1: SError: { PHYRdyChg CommWake } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/18:00:6f:b1:68/00:00:0c:00:00/40 tag 0 ncq 12288 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/08:08:8f:b1:68/00:00:0c:00:00/40 tag 1 ncq 4096 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/38:10:5f:89:67/00:00:0e:00:00/40 tag 2 ncq 28672 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/c8:18:9f:89:67/00:00:0e:00:00/40 tag 3 ncq 102400 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/18:20:8f:9b:14/00:00:0f:00:00/40 tag 4 ncq 12288 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/08:28:ef:9b:14/00:00:0f:00:00/40 tag 5 ncq 4096 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/08:30:5f:08:c8/00:00:0c:00:00/40 tag 6 ncq 4096 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/30:38:b7:64:9e/00:00:0b:00:00/40 tag 7 ncq 24576 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/68:40:ef:64:9e/00:00:0b:00:00/40 tag 8 ncq 53248 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/58:48:5f:65:9e/00:00:0b:00:00/40 tag 9 ncq 45056 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/40:50:d1:95:b6/00:00:09:00:00/40 tag 10 ncq 32768 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/40:58:51:7c:b6/00:00:09:00:00/40 tag 11 ncq 32768 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/28:60:07:55:45/00:00:0c:00:00/40 tag 12 ncq 20480 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/38:68:37:55:45/00:00:0c:00:00/40 tag 13 ncq 28672 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/28:70:77:84:0f/00:00:0c:00:00/40 tag 14 ncq 20480 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/18:78:a7:84:0f/00:00:0c:00:00/40 tag 15 ncq 12288 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/20:80:57:73:98/00:00:0d:00:00/40 tag 16 ncq 16384 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/08:88:7f:73:98/00:00:0d:00:00/40 tag 17 ncq 4096 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/18:90:8f:73:98/00:00:0d:00:00/40 tag 18 ncq 12288 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/30:98:af:73:98/00:00:0d:00:00/40 tag 19 ncq 24576 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/20:a0:ef:73:98/00:00:0d:00:00/40 tag 20 ncq 16384 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/28:a8:17:74:98/00:00:0d:00:00/40 tag 21 ncq 20480 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/08:b0:e7:cd:11/00:00:0f:00:00/40 tag 22 ncq 4096 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/f0:b8:5f:e4:16/00:00:0f:00:00/40 tag 23 ncq 122880 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/38:c0:5f:64:9e/00:00:0b:00:00/40 tag 24 ncq 28672 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/18:c8:9f:64:9e/00:00:0b:00:00/40 tag 25 ncq 12288 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/c0:d0:17:02:3a/00:00:0d:00:00/40 tag 26 ncq 98304 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1.00: cmd 60/38:d8:df:02:3a/00:00:0d:00:00/40 tag 27 ncq 28672 in Apr 2 08:13:04 linux-7vph kernel: res 50/00:38:df:02:3a/00:00:0d:00:00/40 Emask 0x10 (ATA bus error) Apr 2 08:13:04 linux-7vph kernel: ata1.00: status: { DRDY } Apr 2 08:13:04 linux-7vph kernel: ata1: hard resetting link Apr 2 08:13:04 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 310) Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 08:13:04 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 08:13:04 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc0, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc1, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc2, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc3, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc4, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc5, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc6, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc7, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc8, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc9, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc10, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc11, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc12, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc13, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc14, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc15, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc16, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc17, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc18, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc19, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc20, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc21, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc22, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc23, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc24, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc25, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc26, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1.00: XXX retrying qc27, retries=0 Apr 2 08:13:04 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 t4 Apr 2 08:13:04 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Sense Key : Aborted Command [current] [descriptor] Apr 2 08:13:04 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): Apr 2 08:13:04 linux-7vph kernel: 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00 Apr 2 08:13:04 linux-7vph kernel: 0d 3a 02 df Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Add. Sense: No additional sense information Apr 2 08:13:04 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666399 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Sense Key : Aborted Command [current] [descriptor] Apr 2 08:13:04 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): Apr 2 08:13:04 linux-7vph kernel: 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00 Apr 2 08:13:04 linux-7vph kernel: 0d 3a 02 df Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Add. Sense: No additional sense information Apr 2 08:13:04 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666463 Apr 2 08:13:04 linux-7vph kernel: ata1: EH complete Apr 2 08:13:04 linux-7vph kernel: EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=2330983, block=9338933 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 08:13:04 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 08:13:04 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-02 6:20 ` Niel Lambrechts @ 2009-04-02 6:52 ` Tejun Heo 2009-04-02 11:03 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-02 6:52 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 423 bytes --] Niel Lambrechts wrote: >> Attached is the debug patch. Please reproduce the problem with the >> patch applied and post full kernel log. >> > Hi there, > > Here is the output, it took 2 attempts to reproduce the EXT4 corruption > (clean with errors). Strange. Maybe IO commands are getting through while the sdev is still in quiesce state? Can you please repeat the test with the attached patch? Thanks. -- tejun [-- Attachment #2: libata-eh-debug-1.patch --] [-- Type: text/x-patch, Size: 4377 bytes --] diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 0183131..87f5f4e 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -1274,7 +1274,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, { struct ata_port *ap = link->ap; struct ata_eh_info *ehi = &link->eh_info; - struct ata_eh_context *ehc = &link->eh_context; + //struct ata_eh_context *ehc = &link->eh_context; unsigned long flags; spin_lock_irqsave(ap->lock, flags); @@ -1284,7 +1284,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, /* About to take EH action, set RECOVERED. Ignore actions on * slave links as master will do them again. */ - if (!(ehc->i.flags & ATA_EHI_QUIET) && link != ap->slave_link) + if (/*!(ehc->i.flags & ATA_EHI_QUIET) && */link != ap->slave_link) ap->pflags |= ATA_PFLAG_RECOVERED; spin_unlock_irqrestore(ap->lock, flags); @@ -2017,8 +2017,13 @@ static void ata_eh_link_autopsy(struct ata_link *link) /* determine whether the command is worth retrying */ if (!(qc->err_mask & AC_ERR_INVALID) && - ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) + ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) { + ata_dev_printk(qc->dev, KERN_INFO, + "XXX setting retry on qc%d\n", tag); qc->flags |= ATA_QCFLAG_RETRY; + } else + ata_dev_printk(qc->dev, KERN_INFO, + "XXX no retry for qc%d\n", tag); /* accumulate error info */ ehc->i.dev = qc->dev; @@ -2126,8 +2131,8 @@ static void ata_eh_link_report(struct ata_link *link) char tries_buf[6]; int tag, nr_failed = 0; - if (ehc->i.flags & ATA_EHI_QUIET) - return; + /*if (ehc->i.flags & ATA_EHI_QUIET) + return;*/ desc = NULL; if (ehc->i.desc[0] != '\0') @@ -2147,8 +2152,8 @@ static void ata_eh_link_report(struct ata_link *link) nr_failed++; } - if (!nr_failed && !ehc->i.err_mask) - return; + /*if (!nr_failed && !ehc->i.err_mask) + return;*/ frozen = ""; if (ap->pflags & ATA_PFLAG_FROZEN) @@ -3350,16 +3355,23 @@ void ata_eh_finish(struct ata_port *ap) * generate sense data in this function, * considering both err_mask and tf. */ - if (qc->flags & ATA_QCFLAG_RETRY) + if (qc->flags & ATA_QCFLAG_RETRY) { + ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d, retries=%d allowed=%d\n", + tag, qc->scsicmd->retries, qc->scsicmd->allowed); ata_eh_qc_retry(qc); - else + } else { + ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d\n", tag); ata_eh_qc_complete(qc); + } } else { if (qc->flags & ATA_QCFLAG_SENSE_VALID) { + ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d (SENSE), retries=%d\n", + tag, qc->scsicmd->retries); ata_eh_qc_complete(qc); } else { /* feed zero TF to sense generation */ memset(&qc->result_tf, 0, sizeof(qc->result_tf)); + ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d (bogus SENSE)\n", tag); ata_eh_qc_retry(qc); } } diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index 0c2c73b..608bacd 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -1569,13 +1569,16 @@ void scsi_eh_flush_done_q(struct list_head *done_q) list_for_each_entry_safe(scmd, next, done_q, eh_entry) { list_del_init(&scmd->eh_entry); + printk("XXX scsi_eh_flush_done_q: online=%d(%d) noretry=%d retries=%d allowed=%d\n", + scsi_device_online(scmd->device), scmd->device->sdev_state, + scsi_noretry_cmd(scmd), scmd->retries, scmd->allowed); if (scsi_device_online(scmd->device) && !scsi_noretry_cmd(scmd) && (++scmd->retries <= scmd->allowed)) { - SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush" + /*SCSI_LOG_ERROR_RECOVERY(3, */printk("%s: flush" " retry cmd: %p\n", current->comm, - scmd)); + scmd)/*)*/; scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY); } else { /* @@ -1585,9 +1588,9 @@ void scsi_eh_flush_done_q(struct list_head *done_q) */ if (!scmd->result) scmd->result |= (DRIVER_TIMEOUT << 24); - SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush finish" + /*SCSI_LOG_ERROR_RECOVERY(3,*/ printk("%s: flush finish" " cmd: %p\n", - current->comm, scmd)); + current->comm, scmd)/*)*/; scsi_finish_command(scmd); } } ^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-02 6:52 ` Tejun Heo @ 2009-04-02 11:03 ` Niel Lambrechts 2009-04-02 14:15 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-02 11:03 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 1484 bytes --] On 04/02/2009 08:52 AM, Tejun Heo wrote: > Niel Lambrechts wrote: > >>> Attached is the debug patch. Please reproduce the problem with the >>> patch applied and post full kernel log. >>> >>> >> Hi there, >> >> Here is the output, it took 2 attempts to reproduce the EXT4 corruption >> (clean with errors). >> > > Strange. Maybe IO commands are getting through while the sdev is > still in quiesce state? Can you please repeat the test with the > attached patch? > Hi Tejun, Thanks for your help, I've done at least 5 hibernate cycles without the problem recurring, I'll keep at it for a while... :) For the sake of being thorough, I'd like to mention some of the remaining issues/messages, but to be honest some of them were there before and may not be relevant to your efforts: 1) Can you perhaps confirm if the remaining ATA messages are harmless enough to ignore? dmesg: ata2: exception Emask 0x10 SAct 0x0 SErr 0x4050000 action 0x1e frozen ata2: irq_stat 0x00400040, connection status changed ata2: SError: { PHYRdyChg CommWake DevExch } Clocksource tsc unstable (delta = -412838835 ns) and in messages: Apr 2 12:31:44 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 2) The screen remains blank on resume, right until I both press a key _and_ touch the touchpad. Weird, but this happens in 2.6.28.9 as well, perhaps this is i915 related. Thanks very much for sorting the more serious issue so quickly! Regards, Niel [-- Attachment #2: dmesg-p2.txt --] [-- Type: text/plain, Size: 62856 bytes --] Linux version 2.6.29-pae (root@linux-7vph) (gcc version 4.3.2 [gcc-4_3-branch revision 141291] (SUSE Linux) ) #2 SMP Thu Apr 2 07:43:01 SAST 2009 KERNEL supported cpus: Intel GenuineIntel AMD AuthenticAMD NSC Geode by NSC Cyrix CyrixInstead Centaur CentaurHauls Transmeta GenuineTMx86 Transmeta TransmetaCPU UMC UMC UMC UMC BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009ec00 (usable) BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000007c6a1000 (usable) BIOS-e820: 000000007c6a1000 - 000000007c6a7000 (reserved) BIOS-e820: 000000007c6a7000 - 000000007c7b7000 (usable) BIOS-e820: 000000007c7b7000 - 000000007c80f000 (reserved) BIOS-e820: 000000007c80f000 - 000000007c8c7000 (usable) BIOS-e820: 000000007c8c7000 - 000000007c8d2000 (ACPI NVS) BIOS-e820: 000000007c8d2000 - 000000007c8d5000 (ACPI data) BIOS-e820: 000000007c8d5000 - 000000007c8d9000 (reserved) BIOS-e820: 000000007c8d9000 - 000000007c8dd000 (ACPI NVS) BIOS-e820: 000000007c8dd000 - 000000007c8e0000 (reserved) BIOS-e820: 000000007c8e0000 - 000000007c907000 (ACPI NVS) BIOS-e820: 000000007c907000 - 000000007c908000 (ACPI data) BIOS-e820: 000000007c908000 - 000000007cb0f000 (reserved) BIOS-e820: 000000007cb0f000 - 000000007cb9f000 (ACPI NVS) BIOS-e820: 000000007cb9f000 - 000000007cbff000 (ACPI data) BIOS-e820: 000000007cbff000 - 000000007cc00000 (usable) BIOS-e820: 000000007cc00000 - 000000007f000000 (reserved) BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved) DMI present. last_pfn = 0x7cc00 max_arch_pfn = 0x1000000 x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 kernel direct mapping tables up to 373fe000 @ 7000-10000 NX (Execute Disable) protection: active RAMDISK: 37a2d000 - 37fef112 Allocated new RAMDISK: 005a2000 - 00b64112 Move RAMDISK from 0000000037a2d000 - 0000000037fef111 to 005a2000 - 00b64111 ACPI: RSDP 000F6530, 0024 (r2 LENOVO) ACPI: XSDT 7CB6A5B6, 0094 (r1 LENOVO TP-6F 1200 LTP 0) ACPI: FACP 7CB6A700, 00F4 (r3 LENOVO TP-6F 1200 LNVO 1) ACPI Warning (tbfadt-0568): 32/64X length mismatch in Pm1aControlBlock: 16/32 [20081204] ACPI Warning (tbfadt-0412): Invalid length for Pm1aControlBlock: 32, using default 16 [20081204] FADT: X_PM1a_EVT_BLK.bit_width (16) does not match PM1_EVT_LEN (4) ACPI: DSDT 7CB6AADB, F0B8 (r1 LENOVO TP-6F 1200 MSFT 3000000) ACPI: FACS 7CB8E000, 0040 ACPI: SSDT 7CB6A8B4, 0227 (r1 LENOVO TP-6F 1200 MSFT 3000000) ACPI: ECDT 7CB79B93, 0052 (r1 LENOVO TP-6F 1200 LNVO 1) ACPI: APIC 7CB79BE5, 0078 (r1 LENOVO TP-6F 1200 LNVO 1) ACPI: MCFG 7CB79C5D, 003C (r1 LENOVO TP-6F 1200 LNVO 1) ACPI: HPET 7CB79C99, 0038 (r1 LENOVO TP-6F 1200 LNVO 1) ACPI: SLIC 7CB79DC2, 0176 (r1 LENOVO TP-6F 1200 LTP 0) ACPI: BOOT 7CB79F38, 0028 (r1 LENOVO TP-6F 1200 LTP 1) ACPI: ASF! 7CB79F60, 00A0 (r16 LENOVO TP-6F 1200 PTL 1) ACPI: SSDT 7CB8D213, 054F (r1 LENOVO TP-6F 1200 INTL 20050513) ACPI: TCPA 7C907000, 0032 (r0 0 0) ACPI: SSDT 7C8D4000, 0655 (r1 PmRef CpuPm 3000 INTL 20050624) ACPI: SSDT 7C8D3000, 0274 (r1 PmRef Cpu0Tst 3000 INTL 20050624) ACPI: SSDT 7C8D2000, 0242 (r1 PmRef ApTst 3000 INTL 20050624) ACPI: Local APIC address 0xfee00000 1112MB HIGHMEM available. 883MB LOWMEM available. mapped low ram: 0 - 373fe000 low ram: 00000000 - 373fe000 bootmap 0000d000 - 00013e80 (9 early reservations) ==> bootmem [0000000000 - 00373fe000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] #3 [0000100000 - 000059a904] TEXT DATA BSS ==> [0000100000 - 000059a904] #4 [000059b000 - 00005a2000] INIT_PG_TABLE ==> [000059b000 - 00005a2000] #5 [000009ec00 - 0000100000] BIOS reserved ==> [000009ec00 - 0000100000] #6 [0000007000 - 000000d000] PGTABLE ==> [0000007000 - 000000d000] #7 [00005a2000 - 0000b64112] NEW RAMDISK ==> [00005a2000 - 0000b64112] #8 [000000d000 - 0000014000] BOOTMAP ==> [000000d000 - 0000014000] found SMP MP-table at [c00f6570] 000f6570 Zone PFN ranges: DMA 0x00000000 -> 0x00001000 Normal 0x00001000 -> 0x000373fe HighMem 0x000373fe -> 0x0007cc00 Movable zone start PFN for each node early_node_map[5] active PFN ranges 0: 0x00000000 -> 0x0000009e 0: 0x00000100 -> 0x0007c6a1 0: 0x0007c6a7 -> 0x0007c7b7 0: 0x0007c80f -> 0x0007c8c7 0: 0x0007cbff -> 0x0007cc00 On node 0 totalpages: 509960 free_area_init_node: node 0, pgdat c0446a80, node_mem_map c1000000 DMA zone: 32 pages used for memmap DMA zone: 0 pages reserved DMA zone: 3966 pages, LIFO batch:0 Normal zone: 1736 pages used for memmap Normal zone: 220470 pages, LIFO batch:31 HighMem zone: 2225 pages used for memmap HighMem zone: 281531 pages, LIFO batch:31 Using APIC driver default ACPI: PM-Timer IO Port: 0x1008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled) ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Enabling APIC mode: Flat. Using 1 I/O APICs Using ACPI (MADT) for SMP configuration information ACPI: HPET id: 0x8086a201 base: 0xfed00000 SMP: Allowing 4 CPUs, 2 hotplug CPUs nr_irqs_gsi: 24 PM: Registered nosave memory: 000000000009e000 - 000000000009f000 PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000 PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 Allocating PCI resources starting at 80000000 (gap: 7f000000:61000000) NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1 PERCPU: Allocating 40960 bytes of per cpu data Built 1 zonelists in Zone order, mobility grouping on. Total pages: 505967 Kernel command line: root=/dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part6 resume=/dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part5 splash=silent showopts modeset=0 i915.modeset=0 vga=791 Unknown boot option `i915.modeset=0': ignoring Enabling fast FPU save and restore... done. Enabling unmasked SIMD FPU exception support... done. Initializing CPU#0 PID hash table entries: 4096 (order: 12, 16384 bytes) Extended CMOS year: 2000 Fast TSC calibration using PIT Detected 2526.931 MHz processor. Console: colour dummy device 80x25 console [tty0] enabled Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) Memory: 2011324k/2043904k available (2060k kernel code, 27660k reserved, 1699k data, 324k init, 1135024k highmem) virtual kernel memory layout: fixmap : 0xff937000 - 0xfffff000 (6944 kB) pkmap : 0xff400000 - 0xff600000 (2048 kB) vmalloc : 0xf7bfe000 - 0xff3fe000 ( 120 MB) lowmem : 0xc0000000 - 0xf73fe000 ( 883 MB) .init : 0xc04b4000 - 0xc0505000 ( 324 kB) .data : 0xc03033b5 - 0xc04ac080 (1699 kB) .text : 0xc0100000 - 0xc03033b5 (2060 kB) Checking if this processor honours the WP bit even in supervisor mode...Ok. hpet clockevent registered HPET: 4 timers in total, 0 timers will be used for per-cpu timer Calibrating delay loop (skipped), value calculated using timer frequency.. 5053.86 BogoMIPS (lpj=10107724) Security Framework initialized Mount-cache hash table entries: 512 CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 0 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. using mwait in idle threads. Checking 'hlt' instruction... OK. ACPI: Core revision 20081204 ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 CPU0: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 5053.96 BogoMIPS (lpj=10107935) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 checking TSC synchronization [CPU#0 -> CPU#1]: passed. Brought up 2 CPUs Total of 2 processors activated (10107.82 BogoMIPS). CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 net_namespace: 1024 bytes Booting paravirtualized kernel on bare hardware NET: Registered protocol family 16 ACPI FADT declares the system doesn't support PCIe ASPM, so disable it ACPI: bus type pci registered PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 63 PCI: MCFG area at e0000000 reserved in E820 PCI: Using MMCONFIG for extended config space PCI: Using configuration type 1 for base access bio: create slab <bio-0> at 0 ACPI: EC: EC description table is found, configuring boot EC ACPI: BIOS _OSI(Linux) query ignored ACPI: EC: non-query interrupt received, switching to interrupt mode ACPI: Interpreter enabled ACPI: (supports S0 S3 S4 S5) ACPI: Using IOAPIC for interrupt routing ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62 ACPI: EC: driver started in interrupt mode ACPI: ACPI Dock Station Driver: 3 docks/bays found ACPI: PCI Root Bridge [PCI0] (0000:00) pci 0000:00:02.0: reg 10 64bit mmio: [0xf4400000-0xf47fffff] pci 0000:00:02.0: reg 18 64bit mmio: [0xd0000000-0xdfffffff] pci 0000:00:02.0: reg 20 io port: [0x1800-0x1807] pci 0000:00:02.1: reg 10 64bit mmio: [0xf4200000-0xf42fffff] pci 0000:00:03.0: reg 10 64bit mmio: [0xfc226800-0xfc22680f] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold pci 0000:00:03.0: PME# disabled pci 0000:00:19.0: reg 10 32bit mmio: [0xfc000000-0xfc01ffff] pci 0000:00:19.0: reg 14 32bit mmio: [0xfc025000-0xfc025fff] pci 0000:00:19.0: reg 18 io port: [0x1840-0x185f] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold pci 0000:00:19.0: PME# disabled pci 0000:00:1a.0: reg 20 io port: [0x1860-0x187f] pci 0000:00:1a.1: reg 20 io port: [0x1880-0x189f] pci 0000:00:1a.2: reg 20 io port: [0x18a0-0x18bf] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfc226c00-0xfc226fff] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold pci 0000:00:1a.7: PME# disabled pci 0000:00:1b.0: reg 10 64bit mmio: [0xfc020000-0xfc023fff] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold pci 0000:00:1b.0: PME# disabled pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.0: PME# disabled pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold pci 0000:00:1c.1: PME# disabled pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold pci 0000:00:1c.3: PME# disabled pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold pci 0000:00:1c.4: PME# disabled pci 0000:00:1d.0: reg 20 io port: [0x18c0-0x18df] pci 0000:00:1d.1: reg 20 io port: [0x18e0-0x18ff] pci 0000:00:1d.2: reg 20 io port: [0x1c00-0x1c1f] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfc227000-0xfc2273ff] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold pci 0000:00:1d.7: PME# disabled pci 0000:00:1f.2: reg 10 io port: [0x1c48-0x1c4f] pci 0000:00:1f.2: reg 14 io port: [0x183c-0x183f] pci 0000:00:1f.2: reg 18 io port: [0x1c40-0x1c47] pci 0000:00:1f.2: reg 1c io port: [0x1838-0x183b] pci 0000:00:1f.2: reg 20 io port: [0x1c20-0x1c3f] pci 0000:00:1f.2: reg 24 32bit mmio: [0xfc226000-0xfc2267ff] pci 0000:00:1f.2: PME# supported from D3hot pci 0000:00:1f.2: PME# disabled pci 0000:00:1f.3: reg 10 64bit mmio: [0xfc227400-0xfc2274ff] pci 0000:00:1f.3: reg 20 io port: [0x1c60-0x1c7f] pci 0000:03:00.0: reg 10 64bit mmio: [0xf4300000-0xf4301fff] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold pci 0000:03:00.0: PME# disabled pci 0000:00:1c.1: bridge 32bit mmio: [0xf4300000-0xf43fffff] pci 0000:00:1c.3: bridge io port: [0x2000-0x2fff] pci 0000:00:1c.3: bridge 32bit mmio: [0xf8000000-0xf9ffffff] pci 0000:00:1c.3: bridge 64bit mmio pref: [0xf4000000-0xf40fffff] pci 0000:00:1c.4: bridge io port: [0x3000-0x3fff] pci 0000:00:1c.4: bridge 32bit mmio: [0xfa000000-0xfbffffff] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xf4100000-0xf41fffff] pci 0000:15:00.0: reg 10 32bit mmio: [0xf4800000-0xf4800fff] pci 0000:15:00.0: supports D1 D2 pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.0: PME# disabled pci 0000:15:00.1: reg 10 32bit mmio: [0xf4801000-0xf48017ff] pci 0000:15:00.1: supports D1 D2 pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.1: PME# disabled pci 0000:15:00.2: reg 10 32bit mmio: [0xf4801800-0xf48018ff] pci 0000:15:00.2: supports D1 D2 pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: reg 10 32bit mmio: [0xf4801c00-0xf4801cff] pci 0000:15:00.3: supports D1 D2 pci 0000:15:00.3: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: reg 10 32bit mmio: [0xf4802000-0xf48020ff] pci 0000:15:00.4: supports D1 D2 pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: reg 10 32bit mmio: [0xf4802400-0xf48024ff] pci 0000:15:00.5: supports D1 D2 pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:15:00.5: PME# disabled pci 0000:00:1e.0: transparent bridge pci 0000:00:1e.0: bridge io port: [0x4000-0x7fff] pci 0000:00:1e.0: bridge 32bit mmio: [0xf4800000-0xf7ffffff] pci 0000:00:1e.0: bridge 64bit mmio pref: [0xf0000000-0xf3ffffff] pci_bus 0000:00: on NUMA node 0 ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11) ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11) ACPI: Power Resource [PUBS] (on) PCI: Using ACPI for IRQ routing hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 hpet0: 4 comparators, 64-bit 14.318180 MHz counter pnp: PnP ACPI init ACPI: bus type pnp registered pnp: PnP ACPI: found 10 devices ACPI: ACPI bus type pnp unregistered PnPBIOS: Disabled by ACPI PNP system 00:00: iomem range 0x0-0x9ffff could not be reserved system 00:00: iomem range 0xc0000-0xc3fff could not be reserved system 00:00: iomem range 0xc4000-0xc7fff could not be reserved system 00:00: iomem range 0xc8000-0xcbfff has been reserved system 00:00: iomem range 0xcc000-0xcffff has been reserved system 00:00: iomem range 0xd0000-0xd3fff could not be reserved system 00:00: iomem range 0xdc000-0xdffff could not be reserved system 00:00: iomem range 0xe0000-0xe3fff could not be reserved system 00:00: iomem range 0xe4000-0xe7fff could not be reserved system 00:00: iomem range 0xe8000-0xebfff could not be reserved system 00:00: iomem range 0xec000-0xeffff could not be reserved system 00:00: iomem range 0xf0000-0xfffff could not be reserved system 00:00: iomem range 0x100000-0x7effffff could not be reserved system 00:00: iomem range 0xfec00000-0xffffffff could not be reserved system 00:02: ioport range 0x164e-0x164f has been reserved system 00:02: ioport range 0x1000-0x107f has been reserved system 00:02: ioport range 0x1180-0x11ff has been reserved system 00:02: ioport range 0x800-0x80f has been reserved system 00:02: ioport range 0x15e0-0x15ef has been reserved system 00:02: ioport range 0x1600-0x1641 has been reserved system 00:02: ioport range 0x1600-0x161b has been reserved system 00:02: iomem range 0xe0000000-0xefffffff has been reserved system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved system 00:02: iomem range 0xfed10000-0xfed13fff has been reserved system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved system 00:02: iomem range 0xfed45000-0xfed4bfff has been reserved system 00:02: iomem range 0xfed40000-0xfed44fff has been reserved pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02 pci 0000:00:1c.0: IO window: disabled pci 0000:00:1c.0: MEM window: disabled pci 0000:00:1c.0: PREFETCH window: disabled pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03 pci 0000:00:1c.1: IO window: disabled pci 0000:00:1c.1: MEM window: 0xf4300000-0xf43fffff pci 0000:00:1c.1: PREFETCH window: disabled pci 0000:00:1c.3: PCI bridge, secondary bus 0000:05 pci 0000:00:1c.3: IO window: 0x2000-0x2fff pci 0000:00:1c.3: MEM window: 0xf8000000-0xf9ffffff pci 0000:00:1c.3: PREFETCH window: 0x000000f4000000-0x000000f40fffff pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0d pci 0000:00:1c.4: IO window: 0x3000-0x3fff pci 0000:00:1c.4: MEM window: 0xfa000000-0xfbffffff pci 0000:00:1c.4: PREFETCH window: 0x000000f4100000-0x000000f41fffff pci 0000:15:00.0: CardBus bridge, secondary bus 0000:16 pci 0000:15:00.0: IO window: 0x004000-0x0040ff pci 0000:15:00.0: IO window: 0x004400-0x0044ff pci 0000:15:00.0: PREFETCH window: 0xf0000000-0xf3ffffff pci 0000:15:00.0: MEM window: 0x80000000-0x83ffffff pci 0000:00:1e.0: PCI bridge, secondary bus 0000:15 pci 0000:00:1e.0: IO window: 0x4000-0x7fff pci 0000:00:1e.0: MEM window: 0xf4800000-0xf7ffffff pci 0000:00:1e.0: PREFETCH window: 0x000000f0000000-0x000000f3ffffff pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 pci 0000:00:1c.0: setting latency timer to 64 pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 pci 0000:00:1c.1: setting latency timer to 64 pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23 pci 0000:00:1c.3: setting latency timer to 64 pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20 pci 0000:00:1c.4: setting latency timer to 64 pci 0000:00:1e.0: setting latency timer to 64 pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 pci_bus 0000:00: resource 0 io: [0x00-0xffff] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] pci_bus 0000:02: resource 0 mem: [0x0-0x0] pci_bus 0000:02: resource 1 mem: [0x0-0x0] pci_bus 0000:02: resource 2 mem: [0x0-0x0] pci_bus 0000:02: resource 3 mem: [0x0-0x0] pci_bus 0000:03: resource 0 mem: [0x0-0x0] pci_bus 0000:03: resource 1 mem: [0xf4300000-0xf43fffff] pci_bus 0000:03: resource 2 mem: [0x0-0x0] pci_bus 0000:03: resource 3 mem: [0x0-0x0] pci_bus 0000:05: resource 0 io: [0x2000-0x2fff] pci_bus 0000:05: resource 1 mem: [0xf8000000-0xf9ffffff] pci_bus 0000:05: resource 2 mem: [0xf4000000-0xf40fffff] pci_bus 0000:05: resource 3 mem: [0x0-0x0] pci_bus 0000:0d: resource 0 io: [0x3000-0x3fff] pci_bus 0000:0d: resource 1 mem: [0xfa000000-0xfbffffff] pci_bus 0000:0d: resource 2 mem: [0xf4100000-0xf41fffff] pci_bus 0000:0d: resource 3 mem: [0x0-0x0] pci_bus 0000:15: resource 0 io: [0x4000-0x7fff] pci_bus 0000:15: resource 1 mem: [0xf4800000-0xf7ffffff] pci_bus 0000:15: resource 2 mem: [0xf0000000-0xf3ffffff] pci_bus 0000:15: resource 3 io: [0x00-0xffff] pci_bus 0000:15: resource 4 mem: [0x000000-0xffffffffffffffff] pci_bus 0000:16: resource 0 io: [0x4000-0x40ff] pci_bus 0000:16: resource 1 io: [0x4400-0x44ff] pci_bus 0000:16: resource 2 mem: [0xf0000000-0xf3ffffff] pci_bus 0000:16: resource 3 mem: [0x80000000-0x83ffffff] NET: Registered protocol family 2 IP route cache hash table entries: 32768 (order: 5, 131072 bytes) TCP established hash table entries: 131072 (order: 8, 1048576 bytes) TCP bind hash table entries: 65536 (order: 7, 524288 bytes) TCP: Hash tables configured (established 131072 bind 65536) TCP reno registered NET: Registered protocol family 1 Unpacking initramfs...<7>Switched to high resolution mode on CPU 1 done Switched to high resolution mode on CPU 0 Freeing initrd memory: 5896k freed Simple Boot Flag at 0x35 set to 0x1 Machine check exception polling timer started. audit: initializing netlink socket (disabled) type=2000 audit(1238674046.552:1): initialized highmem bounce pool size: 64 pages HugeTLB registered 2 MB page size, pre-allocated 0 pages VFS: Disk quotas dquot_6.5.2 Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) msgmni has been set to 1724 alg: No test for stdrng (krng) Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254) io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered (default) pci 0000:00:02.0: Boot video device pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.1: irq 25 for MSI/MSI-X pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.3: irq 26 for MSI/MSI-X pcieport-driver 0000:00:1c.4: setting latency timer to 64 pcieport-driver 0000:00:1c.4: irq 27 for MSI/MSI-X vesafb: framebuffer at 0xd0000000, mapped to 0xf7c80000, using 3072k, total 32704k vesafb: mode is 1024x768x16, linelength=2048, pages=20 vesafb: scrolling: redraw vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 Console: switching to colour frame buffer device 128x48 fb0: VESA VGA frame buffer device isapnp: Scanning for PnP cards... isapnp: No Plug & Play device found Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled floppy0: no floppy controllers found PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX port at 0x60,0x64 irq 12 mice: PS/2 mouse device common for all mice input: PC Speaker as /devices/platform/pcspkr/input/input0 input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 cpuidle: using governor ladder cpuidle: using governor menu Using IPI No-Shortcut mode Synaptics Touchpad, model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04791/0xb00000 serio: Synaptics pass-through port at isa0060/serio1/input0 input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2 IBM TrackPoint firmware: 0x0e, buttons: 3/3 input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input3 registered taskstats version 1 Freeing unused kernel memory: 324k freed Write protecting the kernel text: 2064k Write protecting the kernel read-only data: 1068k ACPI: SSDT 7C8D7C20, 02C8 (r1 PmRef Cpu0Ist 3000 INTL 20050624) ACPI: SSDT 7C8D5020, 087A (r1 PmRef Cpu0Cst 3001 INTL 20050624) Monitor-Mwait will be used to enter C-1 state Monitor-Mwait will be used to enter C-2 state Monitor-Mwait will be used to enter C-3 state ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) processor ACPI_CPU:00: registered as cooling_device0 ACPI: Processor [CPU0] (supports 8 throttling states) ACPI: SSDT 7C8D6CA0, 01CF (r1 PmRef ApIst 3000 INTL 20050624) ACPI: SSDT 7C8D6F20, 008D (r1 PmRef ApCst 3000 INTL 20050624) ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3]) Marking TSC unstable due to TSC halts in idle processor ACPI_CPU:01: registered as cooling_device1 ACPI: Processor [CPU1] (supports 8 throttling states) thermal LNXTHERM:01: registered as thermal_zone0 ACPI: Thermal Zone [THM0] (46 C) thermal LNXTHERM:02: registered as thermal_zone1 ACPI: Thermal Zone [THM1] (41 C) SCSI subsystem initialized libata version 3.00 loaded. ahci 0000:00:1f.2: version 3.0 ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16 ahci 0000:00:1f.2: irq 28 for MSI/MSI-X ahci: SSS flag set, parallel bus scan disabled ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ahci 0000:00:1f.2: setting latency timer to 64 scsi0 : ahci scsi1 : ahci scsi2 : ahci scsi3 : ahci ata1: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226100 irq 28 ata2: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226180 irq 28 ata3: DUMMY ata4: DUMMY ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ATA-8: HITACHI HTS722020K9SA00 FDE, DC4LC75A, max UDMA/133 ata1.00: 390721968 sectors, multi 16: LBA48 NCQ (depth 31/32) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 t4 ata1.00: configured for UDMA/133 ata1: EH complete scsi 0:0:0:0: Direct-Access ATA HITACHI HTS72202 DC4L PQ: 0 ANSI: 5 ata2: exception Emask 0x10 SAct 0x0 SErr 0x4050000 action 0x1e frozen ata2: irq_stat 0x00400040, connection status changed ata2: SError: { PHYRdyChg CommWake DevExch } Clocksource tsc unstable (delta = -412838835 ns) ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-U20N, HX10, max UDMA/133 ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: configured for UDMA/133 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 t4 ata2: irq_stat 0x40000001 ata2: EH complete scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-U20N HX10 PQ: 0 ANSI: 5 BIOS EDD facility v0.16 2004-Jun-25, 1 devices found udevd version 128 started usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: EHCI Host Controller uhci_hcd: USB Universal Host Controller Interface driver ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 ehci_hcd 0000:00:1a.7: debug port 1 ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported ehci_hcd 0000:00:1a.7: irq 23, io mem 0xfc226c00 ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 Driver 'sd' needs updating - please use bus_type methods sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sda:<6>usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb1: Product: EHCI Host Controller usb usb1: Manufacturer: Linux 2.6.29-pae ehci_hcd usb usb1: SerialNumber: 0000:00:1a.7 usb usb1: configuration #1 chosen from 1 choice hub 1-0:1.0: USB hub found hub 1-0:1.0: 6 ports detected uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.0: UHCI Host Controller uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2 uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860 usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb2: Product: UHCI Host Controller usb usb2: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb2: SerialNumber: 0000:00:1a.0 usb usb2: configuration #1 chosen from 1 choice hub 2-0:1.0: USB hub found hub 2-0:1.0: 2 ports detected ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: EHCI Host Controller ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 3 ehci_hcd 0000:00:1d.7: debug port 1 ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported ehci_hcd 0000:00:1d.7: irq 19, io mem 0xfc227000 Monitor-Mwait will be used to enter C-3 state ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb3: Product: EHCI Host Controller usb usb3: Manufacturer: Linux 2.6.29-pae ehci_hcd usb usb3: SerialNumber: 0000:00:1d.7 usb usb3: configuration #1 chosen from 1 choice hub 3-0:1.0: USB hub found hub 3-0:1.0: 6 ports detected uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.1: UHCI Host Controller uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880 usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb4: Product: UHCI Host Controller usb usb4: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb4: SerialNumber: 0000:00:1a.1 usb usb4: configuration #1 chosen from 1 choice hub 4-0:1.0: USB hub found hub 4-0:1.0: 2 ports detected uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 uhci_hcd 0000:00:1a.2: UHCI Host Controller uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 uhci_hcd 0000:00:1a.2: irq 22, io base 0x000018a0 usb usb5: New USB device found, idVendor=1d6b, idProduct=0001 usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb5: Product: UHCI Host Controller usb usb5: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb5: SerialNumber: 0000:00:1a.2 usb usb5: configuration #1 chosen from 1 choice hub 5-0:1.0: USB hub found hub 5-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.0: UHCI Host Controller uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018c0 sda1<6>usb usb6: New USB device found, idVendor=1d6b, idProduct=0001 usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb6: Product: UHCI Host Controller usb usb6: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb6: SerialNumber: 0000:00:1d.0 usb usb6: configuration #1 chosen from 1 choice hub 6-0:1.0: USB hub found hub 6-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.1: UHCI Host Controller uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018e0 usb usb7: New USB device found, idVendor=1d6b, idProduct=0001 usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb7: Product: UHCI Host Controller usb usb7: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb7: SerialNumber: 0000:00:1d.1 usb usb7: configuration #1 chosen from 1 choice hub 7-0:1.0: USB hub found hub 7-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 uhci_hcd 0000:00:1d.2: UHCI Host Controller uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001c00 usb usb8: New USB device found, idVendor=1d6b, idProduct=0001 usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb8: Product: UHCI Host Controller usb usb8: Manufacturer: Linux 2.6.29-pae uhci_hcd usb usb8: SerialNumber: 0000:00:1d.2 usb usb8: configuration #1 chosen from 1 choice hub 8-0:1.0: USB hub found hub 8-0:1.0: 2 ports detected sda2 sda3 sda4 < sda5 sda6 sda7 > sd 0:0:0:0: [sda] Attached SCSI disk usb 4-1: new full speed USB device using uhci_hcd and address 2 usb 4-1: New USB device found, idVendor=08ff, idProduct=2810 usb 4-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 usb 4-1: Product: Fingerprint Sensor usb 4-1: configuration #1 chosen from 1 choice PM: Starting manual resume from disk usb 6-2: new low speed USB device using uhci_hcd and address 2 usb 6-2: New USB device found, idVendor=1241, idProduct=1166 usb 6-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0 usb 6-2: configuration #1 chosen from 1 choice EXT4-fs: barriers enabled kjournald2 starting: pid 684, dev sda6:8, commit interval 5 seconds EXT4 FS on sda6, internal journal on sda6:8 EXT4-fs: delayed allocation enabled EXT4-fs: file extents enabled EXT4-fs: mballoc enabled EXT4-fs: mounted filesystem sda6 with ordered data mode usbcore: registered new interface driver hiddev input: HID 1241:1166 as /devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/input/input4 generic-usb 0003:1241:1166.0001: input,hidraw0: USB HID v1.10 Mouse [HID 1241:1166] on usb-0000:00:1d.0-2/input0 usbcore: registered new interface driver usbhid usbhid: v2.6:USB HID core driver EXT4 (no)acl options not supported udevd version 128 started sd 0:0:0:0: Attached scsi generic sg0 type 0 scsi 1:0:0:0: Attached scsi generic sg1 type 5 cfg80211: Using static regulatory domain info cfg80211: Regulatory domain: US (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm) (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm) Driver 'sr' needs updating - please use bus_type methods cfg80211: Calling CRDA for country: US sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray Uniform CD-ROM driver Revision: 3.20 sr 1:0:0:0: Attached scsi CD-ROM sr0 ACPI: Battery Slot [BAT0] (battery present) iTCO_vendor_support: vendor-support=0 Linux agpgart interface v0.103 input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5 ACPI: WMI: Mapper loaded ACPI: AC Adapter [AC] (on-line) Non-volatile memory driver v1.3 ACPI: Power Button (FF) [PWRF] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input6 ACPI: Lid Switch [LID] input: Sleep Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7 ACPI: Sleep Button (CM) [SLPB] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6 e1000e: Copyright (c) 1999-2008 Intel Corporation. e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: irq 29 for MSI/MSI-X ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=0 allowed=0 scsi_eh_1: flush finish cmd: f58fe500 iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05 iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060) iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:1c:25:95:93:ec cfg80211: Regulatory domain changed to country: US (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm) (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm) (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) (5490000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm) ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f58fec80 sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] ILI sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track end_request: I/O error, dev sr0, sector 0 Buffer I/O error on device sr0, logical block 0 Buffer I/O error on device sr0, logical block 1 Buffer I/O error on device sr0, logical block 2 Buffer I/O error on device sr0, logical block 3 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f58fec80 sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] ILI sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track end_request: I/O error, dev sr0, sector 0 Buffer I/O error on device sr0, logical block 0 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection 0000:00:19.0: eth0: MAC: 6, PHY: 8, PBA No: 1008ff-0ff ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=0 allowed=0 scsi_eh_1: flush finish cmd: f58fed40 ohci1394 0000:15:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f58fec80 sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] ILI sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track end_request: I/O error, dev sr0, sector 0 Buffer I/O error on device sr0, logical block 0 Buffer I/O error on device sr0, logical block 1 Buffer I/O error on device sr0, logical block 2 Buffer I/O error on device sr0, logical block 3 agpgart-intel 0000:00:00.0: Intel Mobile Intel® GM45 Express Chipset agpgart-intel 0000:00:00.0: detected 32764K stolen memory ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f58fe500 sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE,SUGGEST_OK sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] ILI sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track end_request: I/O error, dev sr0, sector 0 Buffer I/O error on device sr0, logical block 0 agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 acpi device:03: registered as cooling_device2 input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/input/input8 rtc_cmos 00:07: RTC can wake from S4 rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23 ACPI: Video Device [VID] (multi-head: yes rom: no post: no) thinkpad_acpi: ThinkPad ACPI Extras v0.22 thinkpad_acpi: http://ibm-acpi.sf.net/ thinkpad_acpi: ThinkPad BIOS 6FET50WW (1.20 ), EC 7VHT12WW-1.01 thinkpad_acpi: Lenovo ThinkPad W500, model 40622XG thinkpad_acpi: radio switch found; radios are enabled thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver thinkpad_acpi: Disabling thinkpad-acpi brightness events by default... thinkpad_acpi: setting the hotkey mask to 0x00ffffff is likely not the best way to go about it thinkpad_acpi: please consider using the driver defaults, and refer to up-to-date thinkpad-acpi documentation Registered led device: tpacpi::thinklight Registered led device: tpacpi::power Registered led device: tpacpi:orange:batt Registered led device: tpacpi:green:batt Registered led device: tpacpi::dock_active Registered led device: tpacpi::bay_active Registered led device: tpacpi::dock_batt Registered led device: tpacpi::unknown_led Registered led device: tpacpi::standby thinkpad_acpi: Standard ACPI backlight interface available, not loading native one. input: ThinkPad Extra Buttons as /devices/virtual/input/input9 HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27k iwlagn: Copyright(c) 2003-2008 Intel Corporation iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: setting latency timer to 64 iwlagn: Detected Intel Wireless WiFi Link 5300AGN REV=0x24 iwlagn: Tunable channels: 13 802.11bg, 24 802.11a channels iwlagn 0000:03:00.0: PCI INT A disabled wmaster0 (iwlagn): not using net_device_ops yet phy0: Selected rate control algorithm 'iwl-agn-rs' input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/input/input10 input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/input/input11 input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/input/input12 wlan0 (iwlagn): not using net_device_ops yet ieee1394: Host added: ID:BUS[0-00:1023] GUID[00016c00006a3b88] usbcore: registered new interface driver snd-usb-audio Adding 2099328k swap on /dev/sda5. Priority:-1 extents:1 across:2099328k device-mapper: uevent: version 1.0.3 device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com loop: module loaded kjournald starting. Commit interval 5 seconds EXT3 FS on sda7, internal journal EXT3-fs: mounted filesystem with ordered data mode. fuse init (API version 7.11) platform microcode: firmware: requesting intel-ucode/06-17-06 platform microcode: firmware: requesting intel-ucode/06-17-06 Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba NET: Registered protocol family 10 lo: Disabled Privacy Extensions ip6_tables: (C) 2000-2006 Netfilter Core Team ip_tables: (C) 2000-2006 Netfilter Core Team nf_conntrack version 0.5.0 (16384 buckets, 65536 max) CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or sysctl net.netfilter.nf_conntrack_acct=1 to enable it. powernow: This module only works with AMD K7 CPUs e1000e 0000:00:19.0: irq 29 for MSI/MSI-X e1000e 0000:00:19.0: irq 29 for MSI/MSI-X ADDRCONF(NETDEV_UP): eth0: link is not ready iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: restoring config space at offset 0x1 (was 0x100102, writing 0x100106) iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode iwlagn loaded firmware version 5.4.1.16 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ADDRCONF(NETDEV_UP): wlan0: link is not ready NET: Registered protocol family 17 e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready eth0: no IPv6 routers present [drm] Initialized drm 1.1.0 20060810 pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.0: irq 31 for MSI/MSI-X [drm] Initialized i915 1.6.0 20080730 on minor 0 set status page addr 0x071ab000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3848 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3849 freeing invalid memtype d0000000-e0000000 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x10 CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 ISO 9660 Extensions: Microsoft Joliet Level 3 ISO 9660 Extensions: RRIP_1991A Syncing filesystems ... done. Freezing user space processes ... (elapsed 0.00 seconds) done. Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. PM: Shrinking memory... \b-\b\\b|\b/\b-\b\\b|\b/\b-\bdone (105462 pages freed) PM: Freed 421848 kbytes in 4.28 seconds (98.56 MB/s) Suspending console(s) (use no_console_suspend to debug) sd 0:0:0:0: [sda] Synchronizing SCSI cache ACPI handle has no context! iwlagn 0000:03:00.0: PCI INT A disabled ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ehci_hcd 0000:00:1d.7: PCI INT D disabled ehci_hcd 0000:00:1d.7: PME# disabled uhci_hcd 0000:00:1d.2: PCI INT C disabled uhci_hcd 0000:00:1d.1: PCI INT B disabled uhci_hcd 0000:00:1d.0: PCI INT A disabled HDA Intel 0000:00:1b.0: PCI INT B disabled ehci_hcd 0000:00:1a.7: PCI INT D disabled ehci_hcd 0000:00:1a.7: PME# disabled uhci_hcd 0000:00:1a.2: PCI INT C disabled uhci_hcd 0000:00:1a.1: PCI INT B disabled uhci_hcd 0000:00:1a.0: PCI INT A disabled e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PCI INT A disabled ACPI: Preparing to enter system sleep state S4 PM: Saving platform NVS memory Disabling non-boot CPUs ... CPU 1 is now offline SMP alternatives: switching to UP code CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching NULL sched-domain. CPU1 is down Extended CMOS year: 2000 PM: Creating hibernation image: PM: Need to copy 120734 pages x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. PM: Restoring platform NVS memory Extended CMOS year: 2000 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Enabling non-boot CPUs ... SMP alternatives: switching to SMP code Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 5054.02 BogoMIPS (lpj=10108052) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 CPU0 attaching NULL sched-domain. Switched to high resolution mode on CPU 1 CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 CPU1 is up ACPI: Waking up from system sleep state S4 ACPI: EC: non-query interrupt received, switching to interrupt mode pci 0000:00:02.0: PME# disabled pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.1: PME# disabled pci 0000:00:03.0: PME# disabled e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: irq 29 for MSI/MSI-X uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.4: setting latency timer to 64 uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled pci 0000:00:1e.0: setting latency timer to 64 ahci 0000:00:1f.2: setting latency timer to 64 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: PME# disabled sd 0:0:0:0: [sda] Starting disk ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO uhci_hcd 0000:00:1d.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ. Syncing filesystems ... done. Freezing user space processes ... (elapsed 0.00 seconds) done. Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. PM: Shrinking memory... \b-\b\\b|\b/\b-\b\\bdone (50005 pages freed) PM: Freed 200020 kbytes in 2.93 seconds (68.26 MB/s) Suspending console(s) (use no_console_suspend to debug) sd 0:0:0:0: [sda] Synchronizing SCSI cache ACPI handle has no context! iwlagn 0000:03:00.0: PCI INT A disabled ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ehci_hcd 0000:00:1d.7: PCI INT D disabled ehci_hcd 0000:00:1d.7: PME# disabled uhci_hcd 0000:00:1d.2: PCI INT C disabled uhci_hcd 0000:00:1d.1: PCI INT B disabled uhci_hcd 0000:00:1d.0: PCI INT A disabled HDA Intel 0000:00:1b.0: PCI INT B disabled ehci_hcd 0000:00:1a.7: PCI INT D disabled ehci_hcd 0000:00:1a.7: PME# disabled uhci_hcd 0000:00:1a.2: PCI INT C disabled uhci_hcd 0000:00:1a.1: PCI INT B disabled uhci_hcd 0000:00:1a.0: PCI INT A disabled e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PCI INT A disabled ACPI: Preparing to enter system sleep state S4 PM: Saving platform NVS memory Disabling non-boot CPUs ... CPU 1 is now offline SMP alternatives: switching to UP code CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching NULL sched-domain. CPU1 is down Extended CMOS year: 2000 PM: Creating hibernation image: PM: Need to copy 123629 pages x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. PM: Restoring platform NVS memory Extended CMOS year: 2000 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Enabling non-boot CPUs ... SMP alternatives: switching to SMP code Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 5054.07 BogoMIPS (lpj=10108145) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 CPU0 attaching NULL sched-domain. Switched to high resolution mode on CPU 1 CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 CPU1 is up ACPI: Waking up from system sleep state S4 ACPI: EC: non-query interrupt received, switching to interrupt mode pci 0000:00:02.0: PME# disabled pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.1: PME# disabled pci 0000:00:03.0: PME# disabled e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: irq 29 for MSI/MSI-X uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.4: setting latency timer to 64 uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled pci 0000:00:1e.0: setting latency timer to 64 ahci 0000:00:1f.2: setting latency timer to 64 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: PME# disabled sd 0:0:0:0: [sda] Starting disk ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO usb 6-2: reset low speed USB device using uhci_hcd and address 2 [-- Attachment #3: resume-p2.txt --] [-- Type: text/plain, Size: 13892 bytes --] Apr 2 12:31:41 linux-7vph kernel: Syncing filesystems ... done. Apr 2 12:31:41 linux-7vph kernel: Freezing user space processes ... (elapsed 0.00 seconds) done. Apr 2 12:31:41 linux-7vph kernel: Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. Apr 2 12:31:41 linux-7vph kernel: PM: Shrinking memory... done (21792 pages freed) Apr 2 12:31:41 linux-7vph kernel: PM: Freed 87168 kbytes in 1.41 seconds (61.82 MB/s) Apr 2 12:31:41 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) Apr 2 12:31:41 linux-7vph kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache Apr 2 12:31:41 linux-7vph kernel: ACPI handle has no context! Apr 2 12:31:42 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A disabled Apr 2 12:31:42 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 2 12:31:42 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 2 12:31:42 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D disabled Apr 2 12:31:42 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 12:31:42 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled Apr 2 12:31:42 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled Apr 2 12:31:42 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled Apr 2 12:31:42 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B disabled Apr 2 12:31:42 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D disabled Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C disabled Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B disabled Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A disabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A disabled Apr 2 12:31:44 linux-7vph kernel: ACPI: Preparing to enter system sleep state S4 Apr 2 12:31:44 linux-7vph kernel: PM: Saving platform NVS memory Apr 2 12:31:44 linux-7vph kernel: Disabling non-boot CPUs ... Apr 2 12:31:44 linux-7vph kernel: CPU 1 is now offline Apr 2 12:31:44 linux-7vph kernel: SMP alternatives: switching to UP code Apr 2 12:31:44 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 12:31:44 linux-7vph kernel: CPU1 attaching NULL sched-domain. Apr 2 12:31:44 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 12:31:44 linux-7vph kernel: CPU1 is down Apr 2 12:31:44 linux-7vph kernel: Extended CMOS year: 2000 Apr 2 12:31:44 linux-7vph kernel: PM: Creating hibernation image: Apr 2 12:31:44 linux-7vph kernel: PM: Need to copy 123725 pages Apr 2 12:31:44 linux-7vph kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Apr 2 12:31:44 linux-7vph kernel: Intel machine check architecture supported. Apr 2 12:31:44 linux-7vph kernel: Intel machine check reporting enabled on CPU#0. Apr 2 12:31:44 linux-7vph kernel: PM: Restoring platform NVS memory Apr 2 12:31:44 linux-7vph kernel: Extended CMOS year: 2000 Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) Apr 2 12:31:44 linux-7vph kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) Apr 2 12:31:44 linux-7vph kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Apr 2 12:31:44 linux-7vph kernel: Enabling non-boot CPUs ... Apr 2 12:31:44 linux-7vph kernel: SMP alternatives: switching to SMP code Apr 2 12:31:44 linux-7vph kernel: Booting processor 1 APIC 0x1 ip 0x6000 Apr 2 12:31:44 linux-7vph kernel: Initializing CPU#1 Apr 2 12:31:44 linux-7vph kernel: Calibrating delay using timer specific routine.. 4692.14 BogoMIPS (lpj=9384289) Apr 2 12:31:44 linux-7vph kernel: CPU: L1 I cache: 32K, L1 D cache: 32K Apr 2 12:31:44 linux-7vph kernel: CPU: L2 cache: 6144K Apr 2 12:31:44 linux-7vph kernel: [ds] using Core 2/Atom configuration Apr 2 12:31:44 linux-7vph kernel: CPU: Physical Processor ID: 0 Apr 2 12:31:44 linux-7vph kernel: CPU: Processor Core ID: 1 Apr 2 12:31:44 linux-7vph kernel: Intel machine check architecture supported. Apr 2 12:31:44 linux-7vph kernel: Intel machine check reporting enabled on CPU#1. Apr 2 12:31:44 linux-7vph kernel: x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 Apr 2 12:31:44 linux-7vph kernel: CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 Apr 2 12:31:44 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 2 12:31:44 linux-7vph kernel: Switched to high resolution mode on CPU 1 Apr 2 12:31:44 linux-7vph kernel: CPU0 attaching sched-domain: Apr 2 12:31:44 linux-7vph kernel: domain 0: span 0-1 level MC Apr 2 12:31:44 linux-7vph kernel: groups: 0 1 Apr 2 12:31:44 linux-7vph kernel: CPU1 attaching sched-domain: Apr 2 12:31:44 linux-7vph kernel: domain 0: span 0-1 level MC Apr 2 12:31:44 linux-7vph kernel: groups: 1 0 Apr 2 12:31:44 linux-7vph kernel: CPU1 is up Apr 2 12:31:44 linux-7vph kernel: ACPI: Waking up from system sleep state S4 Apr 2 12:31:44 linux-7vph kernel: ACPI: EC: non-query interrupt received, switching to interrupt mode Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.1: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:03.0: PME# disabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 2 12:31:44 linux-7vph kernel: e1000e 0000:00:19.0: irq 29 for MSI/MSI-X Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 2 12:31:44 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 2 12:31:44 linux-7vph kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: pcieport-driver 0000:00:1c.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: pcieport-driver 0000:00:1c.1: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: pcieport-driver 0000:00:1c.3: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: pcieport-driver 0000:00:1c.4: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 Apr 2 12:31:44 linux-7vph kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:1e.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ahci 0000:00:1f.2: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 2 12:31:44 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 2 12:31:44 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 Apr 2 12:31:44 linux-7vph kernel: iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X Apr 2 12:31:44 linux-7vph kernel: pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 2 12:31:44 linux-7vph kernel: Registered led device: iwl-phy0:radio Apr 2 12:31:44 linux-7vph kernel: Registered led device: iwl-phy0:assoc Apr 2 12:31:44 linux-7vph kernel: Registered led device: iwl-phy0:RX Apr 2 12:31:44 linux-7vph kernel: Registered led device: iwl-phy0:TX Apr 2 12:31:44 linux-7vph kernel: ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] Apr 2 12:31:44 linux-7vph kernel: pci 0000:15:00.2: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:15:00.3: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:15:00.4: PME# disabled Apr 2 12:31:44 linux-7vph kernel: pci 0000:15:00.5: PME# disabled Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Starting disk Apr 2 12:31:44 linux-7vph kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 2 12:31:44 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 2 12:31:44 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 12:31:44 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 2 12:31:44 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed Apr 2 12:31:44 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 2 12:31:44 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 2 12:31:44 linux-7vph kernel: ata1: EH complete Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 2 12:31:44 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 2 12:31:44 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 2 12:31:44 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 2 12:31:44 linux-7vph kernel: ata2: irq_stat 0x40000001 Apr 2 12:31:44 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 2 12:31:44 linux-7vph kernel: ata2: EH complete Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) Apr 2 12:31:44 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 2 12:31:44 linux-7vph kernel: Restarting tasks ... done. Apr 2 12:31:44 linux-7vph kernel: e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None Apr 2 12:31:44 linux-7vph kernel: 0000:00:19.0: eth0: 10/100 speed: disabling TSO ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-02 11:03 ` Niel Lambrechts @ 2009-04-02 14:15 ` Niel Lambrechts 2009-04-04 4:54 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-02 14:15 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 2617 bytes --] On 04/02/2009 01:03 PM, Niel Lambrechts wrote: > On 04/02/2009 08:52 AM, Tejun Heo wrote: > >> Niel Lambrechts wrote: >> >> >>>> Attached is the debug patch. Please reproduce the problem with the >>>> patch applied and post full kernel log. >>>> >>>> >>>> >>> Hi there, >>> >>> Here is the output, it took 2 attempts to reproduce the EXT4 corruption >>> (clean with errors). >>> >>> >> Strange. Maybe IO commands are getting through while the sdev is >> still in quiesce state? Can you please repeat the test with the >> attached patch? >> >> > Hi Tejun, > > Thanks for your help, I've done at least 5 hibernate cycles without the > problem recurring, I'll keep at it for a while... :) > > For the sake of being thorough, I'd like to mention some of the > remaining issues/messages, but to be honest some of them were there > before and may not be relevant to your efforts: > > 1) Can you perhaps confirm if the remaining ATA messages are harmless > enough to ignore? > > dmesg: > ata2: exception Emask 0x10 SAct 0x0 SErr 0x4050000 action 0x1e frozen > ata2: irq_stat 0x00400040, connection status changed > ata2: SError: { PHYRdyChg CommWake DevExch } > Clocksource tsc unstable (delta = -412838835 ns) > > and in messages: > Apr 2 12:31:44 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 > SErr 0x0 action 0x9 t4 > > 2) The screen remains blank on resume, right until I both press a key > _and_ touch the touchpad. Weird, but this happens in 2.6.28.9 as well, > perhaps this is i915 related. > > Thanks very much for sorting the more serious issue so quickly! > > Regards, > Niel > UPDATE: Just arrived back home, before suspending I enabled all the powertop laptop mode/SATA link management etc and I removed a CD-ROM from the CD drive so I'm not sure what could be responsible for this: ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 .. loop .. I hope it's simply something like "drive not ready" debugging ouput, since ata2 seems associated with the CD-Rom drive... :) This continued, until I again in powertop enabled SATA link management. The full dmesg is attached... Niel [-- Attachment #2: dmesg-p2-2.txt --] [-- Type: text/plain, Size: 123419 bytes --] d ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO usb 6-2: reset low speed USB device using uhci_hcd and address 2 martian source 255.255.255.255 from 10.59.201.226, on dev eth0 ll header: ff:ff:ff:ff:ff:ff:00:1c:23:28:30:80:08:00 martian source 255.255.255.255 from 10.59.201.226, on dev eth0 ll header: ff:ff:ff:ff:ff:ff:00:1c:23:28:30:80:08:00 SFW2-OUT-ERROR IN= OUT=eth0 SRC=10.59.201.31 DST=172.17.2.9 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24799 DF PROTO=TCP SPT=45717 DPT=9001 WINDOW=525 RES=0x00 ACK FIN URGP=0 OPT (0101080A00023B1514F4B11D) SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:1c:25:95:93:ec:00:0f:90:71:c5:c3:08:00 SRC=172.17.2.9 DST=10.59.201.31 LEN=52 TOS=0x00 PREC=0x00 TTL=61 ID=22976 DF PROTO=TCP SPT=9001 DPT=45717 WINDOW=65535 RES=0x00 ACK FIN URGP=0 OPT (0101080A14FA3D8900023B15) SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:1c:25:95:93:ec:00:0f:90:71:c5:c3:08:00 SRC=172.17.2.9 DST=10.59.201.31 LEN=40 TOS=0x00 PREC=0x00 TTL=61 ID=51350 DF PROTO=TCP SPT=9001 DPT=45717 WINDOW=65535 RES=0x00 ACK RST URGP=0 SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=33:33:00:00:00:01:00:1d:72:26:07:c3:86:dd SRC=fe80:0000:0000:0000:3425:8347:7d98:264a DST=ff02:0000:0000:0000:0000:0000:0000:0001 LEN=443 TC=0 HOPLIMIT=1 FLOWLBL=0 PROTO=UDP SPT=53852 DPT=67 LEN=403 SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=33:33:00:00:00:01:00:1d:72:26:07:c3:86:dd SRC=fe80:0000:0000:0000:3425:8347:7d98:264a DST=ff02:0000:0000:0000:0000:0000:0000:0001 LEN=447 TC=0 HOPLIMIT=1 FLOWLBL=0 PROTO=UDP SPT=53853 DPT=67 LEN=407 usb 3-1: new high speed USB device using ehci_hcd and address 3 usb 3-1: New USB device found, idVendor=0421, idProduct=0094 usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 usb 3-1: Product: N85 usb 3-1: Manufacturer: Nokia usb 3-1: SerialNumber: 356376021064021 usb 3-1: configuration #1 chosen from 1 choice cdc_acm 3-1:1.1: ttyACM0: USB ACM device usbcore: registered new interface driver cdc_acm cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters usbcore: registered new interface driver cdc_ether usb 3-1: bad CDC descriptors usbcore: registered new interface driver rndis_host usb 3-1: bad CDC descriptors usbcore: registered new interface driver rndis_wlan Syncing filesystems ... done. Freezing user space processes ... (elapsed 0.00 seconds) done. Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. PM: Shrinking memory... \b-\b\\b|\bdone (21792 pages freed) PM: Freed 87168 kbytes in 1.41 seconds (61.82 MB/s) Suspending console(s) (use no_console_suspend to debug) sd 0:0:0:0: [sda] Synchronizing SCSI cache ACPI handle has no context! iwlagn 0000:03:00.0: PCI INT A disabled ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ehci_hcd 0000:00:1d.7: PCI INT D disabled ehci_hcd 0000:00:1d.7: PME# disabled uhci_hcd 0000:00:1d.2: PCI INT C disabled uhci_hcd 0000:00:1d.1: PCI INT B disabled uhci_hcd 0000:00:1d.0: PCI INT A disabled HDA Intel 0000:00:1b.0: PCI INT B disabled ehci_hcd 0000:00:1a.7: PCI INT D disabled ehci_hcd 0000:00:1a.7: PME# disabled uhci_hcd 0000:00:1a.2: PCI INT C disabled uhci_hcd 0000:00:1a.1: PCI INT B disabled uhci_hcd 0000:00:1a.0: PCI INT A disabled e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PCI INT A disabled ACPI: Preparing to enter system sleep state S4 PM: Saving platform NVS memory Disabling non-boot CPUs ... CPU 1 is now offline SMP alternatives: switching to UP code CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching NULL sched-domain. CPU1 is down Extended CMOS year: 2000 PM: Creating hibernation image: PM: Need to copy 123725 pages x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. PM: Restoring platform NVS memory Extended CMOS year: 2000 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Enabling non-boot CPUs ... SMP alternatives: switching to SMP code Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 4692.14 BogoMIPS (lpj=9384289) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 CPU0 attaching NULL sched-domain. Switched to high resolution mode on CPU 1 CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 CPU1 is up ACPI: Waking up from system sleep state S4 ACPI: EC: non-query interrupt received, switching to interrupt mode pci 0000:00:02.0: PME# disabled pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.1: PME# disabled pci 0000:00:03.0: PME# disabled e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: irq 29 for MSI/MSI-X uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.4: setting latency timer to 64 uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled pci 0000:00:1e.0: setting latency timer to 64 ahci 0000:00:1f.2: setting latency timer to 64 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: PME# disabled sd 0:0:0:0: [sda] Starting disk ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO uhci_hcd 0000:00:1d.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ. SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:1c:25:95:93:ec:00:0f:90:71:c5:c3:08:00 SRC=172.17.2.11 DST=10.59.201.31 LEN=52 TOS=0x00 PREC=0x00 TTL=61 ID=60847 DF PROTO=TCP SPT=80 DPT=34118 WINDOW=65535 RES=0x00 ACK FIN URGP=0 OPT (0101080A143B74F000029805) SFW2-OUT-ERROR IN= OUT=eth0 SRC=10.59.201.31 DST=172.17.2.11 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=46252 DF PROTO=TCP SPT=34118 DPT=80 WINDOW=900 RES=0x00 ACK FIN URGP=0 OPT (0101080A0003C2121435E7F6) SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:1c:25:95:93:ec:00:0f:90:71:c5:c3:08:00 SRC=172.17.2.11 DST=10.59.201.31 LEN=40 TOS=0x00 PREC=0x00 TTL=61 ID=15791 DF PROTO=TCP SPT=80 DPT=34118 WINDOW=65535 RES=0x00 ACK RST URGP=0 e1000e: eth0 NIC Link is Down usb 3-1: USB disconnect, address 3 usb 3-1: new high speed USB device using ehci_hcd and address 4 usb 3-1: New USB device found, idVendor=0421, idProduct=0094 usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 usb 3-1: Product: N85 usb 3-1: Manufacturer: Nokia usb 3-1: SerialNumber: 356376021064021 usb 3-1: configuration #1 chosen from 1 choice cdc_acm 3-1:1.1: ttyACM0: USB ACM device usb 3-1: bad CDC descriptors usb 3-1: bad CDC descriptors PPP generic driver version 2.4.2 PPP BSD Compression module registered PPP Deflate Compression module registered SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.24.97.201 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=29421 DF PROTO=TCP SPT=3489 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.24.97.201 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=30152 DF PROTO=TCP SPT=3489 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.24.97.201 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=31525 DF PROTO=TCP SPT=3489 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.47.238 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=57333 DF PROTO=TCP SPT=2885 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.47.238 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=57453 DF PROTO=TCP SPT=2885 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.134.212 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=19660 DF PROTO=TCP SPT=3361 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.134.212 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=19824 DF PROTO=TCP SPT=3361 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.134.212 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=19827 DF PROTO=TCP SPT=3443 DPT=139 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.134.212 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=19965 DF PROTO=TCP SPT=3443 DPT=139 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.25.115 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=59761 DF PROTO=TCP SPT=1454 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT IN=ppp0 OUT= MAC= SRC=172.25.25.115 DST=172.25.17.131 LEN=48 TOS=0x08 PREC=0x40 TTL=127 ID=61320 DF PROTO=TCP SPT=1454 DPT=445 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (0204055001010402) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=64 TOS=0x00 PREC=0x00 TTL=51 ID=34635 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567DCC5A000AA5B40101050AD102F221D102F765) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=64 TOS=0x00 PREC=0x00 TTL=51 ID=34636 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567DCC81000AA5B40101050AD102F221D102FCA9) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=64 TOS=0x00 PREC=0x00 TTL=51 ID=34637 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567DCD09000AA5B40101050AD102F221D10301ED) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=64 TOS=0x00 PREC=0x00 TTL=51 ID=34638 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567DCE6E000AA5B40101050AD102F221D1030731) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=64 TOS=0x00 PREC=0x00 TTL=51 ID=34639 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567DCEAD000AA5B40101050AD102F221D1030C75) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=72 TOS=0x00 PREC=0x00 TTL=51 ID=34664 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567E41C5000AC71801010512D102E799D102ECDDD102F221D10380BD) SFW2-INext-DROP-DEFLT-INV IN=ppp0 OUT= MAC= SRC=74.125.79.109 DST=172.25.17.131 LEN=72 TOS=0x00 PREC=0x00 TTL=51 ID=34665 DF PROTO=TCP SPT=587 DPT=44207 WINDOW=1002 RES=0x00 ACK URGP=0 OPT (0101080A567F0914000AED1C01010512D102E799D102ECDDD102F221D10380BD) usb 3-1: USB disconnect, address 4 e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:8748 freeing invalid memtype d0000000-e0000000 Xorg:3807 freeing invalid memtype d0000000-e0000000 Xorg:3807 freeing invalid memtype d0000000-e0000000 [drm:gm45_get_vblank_counter] *ERROR* trying to get vblank count for disabled pipe 0 set status page addr 0x071ab000 Xorg:10048 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:10048 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:10048 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:10061 freeing invalid memtype d0000000-e0000000 Xorg:10048 conflicting memory types d0000000-e0000000 write-combining<->uncached-minus reserve_memtype failed 0xd0000000-0xe0000000, track write-combining, req write-combining Xorg:10062 freeing invalid memtype d0000000-e0000000 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x10 CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 ISO 9660 Extensions: Microsoft Joliet Level 3 ISO 9660 Extensions: RRIP_1991A Syncing filesystems ... done. Freezing user space processes ... (elapsed 0.00 seconds) done. Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. PM: Shrinking memory... \b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\bdone (157853 pages freed) PM: Freed 631412 kbytes in 4.49 seconds (140.62 MB/s) Suspending console(s) (use no_console_suspend to debug) sd 0:0:0:0: [sda] Synchronizing SCSI cache ACPI handle has no context! iwlagn 0000:03:00.0: PCI INT A disabled ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ehci_hcd 0000:00:1d.7: PCI INT D disabled ehci_hcd 0000:00:1d.7: PME# disabled uhci_hcd 0000:00:1d.2: PCI INT C disabled uhci_hcd 0000:00:1d.1: PCI INT B disabled uhci_hcd 0000:00:1d.0: PCI INT A disabled HDA Intel 0000:00:1b.0: PCI INT B disabled ehci_hcd 0000:00:1a.7: PCI INT D disabled ehci_hcd 0000:00:1a.7: PME# disabled uhci_hcd 0000:00:1a.2: PCI INT C disabled uhci_hcd 0000:00:1a.1: PCI INT B disabled uhci_hcd 0000:00:1a.0: PCI INT A disabled e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PCI INT A disabled ACPI: Preparing to enter system sleep state S4 PM: Saving platform NVS memory Disabling non-boot CPUs ... CPU 1 is now offline SMP alternatives: switching to UP code CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching NULL sched-domain. CPU1 is down Extended CMOS year: 2000 PM: Creating hibernation image: PM: Need to copy 122243 pages x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. PM: Restoring platform NVS memory Extended CMOS year: 2000 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Enabling non-boot CPUs ... SMP alternatives: switching to SMP code Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=10108038) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 CPU0 attaching NULL sched-domain. Switched to high resolution mode on CPU 1 CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 CPU1 is up ACPI: Waking up from system sleep state S4 ACPI: EC: non-query interrupt received, switching to interrupt mode pci 0000:00:02.0: PME# disabled pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.1: PME# disabled pci 0000:00:03.0: PME# disabled e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: irq 29 for MSI/MSI-X uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.4: setting latency timer to 64 uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled pci 0000:00:1e.0: setting latency timer to 64 ahci 0000:00:1f.2: setting latency timer to 64 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: PME# disabled sd 0:0:0:0: [sda] Starting disk ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None 0000:00:19.0: eth0: 10/100 speed: disabling TSO uhci_hcd 0000:00:1d.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ. e1000e: eth0 NIC Link is Down usb 6-2: USB disconnect, address 2 iwlagn 0000:03:00.0: PCI INT A disabled Syncing filesystems ... done. Freezing user space processes ... (elapsed 0.00 seconds) done. Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. PM: Shrinking memory... \b-\bdone (0 pages freed) PM: Freed 0 kbytes in 0.04 seconds (0.00 MB/s) Suspending console(s) (use no_console_suspend to debug) sd 0:0:0:0: [sda] Synchronizing SCSI cache ACPI handle has no context! ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ehci_hcd 0000:00:1d.7: PCI INT D disabled ehci_hcd 0000:00:1d.7: PME# disabled uhci_hcd 0000:00:1d.2: PCI INT C disabled uhci_hcd 0000:00:1d.1: PCI INT B disabled uhci_hcd 0000:00:1d.0: PCI INT A disabled HDA Intel 0000:00:1b.0: PCI INT B disabled ehci_hcd 0000:00:1a.7: PCI INT D disabled ehci_hcd 0000:00:1a.7: PME# disabled uhci_hcd 0000:00:1a.2: PCI INT C disabled uhci_hcd 0000:00:1a.1: PCI INT B disabled uhci_hcd 0000:00:1a.0: PCI INT A disabled e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PME# enabled e1000e 0000:00:19.0: wake-up capability enabled by ACPI e1000e 0000:00:19.0: PCI INT A disabled ACPI: Preparing to enter system sleep state S4 PM: Saving platform NVS memory Disabling non-boot CPUs ... CPU 1 is now offline SMP alternatives: switching to UP code CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching NULL sched-domain. CPU1 is down Extended CMOS year: 2000 PM: Creating hibernation image: PM: Need to copy 199631 pages x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. PM: Restoring platform NVS memory Extended CMOS year: 2000 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Enabling non-boot CPUs ... SMP alternatives: switching to SMP code Booting processor 1 APIC 0x1 ip 0x6000 Initializing CPU#1 Calibrating delay using timer specific routine.. 5054.11 BogoMIPS (lpj=10108232) CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 6144K [ds] using Core 2/Atom configuration CPU: Physical Processor ID: 0 CPU: Processor Core ID: 1 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 CPU0 attaching NULL sched-domain. Switched to high resolution mode on CPU 1 CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 CPU1 is up ACPI: Waking up from system sleep state S4 Monitor-Mwait will be used to enter C-3 state ACPI: EC: non-query interrupt received, switching to interrupt mode pci 0000:00:02.0: PME# disabled pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: setting latency timer to 64 pci 0000:00:02.1: PME# disabled pci 0000:00:03.0: PME# disabled e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 e1000e 0000:00:19.0: setting latency timer to 64 e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: wake-up capability disabled by ACPI e1000e 0000:00:19.0: PME# disabled e1000e 0000:00:19.0: irq 29 for MSI/MSI-X uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: PME# disabled HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 HDA Intel 0000:00:1b.0: setting latency timer to 64 pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.3: setting latency timer to 64 pcieport-driver 0000:00:1c.4: setting latency timer to 64 uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: PME# disabled pci 0000:00:1e.0: setting latency timer to 64 ahci 0000:00:1f.2: setting latency timer to 64 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] pci 0000:15:00.2: PME# disabled pci 0000:15:00.3: PME# disabled pci 0000:15:00.4: PME# disabled pci 0000:15:00.5: PME# disabled sd 0:0:0:0: [sda] Starting disk ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out ata1.00: configured for UDMA/133 ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata1: irq_stat 0x00400040, connection status changed ata1.00: configured for UDMA/133 ata1: EH complete sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) sd 0:0:0:0: [sda] Write Protect is off sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded ata2.00: configured for UDMA/133 ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 ata2: irq_stat 0x40000001 ata2.00: configured for UDMA/133 ata2: EH complete pci 0000:00:02.0: power state changed by ACPI to D0 pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) pci 0000:00:02.0: setting latency timer to 64 Restarting tasks ... done. ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5540 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5540 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5540 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0ec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0c80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0c80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0c80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0ec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0ec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0ec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a140 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748a200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748abc0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748abc0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748abc0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=0 allowed=0 scsi_eh_1: flush finish cmd: f61b0740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748a080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a500 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c0c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488ce40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c240 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c6c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488c540 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488ca80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488ca80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488ca80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488ca80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488ca80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058600 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058480 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5deabc0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5c00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5c00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5c00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5c00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5e40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5240 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c600 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f49bca40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bca40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f49bca40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748ae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea980 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748aa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748a5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dead40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f49bce00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea2c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea500 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea500 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea500 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea500 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058900 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058d80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488cd80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058e40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058e40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5deae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5deae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5deae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5deae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0200 e1000e 0000:00:19.0: irq 29 for MSI/MSI-X e1000e 0000:00:19.0: irq 29 for MSI/MSI-X ADDRCONF(NETDEV_UP): eth0: link is not ready iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 Registered led device: iwl-phy0:radio Registered led device: iwl-phy0:assoc Registered led device: iwl-phy0:RX Registered led device: iwl-phy0:TX ADDRCONF(NETDEV_UP): wlan0: link is not ready wlan0: direct probe to AP 00:1a:70:64:c7:5b try 1 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0680 wlan0: direct probe to AP 00:1a:70:64:c7:5b try 2 ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x10 CPU0 attaching NULL sched-domain. CPU1 attaching NULL sched-domain. CPU0 attaching sched-domain: domain 0: span 0-1 level MC groups: 0 1 domain 1: span 0-1 level CPU groups: 0-1 CPU1 attaching sched-domain: domain 0: span 0-1 level MC groups: 1 0 domain 1: span 0-1 level CPU groups: 0-1 wlan0: direct probe to AP 00:1a:70:64:c7:5b try 3 wlan0: direct probe to AP 00:1a:70:64:c7:5b timed out ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488cb40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c900 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488ce40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488ce40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488ce40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488ce40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c480 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488c480 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c480 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c480 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f49bc2c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bc2c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f49bc2c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f49bc800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bc980 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f49bc680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f49bc440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bc200 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5900 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5840 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f49bc140 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bc140 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f49bc140 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5deaec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f49bcd40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f30580c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748aa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5deac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058240 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058cc0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488c180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f488c180 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f488c780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c600 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058e40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f488c300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f3058a80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058780 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f3058b40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5deae00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f3058f00 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0080 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea740 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b02c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b0380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0d40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f61b05c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f61b0440 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f61b0800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e59c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f48e5540 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e5b40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f48e5300 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a2c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748a680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748a680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f48e59c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748ac80 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: e748aec0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea140 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea380 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5deaa40 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea5c0 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea680 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 scsi_eh_1: flush finish cmd: f5dea800 ata2.00: XXX setting retry on qc0 ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata2.00: irq_stat 0x40000001 ata2.00: XXX terminating qc0 (SENSE), retries=0 XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=1 allowed=1 scsi_eh_1: flush finish cmd: f5dea800 ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-02 14:15 ` Niel Lambrechts @ 2009-04-04 4:54 ` Tejun Heo 2009-04-06 5:01 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-04 4:54 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel Hello, Neil. Niel Lambrechts wrote: >> Thanks for your help, I've done at least 5 hibernate cycles without the >> problem recurring, I'll keep at it for a while... :) Hmmm.. >> For the sake of being thorough, I'd like to mention some of the >> remaining issues/messages, but to be honest some of them were there >> before and may not be relevant to your efforts: >> >> 1) Can you perhaps confirm if the remaining ATA messages are harmless >> enough to ignore? >> >> dmesg: >> ata2: exception Emask 0x10 SAct 0x0 SErr 0x4050000 action 0x1e frozen >> ata2: irq_stat 0x00400040, connection status changed >> ata2: SError: { PHYRdyChg CommWake DevExch } >> Clocksource tsc unstable (delta = -412838835 ns) Yeah, that happens on some machines during resume. It doesn't on some machines (including mine) and dunno what's the difference yet. It's a bit annoying and probably adds a bit to resume time but libata handles things like this just fine, so no need to be alarmed too much. >> and in messages: >> Apr 2 12:31:44 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 >> SErr 0x0 action 0x9 t4 >> >> 2) The screen remains blank on resume, right until I both press a key >> _and_ touch the touchpad. Weird, but this happens in 2.6.28.9 as well, >> perhaps this is i915 related. Heh... yeah, black magic of display suspend/resume. Hopefully it will get better with KMS. > UPDATE: > > Just arrived back home, before suspending I enabled all the powertop > laptop mode/SATA link management etc and I removed a CD-ROM from the > CD drive so I'm not sure what could be responsible for this: > > ata2.00: XXX setting retry on qc0 > ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 > ata2.00: irq_stat 0x40000001 > ata2.00: XXX terminating qc0 (SENSE), retries=0 > XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=3 allowed=3 > scsi_eh_1: flush finish cmd: f5dea740 > ata2.00: XXX setting retry on qc0 > ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 > ata2.00: irq_stat 0x40000001 > ata2.00: XXX terminating qc0 (SENSE), retries=0 > XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=2 allowed=2 > .. loop .. > > I hope it's simply something like "drive not ready" debugging ouput, > since ata2 seems associated with the CD-Rom drive... :) > > This continued, until I again in powertop enabled SATA link management. That's probably hal polling for media presence. It uses TEST_UNIT_READY and if there's no media in the drive, it will raise CHECK_SENSE condition which is handled by the libata EH which is usually quiet about it as it's not an error but with the debugging patch, it got more whiny. If you're annoyed by it just put a media in the drive. Thanks. -- tejun ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-04 4:54 ` Tejun Heo @ 2009-04-06 5:01 ` Niel Lambrechts 2009-04-06 10:09 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-06 5:01 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel On 04/04/2009 06:54 AM, Tejun Heo wrote: > Hello, Neil. > > Niel Lambrechts wrote: > >>> Thanks for your help, I've done at least 5 hibernate cycles without the >>> problem recurring, I'll keep at it for a while... :) >>> > > Hmmm.. > Hi Tejun, I have tested your patch some more over the weekend as well as on 2.6.29.1, and suspend-to-disk and ram still works without a glitch for me apart from the extra debugging being active. Will the fix naturally make its way into the mainline kernel, or is there any extra debugging/testing I can help with? Regards, Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-06 5:01 ` Niel Lambrechts @ 2009-04-06 10:09 ` Tejun Heo 2009-04-06 18:23 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-06 10:09 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel Niel Lambrechts wrote: > On 04/04/2009 06:54 AM, Tejun Heo wrote: >> Hello, Neil. >> >> Niel Lambrechts wrote: >> >>>> Thanks for your help, I've done at least 5 hibernate cycles without the >>>> problem recurring, I'll keep at it for a while... :) >>>> >> Hmmm.. >> > Hi Tejun, > > I have tested your patch some more over the weekend as well as on > 2.6.29.1, and suspend-to-disk and ram still works without a glitch for > me apart from the extra debugging being active. > > Will the fix naturally make its way into the mainline kernel, or is > there any extra debugging/testing I can help with? Well, the problem is the debug patch doesn't actually do anything other than printing out messages. It could be that the problem is timing dependent (which is likely anyway). You still can reporduce the problem with the patch, right? Thanks. -- tejun ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-06 10:09 ` Tejun Heo @ 2009-04-06 18:23 ` Niel Lambrechts 2009-04-06 19:39 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-06 18:23 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel On 04/06/2009 12:09 PM, Tejun Heo wrote: > >> Will the fix naturally make its way into the mainline kernel, or is >> there any extra debugging/testing I can help with? >> > > Well, the problem is the debug patch doesn't actually do anything > other than printing out messages. It could be that the problem is > timing dependent (which is likely anyway). You still can reporduce > the problem with the patch, right? > Heh? You provided two patches, with the last one you said: > Strange. Maybe IO commands are getting through while the sdev is > still in quiesce state? Can you please repeat the test with the > attached patch? > With the latter, I have not encountered the original problem i.e. any severe EXT4 corruption again, not in 2.6.29 and not in 2.6.29.1. Do I also need to try the last patch without any debugging messages? cheers Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-06 18:23 ` Niel Lambrechts @ 2009-04-06 19:39 ` Tejun Heo 2009-04-06 21:26 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-06 19:39 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 1254 bytes --] Hello, Niel Lambrechts wrote: > On 04/06/2009 12:09 PM, Tejun Heo wrote: >>> Will the fix naturally make its way into the mainline kernel, or is >>> there any extra debugging/testing I can help with? >>> >> Well, the problem is the debug patch doesn't actually do anything >> other than printing out messages. It could be that the problem is >> timing dependent (which is likely anyway). You still can reporduce >> the problem with the patch, right? >> > Heh? You provided two patches, with the last one you said: Yeah, the second one actually only added printks to see whether that's the case. No behavior change. >> Strange. Maybe IO commands are getting through while the sdev is >> still in quiesce state? Can you please repeat the test with the >> attached patch? > > With the latter, I have not encountered the original problem i.e. any > severe EXT4 corruption again, not in 2.6.29 and not in 2.6.29.1. Eh... so, we're definitely seeing something which is dependent on timing. > Do I also need to try the last patch without any debugging messages? Then there will be nothing left. :-) Can you please try the attached patch? It's still only debug messages but lighter; hopefully, it won't mask the problem. Thanks. -- tejun [-- Attachment #2: libata-eh-debug-2.patch --] [-- Type: text/x-patch, Size: 4377 bytes --] diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 0183131..2782bad 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -1274,7 +1274,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, { struct ata_port *ap = link->ap; struct ata_eh_info *ehi = &link->eh_info; - struct ata_eh_context *ehc = &link->eh_context; + //struct ata_eh_context *ehc = &link->eh_context; unsigned long flags; spin_lock_irqsave(ap->lock, flags); @@ -1284,7 +1284,7 @@ void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, /* About to take EH action, set RECOVERED. Ignore actions on * slave links as master will do them again. */ - if (!(ehc->i.flags & ATA_EHI_QUIET) && link != ap->slave_link) + if (/*!(ehc->i.flags & ATA_EHI_QUIET) && */link != ap->slave_link) ap->pflags |= ATA_PFLAG_RECOVERED; spin_unlock_irqrestore(ap->lock, flags); @@ -2017,8 +2017,13 @@ static void ata_eh_link_autopsy(struct ata_link *link) /* determine whether the command is worth retrying */ if (!(qc->err_mask & AC_ERR_INVALID) && - ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) + ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) { + /*ata_dev_printk(qc->dev, KERN_INFO, + "XXX setting retry on qc%d\n", tag);*/ qc->flags |= ATA_QCFLAG_RETRY; + } else + /*ata_dev_printk(qc->dev, KERN_INFO, + "XXX no retry for qc%d\n", tag)*/; /* accumulate error info */ ehc->i.dev = qc->dev; @@ -2126,8 +2131,8 @@ static void ata_eh_link_report(struct ata_link *link) char tries_buf[6]; int tag, nr_failed = 0; - if (ehc->i.flags & ATA_EHI_QUIET) - return; + /*if (ehc->i.flags & ATA_EHI_QUIET) + return;*/ desc = NULL; if (ehc->i.desc[0] != '\0') @@ -2147,8 +2152,8 @@ static void ata_eh_link_report(struct ata_link *link) nr_failed++; } - if (!nr_failed && !ehc->i.err_mask) - return; + /*if (!nr_failed && !ehc->i.err_mask) + return;*/ frozen = ""; if (ap->pflags & ATA_PFLAG_FROZEN) @@ -3350,16 +3355,23 @@ void ata_eh_finish(struct ata_port *ap) * generate sense data in this function, * considering both err_mask and tf. */ - if (qc->flags & ATA_QCFLAG_RETRY) + if (qc->flags & ATA_QCFLAG_RETRY) { + /*ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d, retries=%d allowed=%d\n", + tag, qc->scsicmd->retries, qc->scsicmd->allowed);*/ ata_eh_qc_retry(qc); - else + } else { + /*ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d\n", tag);*/ ata_eh_qc_complete(qc); + } } else { if (qc->flags & ATA_QCFLAG_SENSE_VALID) { + /*ata_dev_printk(qc->dev, KERN_INFO, "XXX terminating qc%d (SENSE), retries=%d\n", + tag, qc->scsicmd->retries);*/ ata_eh_qc_complete(qc); } else { /* feed zero TF to sense generation */ memset(&qc->result_tf, 0, sizeof(qc->result_tf)); + /*ata_dev_printk(qc->dev, KERN_INFO, "XXX retrying qc%d (bogus SENSE)\n", tag);*/ ata_eh_qc_retry(qc); } } diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index 0c2c73b..608bacd 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -1569,13 +1569,16 @@ void scsi_eh_flush_done_q(struct list_head *done_q) list_for_each_entry_safe(scmd, next, done_q, eh_entry) { list_del_init(&scmd->eh_entry); + printk("XXX scsi_eh_flush_done_q: online=%d(%d) noretry=%d retries=%d allowed=%d\n", + scsi_device_online(scmd->device), scmd->device->sdev_state, + scsi_noretry_cmd(scmd), scmd->retries, scmd->allowed); if (scsi_device_online(scmd->device) && !scsi_noretry_cmd(scmd) && (++scmd->retries <= scmd->allowed)) { - SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush" + /*SCSI_LOG_ERROR_RECOVERY(3, */printk("%s: flush" " retry cmd: %p\n", current->comm, - scmd)); + scmd)/*)*/; scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY); } else { /* @@ -1585,9 +1588,9 @@ void scsi_eh_flush_done_q(struct list_head *done_q) */ if (!scmd->result) scmd->result |= (DRIVER_TIMEOUT << 24); - SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush finish" + /*SCSI_LOG_ERROR_RECOVERY(3,*/ printk("%s: flush finish" " cmd: %p\n", - current->comm, scmd)); + current->comm, scmd)/*)*/; scsi_finish_command(scmd); } } ^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-06 19:39 ` Tejun Heo @ 2009-04-06 21:26 ` Niel Lambrechts 2009-04-09 18:18 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-04-06 21:26 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel [-- Attachment #1: Type: text/plain, Size: 1610 bytes --] On 04/06/2009 09:39 PM, Tejun Heo wrote: > Hello, > > Niel Lambrechts wrote: > >> On 04/06/2009 12:09 PM, Tejun Heo wrote: >> >>>> Will the fix naturally make its way into the mainline kernel, or is >>>> there any extra debugging/testing I can help with? >>>> >>>> >>> Well, the problem is the debug patch doesn't actually do anything >>> other than printing out messages. It could be that the problem is >>> timing dependent (which is likely anyway). You still can reporduce >>> the problem with the patch, right? >>> >>> >> Heh? You provided two patches, with the last one you said: >> > > Yeah, the second one actually only added printks to see whether that's > the case. No behavior change. > > >>> Strange. Maybe IO commands are getting through while the sdev is >>> still in quiesce state? Can you please repeat the test with the >>> attached patch? >>> >> With the latter, I have not encountered the original problem i.e. any >> severe EXT4 corruption again, not in 2.6.29 and not in 2.6.29.1. >> > > Eh... so, we're definitely seeing something which is dependent on > timing. > > >> Do I also need to try the last patch without any debugging messages? >> > > Then there will be nothing left. :-) Can you please try the attached > patch? It's still only debug messages but lighter; hopefully, it > won't mask the problem. > Sorry, my bad - I assumed the 2nd patch actually made a functional difference... :) Here is the output on 2.6.29.1 with your new patch - still nothing serious happening, resume still seems okay! cheers Niel [-- Attachment #2: resume-t3.txt --] [-- Type: text/plain, Size: 14703 bytes --] Apr 6 23:12:40 linux-7vph kernel: Syncing filesystems ... done. Apr 6 23:12:40 linux-7vph kernel: Freezing user space processes ... (elapsed 0.00 seconds) done. Apr 6 23:12:40 linux-7vph kernel: Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. Apr 6 23:12:40 linux-7vph kernel: PM: Shrinking memory... done (64710 pages freed) Apr 6 23:12:40 linux-7vph kernel: PM: Freed 258840 kbytes in 2.57 seconds (100.71 MB/s) Apr 6 23:12:40 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) Apr 6 23:12:40 linux-7vph kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache Apr 6 23:12:40 linux-7vph kernel: ACPI handle has no context! Apr 6 23:12:40 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A disabled Apr 6 23:12:40 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 6 23:12:40 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 Apr 6 23:12:40 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D disabled Apr 6 23:12:40 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled Apr 6 23:12:41 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B disabled Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D disabled Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B disabled Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A disabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A disabled Apr 6 23:12:41 linux-7vph kernel: ACPI: Preparing to enter system sleep state S4 Apr 6 23:12:41 linux-7vph kernel: PM: Saving platform NVS memory Apr 6 23:12:41 linux-7vph kernel: Disabling non-boot CPUs ... Apr 6 23:12:41 linux-7vph kernel: CPU 1 is now offline Apr 6 23:12:41 linux-7vph kernel: SMP alternatives: switching to UP code Apr 6 23:12:41 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 6 23:12:41 linux-7vph kernel: CPU1 attaching NULL sched-domain. Apr 6 23:12:41 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 6 23:12:41 linux-7vph kernel: CPU1 is down Apr 6 23:12:41 linux-7vph kernel: Extended CMOS year: 2000 Apr 6 23:12:41 linux-7vph kernel: PM: Creating hibernation image: Apr 6 23:12:41 linux-7vph kernel: PM: Need to copy 124169 pages Apr 6 23:12:41 linux-7vph kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 Apr 6 23:12:41 linux-7vph kernel: Intel machine check architecture supported. Apr 6 23:12:41 linux-7vph kernel: Intel machine check reporting enabled on CPU#0. Apr 6 23:12:41 linux-7vph kernel: PM: Restoring platform NVS memory Apr 6 23:12:41 linux-7vph kernel: Extended CMOS year: 2000 Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) Apr 6 23:12:41 linux-7vph kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) Apr 6 23:12:41 linux-7vph kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) Apr 6 23:12:41 linux-7vph kernel: Enabling non-boot CPUs ... Apr 6 23:12:41 linux-7vph kernel: SMP alternatives: switching to SMP code Apr 6 23:12:41 linux-7vph kernel: Booting processor 1 APIC 0x1 ip 0x6000 Apr 6 23:12:41 linux-7vph kernel: Initializing CPU#1 Apr 6 23:12:41 linux-7vph kernel: Calibrating delay using timer specific routine.. 5054.09 BogoMIPS (lpj=10108190) Apr 6 23:12:41 linux-7vph kernel: CPU: L1 I cache: 32K, L1 D cache: 32K Apr 6 23:12:41 linux-7vph kernel: CPU: L2 cache: 6144K Apr 6 23:12:41 linux-7vph kernel: [ds] using Core 2/Atom configuration Apr 6 23:12:41 linux-7vph kernel: CPU: Physical Processor ID: 0 Apr 6 23:12:41 linux-7vph kernel: CPU: Processor Core ID: 1 Apr 6 23:12:41 linux-7vph kernel: Intel machine check architecture supported. Apr 6 23:12:41 linux-7vph kernel: Intel machine check reporting enabled on CPU#1. Apr 6 23:12:41 linux-7vph kernel: x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 Apr 6 23:12:41 linux-7vph kernel: CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 Apr 6 23:12:41 linux-7vph kernel: CPU0 attaching NULL sched-domain. Apr 6 23:12:41 linux-7vph kernel: Switched to high resolution mode on CPU 1 Apr 6 23:12:41 linux-7vph kernel: CPU0 attaching sched-domain: Apr 6 23:12:41 linux-7vph kernel: domain 0: span 0-1 level MC Apr 6 23:12:41 linux-7vph kernel: groups: 0 1 Apr 6 23:12:41 linux-7vph kernel: CPU1 attaching sched-domain: Apr 6 23:12:41 linux-7vph kernel: domain 0: span 0-1 level MC Apr 6 23:12:41 linux-7vph kernel: groups: 1 0 Apr 6 23:12:41 linux-7vph kernel: CPU1 is up Apr 6 23:12:41 linux-7vph kernel: ACPI: Waking up from system sleep state S4 Apr 6 23:12:41 linux-7vph kernel: ACPI: EC: non-query interrupt received, switching to interrupt mode Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.1: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:03.0: PME# disabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled Apr 6 23:12:41 linux-7vph kernel: e1000e 0000:00:19.0: irq 29 for MSI/MSI-X Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 6 23:12:41 linux-7vph kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: pcieport-driver 0000:00:1c.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: pcieport-driver 0000:00:1c.1: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: pcieport-driver 0000:00:1c.3: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: pcieport-driver 0000:00:1c.4: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 Apr 6 23:12:41 linux-7vph kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:1e.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ahci 0000:00:1f.2: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 6 23:12:41 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen Apr 6 23:12:41 linux-7vph kernel: iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 Apr 6 23:12:41 linux-7vph kernel: iwlagn 0000:03:00.0: irq 30 for MSI/MSI-X Apr 6 23:12:41 linux-7vph kernel: pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 Apr 6 23:12:41 linux-7vph kernel: Registered led device: iwl-phy0:radio Apr 6 23:12:41 linux-7vph kernel: Registered led device: iwl-phy0:assoc Apr 6 23:12:41 linux-7vph kernel: Registered led device: iwl-phy0:RX Apr 6 23:12:41 linux-7vph kernel: Registered led device: iwl-phy0:TX Apr 6 23:12:41 linux-7vph kernel: ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] Apr 6 23:12:41 linux-7vph kernel: pci 0000:15:00.2: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:15:00.3: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:15:00.4: PME# disabled Apr 6 23:12:41 linux-7vph kernel: pci 0000:15:00.5: PME# disabled Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Starting disk Apr 6 23:12:41 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 6 23:12:41 linux-7vph kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 6 23:12:41 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 6 23:12:41 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed Apr 6 23:12:41 linux-7vph kernel: ata1: hard resetting link Apr 6 23:12:41 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 6 23:12:41 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 Apr 6 23:12:41 linux-7vph kernel: ata2: irq_stat 0x40000001 Apr 6 23:12:41 linux-7vph kernel: ata2.00: configured for UDMA/133 Apr 6 23:12:41 linux-7vph kernel: ata2: EH complete Apr 6 23:12:41 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded Apr 6 23:12:41 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out Apr 6 23:12:41 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 6 23:12:41 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 t3 Apr 6 23:12:41 linux-7vph kernel: ata1.00: configured for UDMA/133 Apr 6 23:12:41 linux-7vph kernel: ata1: EH complete Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors: (200 GB/186 GiB) Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Write Protect is off Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 Apr 6 23:12:41 linux-7vph kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: power state changed by ACPI to D0 Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) Apr 6 23:12:41 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 Apr 6 23:12:41 linux-7vph kernel: Restarting tasks ... done. ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-06 21:26 ` Niel Lambrechts @ 2009-04-09 18:18 ` Tejun Heo 2009-05-23 9:17 ` Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Tejun Heo @ 2009-04-09 18:18 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel Hello, Niel Lambrechts wrote: > On 04/06/2009 09:39 PM, Tejun Heo wrote: > Sorry, my bad - I assumed the 2nd patch actually made a functional > difference... :) > > Here is the output on 2.6.29.1 with your new patch - still nothing > serious happening, resume still seems okay! Hmm... none of the debugging messages got triggered, so there should be no noticeable timing change. It seems like you're being lucky for the time being. Can you please keep testing and report back? Thanks. -- tejun ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume 2009-04-09 18:18 ` Tejun Heo @ 2009-05-23 9:17 ` Niel Lambrechts 2009-05-23 10:26 ` 2.6.29 regression: ATA bus errors on resume (output with debug patch) Niel Lambrechts 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-05-23 9:17 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel On 04/09/2009 08:18 PM, Tejun Heo wrote: > Hmm... none of the debugging messages got triggered, so there should > be no noticeable timing change. It seems like you're being lucky for > the time being. Can you please keep testing and report back? Hi Tejun, Just to keep you up informed - this issue is still happening, I've been testing the latest 2.6.30-git kernels the last couple of weeks and just checked my logs after having an unexpected fsck upon system boot - the freeze seems to trigger very infrequently though, since I use s2disk at least twice a day and the error only seems to have happened twice since May 2. I had a look at your 2.6.29 debug patch, it does "Hunk #6 succeeded at 3368" so it should still be good (I hope), I'll try and run with it for a while. The fsck output also seems a bit odd, on boot it displays a bunch of newlines and the partition name without a *real* message (the ^H being newlines): /dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part6: || 0.9% <progress bar skipped> ^H- 56.5% /dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part6: | ^H\ 56.7% /dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part6: | ^H| 57.1% /dev/disk/by-id/ata-HITACHI_HTS722020K9SA00_FDE_080726DP0470DTGMUNPC-part6: | Thanks, Niel linux-7vph:~ # uname -r 2.6.30-rc6-pae linux-7vph:~# rpm -qf `which fsck` e2fsprogs-1.41.4-2.1 linux-7vph:~# lspci -vvv|grep -i sata 00:1f.2 SATA controller: Intel Corporation ICH9M/M-E SATA AHCI Controller (rev 03) (prog-if 01 [AHCI 1.0]) /var/log/warn: <snip> May 22 09:28:55 linux-7vph kernel: Syncing filesystems ... done. May 22 09:28:55 linux-7vph kernel: Freezing user space processes ... (elapsed 0.00 seconds) done. May 22 09:28:55 linux-7vph kernel: Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. May 22 09:28:55 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) May 22 09:28:57 linux-7vph kernel: Disabling non-boot CPUs ... May 22 09:28:57 linux-7vph kernel: CPU1 is down May 22 09:28:57 linux-7vph kernel: Enabling non-boot CPUs ... May 22 09:28:57 linux-7vph kernel: microcode: failed to init CPU1 May 22 09:28:57 linux-7vph kernel: CPU1 is up May 22 09:28:57 linux-7vph kernel: e1000e 0000:00:19.0: pci_enable_pcie_error_reporting failed 0xfffffffb May 22 09:28:58 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 22 09:28:58 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed May 22 09:28:58 linux-7vph kernel: Restarting tasks ... done. May 22 09:28:58 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 22 09:28:58 linux-7vph kernel: ata2: irq_stat 0x40000001 May 22 09:28:58 linux-7vph kernel: ata1.00: exception Emask 0x10 SAct 0x1ff SErr 0x50000 action 0xe frozen May 22 09:28:58 linux-7vph kernel: ata1.00: irq_stat 0x00400008, PHY RDY changed May 22 09:28:58 linux-7vph kernel: ata1: SError: { PHYRdyChg CommWake } May 22 09:28:58 linux-7vph kernel: ata1.00: cmd 60/40:00:91:ca:b5/00:00:09:00:00/40 tag 0 ncq 32768 in May 22 09:28:58 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:08:91:d4:b5/00:00:09:00:00/40 tag 1 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:10:51:d2:b5/00:00:09:00:00/40 tag 2 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:18:11:cd:b5/00:00:09:00:00/40 tag 3 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:20:11:0a:b7/00:00:09:00:00/40 tag 4 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:28:d1:2b:b6/00:00:09:00:00/40 tag 5 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/40:30:91:c3:b5/00:00:09:00:00/40 tag 6 ncq 32768 in May 22 09:28:59 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:28:59 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:28:59 linux-7vph kernel: ata1.00: cmd 60/08:38:5f:88:2e/00:00:0b:00:00/40 tag 7 ncq 4096 in May 22 09:29:01 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:29:01 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:29:02 linux-7vph kernel: ata1.00: cmd 60/e8:40:5f:8e:2b/00:00:0b:00:00/40 tag 8 ncq 118784 in May 22 09:29:02 linux-7vph kernel: res 50/00:e8:5f:8e:2b/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 22 09:29:02 linux-7vph kernel: ata1.00: status: { DRDY } May 22 09:29:03 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 22 09:29:03 linux-7vph kernel: end_request: I/O error, dev sda, sector 187403871 May 22 09:29:03 linux-7vph kernel: EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=641187, block=2556122 May 22 09:29:03 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure <snip> and an older one, could have been 2.6.30-rc5, I'm not sure: May 14 07:47:17 linux-7vph kernel: Syncing filesystems ... done. May 14 07:47:18 linux-7vph kernel: Freezing user space processes ... (elapsed 0.00 seconds) done. May 14 07:47:18 linux-7vph kernel: Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. May 14 07:47:18 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) May 14 07:47:18 linux-7vph kernel: Disabling non-boot CPUs ... May 14 07:47:18 linux-7vph kernel: CPU1 is down May 14 07:47:18 linux-7vph kernel: Enabling non-boot CPUs ... May 14 07:47:18 linux-7vph kernel: microcode: failed to init CPU1 May 14 07:47:18 linux-7vph kernel: CPU1 is up May 14 07:47:19 linux-7vph kernel: e1000e 0000:00:19.0: pci_enable_pcie_error_reporting failed 0xfffffffb May 14 07:47:19 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 14 07:47:19 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed May 14 07:47:19 linux-7vph kernel: mac80211-phy0: failed to set key (0, 00:1d:92:1d:1e:8e) to hardware (-22) May 14 07:47:19 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 14 07:47:19 linux-7vph kernel: ata2: irq_stat 0x40000001 May 14 07:47:19 linux-7vph kernel: Restarting tasks ... done. May 14 07:47:19 linux-7vph kernel: ata1.00: exception Emask 0x10 SAct 0x3fffff SErr 0x50000 action 0xe frozen May 14 07:47:19 linux-7vph kernel: ata1.00: irq_stat 0x00400008, PHY RDY changed May 14 07:47:19 linux-7vph kernel: ata1: SError: { PHYRdyChg CommWake } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:00:17:70:14/00:00:0d:00:00/40 tag 0 ncq 4096 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:08:11:8e:b5/00:00:09:00:00/40 tag 1 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:10:91:a4:b5/00:00:09:00:00/40 tag 2 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:18:5f:08:c8/00:00:0c:00:00/40 tag 3 ncq 4096 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:20:6f:88:6f/01:00:0e:00:00/40 tag 4 ncq 135168 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:28:9f:98:6d/00:00:0e:00:00/40 tag 5 ncq 4096 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:30:11:91:b5/00:00:09:00:00/40 tag 6 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:38:91:9d:b5/00:00:09:00:00/40 tag 7 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:40:51:7f:b5/00:00:09:00:00/40 tag 8 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/40:48:91:7d:b5/00:00:09:00:00/40 tag 9 ncq 32768 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/a8:50:5f:89:67/00:00:0e:00:00/40 tag 10 ncq 86016 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:58:0f:8a:67/00:00:0e:00:00/40 tag 11 ncq 4096 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/b0:60:5f:8e:2b/00:00:0b:00:00/40 tag 12 ncq 90112 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/18:68:17:8f:2b/00:00:0b:00:00/40 tag 13 ncq 12288 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:19 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:19 linux-7vph kernel: ata1.00: cmd 60/08:70:0f:8f:2b/00:00:0b:00:00/40 tag 14 ncq 4096 in May 14 07:47:19 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/18:78:2f:8f:2b/00:00:0b:00:00/40 tag 15 ncq 12288 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/08:80:07:8a:67/00:00:0e:00:00/40 tag 16 ncq 4096 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/50:88:17:8a:67/00:00:0e:00:00/40 tag 17 ncq 40960 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/58:90:6f:06:44/00:00:0c:00:00/40 tag 18 ncq 45056 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/08:98:d7:06:44/00:00:0c:00:00/40 tag 19 ncq 4096 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/18:a0:17:07:44/00:00:0c:00:00/40 tag 20 ncq 12288 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: ata1.00: cmd 60/08:a8:ef:4a:39/00:00:0b:00:00/40 tag 21 ncq 4096 in May 14 07:47:20 linux-7vph kernel: res 50/00:08:ef:4a:39/00:00:0b:00:00/40 Emask 0x10 (ATA bus error) May 14 07:47:20 linux-7vph kernel: ata1.00: status: { DRDY } May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 242190447 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666399 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666575 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 187403871 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 187404055 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 187404079 May 14 07:47:20 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 14 07:47:20 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666583 May 14 07:47:20 linux-7vph kernel: EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=2346519, block=9404418 May 14 07:47:20 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume (output with debug patch) 2009-05-23 9:17 ` Niel Lambrechts @ 2009-05-23 10:26 ` Niel Lambrechts 2009-05-25 0:32 ` Tejun Heo 0 siblings, 1 reply; 20+ messages in thread From: Niel Lambrechts @ 2009-05-23 10:26 UTC (permalink / raw) To: Tejun Heo; +Cc: linux.kernel On 05/23/2009 11:17 AM, Niel Lambrechts wrote: > On 04/09/2009 08:18 PM, Tejun Heo wrote: >> Hmm... none of the debugging messages got triggered, so there should >> be no noticeable timing change. It seems like you're being lucky for >> the time being. Can you please keep testing and report back? > > Hi Tejun, > > Just to keep you up informed - this issue is still happening, I've > been testing the latest 2.6.30-git kernels the last couple of weeks > and just checked my logs after having an unexpected fsck upon system > boot - the freeze seems to trigger very infrequently though, since I > use s2disk at least twice a day and the error only seems to have > happened twice since May 2. > > I had a look at your 2.6.29 debug patch, it does "Hunk #6 succeeded at > 3368" so it should still be good (I hope), I'll try and run with it > for a while. Hi Tejun Bug triggered with your patch! I played audio while suspending to try and increase activity (I also removed a CD on boot), and the filesystem came up dirty! This was on attempt nr. 3 or 4. Here is the /var/log/messages output - i hope this is sufficient to trace down the cause: May 23 12:15:08 linux-7vph kernel: PM: Shrinking memory... done (98443 pages freed) May 23 12:15:07 linux-7vph pulseaudio[3781]: alsa-util.c: period_time : 185759 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: tstamp_mode : ENABLE May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: period_step : 1 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: avail_min : 15503 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: period_event : 0 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: start_threshold : -1 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: stop_threshold : 1073741824 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: silence_threshold: 0 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: silence_size : 0 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: boundary : 1073741824 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: Slave: Hardware PCM card 0 'HDA Intel' device 0 subdevice 0 May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: Its setup is: May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: stream : PLAYBACK May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: access : MMAP_INTERLEAVED May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: format : S16_LE May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: subformat : STD May 23 12:15:08 linux-7vph kernel: PM: Freed 393772 kbytes in 3.23 seconds (121.91 MB/s) May 23 12:15:09 linux-7vph kernel: Suspending console(s) (use no_console_suspend to debug) May 23 12:15:09 linux-7vph kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache May 23 12:15:09 linux-7vph kernel: ACPI handle has no context! May 23 12:15:09 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 May 23 12:15:09 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 May 23 12:15:09 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D disabled May 23 12:15:09 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled May 23 12:15:09 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled May 23 12:15:09 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled May 23 12:15:09 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled May 23 12:15:09 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B disabled May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D disabled May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C disabled May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B disabled May 23 12:15:08 linux-7vph pulseaudio[3781]: alsa-util.c: channels : 2 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: rate : 44100 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: exact rate : 44100 (44100/1) May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A disabled May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: msbits : 16 May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A disabled May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: buffer_size : 16384 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: period_size : 8192 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: period_time : 185759 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: tstamp_mode : ENABLE May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: period_step : 1 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: avail_min : 15503 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: period_event : 0 May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: PME# enabled May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: start_threshold : -1 May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability enabled by ACPI May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: stop_threshold : 1073741824 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: silence_threshold: 0 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: silence_size : 0 May 23 12:15:10 linux-7vph kernel: ACPI: Preparing to enter system sleep state S4 May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-util.c: boundary : 1073741824 May 23 12:15:10 linux-7vph kernel: PM: Saving platform NVS memory May 23 12:15:10 linux-7vph kernel: Disabling non-boot CPUs ... May 23 12:15:10 linux-7vph kernel: CPU 1 is now offline May 23 12:15:10 linux-7vph kernel: SMP alternatives: switching to UP code May 23 12:15:10 linux-7vph pulseaudio[3781]: alsa-sink.c: Increasing wakeup watermark to 40.00 ms May 23 12:15:10 linux-7vph kernel: CPU0 attaching NULL sched-domain. May 23 12:15:10 linux-7vph kernel: CPU1 attaching NULL sched-domain. May 23 12:15:10 linux-7vph kernel: CPU0 attaching NULL sched-domain. May 23 12:15:10 linux-7vph kernel: CPU1 is down May 23 12:15:10 linux-7vph kernel: Extended CMOS year: 2000 May 23 12:15:10 linux-7vph kernel: PM: Creating hibernation image: May 23 12:15:10 linux-7vph kernel: PM: Need to copy 124750 pages May 23 12:15:10 linux-7vph kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 May 23 12:15:10 linux-7vph kernel: Intel machine check architecture supported. May 23 12:15:10 linux-7vph kernel: Intel machine check reporting enabled on CPU#0. May 23 12:15:10 linux-7vph kernel: PM: Restoring platform NVS memory May 23 12:15:10 linux-7vph kernel: Extended CMOS year: 2000 May 23 12:15:10 linux-7vph kernel: Enabling non-boot CPUs ... May 23 12:15:10 linux-7vph kernel: SMP alternatives: switching to SMP code May 23 12:15:10 linux-7vph kernel: Booting processor 1 APIC 0x1 ip 0x6000 May 23 12:15:10 linux-7vph kernel: Initializing CPU#1 May 23 12:15:10 linux-7vph kernel: Calibrating delay using timer specific routine.. 5054.05 BogoMIPS (lpj=10108117) May 23 12:15:10 linux-7vph kernel: CPU: L1 I cache: 32K, L1 D cache: 32K May 23 12:15:10 linux-7vph kernel: CPU: L2 cache: 6144K May 23 12:15:10 linux-7vph kernel: CPU: Physical Processor ID: 0 May 23 12:15:10 linux-7vph kernel: CPU: Processor Core ID: 1 May 23 12:15:10 linux-7vph kernel: Intel machine check architecture supported. May 23 12:15:10 linux-7vph kernel: Intel machine check reporting enabled on CPU#1. May 23 12:15:10 linux-7vph kernel: x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106 May 23 12:15:10 linux-7vph kernel: CPU1: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz stepping 06 May 23 12:15:10 linux-7vph kernel: CPU0 attaching NULL sched-domain. May 23 12:15:10 linux-7vph kernel: Switched to high resolution mode on CPU 1 May 23 12:15:10 linux-7vph kernel: CPU0 attaching sched-domain: May 23 12:15:10 linux-7vph kernel: domain 0: span 0-1 level MC May 23 12:15:10 linux-7vph kernel: groups: 0 1 May 23 12:15:10 linux-7vph kernel: domain 1: span 0-1 level CPU May 23 12:15:10 linux-7vph kernel: groups: 0-1 (__cpu_power = 2048) May 23 12:15:10 linux-7vph kernel: CPU1 attaching sched-domain: May 23 12:15:10 linux-7vph kernel: domain 0: span 0-1 level MC May 23 12:15:10 linux-7vph kernel: groups: 1 0 May 23 12:15:10 linux-7vph kernel: domain 1: span 0-1 level CPU May 23 12:15:10 linux-7vph kernel: groups: 0-1 (__cpu_power = 2048) May 23 12:15:10 linux-7vph kernel: microcode: failed to init CPU1 May 23 12:15:10 linux-7vph kernel: CPU1 is up May 23 12:15:10 linux-7vph kernel: ACPI: Waking up from system sleep state S4 May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900403) May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.0: power state changed by ACPI to D0 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.2: power state changed by ACPI to D0 May 23 12:15:10 linux-7vph kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100102) May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 May 23 12:15:10 linux-7vph kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00403, writing 0x2b00407) May 23 12:15:10 linux-7vph kernel: iwlagn 0000:03:00.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100506) May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.0: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.1: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:00:03.0: PME# disabled May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: pci_enable_pcie_error_reporting failed 0xfffffffb May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: PME# disabled May 23 12:15:10 linux-7vph kernel: e1000e 0000:00:19.0: irq 29 for MSI/MSI-X May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.1: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1a.2: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1a.7: PME# disabled May 23 12:15:10 linux-7vph kernel: HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17 May 23 12:15:10 linux-7vph kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 May 23 12:15:10 linux-7vph kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ehci_hcd 0000:00:1d.7: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:00:1e.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ahci 0000:00:1f.2: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen May 23 12:15:10 linux-7vph kernel: ata2: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x16 frozen May 23 12:15:10 linux-7vph kernel: pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 May 23 12:15:10 linux-7vph kernel: ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[17] MMIO=[f4801000-f48017ff] Max Packet=[2048] IR/IT contexts=[4/4] May 23 12:15:10 linux-7vph kernel: pci 0000:15:00.2: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:15:00.3: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:15:00.4: PME# disabled May 23 12:15:10 linux-7vph kernel: pci 0000:15:00.5: PME# disabled May 23 12:15:10 linux-7vph kernel: sd 0:0:0:0: [sda] Starting disk May 23 12:15:10 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) May 23 12:15:10 linux-7vph kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out May 23 12:15:10 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out May 23 12:15:10 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata1.00: configured for UDMA/133 May 23 12:15:10 linux-7vph kernel: ata1: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 23 12:15:10 linux-7vph kernel: ata1: irq_stat 0x00400040, connection status changed May 23 12:15:10 linux-7vph kernel: ata1.00: configured for UDMA/133 May 23 12:15:10 linux-7vph kernel: ata1: EH complete May 23 12:15:10 linux-7vph kernel: ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata2.00: ACPI cmd e3/00:02:00:00:00:a0 succeeded May 23 12:15:10 linux-7vph kernel: ata2.00: configured for UDMA/133 May 23 12:15:10 linux-7vph kernel: ata2: exception Emask 0x10 SAct 0x0 SErr 0x0 action 0x9 t4 May 23 12:15:10 linux-7vph kernel: ata2: irq_stat 0x40000001 May 23 12:15:10 linux-7vph kernel: ata2.00: configured for UDMA/133 May 23 12:15:10 linux-7vph kernel: ata2: EH complete May 23 12:15:10 linux-7vph kernel: Registered led device: iwl-phy0::radio May 23 12:15:10 linux-7vph kernel: Registered led device: iwl-phy0::assoc May 23 12:15:10 linux-7vph kernel: Registered led device: iwl-phy0::RX May 23 12:15:10 linux-7vph kernel: Registered led device: iwl-phy0::TX May 23 12:15:10 linux-7vph kernel: mac80211-phy0: failed to set key (0, 00:1d:92:1d:1e:8e) to hardware (-22) May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900407, writing 0x900403) May 23 12:15:10 linux-7vph kernel: pci 0000:00:02.0: setting latency timer to 64 May 23 12:15:10 linux-7vph kernel: Restarting tasks ... <3>ata1.00: exception Emask 0x10 SAct 0x1f SErr 0x50000 action 0xe frozen May 23 12:15:10 linux-7vph kernel: ata1.00: irq_stat 0x00400008, PHY RDY changed May 23 12:15:10 linux-7vph kernel: ata1: SError: { PHYRdyChg CommWake } May 23 12:15:10 linux-7vph kernel: ata1.00: cmd 60/08:00:5f:89:67/01:00:0e:00:00/40 tag 0 ncq 135168 in May 23 12:15:10 linux-7vph kernel: res 50/00:08:5f:08:c8/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) May 23 12:15:10 linux-7vph kernel: ata1.00: status: { DRDY } May 23 12:15:10 linux-7vph kernel: ata1.00: cmd 60/08:08:6f:88:6f/01:00:0e:00:00/40 tag 1 ncq 135168 in May 23 12:15:10 linux-7vph kernel: res 50/00:08:5f:08:c8/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) May 23 12:15:10 linux-7vph kernel: ata1.00: status: { DRDY } May 23 12:15:10 linux-7vph kernel: ata1.00: cmd 60/08:10:5f:08:c8/00:00:0c:00:00/40 tag 2 ncq 4096 in May 23 12:15:10 linux-7vph kernel: res 50/00:08:5f:08:c8/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) May 23 12:15:10 linux-7vph kernel: ata1.00: status: { DRDY } May 23 12:15:10 linux-7vph kernel: ata1.00: cmd 60/08:18:9f:98:6d/00:00:0e:00:00/40 tag 3 ncq 4096 in May 23 12:15:10 linux-7vph kernel: res 50/00:08:5f:08:c8/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) May 23 12:15:11 linux-7vph kernel: ata1.00: status: { DRDY } May 23 12:15:11 linux-7vph kernel: ata1.00: cmd 60/e8:20:5f:8e:2b/00:00:0b:00:00/40 tag 4 ncq 118784 in May 23 12:15:11 linux-7vph kernel: res 50/00:08:5f:08:c8/00:00:0c:00:00/40 Emask 0x10 (ATA bus error) May 23 12:15:11 linux-7vph kernel: ata1.00: status: { DRDY } May 23 12:15:11 linux-7vph kernel: ata1: hard resetting link May 23 12:15:11 linux-7vph kernel: done. May 23 12:15:11 linux-7vph kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 succeeded May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/5f:00:00:00:00:a0 succeeded May 23 12:15:11 linux-7vph kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 filtered out May 23 12:15:11 linux-7vph kernel: ata1.00: configured for UDMA/133 May 23 12:15:11 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 t4 May 23 12:15:11 linux-7vph kernel: ata1.00: configured for UDMA/133 May 23 12:15:11 linux-7vph kernel: XXX scsi_eh_flush_done_q: online=1(2) noretry=2 retries=0 allowed=5 May 23 12:15:11 linux-7vph kernel: scsi_eh_0: flush finish cmd: f6838ec0 May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Sense Key : Aborted Command [current] [descriptor] May 23 12:15:11 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 23 12:15:11 linux-7vph kernel: 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00 May 23 12:15:11 linux-7vph kernel: 0c c8 08 5f May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Add. Sense: No additional sense information May 23 12:15:11 linux-7vph kernel: end_request: I/O error, dev sda, sector 241666399 May 23 12:15:11 linux-7vph kernel: XXX scsi_eh_flush_done_q: online=1(2) noretry=2 retries=0 allowed=5 May 23 12:15:11 linux-7vph kernel: scsi_eh_0: flush finish cmd: f6838680 May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Sense Key : Aborted Command <2>EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=2330983, block=9338933 May 23 12:15:11 linux-7vph kernel: [current] [descriptor] May 23 12:15:11 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 23 12:15:11 linux-7vph kernel: 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00 May 23 12:15:11 linux-7vph kernel: 0c c8 08 5f May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Add. Sense: No additional sense information May 23 12:15:11 linux-7vph kernel: end_request: I/O error, dev sda, sector 242190447 May 23 12:15:11 linux-7vph kernel: EXT4-fs error (device sda6): __ext4_get_inode_loc: XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=0 allowed=5 May 23 12:15:11 linux-7vph kernel: unable to read inode block - inode=2346524, block=9404418 May 23 12:15:11 linux-7vph kernel: scsi_eh_0: flush retry cmd: f6838800 May 23 12:15:11 linux-7vph kernel: XXX scsi_eh_flush_done_q: online=1(2) noretry=0 retries=0 allowed=5 May 23 12:15:11 linux-7vph kernel: scsi_eh_0: flush retry cmd: f403de00 May 23 12:15:11 linux-7vph kernel: XXX scsi_eh_flush_done_q: online=1(2) noretry=2 retries=0 allowed=5 May 23 12:15:11 linux-7vph kernel: scsi_eh_0: flush finish cmd: f403d200 May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Sense Key : Aborted Command [current] [descriptor] May 23 12:15:11 linux-7vph kernel: Descriptor sense data with sense descriptors (in hex): May 23 12:15:11 linux-7vph kernel: 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00 May 23 12:15:11 linux-7vph kernel: 0c c8 08 5f May 23 12:15:11 linux-7vph kernel: sd 0:0:0:0: [sda] Add. Sense: No additional sense information May 23 12:15:11 linux-7vph kernel: end_request: I/O error, dev sda, sector 187403871 May 23 12:15:11 linux-7vph kernel: ata1: EH complete May 23 12:15:11 linux-7vph kernel: EXT4-fs error (device sda6): __ext4_get_inode_loc: unable to read inode block - inode=641187, block=2556122 May 23 12:15:11 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure May 23 12:15:11 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure May 23 12:15:11 linux-7vph kernel: EXT4-fs error (device sda6) in ext4_reserve_inode_write: IO failure May 23 12:16:50 linux-7vph kernel: ata1: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x10 May 23 12:16:50 linux-7vph kernel: CPU0 attaching NULL sched-domain. May 23 12:16:50 linux-7vph kernel: CPU1 attaching NULL sched-domain. May 23 12:16:50 linux-7vph kernel: CPU0 attaching sched-domain: May 23 12:16:50 linux-7vph kernel: domain 0: span 0-1 level MC May 23 12:16:50 linux-7vph kernel: groups: 0 1 May 23 12:16:50 linux-7vph kernel: domain 1: span 0-1 level CPU May 23 12:16:50 linux-7vph kernel: groups: 0-1 (__cpu_power = 2048) May 23 12:16:50 linux-7vph kernel: CPU1 attaching sched-domain: May 23 12:16:50 linux-7vph kernel: domain 0: span 0-1 level MC May 23 12:16:50 linux-7vph kernel: groups: 1 0 May 23 12:16:50 linux-7vph kernel: domain 1: span 0-1 level CPU May 23 12:16:50 linux-7vph kernel: groups: 0-1 (__cpu_power = 2048) Regards, Niel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: 2.6.29 regression: ATA bus errors on resume (output with debug patch) 2009-05-23 10:26 ` 2.6.29 regression: ATA bus errors on resume (output with debug patch) Niel Lambrechts @ 2009-05-25 0:32 ` Tejun Heo 0 siblings, 0 replies; 20+ messages in thread From: Tejun Heo @ 2009-05-25 0:32 UTC (permalink / raw) To: Niel Lambrechts; +Cc: linux.kernel, Theodore Tso Hello, Niel Lambrechts wrote: > Bug triggered with your patch! I played audio while suspending to try > and increase activity (I also removed a CD on boot), and the filesystem > came up dirty! This was on attempt nr. 3 or 4. Great. Here's the problem. May 23 12:15:11 linux-7vph kernel: XXX scsi_eh_flush_done_q: online=1(2) noretry=2 retries=0 allowed=5 scsi_noretry_cmd() is returning non-zero indicating that the request shouldn't be retried and failed immediagely. Looks like the return value 2 is from blk_failfast_dev() which tests REQ_FAILFAST_DEV. It's most likely to be set in init_request_from_bio() while translating bio flags. cc'ing Theodore Tso. Hello, Neil is reporting ext4 checking out after resuming. http://thread.gmane.org/gmane.linux.kernel/814466/focus=817937 The origin of the problem is ATA device triggering a PHY event after resume sequence is complete. I still don't know why this happens but it does on certain machines. This in itself shouldn't be a big problem as the device works fine after one more pass of ATA EH and the in-flight requests would be retried. However, for some reason, the aborted commands seem to have REQ_FAILFAST_DEV set thus failing immediately which, in turn, triggers ext4 errors. Does anything ring a bell? Thanks. -- tejun ^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2009-05-25 0:32 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <ckpL0-3TE-3@gated-at.bofh.it>
[not found] ` <ckpL0-3TE-5@gated-at.bofh.it>
[not found] ` <ckpL0-3TE-7@gated-at.bofh.it>
[not found] ` <ckpL0-3TE-9@gated-at.bofh.it>
[not found] ` <ckpL0-3TE-11@gated-at.bofh.it>
[not found] ` <ckpL0-3TE-1@gated-at.bofh.it>
[not found] ` <cllvN-2Gf-1@gated-at.bofh.it>
2009-03-30 14:30 ` 2.6.29 regression: ATA bus errors on resume Niel Lambrechts
2009-03-30 14:40 ` Jeff Garzik
2009-04-01 19:48 ` Niel Lambrechts
2009-04-03 20:09 ` Jeff Garzik
2009-04-03 20:54 ` Niel Lambrechts
2009-04-02 1:50 ` Tejun Heo
2009-04-02 6:20 ` Niel Lambrechts
2009-04-02 6:52 ` Tejun Heo
2009-04-02 11:03 ` Niel Lambrechts
2009-04-02 14:15 ` Niel Lambrechts
2009-04-04 4:54 ` Tejun Heo
2009-04-06 5:01 ` Niel Lambrechts
2009-04-06 10:09 ` Tejun Heo
2009-04-06 18:23 ` Niel Lambrechts
2009-04-06 19:39 ` Tejun Heo
2009-04-06 21:26 ` Niel Lambrechts
2009-04-09 18:18 ` Tejun Heo
2009-05-23 9:17 ` Niel Lambrechts
2009-05-23 10:26 ` 2.6.29 regression: ATA bus errors on resume (output with debug patch) Niel Lambrechts
2009-05-25 0:32 ` Tejun Heo
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).