Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+5 -1
+3
fs/inode.c
··· 1593 1593 * @hashval: hash value (usually inode number) to search for 1594 1594 * @test: callback used for comparisons between inodes 1595 1595 * @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) 1596 1599 * 1597 1600 * Search for the inode specified by @hashval and @data in the inode cache. 1598 1601 * If the inode is in the cache, the inode is returned with an incremented
+2 -1
fs/namei.c
··· 2834 2834 } 2835 2835 2836 2836 /** 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 2838 2838 * @parent: the dentry of the parent in which the operation will occur 2839 2839 * @name: a qstr holding the name within that parent 2840 2840 * @lookup_flags: intent and other lookup flags. 2841 + * @state: task state bitmask 2841 2842 * 2842 2843 * The lookup is performed and necessary locks are taken so that, on success, 2843 2844 * the returned dentry can be operated on safely.