mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-27 11:29:36 +03:00
a10e552b99
Adding O_DIRECT support to ZFS to bypass the ARC for writes/reads. O_DIRECT support in ZFS will always ensure there is coherency between buffered and O_DIRECT IO requests. This ensures that all IO requests, whether buffered or direct, will see the same file contents at all times. Just as in other FS's , O_DIRECT does not imply O_SYNC. While data is written directly to VDEV disks, metadata will not be synced until the associated TXG is synced. For both O_DIRECT read and write request the offset and request sizes, at a minimum, must be PAGE_SIZE aligned. In the event they are not, then EINVAL is returned unless the direct property is set to always (see below). For O_DIRECT writes: The request also must be block aligned (recordsize) or the write request will take the normal (buffered) write path. In the event that request is block aligned and a cached copy of the buffer in the ARC, then it will be discarded from the ARC forcing all further reads to retrieve the data from disk. For O_DIRECT reads: The only alignment restrictions are PAGE_SIZE alignment. In the event that the requested data is in buffered (in the ARC) it will just be copied from the ARC into the user buffer. For both O_DIRECT writes and reads the O_DIRECT flag will be ignored in the event that file contents are mmap'ed. In this case, all requests that are at least PAGE_SIZE aligned will just fall back to the buffered paths. If the request however is not PAGE_SIZE aligned, EINVAL will be returned as always regardless if the file's contents are mmap'ed. Since O_DIRECT writes go through the normal ZIO pipeline, the following operations are supported just as with normal buffered writes: Checksum Compression Encryption Erasure Coding There is one caveat for the data integrity of O_DIRECT writes that is distinct for each of the OS's supported by ZFS. FreeBSD - FreeBSD is able to place user pages under write protection so any data in the user buffers and written directly down to the VDEV disks is guaranteed to not change. There is no concern with data integrity and O_DIRECT writes. Linux - Linux is not able to place anonymous user pages under write protection. Because of this, if the user decides to manipulate the page contents while the write operation is occurring, data integrity can not be guaranteed. However, there is a module parameter `zfs_vdev_direct_write_verify` that controls the if a O_DIRECT writes that can occur to a top-level VDEV before a checksum verify is run before the contents of the I/O buffer are committed to disk. In the event of a checksum verification failure the write will return EIO. The number of O_DIRECT write checksum verification errors can be observed by doing `zpool status -d`, which will list all verification errors that have occurred on a top-level VDEV. Along with `zpool status`, a ZED event will be issues as `dio_verify` when a checksum verification error occurs. ZVOLs and dedup is not currently supported with Direct I/O. A new dataset property `direct` has been added with the following 3 allowable values: disabled - Accepts O_DIRECT flag, but silently ignores it and treats the request as a buffered IO request. standard - Follows the alignment restrictions outlined above for write/read IO requests when the O_DIRECT flag is used. always - Treats every write/read IO request as though it passed O_DIRECT and will do O_DIRECT if the alignment restrictions are met otherwise will redirect through the ARC. This property will not allow a request to fail. There is also a module parameter zfs_dio_enabled that can be used to force all reads and writes through the ARC. By setting this module parameter to 0, it mimics as if the direct dataset property is set to disabled. Reviewed-by: Brian Behlendorf <behlendorf@llnl.gov> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Brian Atkinson <batkinson@lanl.gov> Co-authored-by: Mark Maybee <mark.maybee@delphix.com> Co-authored-by: Matt Macy <mmacy@FreeBSD.org> Co-authored-by: Brian Behlendorf <behlendorf@llnl.gov> Closes #10018
276 lines
6.8 KiB
Plaintext
276 lines
6.8 KiB
Plaintext
dnl #
|
|
dnl # Check for available iov_iter functionality.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_VFS_IOV_ITER], [
|
|
ZFS_LINUX_TEST_SRC([iov_iter_types], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
int type __attribute__ ((unused)) = ITER_KVEC;
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_advance], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
size_t advance = 512;
|
|
|
|
iov_iter_advance(&iter, advance);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_revert], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
size_t revert = 512;
|
|
|
|
iov_iter_revert(&iter, revert);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_fault_in_readable], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
size_t size = 512;
|
|
int error __attribute__ ((unused));
|
|
|
|
error = iov_iter_fault_in_readable(&iter, size);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([fault_in_iov_iter_readable], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
size_t size = 512;
|
|
int error __attribute__ ((unused));
|
|
|
|
error = fault_in_iov_iter_readable(&iter, size);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_count], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
size_t bytes __attribute__ ((unused));
|
|
|
|
bytes = iov_iter_count(&iter);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([copy_to_iter], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
char buf[512] = { 0 };
|
|
size_t size = 512;
|
|
size_t bytes __attribute__ ((unused));
|
|
|
|
bytes = copy_to_iter((const void *)&buf, size, &iter);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([copy_from_iter], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
char buf[512] = { 0 };
|
|
size_t size = 512;
|
|
size_t bytes __attribute__ ((unused));
|
|
|
|
bytes = copy_from_iter((void *)&buf, size, &iter);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_get_pages2], [
|
|
#include <linux/uio.h>
|
|
], [
|
|
struct iov_iter iter = { 0 };
|
|
struct page **pages = NULL;
|
|
size_t maxsize = 4096;
|
|
unsigned maxpages = 1;
|
|
size_t start;
|
|
size_t ret __attribute__ ((unused));
|
|
|
|
ret = iov_iter_get_pages2(&iter, pages, maxsize, maxpages,
|
|
&start);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_get_pages], [
|
|
#include <linux/uio.h>
|
|
], [
|
|
struct iov_iter iter = { 0 };
|
|
struct page **pages = NULL;
|
|
size_t maxsize = 4096;
|
|
unsigned maxpages = 1;
|
|
size_t start;
|
|
size_t ret __attribute__ ((unused));
|
|
|
|
ret = iov_iter_get_pages(&iter, pages, maxsize, maxpages,
|
|
&start);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iov_iter_type], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
__attribute__((unused)) enum iter_type i = iov_iter_type(&iter);
|
|
])
|
|
|
|
ZFS_LINUX_TEST_SRC([iter_iov], [
|
|
#include <linux/fs.h>
|
|
#include <linux/uio.h>
|
|
],[
|
|
struct iov_iter iter = { 0 };
|
|
__attribute__((unused)) const struct iovec *iov = iter_iov(&iter);
|
|
])
|
|
])
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_VFS_IOV_ITER], [
|
|
enable_vfs_iov_iter="yes"
|
|
|
|
AC_MSG_CHECKING([whether iov_iter types are available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_types], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_TYPES, 1,
|
|
[iov_iter types are available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether iov_iter_advance() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_advance], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_ADVANCE, 1,
|
|
[iov_iter_advance() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether iov_iter_revert() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_revert], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_REVERT, 1,
|
|
[iov_iter_revert() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether iov_iter_fault_in_readable() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_fault_in_readable], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_FAULT_IN_READABLE, 1,
|
|
[iov_iter_fault_in_readable() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING([whether fault_in_iov_iter_readable() is available])
|
|
ZFS_LINUX_TEST_RESULT([fault_in_iov_iter_readable], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_FAULT_IN_IOV_ITER_READABLE, 1,
|
|
[fault_in_iov_iter_readable() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether iov_iter_count() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_count], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_COUNT, 1,
|
|
[iov_iter_count() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether copy_to_iter() is available])
|
|
ZFS_LINUX_TEST_RESULT([copy_to_iter], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_COPY_TO_ITER, 1,
|
|
[copy_to_iter() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
AC_MSG_CHECKING([whether copy_from_iter() is available])
|
|
ZFS_LINUX_TEST_RESULT([copy_from_iter], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_COPY_FROM_ITER, 1,
|
|
[copy_from_iter() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
|
|
dnl #
|
|
dnl # Kernel 6.0 changed iov_iter_get_pages() to iov_iter_page_pages2().
|
|
dnl #
|
|
AC_MSG_CHECKING([whether iov_iter_get_pages2() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_get_pages2], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_GET_PAGES2, 1,
|
|
[iov_iter_get_pages2() is available])
|
|
], [
|
|
AC_MSG_RESULT(no)
|
|
AC_MSG_CHECKING([whether iov_iter_get_pages() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_get_pages], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_GET_PAGES, 1,
|
|
[iov_iter_get_pages() is available])
|
|
], [
|
|
AC_MSG_RESULT(no)
|
|
enable_vfs_iov_iter="no"
|
|
])
|
|
])
|
|
|
|
dnl #
|
|
dnl # This checks for iov_iter_type() in linux/uio.h. It is not
|
|
dnl # required, however, and the module will compiled without it
|
|
dnl # using direct access of the member attribute
|
|
dnl #
|
|
AC_MSG_CHECKING([whether iov_iter_type() is available])
|
|
ZFS_LINUX_TEST_RESULT([iov_iter_type], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOV_ITER_TYPE, 1,
|
|
[iov_iter_type() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|
|
|
|
dnl #
|
|
dnl # As of the 4.9 kernel support is provided for iovecs, kvecs,
|
|
dnl # bvecs and pipes in the iov_iter structure. As long as the
|
|
dnl # other support interfaces are all available the iov_iter can
|
|
dnl # be correctly used in the uio structure.
|
|
dnl #
|
|
AS_IF([test "x$enable_vfs_iov_iter" = "xyes"], [
|
|
AC_DEFINE(HAVE_VFS_IOV_ITER, 1,
|
|
[All required iov_iter interfaces are available])
|
|
])
|
|
|
|
dnl #
|
|
dnl # Kernel 6.5 introduces the iter_iov() function that returns the
|
|
dnl # __iov member of an iov_iter*. The iov member was renamed to this
|
|
dnl # __iov member, and is intended to be accessed via the helper
|
|
dnl # function now.
|
|
dnl #
|
|
AC_MSG_CHECKING([whether iter_iov() is available])
|
|
ZFS_LINUX_TEST_RESULT([iter_iov], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_ITER_IOV, 1,
|
|
[iter_iov() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|
|
])
|