Unverified Commit edecd1ae authored by Christian Brauner's avatar Christian Brauner
Browse files

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: default avatarChristian Brauner <brauner@kernel.org>
parents a6b9f5b2 ba4c74f8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
+2 −1
Original line number Diff line number Diff line
@@ -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.