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.

fs/namei.c: fix new kernel-doc warning

Add @path parameter to fix kernel-doc warning.
Also fix a spello/typo.

Warning(fs/namei.c:2304): No description found for parameter 'path'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
606d6fe3 93cd0004

+2 -1
+2 -1
fs/namei.c
··· 2294 2294 * path_mountpoint - look up a path to be umounted 2295 2295 * @dfd: directory file descriptor to start walk from 2296 2296 * @name: full pathname to walk 2297 + * @path: pointer to container for result 2297 2298 * @flags: lookup flags 2298 2299 * 2299 2300 * Look up the given name, but don't attempt to revalidate the last component. 2300 - * Returns 0 and "path" will be valid on success; Retuns error otherwise. 2301 + * Returns 0 and "path" will be valid on success; Returns error otherwise. 2301 2302 */ 2302 2303 static int 2303 2304 path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags)