diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2013-10-19 17:56:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-10-22 07:02:40 -0400 |
commit | 606d6fe3ffdb5190d4c8e4d6cd23aa6c1f9cb6ad (patch) | |
tree | 55361b49f6160bcc3bdbff6d11d13bf384fec118 /fs/namei.c | |
parent | 93cd00043fffec840fa36909c4a8eb0f735dfb04 (diff) |
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>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c index 645268f23eb6..caa28051e197 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -2294,10 +2294,11 @@ out: | |||
2294 | * path_mountpoint - look up a path to be umounted | 2294 | * path_mountpoint - look up a path to be umounted |
2295 | * @dfd: directory file descriptor to start walk from | 2295 | * @dfd: directory file descriptor to start walk from |
2296 | * @name: full pathname to walk | 2296 | * @name: full pathname to walk |
2297 | * @path: pointer to container for result | ||
2297 | * @flags: lookup flags | 2298 | * @flags: lookup flags |
2298 | * | 2299 | * |
2299 | * Look up the given name, but don't attempt to revalidate the last component. | 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 | static int | 2303 | static int |
2303 | path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags) | 2304 | path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags) |