diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-18 09:09:02 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-18 10:01:59 -0400 |
commit | 1aed3e4204dd787d53b3cd6363eb63bb4900c38e (patch) | |
tree | 503582fa9f7fa68a1da7af3770d3a627d041fb52 /Documentation | |
parent | 7cc90cc3ffe22a0d81b8d605b20a82ec7911012d (diff) | |
download | linux-3.10-1aed3e4204dd787d53b3cd6363eb63bb4900c38e.tar.gz linux-3.10-1aed3e4204dd787d53b3cd6363eb63bb4900c38e.tar.bz2 linux-3.10-1aed3e4204dd787d53b3cd6363eb63bb4900c38e.zip |
lose 'mounting_here' argument in ->d_manage()
it's always false...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/filesystems/vfs.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index ef0714aa8e4..306f0ae8df0 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt @@ -873,7 +873,7 @@ struct dentry_operations { void (*d_iput)(struct dentry *, struct inode *); char *(*d_dname)(struct dentry *, char *, int); struct vfsmount *(*d_automount)(struct path *); - int (*d_manage)(struct dentry *, bool, bool); + int (*d_manage)(struct dentry *, bool); }; d_revalidate: called when the VFS needs to revalidate a dentry. This @@ -969,10 +969,6 @@ struct dentry_operations { mounted on it and not to check the automount flag. Any other error code will abort pathwalk completely. - If the 'mounting_here' parameter is true, then namespace_sem is being - held by the caller and the function should not initiate any mounts or - unmounts that it will then wait for. - If the 'rcu_walk' parameter is true, then the caller is doing a pathwalk in RCU-walk mode. Sleeping is not permitted in this mode, and the caller can be asked to leave it and call again by returing |