]> git.karo-electronics.de Git - karo-tx-linux.git/commit
GFS2: Plug on AIL flush
authorSteven Whitehouse <swhiteho@redhat.com>
Mon, 3 Feb 2014 09:57:29 +0000 (09:57 +0000)
committerSteven Whitehouse <swhiteho@redhat.com>
Mon, 3 Feb 2014 09:57:29 +0000 (09:57 +0000)
commit885bceca7ff12021c9c17f58d12e12ec6e8e59a6
tree3e0b43c2efc2856f2c8d1b1505fc496581b2f41d
parent38dbfb59d1175ef458d006556061adeaa8751b72
GFS2: Plug on AIL flush

When we do a flush of the AIL list, we are writing out what is
likely to be a lot of small I/Os, which are possibly in an order
which is not ideal performance-wise. Since this is done by calling
filemap_fdatatwrite for each individual inode's address space there
is no overall plugging going on.

In addition to that, we do not always wait for AIL i/o when we flush
it, so that it is possible for things to get left behind on the queue.
By adding explicit plugging here, we reduce the chances of this
being an issues. A quick test using the AIL flush tracepoint shows a
small, but measurable improvement.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/log.c