mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
Revert "Temporarily disable Direct IO by default"
This partially reverts commit41210597
. Now thatb4e4cbeb2
has been merged Direct IO can be enabled by default for Linux, but for FreeBSD there still remains a potentially insufficient range locking in zfs_getpages() which needs to be resolved. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #16629
This commit is contained in:
parent
48dfe39747
commit
c642e985e5
@ -77,8 +77,15 @@ static int zfs_bclone_wait_dirty = 0;
|
||||
* Enable Direct I/O. If this setting is 0, then all I/O requests will be
|
||||
* directed through the ARC acting as though the dataset property direct was
|
||||
* set to disabled.
|
||||
*
|
||||
* Disabled by default on FreeBSD until a potential range locking issue in
|
||||
* zfs_getpages() can be resolved.
|
||||
*/
|
||||
#ifdef __FreeBSD__
|
||||
static int zfs_dio_enabled = 0;
|
||||
#else
|
||||
static int zfs_dio_enabled = 1;
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user