aboutsummaryrefslogtreecommitdiff
path: root/lib/libshare
diff options
context:
space:
mode:
authorBrian Behlendorf <behlendorf1@llnl.gov>2011-08-02 01:24:40 +0000
committerBrian Behlendorf <behlendorf1@llnl.gov>2011-08-04 20:37:38 +0000
commit76659dc110ef2ada13bcb8e4e2ec60d8216c6836 (patch)
tree19de8ecbb20ae764ae16b0f05399fff16424c440 /lib/libshare
parent3c0e5c0f455576d045fa443cbab74834d70ded55 (diff)
downloadsrc-76659dc110ef2ada13bcb8e4e2ec60d8216c6836.tar.gz
src-76659dc110ef2ada13bcb8e4e2ec60d8216c6836.zip
Add backing_device_info per-filesystem
For a long time now the kernel has been moving away from using the pdflush daemon to write 'old' dirty pages to disk. The primary reason for this is because the pdflush daemon is single threaded and can be a limiting factor for performance. Since pdflush sequentially walks the dirty inode list for each super block any delay in processing can slow down dirty page writeback for all filesystems. The replacement for pdflush is called bdi (backing device info). The bdi system involves creating a per-filesystem control structure each with its own private sets of queues to manage writeback. The advantage is greater parallelism which improves performance and prevents a single filesystem from slowing writeback to the others. For a long time both systems co-existed in the kernel so it wasn't strictly required to implement the bdi scheme. However, as of Linux 2.6.36 kernels the pdflush functionality has been retired. Since ZFS already bypasses the page cache for most I/O this is only an issue for mmap(2) writes which must go through the page cache. Even then adding this missing support for newer kernels was overlooked because there are other mechanisms which can trigger writeback. However, there is one critical case where not implementing the bdi functionality can cause problems. If an application handles a page fault it can enter the balance_dirty_pages() callpath. This will result in the application hanging until the number of dirty pages in the system drops below the dirty ratio. Without a registered backing_device_info for the filesystem the dirty pages will not get written out. Thus the application will hang. As mentioned above this was less of an issue with older kernels because pdflush would eventually write out the dirty pages. This change adds a backing_device_info structure to the zfs_sb_t which is already allocated per-super block. It is then registered when the filesystem mounted and unregistered on unmount. It will not be registered for mounted snapshots which are read-only. This change will result in flush-<pool> thread being dynamically created and destroyed per-mounted filesystem for writeback. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #174
Diffstat (limited to 'lib/libshare')
-rw-r--r--lib/libshare/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libshare/Makefile.in b/lib/libshare/Makefile.in
index b2af5fdc3345..6254a97b7755 100644
--- a/lib/libshare/Makefile.in
+++ b/lib/libshare/Makefile.in
@@ -43,6 +43,7 @@ am__aclocal_m4_deps = \
$(top_srcdir)/config/always-no-unused-but-set-variable.m4 \
$(top_srcdir)/config/kernel-bdev-block-device-operations.m4 \
$(top_srcdir)/config/kernel-bdev-logical-size.m4 \
+ $(top_srcdir)/config/kernel-bdi.m4 \
$(top_srcdir)/config/kernel-bio-empty-barrier.m4 \
$(top_srcdir)/config/kernel-bio-end-io-t-args.m4 \
$(top_srcdir)/config/kernel-bio-failfast.m4 \