diff options
author | Martin Waitz <tali@admingilde.org> | 2006-02-01 06:06:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-01 11:53:27 -0500 |
commit | 7045f37b17ffa6e85435ca980122b46a74caa7e4 (patch) | |
tree | bdf7544b9d6412199c4dec1b4897822c9b6daeab /fs | |
parent | 99acf0442111cc452ac1b93868dde8f6ff37a989 (diff) |
[PATCH] DocBook: fix some kernel-doc comments in fs and block
Update some parameter descriptions to actually match the code.
Signed-off-by: Martin Waitz <tali@admingilde.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/inode.c | 2 | ||||
-rw-r--r-- | fs/namei.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c index 108138d4e909..d0be6159eb7f 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
@@ -1179,7 +1179,7 @@ EXPORT_SYMBOL(bmap); | |||
1179 | /** | 1179 | /** |
1180 | * touch_atime - update the access time | 1180 | * touch_atime - update the access time |
1181 | * @mnt: mount the inode is accessed on | 1181 | * @mnt: mount the inode is accessed on |
1182 | * @inode: inode accessed | 1182 | * @dentry: dentry accessed |
1183 | * | 1183 | * |
1184 | * Update the accessed time on an inode and mark it for writeback. | 1184 | * Update the accessed time on an inode and mark it for writeback. |
1185 | * This function automatically handles read only file systems and media, | 1185 | * This function automatically handles read only file systems and media, |
diff --git a/fs/namei.c b/fs/namei.c index 4acdac043b6b..7ac9fb4acb2c 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1161,6 +1161,7 @@ static int __path_lookup_intent_open(int dfd, const char *name, | |||
1161 | 1161 | ||
1162 | /** | 1162 | /** |
1163 | * path_lookup_open - lookup a file path with open intent | 1163 | * path_lookup_open - lookup a file path with open intent |
1164 | * @dfd: the directory to use as base, or AT_FDCWD | ||
1164 | * @name: pointer to file name | 1165 | * @name: pointer to file name |
1165 | * @lookup_flags: lookup intent flags | 1166 | * @lookup_flags: lookup intent flags |
1166 | * @nd: pointer to nameidata | 1167 | * @nd: pointer to nameidata |
@@ -1175,6 +1176,7 @@ int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags, | |||
1175 | 1176 | ||
1176 | /** | 1177 | /** |
1177 | * path_lookup_create - lookup a file path with open + create intent | 1178 | * path_lookup_create - lookup a file path with open + create intent |
1179 | * @dfd: the directory to use as base, or AT_FDCWD | ||
1178 | * @name: pointer to file name | 1180 | * @name: pointer to file name |
1179 | * @lookup_flags: lookup intent flags | 1181 | * @lookup_flags: lookup intent flags |
1180 | * @nd: pointer to nameidata | 1182 | * @nd: pointer to nameidata |