Re: regression in page writeback

From: Christoph Hellwig
Date: Mon Sep 28 2009 - 09:08:21 EST


On Mon, Sep 28, 2009 at 03:15:07PM +0800, Wu Fengguang wrote:
> + if (!PageActive(page))
> + SetPageReclaim(page);
> + err = mapping->a_ops->writepage(page, wbc);
> + if (err < 0)
> + handle_write_error(mapping, page, res);
> + if (err == AOP_WRITEPAGE_ACTIVATE) {
> + ClearPageReclaim(page);
> + res = PAGE_ACTIVATE;
> + break;
> + }

This should help a bit for XFS as it historically does multi-page
writeouts from ->writepages (and apprently btrfs that added some
write-around recently?) but not those brave filesystems only
implementing the multi-page writeout from writepages as designed.

But really, the best would be to leave the writeout to the flusher
threads and just reclaim the clean pages from the VM.
--
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/