Skip to content

Commit edecd1a

Browse files
committed
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>
2 parents a6b9f5b + ba4c74f commit edecd1a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

fs/inode.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1593,6 +1593,9 @@ EXPORT_SYMBOL(igrab);
15931593
* @hashval: hash value (usually inode number) to search for
15941594
* @test: callback used for comparisons between inodes
15951595
* @data: opaque data pointer to pass to @test
1596+
* @isnew: return argument telling whether I_NEW was set when
1597+
* the inode was found in hash (the caller needs to
1598+
* wait for I_NEW to clear)
15961599
*
15971600
* Search for the inode specified by @hashval and @data in the inode cache.
15981601
* If the inode is in the cache, the inode is returned with an incremented

fs/namei.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2834,10 +2834,11 @@ static int filename_parentat(int dfd, struct filename *name,
28342834
}
28352835

28362836
/**
2837-
* start_dirop - begin a create or remove dirop, performing locking and lookup
2837+
* __start_dirop - begin a create or remove dirop, performing locking and lookup
28382838
* @parent: the dentry of the parent in which the operation will occur
28392839
* @name: a qstr holding the name within that parent
28402840
* @lookup_flags: intent and other lookup flags.
2841+
* @state: task state bitmask
28412842
*
28422843
* The lookup is performed and necessary locks are taken so that, on success,
28432844
* the returned dentry can be operated on safely.

0 commit comments

Comments
 (0)