Prev: [PATCH 09/12] drivers: net: use kernel's method to get byte in hex form
Next: High cpu temperature with 2.6.32, bisection shows commit 69d258 (fwd)
From: Bartlomiej Zolnierkiewicz on 18 Feb 2010 14:10 From: Bartlomiej Zolnierkiewicz <bzolnier(a)gmail.com> Subject: [PATCH] pata_oldpiix: add locking for parallel scanning Add an extra locking for parallel scanning. This is similar change as commit 60c3be3 for ata_piix host driver and while pata_oldpiix doesn't enable parallel scan yet the race could probably also be triggered by requesting re-scanning of both ports at the same time using SCSI sysfs interface. Fix documentation while at it. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier(a)gmail.com> --- drivers/ata/pata_oldpiix.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) Index: b/drivers/ata/pata_oldpiix.c =================================================================== --- a/drivers/ata/pata_oldpiix.c +++ b/drivers/ata/pata_oldpiix.c @@ -1,7 +1,8 @@ /* - * pata_oldpiix.c - Intel PATA/SATA controllers + * pata_oldpiix.c - older Intel PATA controllers * * (C) 2005 Red Hat + * (C) 2010 Bartlomiej Zolnierkiewicz * * Some parts based on ata_piix.c by Jeff Garzik and others. * @@ -50,10 +51,13 @@ static int oldpiix_pre_reset(struct ata_ return ata_sff_prereset(link, deadline); } +static DEFINE_SPINLOCK(piix_lock); + static void oldpiix_set_timings(struct ata_port *ap, struct ata_device *adev, u8 pio, bool use_mwdma) { struct pci_dev *dev = to_pci_dev(ap->host->dev); + unsigned long flags; unsigned int idetm_port= ap->port_no ? 0x42 : 0x40; u16 idetm_data; int control = 0; @@ -84,6 +88,8 @@ static void oldpiix_set_timings(struct a /* Enable DMA timing only */ control |= 8; /* PIO cycles in PIO0 */ + spin_lock_irqsave(&piix_lock, flags); + pci_read_config_word(dev, idetm_port, &idetm_data); /* @@ -101,6 +107,8 @@ static void oldpiix_set_timings(struct a (timings[pio][1] << 8); pci_write_config_word(dev, idetm_port, idetm_data); + spin_unlock_irqrestore(&piix_lock, flags); + /* Track which port is configured */ ap->private_data = adev; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |