summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Brauner <brauner@kernel.org>2026-01-06 23:17:57 +0100
committerChristian Brauner <brauner@kernel.org>2026-01-06 23:17:57 +0100
commitedecd1ae594abc8b14ed36c438d1a7db729403ba (patch)
tree02dc1a9d3bfba911608d3994394a7ce597cc11ac
parenta6b9f5b2f04bd7809cd72c5d33af944758c00ab1 (diff)
parentba4c74f80ef39bb5a387dd3b13422199515efec0 (diff)
Merge patch series "vfs kernel-doc fixes for 6.19"
Bagas Sanjaya <bagasdotme@gmail.com> says: Here are kernel-doc fixes for vfs subsystem targetting 6.19. This small series is split from much larger kernel-doc fixes series I posted a while ago [1]. * patches from https://patch.msgid.link/20251219024620.22880-1-bagasdotme@gmail.com: VFS: fix __start_dirop() kernel-doc warnings fs: Describe @isnew parameter in ilookup5_nowait() Link: https://patch.msgid.link/20251219024620.22880-1-bagasdotme@gmail.com Signed-off-by: Christian Brauner <brauner@kernel.org>
-rw-r--r--fs/inode.c3
-rw-r--r--fs/namei.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c
index a6df537eb856..b986da098e87 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1593,6 +1593,9 @@ EXPORT_SYMBOL(igrab);
* @hashval: hash value (usually inode number) to search for
* @test: callback used for comparisons between inodes
* @data: opaque data pointer to pass to @test
+ * @isnew: return argument telling whether I_NEW was set when
+ * the inode was found in hash (the caller needs to
+ * wait for I_NEW to clear)
*
* Search for the inode specified by @hashval and @data in the inode cache.
* If the inode is in the cache, the inode is returned with an incremented
diff --git a/fs/namei.c b/fs/namei.c
index e0d5ebdf43a3..4e3a5fd370a8 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -2834,10 +2834,11 @@ static int filename_parentat(int dfd, struct filename *name,
}
/**
- * start_dirop - begin a create or remove dirop, performing locking and lookup
+ * __start_dirop - begin a create or remove dirop, performing locking and lookup
* @parent: the dentry of the parent in which the operation will occur
* @name: a qstr holding the name within that parent
* @lookup_flags: intent and other lookup flags.
+ * @state: task state bitmask
*
* The lookup is performed and necessary locks are taken so that, on success,
* the returned dentry can be operated on safely.