The patch titled user of the jiffies rounding patch: ATA subsystem has been added to the -mm tree. Its filename is user-of-the-jiffies-rounding-patch-ata-subsystem.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: user of the jiffies rounding patch: ATA subsystem From: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> This patch introduces users of the round_jiffies() function: ATA subsystem This delayed work is of the "about once a second" variety and can be rounded to coincide with other wakers. Signed-off-by: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ata/libata-scsi.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/ata/libata-scsi.c~user-of-the-jiffies-rounding-patch-ata-subsystem drivers/ata/libata-scsi.c --- a/drivers/ata/libata-scsi.c~user-of-the-jiffies-rounding-patch-ata-subsystem +++ a/drivers/ata/libata-scsi.c @@ -3126,7 +3126,8 @@ void ata_scsi_hotplug(void *data) for (i = 0; i < ATA_MAX_DEVICES; i++) { struct ata_device *dev = &ap->device[i]; if (ata_dev_enabled(dev) && !dev->sdev) { - queue_delayed_work(ata_aux_wq, &ap->hotplug_task, HZ); + queue_delayed_work(ata_aux_wq, &ap->hotplug_task, + round_jiffies_relative(HZ)); break; } } _ Patches currently in -mm which might be from arjan@xxxxxxxxxxxxxxx are origin.patch sleazy-fpu-feature-i386-support.patch remove-the-old-bd_mutex-lockdep-annotation.patch new-bd_mutex-lockdep-annotation.patch round_jiffies-infrastructure.patch round_jiffies-infrastructure-fix.patch user-of-the-jiffies-rounding-patch-ata-subsystem.patch user-of-the-jiffies-rounding-code-jbd.patch user-of-the-jiffies-rounding-code-networking.patch user-of-the-jiffies-rounding-patch-slab.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html