Re: Force IDE cache flush on shutdown

From: Bartlomiej Zolnierkiewicz
Date: Thu May 06 2004 - 07:56:33 EST


On Thursday 06 of May 2004 13:33, Arjan van de Ven wrote:
> On Thu, May 06, 2004 at 11:52:20AM +0100, Christoph Hellwig wrote:
> > > + idedisk_driver.gen_driver.shutdown = ide_drive_shutdown;
> >
> > isn't idedisk_driver initialized statically somewhere? You should
> > probably
>
> ok ok you win
>
> diff -purN linux-2.6.5/drivers/ide/ide-disk.c linux/drivers/ide/ide-disk.c
> --- linux-2.6.5/drivers/ide/ide-disk.c 2004-05-06 13:26:53.350284720 +0200
> +++ linux/drivers/ide/ide-disk.c 2004-05-06 13:32:01.322465832 +0200
> @@ -1725,6 +1725,9 @@ static ide_driver_t idedisk_driver = {
> .drives = LIST_HEAD_INIT(idedisk_driver.drives),
> .start_power_step = idedisk_start_power_step,
> .complete_power_step = idedisk_complete_power_step,
> + .gen_driver = {
> + .shutdown = ide_drive_shutdown,
> + },
> };
>
> @@ -1820,6 +1823,23 @@ static int idedisk_revalidate_disk(struc
> return 0;
> }
>
> +static int ide_drive_shutdown(struct device * dev)
> +{
> + ide_drive_t * drive = container_of(dev,ide_drive_t,gendev);
> +
> + /* safety checks */
> + if (!drive->present)
> + return 0;

not needed / BUG_ON

> + if (drive->media != ide_disk)
> + return 0;

not needed / BUG_ON

> + printk("Flushing cache: %s \n", drive->name);
> + ide_cacheflush_p(drive);
> + /* give the hardware time to finish; it may return prematurely to cheat
> */ + mdelay(300);

I really don't like it.

Is this delay arbitrary or you know about such devices?

> + return 0;
> +}
> +
> +
> static struct block_device_operations idedisk_ops = {
> .owner = THIS_MODULE,
> .open = idedisk_open,

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/