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>
This commit is contained in:
Christian Brauner
2026-01-06 23:17:57 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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.