diff options
author | Glenn Washburn <development@efficientek.com> | 2023-02-27 19:40:42 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-03-07 18:21:11 +0100 |
commit | 74596085796fae0cfce3e42ee46bf4f8acbdac55 (patch) | |
tree | 1584ad7175b36e0e7517d1ed8d640ff4c29203ec /Documentation | |
parent | sched/doc: supplement CPU capacity with RISC-V (diff) | |
download | linux-74596085796fae0cfce3e42ee46bf4f8acbdac55.tar.xz linux-74596085796fae0cfce3e42ee46bf4f8acbdac55.zip |
docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
The details for struct dentry_operations member d_weak_revalidate is
missing a "d_" prefix.
Fixes: af96c1e304f7 ("docs: filesystems: vfs: Convert vfs.txt to RST")
Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Link: https://lore.kernel.org/r/20230227184042.2375235-1-development@efficientek.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/filesystems/vfs.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/vfs.rst b/Documentation/filesystems/vfs.rst index c53f30251a66..f3b344f0c0a4 100644 --- a/Documentation/filesystems/vfs.rst +++ b/Documentation/filesystems/vfs.rst @@ -1222,7 +1222,7 @@ defined: return -ECHILD and it will be called again in ref-walk mode. -``_weak_revalidate`` +``d_weak_revalidate`` called when the VFS needs to revalidate a "jumped" dentry. This is called when a path-walk ends at dentry that was not acquired by doing a lookup in the parent directory. This includes "/", |