* [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
@ 2006-05-29 11:55 Tejun Heo
0 siblings, 0 replies; 6+ messages in thread
From: Tejun Heo @ 2006-05-29 11:55 UTC (permalink / raw)
To: Jeff Garzik, Alan Cox, Albert Lee, Mark Lord, linux-ide
Move out PCS handling from piix_sata_prereset() into
piix_sata_present_mask() and use it from newly implemented
piix_sata_softreset(). Class codes for devices which are indicated to
be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
problem reported on ICH6 and 7.
This patch moves PCS handling from prereset to softreset, which makes
two behavior changes.
* perform softreset even when PCS indicates no device
* PCS handling is repeated before retrying softresets due to reset
failures.
Both behavior changes are intended and more consistent with how other
drivers behave.
Signed-off-by: Tejun Heo <htejun@gmail.com>
---
This patch fixes ghost device problem on my machine and also somehow
allows me to warm plug the second slot successfully (e.g. if PM is
occupied and PS not, I couldn't warm plug PS, but with this patch, it
works).
This patch is against upstream + set-PIO-0-patch + all hotplug
patches, and is also available from for-jeff git tree, tagged with
fj-ata_piix-fix-ghost.
drivers/scsi/ata_piix.c | 51 ++++++++++++++++++++++++++++++++++++-----------
1 files changed, 39 insertions(+), 12 deletions(-)
cafaa04becd7fa90c562d4af10513c0acdc7fe7c
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
index 521b718..c8fdad5 100644
--- a/drivers/scsi/ata_piix.c
+++ b/drivers/scsi/ata_piix.c
@@ -491,21 +491,20 @@ static void piix_pata_error_handler(stru
}
/**
- * piix_sata_prereset - prereset for SATA host controller
+ * piix_sata_present_mask - determine present mask for SATA host controller
* @ap: Target port
*
* Reads and configures SATA PCI device's PCI config register
* Port Configuration and Status (PCS) to determine port and
- * device availability. Return -ENODEV to skip reset if no
- * device is present.
+ * device availability.
*
* LOCKING:
- * None (inherited from caller).
+ * Kernel thread context (may sleep).
*
* RETURNS:
- * 0 if device is present, -ENODEV otherwise.
+ * determined present_mask
*/
-static int piix_sata_prereset(struct ata_port *ap)
+static unsigned int piix_sata_present_mask(struct ata_port *ap)
{
struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
const unsigned int *map = ap->host_set->private_data;
@@ -547,18 +546,46 @@ static int piix_sata_prereset(struct ata
DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
ap->id, pcs, present_mask);
- if (!present_mask) {
- ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");
- ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
- return 0;
+ return present_mask;
+}
+
+/**
+ * piix_sata_softreset - reset SATA host port via ATA SRST
+ * @ap: port to reset
+ * @classes: resulting classes of attached devices
+ *
+ * Reset SATA host port via ATA SRST. On controllers with
+ * reliable PCS present bits, the bits are used to determine
+ * device presence.
+ *
+ * LOCKING:
+ * Kernel thread context (may sleep)
+ *
+ * RETURNS:
+ * 0 on success, -errno otherwise.
+ */
+static int piix_sata_softreset(struct ata_port *ap, unsigned int *classes)
+{
+ unsigned int present_mask;
+ int i, rc;
+
+ present_mask = piix_sata_present_mask(ap);
+
+ rc = ata_std_softreset(ap, classes);
+ if (rc)
+ return rc;
+
+ for (i = 0; i < ATA_MAX_DEVICES; i++) {
+ if (!(present_mask & (1 << i)))
+ classes[i] = ATA_DEV_NONE;
}
- return ata_std_prereset(ap);
+ return 0;
}
static void piix_sata_error_handler(struct ata_port *ap)
{
- ata_bmdma_drive_eh(ap, piix_sata_prereset, ata_std_softreset, NULL,
+ ata_bmdma_drive_eh(ap, ata_std_prereset, piix_sata_softreset, NULL,
ata_std_postreset);
}
--
1.3.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
@ 2006-08-10 5:23 Tejun Heo
2006-08-17 7:52 ` Unicorn Chang
2006-08-19 21:35 ` Jeff Garzik
0 siblings, 2 replies; 6+ messages in thread
From: Tejun Heo @ 2006-08-10 5:23 UTC (permalink / raw)
To: Jeff Garzik, linux-ide
Move out PCS handling from piix_sata_prereset() into
piix_sata_present_mask() and use it from newly implemented
piix_sata_softreset(). Class codes for devices which are indicated to
be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
problem reported on ICH6 and 7 (and probably 8).
This patch moves PCS handling from prereset to softreset, which makes
ata_piix perform softreset even when PCS indicates no device.
Signed-off-by: Tejun Heo <htejun@gmail.com>
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
index 19745a3..ad880b8 100644
--- a/drivers/scsi/ata_piix.c
+++ b/drivers/scsi/ata_piix.c
@@ -531,27 +531,25 @@ static void piix_pata_error_handler(stru
}
/**
- * piix_sata_prereset - prereset for SATA host controller
+ * piix_sata_present_mask - determine present mask for SATA host controller
* @ap: Target port
*
- * Reads and configures SATA PCI device's PCI config register
- * Port Configuration and Status (PCS) to determine port and
- * device availability. Return -ENODEV to skip reset if no
- * device is present.
+ * Reads SATA PCI device's PCI config register Port Configuration
+ * and Status (PCS) to determine port and device availability.
*
* LOCKING:
* None (inherited from caller).
*
* RETURNS:
- * 0 if device is present, -ENODEV otherwise.
+ * determined present_mask
*/
-static int piix_sata_prereset(struct ata_port *ap)
+static unsigned int piix_sata_present_mask(struct ata_port *ap)
{
struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
struct piix_host_priv *hpriv = ap->host_set->private_data;
const unsigned int *map = hpriv->map;
int base = 2 * ap->hard_port_no;
- unsigned int present = 0;
+ unsigned int present_mask = 0;
int port, i;
u16 pcs;
@@ -564,24 +562,52 @@ static int piix_sata_prereset(struct ata
continue;
if ((ap->flags & PIIX_FLAG_IGNORE_PCS) ||
(pcs & 1 << (hpriv->map_db->present_shift + port)))
- present = 1;
+ present_mask |= 1 << i;
}
DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
ap->id, pcs, present_mask);
- if (!present) {
- ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");
- ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
- return 0;
+ return present_mask;
+}
+
+/**
+ * piix_sata_softreset - reset SATA host port via ATA SRST
+ * @ap: port to reset
+ * @classes: resulting classes of attached devices
+ *
+ * Reset SATA host port via ATA SRST. On controllers with
+ * reliable PCS present bits, the bits are used to determine
+ * device presence.
+ *
+ * LOCKING:
+ * Kernel thread context (may sleep)
+ *
+ * RETURNS:
+ * 0 on success, -errno otherwise.
+ */
+static int piix_sata_softreset(struct ata_port *ap, unsigned int *classes)
+{
+ unsigned int present_mask;
+ int i, rc;
+
+ present_mask = piix_sata_present_mask(ap);
+
+ rc = ata_std_softreset(ap, classes);
+ if (rc)
+ return rc;
+
+ for (i = 0; i < ATA_MAX_DEVICES; i++) {
+ if (!(present_mask & (1 << i)))
+ classes[i] = ATA_DEV_NONE;
}
- return ata_std_prereset(ap);
+ return 0;
}
static void piix_sata_error_handler(struct ata_port *ap)
{
- ata_bmdma_drive_eh(ap, piix_sata_prereset, ata_std_softreset, NULL,
+ ata_bmdma_drive_eh(ap, ata_std_prereset, piix_sata_softreset, NULL,
ata_std_postreset);
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
2006-08-10 5:23 [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits Tejun Heo
@ 2006-08-17 7:52 ` Unicorn Chang
2006-08-19 21:35 ` Jeff Garzik
1 sibling, 0 replies; 6+ messages in thread
From: Unicorn Chang @ 2006-08-17 7:52 UTC (permalink / raw)
To: Tejun Heo; +Cc: Jeff Garzik, linux-ide, Gary Hade
I tested this patch on IBM Intellistation M Pro with Quantum GoVault
(kernel 2.6.18-rc4),
it works fine !
SATA controller is configured to "Compatible" mode.
Intel Corporation 82801GB/GR/GH (ICH7 Family) Serial ATA Storage
Controllers cc=IDE (rev 01)
--
Unicorn
On 8/10/06, Tejun Heo <htejun@gmail.com> wrote:
> Move out PCS handling from piix_sata_prereset() into
> piix_sata_present_mask() and use it from newly implemented
> piix_sata_softreset(). Class codes for devices which are indicated to
> be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
> problem reported on ICH6 and 7 (and probably 8).
>
> This patch moves PCS handling from prereset to softreset, which makes
> ata_piix perform softreset even when PCS indicates no device.
>
> Signed-off-by: Tejun Heo <htejun@gmail.com>
>
> diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
> index 19745a3..ad880b8 100644
> --- a/drivers/scsi/ata_piix.c
> +++ b/drivers/scsi/ata_piix.c
> @@ -531,27 +531,25 @@ static void piix_pata_error_handler(stru
> }
>
> /**
> - * piix_sata_prereset - prereset for SATA host controller
> + * piix_sata_present_mask - determine present mask for SATA host controller
> * @ap: Target port
> *
> - * Reads and configures SATA PCI device's PCI config register
> - * Port Configuration and Status (PCS) to determine port and
> - * device availability. Return -ENODEV to skip reset if no
> - * device is present.
> + * Reads SATA PCI device's PCI config register Port Configuration
> + * and Status (PCS) to determine port and device availability.
> *
> * LOCKING:
> * None (inherited from caller).
> *
> * RETURNS:
> - * 0 if device is present, -ENODEV otherwise.
> + * determined present_mask
> */
> -static int piix_sata_prereset(struct ata_port *ap)
> +static unsigned int piix_sata_present_mask(struct ata_port *ap)
> {
> struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
> struct piix_host_priv *hpriv = ap->host_set->private_data;
> const unsigned int *map = hpriv->map;
> int base = 2 * ap->hard_port_no;
> - unsigned int present = 0;
> + unsigned int present_mask = 0;
> int port, i;
> u16 pcs;
>
> @@ -564,24 +562,52 @@ static int piix_sata_prereset(struct ata
> continue;
> if ((ap->flags & PIIX_FLAG_IGNORE_PCS) ||
> (pcs & 1 << (hpriv->map_db->present_shift + port)))
> - present = 1;
> + present_mask |= 1 << i;
> }
>
> DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
> ap->id, pcs, present_mask);
>
> - if (!present) {
> - ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");
> - ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
> - return 0;
> + return present_mask;
> +}
> +
> +/**
> + * piix_sata_softreset - reset SATA host port via ATA SRST
> + * @ap: port to reset
> + * @classes: resulting classes of attached devices
> + *
> + * Reset SATA host port via ATA SRST. On controllers with
> + * reliable PCS present bits, the bits are used to determine
> + * device presence.
> + *
> + * LOCKING:
> + * Kernel thread context (may sleep)
> + *
> + * RETURNS:
> + * 0 on success, -errno otherwise.
> + */
> +static int piix_sata_softreset(struct ata_port *ap, unsigned int *classes)
> +{
> + unsigned int present_mask;
> + int i, rc;
> +
> + present_mask = piix_sata_present_mask(ap);
> +
> + rc = ata_std_softreset(ap, classes);
> + if (rc)
> + return rc;
> +
> + for (i = 0; i < ATA_MAX_DEVICES; i++) {
> + if (!(present_mask & (1 << i)))
> + classes[i] = ATA_DEV_NONE;
> }
>
> - return ata_std_prereset(ap);
> + return 0;
> }
>
> static void piix_sata_error_handler(struct ata_port *ap)
> {
> - ata_bmdma_drive_eh(ap, piix_sata_prereset, ata_std_softreset, NULL,
> + ata_bmdma_drive_eh(ap, ata_std_prereset, piix_sata_softreset, NULL,
> ata_std_postreset);
> }
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ide" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
2006-08-10 5:23 [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits Tejun Heo
2006-08-17 7:52 ` Unicorn Chang
@ 2006-08-19 21:35 ` Jeff Garzik
2006-08-20 6:27 ` Tejun Heo
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Garzik @ 2006-08-19 21:35 UTC (permalink / raw)
To: Tejun Heo; +Cc: linux-ide
Tejun Heo wrote:
> Move out PCS handling from piix_sata_prereset() into
> piix_sata_present_mask() and use it from newly implemented
> piix_sata_softreset(). Class codes for devices which are indicated to
> be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
> problem reported on ICH6 and 7 (and probably 8).
>
> This patch moves PCS handling from prereset to softreset, which makes
> ata_piix perform softreset even when PCS indicates no device.
>
> Signed-off-by: Tejun Heo <htejun@gmail.com>
ACK, but doesn't apply to upstream-fixes
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
2006-08-19 21:35 ` Jeff Garzik
@ 2006-08-20 6:27 ` Tejun Heo
2006-08-20 8:56 ` [RESEND][PATCH] " Tejun Heo
0 siblings, 1 reply; 6+ messages in thread
From: Tejun Heo @ 2006-08-20 6:27 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-ide
Move out PCS handling from piix_sata_prereset() into
piix_sata_present_mask() and use it from newly implemented
piix_sata_softreset(). Class codes for devices which are indicated to
be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
problem reported on ICH6 and 7.
This patch moves PCS handling from prereset to softreset, which makes
two behavior changes.
* perform softreset even when PCS indicates no device
* PCS handling is repeated before retrying softresets due to reset
failures.
Both behavior changes are intended and more consistent with how other
drivers behave.
Signed-off-by: Tejun Heo <htejun@gmail.com>
---
Here's the regenerated version.
Thanks.
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
index 5e8afc8..e613504 100644
--- a/drivers/scsi/ata_piix.c
+++ b/drivers/scsi/ata_piix.c
@@ -531,32 +531,30 @@ static void piix_pata_error_handler(stru
}
/**
- * piix_sata_prereset - prereset for SATA host controller
+ * piix_sata_present_mask - determine present mask for SATA host controller
* @ap: Target port
*
- * Reads and configures SATA PCI device's PCI config register
- * Port Configuration and Status (PCS) to determine port and
- * device availability. Return -ENODEV to skip reset if no
- * device is present.
+ * Reads SATA PCI device's PCI config register Port Configuration
+ * and Status (PCS) to determine port and device availability.
*
* LOCKING:
* None (inherited from caller).
*
* RETURNS:
- * 0 if device is present, -ENODEV otherwise.
+ * determined present_mask
*/
-static int piix_sata_prereset(struct ata_port *ap)
+static unsigned int piix_sata_present_mask(struct ata_port *ap)
{
struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
struct piix_host_priv *hpriv = ap->host_set->private_data;
const unsigned int *map = hpriv->map;
int base = 2 * ap->hard_port_no;
- unsigned int present = 0;
+ unsigned int present_mask = 0;
int port, i;
u16 pcs;
pci_read_config_word(pdev, ICH5_PCS, &pcs);
- DPRINTK("ata%u: ENTER, pcs=0x%x base=%d\n", ap->id, pcs, base);
+ printk("ata%u: ENTER, pcs=0x%x base=%d\n", ap->id, pcs, base);
for (i = 0; i < 2; i++) {
port = map[base + i];
@@ -564,24 +562,52 @@ static int piix_sata_prereset(struct ata
continue;
if ((ap->flags & PIIX_FLAG_IGNORE_PCS) ||
(pcs & 1 << (hpriv->map_db->present_shift + port)))
- present = 1;
+ present_mask |= 1 << i;
}
- DPRINTK("ata%u: LEAVE, pcs=0x%x present=0x%x\n",
- ap->id, pcs, present);
+ printk("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
+ ap->id, pcs, present_mask);
- if (!present) {
- ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");
- ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
- return 0;
+ return present_mask;
+}
+
+/**
+ * piix_sata_softreset - reset SATA host port via ATA SRST
+ * @ap: port to reset
+ * @classes: resulting classes of attached devices
+ *
+ * Reset SATA host port via ATA SRST. On controllers with
+ * reliable PCS present bits, the bits are used to determine
+ * device presence.
+ *
+ * LOCKING:
+ * Kernel thread context (may sleep)
+ *
+ * RETURNS:
+ * 0 on success, -errno otherwise.
+ */
+static int piix_sata_softreset(struct ata_port *ap, unsigned int *classes)
+{
+ unsigned int present_mask;
+ int i, rc;
+
+ present_mask = piix_sata_present_mask(ap);
+
+ rc = ata_std_softreset(ap, classes);
+ if (rc)
+ return rc;
+
+ for (i = 0; i < ATA_MAX_DEVICES; i++) {
+ if (!(present_mask & (1 << i)))
+ classes[i] = ATA_DEV_NONE;
}
- return ata_std_prereset(ap);
+ return 0;
}
static void piix_sata_error_handler(struct ata_port *ap)
{
- ata_bmdma_drive_eh(ap, piix_sata_prereset, ata_std_softreset, NULL,
+ ata_bmdma_drive_eh(ap, ata_std_prereset, piix_sata_softreset, NULL,
ata_std_postreset);
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [RESEND][PATCH] ata_piix: fix ghost device probing by honoring PCS present bits
2006-08-20 6:27 ` Tejun Heo
@ 2006-08-20 8:56 ` Tejun Heo
0 siblings, 0 replies; 6+ messages in thread
From: Tejun Heo @ 2006-08-20 8:56 UTC (permalink / raw)
To: Jeff Garzik; +Cc: linux-ide
Move out PCS handling from piix_sata_prereset() into
piix_sata_present_mask() and use it from newly implemented
piix_sata_softreset(). Class codes for devices which are indicated to
be absent by PCS are cleared to ATA_DEV_NONE. This fixes ghost device
problem reported on ICH6 and 7.
This patch moves PCS handling from prereset to softreset, which makes
two behavior changes.
* perform softreset even when PCS indicates no device
* PCS handling is repeated before retrying softresets due to reset
failures.
Both behavior changes are intended and more consistent with how other
drivers behave.
Signed-off-by: Tejun Heo <htejun@gmail.com>
---
Sorry, I forgot save after before diffing and the previous patch
contained debug printks.
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
index 5e8afc8..01b3530 100644
--- a/drivers/scsi/ata_piix.c
+++ b/drivers/scsi/ata_piix.c
@@ -531,27 +531,25 @@ static void piix_pata_error_handler(stru
}
/**
- * piix_sata_prereset - prereset for SATA host controller
+ * piix_sata_present_mask - determine present mask for SATA host controller
* @ap: Target port
*
- * Reads and configures SATA PCI device's PCI config register
- * Port Configuration and Status (PCS) to determine port and
- * device availability. Return -ENODEV to skip reset if no
- * device is present.
+ * Reads SATA PCI device's PCI config register Port Configuration
+ * and Status (PCS) to determine port and device availability.
*
* LOCKING:
* None (inherited from caller).
*
* RETURNS:
- * 0 if device is present, -ENODEV otherwise.
+ * determined present_mask
*/
-static int piix_sata_prereset(struct ata_port *ap)
+static unsigned int piix_sata_present_mask(struct ata_port *ap)
{
struct pci_dev *pdev = to_pci_dev(ap->host_set->dev);
struct piix_host_priv *hpriv = ap->host_set->private_data;
const unsigned int *map = hpriv->map;
int base = 2 * ap->hard_port_no;
- unsigned int present = 0;
+ unsigned int present_mask = 0;
int port, i;
u16 pcs;
@@ -564,24 +562,52 @@ static int piix_sata_prereset(struct ata
continue;
if ((ap->flags & PIIX_FLAG_IGNORE_PCS) ||
(pcs & 1 << (hpriv->map_db->present_shift + port)))
- present = 1;
+ present_mask |= 1 << i;
}
- DPRINTK("ata%u: LEAVE, pcs=0x%x present=0x%x\n",
- ap->id, pcs, present);
+ DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
+ ap->id, pcs, present_mask);
- if (!present) {
- ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");
- ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
- return 0;
+ return present_mask;
+}
+
+/**
+ * piix_sata_softreset - reset SATA host port via ATA SRST
+ * @ap: port to reset
+ * @classes: resulting classes of attached devices
+ *
+ * Reset SATA host port via ATA SRST. On controllers with
+ * reliable PCS present bits, the bits are used to determine
+ * device presence.
+ *
+ * LOCKING:
+ * Kernel thread context (may sleep)
+ *
+ * RETURNS:
+ * 0 on success, -errno otherwise.
+ */
+static int piix_sata_softreset(struct ata_port *ap, unsigned int *classes)
+{
+ unsigned int present_mask;
+ int i, rc;
+
+ present_mask = piix_sata_present_mask(ap);
+
+ rc = ata_std_softreset(ap, classes);
+ if (rc)
+ return rc;
+
+ for (i = 0; i < ATA_MAX_DEVICES; i++) {
+ if (!(present_mask & (1 << i)))
+ classes[i] = ATA_DEV_NONE;
}
- return ata_std_prereset(ap);
+ return 0;
}
static void piix_sata_error_handler(struct ata_port *ap)
{
- ata_bmdma_drive_eh(ap, piix_sata_prereset, ata_std_softreset, NULL,
+ ata_bmdma_drive_eh(ap, ata_std_prereset, piix_sata_softreset, NULL,
ata_std_postreset);
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-08-20 8:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-10 5:23 [PATCH] ata_piix: fix ghost device probing by honoring PCS present bits Tejun Heo
2006-08-17 7:52 ` Unicorn Chang
2006-08-19 21:35 ` Jeff Garzik
2006-08-20 6:27 ` Tejun Heo
2006-08-20 8:56 ` [RESEND][PATCH] " Tejun Heo
-- strict thread matches above, loose matches on Subject: below --
2006-05-29 11:55 [PATCH] " Tejun Heo
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.