]> git.proxmox.com Git - mirror_zfs.git/commit
Fix zfs_dirty_data_max overflow on 32-bit
authortuxoko <tuxoko@gmail.com>
Fri, 30 Oct 2015 23:10:01 +0000 (16:10 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 20 Nov 2015 00:02:47 +0000 (16:02 -0800)
commit43518d92fd9200aa07a871604a682e0dc7dff981
tree26d0d567976a35190f0e1c4667671a525238cacc
parentd0c614ecf9eb0b5f5c5d75316c2faeff63e03c4e
Fix zfs_dirty_data_max overflow on 32-bit

On 32 bit, the calculation of zfs_dirty_data_max from phymem will overflow,
causing it to be smaller than zfs_dirty_data_sync, and will cause txg being
delayed while no one write to disk. The end result is horrendous write speed.

On 4G ram 32-bit VM, before this patch, simple dd results in ~7MB/s. Now it
can reach speed on par with 64-bit VM.

Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3973
module/zfs/arc.c