[PATCH] docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate

Glenn Washburn posted 1 patch 2 years, 6 months ago
Documentation/filesystems/vfs.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
Posted by Glenn Washburn 2 years, 6 months ago
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>
---
 Documentation/filesystems/vfs.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 "/",

base-commit: 7fa08de735e41001a70c8ca869b2b159d74c2339
-- 
2.30.2
Re: [PATCH] docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
Posted by Jonathan Corbet 2 years, 6 months ago
Glenn Washburn <development@efficientek.com> writes:

> 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>
> ---
>  Documentation/filesystems/vfs.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

Checkpatch whined about that Fixes line (missing the quotes around the
patch subject), which caused me to go back and look.  Sure enough, the
RST conversion introduced that error...so I fixed Fixes.

jon
Re: [PATCH] docs: Correct missing "d_" prefix for dentry_operations member d_weak_revalidate
Posted by Matthew Wilcox 2 years, 6 months ago
On Mon, Feb 27, 2023 at 12:40:42PM -0600, Glenn Washburn wrote:
> 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>