The patch titled user of the jiffies rounding patch: ATA subsystem has been removed from the -mm tree. Its filename was user-of-the-jiffies-rounding-patch-ata-subsystem.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 @@ -3011,7 +3011,8 @@ void ata_scsi_hotplug(struct work_struct 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 git-libata-all.patch git-netdev-all.patch user-of-the-jiffies-rounding-code-networking.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