linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
@ 2009-10-03  2:52 bugzilla-daemon
  2009-10-10  1:07 ` [Bug 14310] " bugzilla-daemon
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-03  2:52 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310

           Summary: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
           Product: IO/Storage
           Version: 2.5
    Kernel Version: 2.6.31
          Platform: All
        OS/Version: Linux
              Tree: Mainline
            Status: NEW
          Severity: blocking
          Priority: P1
         Component: IDE
        AssignedTo: io_ide@kernel-bugs.osdl.org
        ReportedBy: David@Fries.net
        Regression: Yes


I just did a git bisection from 2.6.30 to 2.6.31 because 2.6.31 will
not boot on this system.  d.stussy@yahoo.com's post September 12th
looks the same, different CPU but both have sis5513 IDE chips.  His
would normally init the ethernet chip next, mine would do PS/2 next,
both hang right after the Uniform CD-ROM message.

This was bisected down to chaging PIO mode 0 for probing.  What
problem was that patch trying to solve?  Reverting just that patch at
the top of 2.6.31 tree works.  I can test patches.

Uniform Multi-Platform E-IDE driver
sis5513 0000:00:02.5: SiS635 ATA 100 (2nd gen) controller
sis5513 0000:00:02.5: IDE controller (0x1039:0x5513 rev 0xd0)
sis5513 0000:00:02.5: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0xff00-0xff07
    ide1: BM-DMA at 0xff08-0xff0f
Probing IDE interface ide0...
Switched to high resolution mode on CPU 0
hda: ST3250823A, ATA DISK drive
hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hda: UDMA/100 mode selected
Probing IDE interface ide1...
hdc: _NEC DVD_RW ND-2500A, ATAPI CD/DVD-ROM drive
hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hdc: UDMA/33 mode selected
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
ide_generic: please use "probe_mask=0x3f" module parameter for probing all
legacy ISA IDE ports
ide-gd driver 1.18
hda: max request size: 512KiB
hda: 488397168 sectors (250059 MB) w/8192KiB Cache, CHS=30401/255/63
hda: cache flushes supported
 hda: hda1 hda2 hda3
ide-cd driver 5.00
ide-cd: hdc: ATAPI 40X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache
Uniform CD-ROM driver Revision: 3.20
<hang>

commit 6029336426a2b43e4bc6f4a84be8789a047d139e
Author: Joao Ramos <joao.ramos@inov.pt>
Date:   Sun May 17 17:22:54 2009 +0200

    ide: try to use PIO Mode 0 during probe if possible

    Initially set PIO Mode 0 for all host drivers that have a 'set_pio_mode'
    method before the IDE core figures out the most suited PIO mode for the
    attached device.

    Signed-off-by: Joao Ramos <joao.ramos@inov.pt>
    Cc: Sergei Shtylyov <sshtylyov@ru.montavista.com>
    Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c
index 7f264ed..b609a58 100644
--- a/drivers/ide/ide-probe.c
+++ b/drivers/ide/ide-probe.c
@@ -1032,6 +1032,15 @@ static void ide_port_init_devices(ide_hwif_t *hwif)
         if (port_ops && port_ops->init_dev)
             port_ops->init_dev(drive);
     }
+
+    ide_port_for_each_dev(i, drive, hwif) {
+        /*
+         * default to PIO Mode 0 before we figure out
+         * the most suited mode for the attached device
+         */
+        if (port_ops && port_ops->set_pio_mode)
+            port_ops->set_pio_mode(drive, 0);
+    }
 }

 static void ide_init_port(ide_hwif_t *hwif, unsigned int port,



vendor_id       : CentaurHauls
cpu family      : 6
model           : 7
model name      : VIA Samuel 2

lspci
00:00.0 Host bridge: Silicon Integrated Systems [SiS] 635 Host (rev 11)
00:01.0 PCI bridge: Silicon Integrated Systems [SiS] Virtual PCI-to-PCI bridge
(AGP)
00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS85C503/5513 (LPC
Bridge)
00:02.1 SMBus: Silicon Integrated Systems [SiS] SiS961/2 SMBus Controller
00:02.2 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller
(rev 07)
00:02.3 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller
(rev 07)
00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev d0)
00:02.6 Modem: Silicon Integrated Systems [SiS] AC'97 Modem Controller (rev a0)
00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] AC'97
Sound Controller (rev a0)
00:03.0 Ethernet controller: Silicon Integrated Systems [SiS] SiS900 PCI Fast
Ethernet (rev 90)
00:09.0 Multimedia video controller: Conexant CX23880/1/2/3 PCI Video and Audio
Decoder (rev 05)
00:09.2 Multimedia controller: Conexant CX23880/1/2/3 PCI Video and Audio
Decoder [MPEG Port] (rev 05)
01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 315PRO
PCI/AGP VGA Display Adapter

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
@ 2009-10-10  1:07 ` bugzilla-daemon
  2009-10-10 21:17 ` bugzilla-daemon
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-10  1:07 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310


David Fries <David@Fries.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |PATCH_ALREADY_AVAILABLE




--- Comment #2 from David Fries <David@Fries.net>  2009-10-10 01:07:54 ---
The bad commit exposed a bug which was fixed by
e13ee546bb06453939014c7b854e77fb643fd6f1
sis5513: fix PIO setup for ATAPI devices

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
  2009-10-10  1:07 ` [Bug 14310] " bugzilla-daemon
@ 2009-10-10 21:17 ` bugzilla-daemon
  2009-10-23 18:32 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-10 21:17 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310


Rafael J. Wysocki <rjw@sisk.pl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED
         Resolution|PATCH_ALREADY_AVAILABLE     |CODE_FIX




-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
  2009-10-10  1:07 ` [Bug 14310] " bugzilla-daemon
  2009-10-10 21:17 ` bugzilla-daemon
@ 2009-10-23 18:32 ` bugzilla-daemon
  2009-10-24 13:38 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-23 18:32 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310


Jiri Bohac <jbohac@jikos.cz> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jbohac@jikos.cz




--- Comment #3 from Jiri Bohac <jbohac@jikos.cz>  2009-10-23 18:32:03 ---
I can still reproduce this on 2.6.31.5, where the
e13ee546bb06453939014c7b854e77fb643fd6f1 fix is included. Reverting
6029336426a2b43e4bc6f4a84be8789a047d139e helps.

Without reverting 6029336426a2b43e4bc6f4a84be8789a047d139e the system hangs on
"ide-cd driver 5.00", but sometimes I also get {DriveReady SeekComplete Error}
errors on hda before the hang -- never seen them without 
6029336426a2b43e4bc6f4a84be8789a047d139e.

A few interesting lines of output before the hang: (hand-copied, no serial
console here)

hda: ST38421A <strange_nonASCII_triangle_character_here> , ATA DISK drive
hdc: LTN5269, ATAPI CD/DVD-ROM drive
hdc: tPIO > 2, assuming tPIO=2
hdc: tPIO > 2, assuming tPIO=2
..
..
<hda seek errors>
..
possibly failed opcode: 0xc6
hda: lost interrupt
hda: 
<hda seek error>
possibly failed opcode: 0x20
 unknown patrition table
ide-cd driver 5.00
<hang>

I don't have regular access to this machine, but if help is needed, I can
arrange access to the machine.

Can we re-open this bug?

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (2 preceding siblings ...)
  2009-10-23 18:32 ` bugzilla-daemon
@ 2009-10-24 13:38 ` bugzilla-daemon
  2009-10-24 13:39 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-24 13:38 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310





--- Comment #4 from Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>  2009-10-24 13:38:41 ---
Created an attachment (id=23513)
 --> (http://bugzilla.kernel.org/attachment.cgi?id=23513)
debug patch for sis5513 issue

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (3 preceding siblings ...)
  2009-10-24 13:38 ` bugzilla-daemon
@ 2009-10-24 13:39 ` bugzilla-daemon
  2009-10-27  8:35 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-24 13:39 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310


Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bzolnier@gmail.com




--- Comment #5 from Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>  2009-10-24 13:39:48 ---
Jiri, please try the patch from

http://bugzilla.kernel.org/attachment.cgi?id=23513

Thanks.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (4 preceding siblings ...)
  2009-10-24 13:39 ` bugzilla-daemon
@ 2009-10-27  8:35 ` bugzilla-daemon
  2009-11-05 15:54   ` Bartlomiej Zolnierkiewicz
  2009-11-05 15:56 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-27  8:35 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310





--- Comment #6 from Jiri Bohac <jbohac@jikos.cz>  2009-10-27 08:35:25 ---
(In reply to comment #5)
> Jiri, please try the patch from
> 
> http://bugzilla.kernel.org/attachment.cgi?id=23513

Great, this patch, applied on 2.6.31.5, fixes the problem for me.

Out of curiosity, I also tried to revert the original fix
(e13ee546bb06453939014c7b854e77fb643fd6f1) and, with the debug patch still
applied, it still worked.

So maybe 6029336426a2b43e4bc6f4a84be8789a047d139e causes two independent
problems in sis5513? One fixed with e13ee546bb06453939014c7b854e77fb643fd6f1
and one fixed with this debug patch?

It would be great if this patch could be added to the stable tree. Thanks!

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-27  8:35 ` bugzilla-daemon
@ 2009-11-05 15:54   ` Bartlomiej Zolnierkiewicz
  2009-11-06 12:52     ` David Miller
  0 siblings, 1 reply; 12+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2009-11-05 15:54 UTC (permalink / raw)
  To: bugzilla-daemon; +Cc: linux-ide

On Tuesday 27 October 2009 09:35:27 bugzilla-daemon@bugzilla.kernel.org wrote:
> http://bugzilla.kernel.org/show_bug.cgi?id=14310
> 
> 
> 
> 
> 
> --- Comment #6 from Jiri Bohac <jbohac@jikos.cz>  2009-10-27 08:35:25 ---
> (In reply to comment #5)
> > Jiri, please try the patch from
> > 
> > http://bugzilla.kernel.org/attachment.cgi?id=23513
> 
> Great, this patch, applied on 2.6.31.5, fixes the problem for me.
> 
> Out of curiosity, I also tried to revert the original fix
> (e13ee546bb06453939014c7b854e77fb643fd6f1) and, with the debug patch still
> applied, it still worked.

Thanks for checking this.

> So maybe 6029336426a2b43e4bc6f4a84be8789a047d139e causes two independent
> problems in sis5513? One fixed with e13ee546bb06453939014c7b854e77fb643fd6f1
> and one fixed with this debug patch?

Yes, your findings are correct.

> It would be great if this patch could be added to the stable tree. Thanks!

The problem is that the change in the debug patch affects all host drivers
and at this moment is not safe enough neither for -stable nor for -rc.

Somebody needs to go and review all host drivers and their usage of ->media
field for tuning logic present in ->set_pio_mode implementations first.

Before this happens we probably should revert commit 6029336 but I'll leave
this up to the maintainer (I seriously doubt he will ever go and review any
IDE drivers or make any IDE fixes so please just ping him about the revert).

Thanks,
-- 
Bartlomiej Zolnierkiewicz

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (5 preceding siblings ...)
  2009-10-27  8:35 ` bugzilla-daemon
@ 2009-11-05 15:56 ` bugzilla-daemon
  2009-11-06 12:51 ` bugzilla-daemon
  2009-11-06 13:05 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-11-05 15:56 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310





--- Comment #7 from Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>  2009-11-05 15:56:23 ---
On Tuesday 27 October 2009 09:35:27 bugzilla-daemon@bugzilla.kernel.org wrote:
> http://bugzilla.kernel.org/show_bug.cgi?id=14310
> 
> 
> 
> 
> 
> --- Comment #6 from Jiri Bohac <jbohac@jikos.cz>  2009-10-27 08:35:25 ---
> (In reply to comment #5)
> > Jiri, please try the patch from
> > 
> > http://bugzilla.kernel.org/attachment.cgi?id=23513
> 
> Great, this patch, applied on 2.6.31.5, fixes the problem for me.
> 
> Out of curiosity, I also tried to revert the original fix
> (e13ee546bb06453939014c7b854e77fb643fd6f1) and, with the debug patch still
> applied, it still worked.

Thanks for checking this.

> So maybe 6029336426a2b43e4bc6f4a84be8789a047d139e causes two independent
> problems in sis5513? One fixed with e13ee546bb06453939014c7b854e77fb643fd6f1
> and one fixed with this debug patch?

Yes, your findings are correct.

> It would be great if this patch could be added to the stable tree. Thanks!

The problem is that the change in the debug patch affects all host drivers
and at this moment is not safe enough neither for -stable nor for -rc.

Somebody needs to go and review all host drivers and their usage of ->media
field for tuning logic present in ->set_pio_mode implementations first.

Before this happens we probably should revert commit 6029336 but I'll leave
this up to the maintainer (I seriously doubt he will ever go and review any
IDE drivers or make any IDE fixes so please just ping him about the revert).

Thanks,

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (6 preceding siblings ...)
  2009-11-05 15:56 ` bugzilla-daemon
@ 2009-11-06 12:51 ` bugzilla-daemon
  2009-11-06 13:05 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-11-06 12:51 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310





--- Comment #8 from David S. Miller <davem@davemloft.net>  2009-11-06 12:51:46 ---
From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Date: Thu, 5 Nov 2009 16:54:27 +0100

> The problem is that the change in the debug patch affects all host drivers
> and at this moment is not safe enough neither for -stable nor for -rc.
> 
> Somebody needs to go and review all host drivers and their usage of ->media
> field for tuning logic present in ->set_pio_mode implementations first.

The drivers which do this are:

drivers/ide/alim15x3.c
drivers/ide/it8172.c
drivers/ide/it8213.c
drivers/ide/pdc202xx_old.c
drivers/ide/piix.c
drivers/ide/qd65xx.c
drivers/ide/sis5513.c
drivers/ide/slc90e66.c

While the majority of them seem to use it to decide whether to enable
prefetching or not, alim15x3.c uses the ->media value to decide
whether to turn on the ATA or the ATAPI FIFO.

I don't think it's safe to call ->set_pio_mode() until we actually
know the media type.

I suppose we could guard the prefetch/FIFO changes in these drivers
with a test like:

    if (!(hwif->port_flags & IDE_PFLAG_PROBING))

or something like that.

But in this stage of the game, it's just too risky and reverting
the early PIO0 commit is the best way to go.

I'll do that now.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-11-05 15:54   ` Bartlomiej Zolnierkiewicz
@ 2009-11-06 12:52     ` David Miller
  0 siblings, 0 replies; 12+ messages in thread
From: David Miller @ 2009-11-06 12:52 UTC (permalink / raw)
  To: bzolnier; +Cc: bugzilla-daemon, linux-ide

From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Date: Thu, 5 Nov 2009 16:54:27 +0100

> The problem is that the change in the debug patch affects all host drivers
> and at this moment is not safe enough neither for -stable nor for -rc.
> 
> Somebody needs to go and review all host drivers and their usage of ->media
> field for tuning logic present in ->set_pio_mode implementations first.

The drivers which do this are:

drivers/ide/alim15x3.c
drivers/ide/it8172.c
drivers/ide/it8213.c
drivers/ide/pdc202xx_old.c
drivers/ide/piix.c
drivers/ide/qd65xx.c
drivers/ide/sis5513.c
drivers/ide/slc90e66.c

While the majority of them seem to use it to decide whether to enable
prefetching or not, alim15x3.c uses the ->media value to decide
whether to turn on the ATA or the ATAPI FIFO.

I don't think it's safe to call ->set_pio_mode() until we actually
know the media type.

I suppose we could guard the prefetch/FIFO changes in these drivers
with a test like:

	if (!(hwif->port_flags & IDE_PFLAG_PROBING))

or something like that.

But in this stage of the game, it's just too risky and reverting
the early PIO0 commit is the best way to go.

I'll do that now.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [Bug 14310] [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang
  2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
                   ` (7 preceding siblings ...)
  2009-11-06 12:51 ` bugzilla-daemon
@ 2009-11-06 13:05 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-11-06 13:05 UTC (permalink / raw)
  To: linux-ide

http://bugzilla.kernel.org/show_bug.cgi?id=14310


Alan <alan@lxorguk.ukuu.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alan@lxorguk.ukuu.org.uk




--- Comment #9 from Alan <alan@lxorguk.ukuu.org.uk>  2009-11-06 13:05:14 ---
You turn the FIFO off if you are probing. Always

You cannot know the media type until you probe, and you cannot properly probe
until you've set the interface to a sane known state. The media type should be
set to indicate no media at that point.

Agreed on reverting it - it generally only affects non PC platforms anyway -
the PC ones tend to come up with the controller either in PIO 0 or configured
to match the drive by the BIOS - both of which are generally acceptable.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2009-11-06 13:05 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-03  2:52 [Bug 14310] New: [bisected] 2.6.31 regression sis5513 PIO Mode 0 hang bugzilla-daemon
2009-10-10  1:07 ` [Bug 14310] " bugzilla-daemon
2009-10-10 21:17 ` bugzilla-daemon
2009-10-23 18:32 ` bugzilla-daemon
2009-10-24 13:38 ` bugzilla-daemon
2009-10-24 13:39 ` bugzilla-daemon
2009-10-27  8:35 ` bugzilla-daemon
2009-11-05 15:54   ` Bartlomiej Zolnierkiewicz
2009-11-06 12:52     ` David Miller
2009-11-05 15:56 ` bugzilla-daemon
2009-11-06 12:51 ` bugzilla-daemon
2009-11-06 13:05 ` bugzilla-daemon

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).