All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] Per-bdi writeback flusher threads
@ 2009-03-12 14:33 Jens Axboe
  2009-03-12 14:33 ` [PATCH 1/7] writeback: move dirty inodes from super_block to backing_dev_info Jens Axboe
                   ` (6 more replies)
  0 siblings, 7 replies; 32+ messages in thread
From: Jens Axboe @ 2009-03-12 14:33 UTC (permalink / raw)
  To: linux-kernel, linux-fsdevel; +Cc: chris.mason, david, npiggin

Hi,

This is something I've wanted to play with for a while, and I finally
got it hacked up a few days ago. Consider it a playground for writeback
performance/behaviour testing :-)

There's a full description in the next few patches. They are against
current -git.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PATCH 0/7] Per-bdi writeback flusher threads v15
@ 2009-08-31 19:41 Jens Axboe
  2009-08-31 19:41 ` [PATCH 2/7] writeback: switch to per-bdi threads for flushing data Jens Axboe
  0 siblings, 1 reply; 32+ messages in thread
From: Jens Axboe @ 2009-08-31 19:41 UTC (permalink / raw)
  To: linux-kernel, linux-fsdevel; +Cc: chris.mason, david, hch, akpm, jack

Hi,

Here's the 15th version of the writeback patches. Changes since v14:

- Collapsed a few patches and got rid of the multiple thread support.
  The work items remain, it's been well tested and means that you
  can queue work for a bdi without blocking and waiting for it to
  finish the existing work. Lazy exit is now included in the
  first patch.
- I kept the 'remove pdflush' patch separate. The main patch is
  already big enough, and thinking about it, I think it makes sense
  to retain as a separate patch.

Christoph, let me know if there are things you are still not happy
with and I will reply/address them. Note that this series has only
received a light testing. This means that it boots and seems to work
(flushes data on sync and at intervals) and does not corrupt data,
but it hasn't received a thorough testing yet. That will come tomorrow.
But I wanted to push this out there, so we can settle the code base
quickly again.

 b/block/blk-core.c            |    1 
 b/drivers/block/aoe/aoeblk.c  |    1 
 b/drivers/char/mem.c          |    1 
 b/fs/btrfs/disk-io.c          |    1 
 b/fs/buffer.c                 |    2 
 b/fs/char_dev.c               |    1 
 b/fs/configfs/inode.c         |    1 
 b/fs/fs-writeback.c           |  907 ++++++++++++++++++++++++----------
 b/fs/fuse/inode.c             |    1 
 b/fs/hugetlbfs/inode.c        |    1 
 b/fs/nfs/client.c             |    1 
 b/fs/ocfs2/dlm/dlmfs.c        |    1 
 b/fs/ramfs/inode.c            |    1 
 b/fs/super.c                  |    3 
 b/fs/sync.c                   |    2 
 b/fs/sysfs/inode.c            |    1 
 b/fs/ubifs/super.c            |    1 
 b/include/linux/backing-dev.h |   57 ++
 b/include/linux/fs.h          |   10 
 b/include/linux/writeback.h   |   19 
 b/kernel/cgroup.c             |    1 
 b/kernel/sysctl.c             |    8 
 b/mm/Makefile                 |    2 
 b/mm/backing-dev.c            |  379 +++++++++++++-
 b/mm/page-writeback.c         |  165 +-----
 b/mm/swap_state.c             |    1 
 b/mm/vmscan.c                 |    2 
 mm/pdflush.c                  |  269 ----------
 28 files changed, 1145 insertions(+), 695 deletions(-)

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2009-08-31 19:41 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-12 14:33 [PATCH 0/7] Per-bdi writeback flusher threads Jens Axboe
2009-03-12 14:33 ` [PATCH 1/7] writeback: move dirty inodes from super_block to backing_dev_info Jens Axboe
2009-03-24 16:17   ` Jan Kara
2009-03-24 18:45     ` Jens Axboe
2009-03-12 14:33 ` [PATCH 2/7] writeback: switch to per-bdi threads for flushing data Jens Axboe
2009-03-13  5:33   ` Andrew Morton
2009-03-13 10:54     ` Jens Axboe
2009-03-15 22:52       ` Dave Chinner
2009-03-16  7:33         ` Jens Axboe
2009-03-16 10:17           ` Christoph Hellwig
2009-03-16 10:21             ` Jens Axboe
2009-03-16 23:38           ` Dave Chinner
2009-03-17  9:37             ` Jens Axboe
2009-03-17 13:21             ` Chris Mason
2009-03-16 10:22   ` Christoph Hellwig
2009-03-16 10:22     ` Christoph Hellwig
2009-03-16 13:30     ` Chris Mason
2009-03-16 13:30       ` Chris Mason
2009-03-16 13:39       ` Christoph Hellwig
2009-03-16 13:39         ` Christoph Hellwig
2009-03-12 14:33 ` [PATCH 3/7] writeback: get rid of pdflush_operation() in emergency sync and remount Jens Axboe
2009-03-16 10:13   ` Christoph Hellwig
2009-03-12 14:33 ` [PATCH 4/7] writeback: get rid of task/current_is_pdflush() Jens Axboe
2009-03-16 10:14   ` Christoph Hellwig
2009-03-16 10:22     ` Jens Axboe
2009-03-16 13:26     ` Chris Mason
2009-03-12 14:33 ` [PATCH 5/7] writeback: move the default backing_dev_info out of readahead Jens Axboe
2009-03-16 10:19   ` Christoph Hellwig
2009-03-16 10:23     ` Jens Axboe
2009-03-12 14:33 ` [PATCH 6/7] writeback: add lazy bdi->task creation Jens Axboe
2009-03-12 14:33 ` [PATCH 7/7] writeback: add some debug inode list counters to bdi stats Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2009-08-31 19:41 [PATCH 0/7] Per-bdi writeback flusher threads v15 Jens Axboe
2009-08-31 19:41 ` [PATCH 2/7] writeback: switch to per-bdi threads for flushing data Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.