-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove zpl_revalidate: fix snapshot rollback
Open files, which aren't present in the snapshot, which is being roll-backed to, need to disappear from the visible VFS image of the dataset. Kernel provides __d_drop function to locklessly drop invalid entry from the dcache, but inode can be referenced by multiple dentries. The introduced spl_d_drop_aliases function walks and invalidates all aliases of an inode. Signed-off-by: Pavel Snajdr <[email protected]>
- Loading branch information
Showing
6 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
dnl # | ||
dnl # 3.18 API change | ||
dnl # Dentry aliases are in d_u struct dentry member | ||
dnl # | ||
AC_DEFUN([ZFS_AC_KERNEL_SRC_DENTRY_ALIAS_D_U], [ | ||
ZFS_LINUX_TEST_SRC([dentry_alias_d_u], [ | ||
#include <linux/fs.h> | ||
#include <linux/dcache.h> | ||
#include <linux/list.h> | ||
], [ | ||
struct inode *inode __attribute__ ((unused)) = NULL; | ||
struct dentry *dentry __attribute__ ((unused)) = NULL; | ||
hlist_for_each_entry(dentry, &inode->i_dentry, | ||
d_u.d_alias) { | ||
__d_drop(dentry); | ||
} | ||
]) | ||
]) | ||
|
||
AC_DEFUN([ZFS_AC_KERNEL_DENTRY_ALIAS_D_U], [ | ||
AC_MSG_CHECKING([whether dentry aliases are in d_u member]) | ||
ZFS_LINUX_TEST_RESULT([dentry_alias_d_u], [ | ||
AC_MSG_RESULT(yes) | ||
AC_DEFINE(HAVE_DENTRY_D_U_ALIASES, 1, | ||
[dentry aliases are in d_u member]) | ||
],[ | ||
AC_MSG_RESULT(no) | ||
]) | ||
]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters