summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Cantrill <bryan@joyent.com>2017-09-16 16:28:24 +0000
committerCody Peter Mello <cody.mello@joyent.com>2017-09-16 18:49:32 +0000
commit49a82ccc3f3cf29ebbd4901f3c8d0c2c7a9c03d6 (patch)
tree92f3af36f0112f1d9023157ee6e20a3fad129a15
parentd76ed2869e443b062d42503b0390c35558719c18 (diff)
downloadillumos-joyent-49a82ccc3f3cf29ebbd4901f3c8d0c2c7a9c03d6.tar.gz
OS-6350 4K zfs_abd_chunk_size is inducing excessive ABD wasterelease-20170914
Reviewed by: Jason King <jason.king@joyent.com> Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com> Approved by: Jerry Jelinek <jerry.jelinek@joyent.com>
-rw-r--r--usr/src/uts/common/fs/zfs/abd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/fs/zfs/abd.c b/usr/src/uts/common/fs/zfs/abd.c
index 4d7b2cb56a..92e7814df5 100644
--- a/usr/src/uts/common/fs/zfs/abd.c
+++ b/usr/src/uts/common/fs/zfs/abd.c
@@ -148,7 +148,7 @@ boolean_t zfs_abd_scatter_enabled = B_TRUE;
* will cause the machine to panic if you change it and try to access the data
* within a scattered ABD.
*/
-size_t zfs_abd_chunk_size = 4096;
+size_t zfs_abd_chunk_size = 1024;
#ifdef _KERNEL
extern vmem_t *zio_alloc_arena;