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.

VFS: fix __start_dirop() kernel-doc warnings

Sphinx report kernel-doc warnings:

WARNING: ./fs/namei.c:2853 function parameter 'state' not described in '__start_dirop'
WARNING: ./fs/namei.c:2853 expecting prototype for start_dirop(). Prototype was for __start_dirop() instead

Fix them up.

Fixes: ff7c4ea11a05c8 ("VFS: add start_creating_killable() and start_removing_killable()")
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Link: https://patch.msgid.link/20251219024620.22880-3-bagasdotme@gmail.com
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>

authored by

Bagas Sanjaya and committed by
Christian Brauner
73a91ef3 fe33729d

+2 -1
+2 -1
fs/namei.c
··· 2844 2844 } 2845 2845 2846 2846 /** 2847 - * start_dirop - begin a create or remove dirop, performing locking and lookup 2847 + * __start_dirop - begin a create or remove dirop, performing locking and lookup 2848 2848 * @parent: the dentry of the parent in which the operation will occur 2849 2849 * @name: a qstr holding the name within that parent 2850 2850 * @lookup_flags: intent and other lookup flags. 2851 + * @state: task state bitmask 2851 2852 * 2852 2853 * The lookup is performed and necessary locks are taken so that, on success, 2853 2854 * the returned dentry can be operated on safely.