]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
xfs: build bios directly in xfs_add_to_ioend
authorDave Chinner <dchinner@redhat.com>
Tue, 5 Apr 2016 22:11:25 +0000 (08:11 +1000)
committerDave Chinner <david@fromorbit.com>
Tue, 5 Apr 2016 22:11:25 +0000 (08:11 +1000)
commitbb18782aa47d8cde90fed5cb0af312642e98a4fa
treea601e8c8ff55fbe799ba2068ac981df8d87af0be
parentf55532a0c0b8bb6148f4e07853b876ef73bc69ca
xfs: build bios directly in xfs_add_to_ioend

Currently adding a buffer to the ioend and then building a bio from
the buffer list are two separate operations. We don't build the bios
and submit them until the ioend is submitted, and this places a
fixed dependency on bufferhead chaining in the ioend.

The first step to removing the bufferhead chaining in the ioend is
on the IO submission side. We can build the bio directly as we add
the buffers to the ioend chain, thereby removing the need for a
latter "buffer-to-bio" submission loop. This allows us to submit
bios on large ioends as soon as we cannot add more data to the bio.

These bios then get captured by the active plug, and hence will be
dispatched as soon as either the plug overflows or we schedule away
from the writeback context. This will reduce submission latency for
large IOs, but will also allow more timely request queue based
writeback blocking when the device becomes congested.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
[hch: various small updates]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_aops.c
fs/xfs/xfs_aops.h