diff options
author | Brian Behlendorf <[email protected]> | 2011-11-09 20:47:59 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-11-10 10:03:08 -0800 |
commit | adcd70bd1af405464d6dbc6b2057594cddda7a24 (patch) | |
tree | 8adac7dcb42c19e1f9cd82f3a1d34af54f565217 /config/kernel.m4 | |
parent | 8c19f5b407132b7ee1d6b7dc7c763f2ae80be976 (diff) |
Linux 3.1 compat, fops->fsync()
The Linux 3.1 kernel updated the fops->fsync() callback yet again.
They now pass the requested range and delegate the responsibility
for calling filemap_write_and_wait_range() to the callback. In
addition imutex is no longer held by the caller and the callback
is responsible for taking the lock if required.
This commit updates the code to provide a zpl_fsync() function
for the updated API. Implementations for the previous two APIs
are also maintained for compatibility.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #445
Diffstat (limited to 'config/kernel.m4')
-rw-r--r-- | config/kernel.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/kernel.m4 b/config/kernel.m4 index fec157a0c..8cfbccfc5 100644 --- a/config/kernel.m4 +++ b/config/kernel.m4 @@ -32,7 +32,7 @@ AC_DEFUN([ZFS_AC_CONFIG_KERNEL], [ ZFS_AC_KERNEL_CONST_XATTR_HANDLER ZFS_AC_KERNEL_XATTR_HANDLER_GET ZFS_AC_KERNEL_XATTR_HANDLER_SET - ZFS_AC_KERNEL_FSYNC_2ARGS + ZFS_AC_KERNEL_FSYNC ZFS_AC_KERNEL_EVICT_INODE ZFS_AC_KERNEL_INSERT_INODE_LOCKED ZFS_AC_KERNEL_D_OBTAIN_ALIAS |