fs/9p: kerneldoc fixes

Function parameters comment fixing.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Cc: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Fabian Frederick
2014-06-04 16:06:26 -07:00
committed by Linus Torvalds
parent bdbeacdea2
commit fd2916bd77
4 changed files with 8 additions and 10 deletions

View File

@ -42,7 +42,6 @@
/** /**
* struct p9_rdir - readdir accounting * struct p9_rdir - readdir accounting
* @mutex: mutex protecting readdir
* @head: start offset of current dirread buffer * @head: start offset of current dirread buffer
* @tail: end offset of current dirread buffer * @tail: end offset of current dirread buffer
* @buf: dirread buffer * @buf: dirread buffer

View File

@ -681,7 +681,7 @@ v9fs_direct_read(struct file *filp, char __user *udata, size_t count,
/** /**
* v9fs_cached_file_read - read from a file * v9fs_cached_file_read - read from a file
* @filp: file pointer to read * @filp: file pointer to read
* @udata: user data buffer to read data into * @data: user data buffer to read data into
* @count: size of buffer * @count: size of buffer
* @offset: offset at which to read data * @offset: offset at which to read data
* *
@ -698,7 +698,7 @@ v9fs_cached_file_read(struct file *filp, char __user *data, size_t count,
/** /**
* v9fs_mmap_file_read - read from a file * v9fs_mmap_file_read - read from a file
* @filp: file pointer to read * @filp: file pointer to read
* @udata: user data buffer to read data into * @data: user data buffer to read data into
* @count: size of buffer * @count: size of buffer
* @offset: offset at which to read data * @offset: offset at which to read data
* *

View File

@ -580,7 +580,7 @@ static int v9fs_at_to_dotl_flags(int flags)
* v9fs_remove - helper function to remove files and directories * v9fs_remove - helper function to remove files and directories
* @dir: directory inode that is being deleted * @dir: directory inode that is being deleted
* @dentry: dentry that is being deleted * @dentry: dentry that is being deleted
* @rmdir: removing a directory * @flags: removing a directory
* *
*/ */
@ -778,7 +778,7 @@ static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode
* v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
* @dir: inode that is being walked from * @dir: inode that is being walked from
* @dentry: dentry that is being walked to? * @dentry: dentry that is being walked to?
* @nameidata: path data * @flags: lookup flags (unused)
* *
*/ */
@ -1324,7 +1324,7 @@ v9fs_vfs_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
* v9fs_vfs_mkspecial - create a special file * v9fs_vfs_mkspecial - create a special file
* @dir: inode to create special file in * @dir: inode to create special file in
* @dentry: dentry to create * @dentry: dentry to create
* @mode: mode to create special file * @perm: mode to create special file
* @extension: 9p2000.u format extension string representing special file * @extension: 9p2000.u format extension string representing special file
* *
*/ */

View File

@ -226,7 +226,7 @@ int v9fs_open_to_dotl_flags(int flags)
* v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol. * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
* @dir: directory inode that is being created * @dir: directory inode that is being created
* @dentry: dentry that is being deleted * @dentry: dentry that is being deleted
* @mode: create permissions * @omode: create permissions
* *
*/ */
@ -375,7 +375,7 @@ err_clunk_old_fid:
* v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
* @dir: inode that is being unlinked * @dir: inode that is being unlinked
* @dentry: dentry that is being unlinked * @dentry: dentry that is being unlinked
* @mode: mode for new directory * @omode: mode for new directory
* *
*/ */
@ -607,7 +607,6 @@ int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
* v9fs_stat2inode_dotl - populate an inode structure with stat info * v9fs_stat2inode_dotl - populate an inode structure with stat info
* @stat: stat structure * @stat: stat structure
* @inode: inode to populate * @inode: inode to populate
* @sb: superblock of filesystem
* *
*/ */
@ -808,7 +807,7 @@ v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
* v9fs_vfs_mknod_dotl - create a special file * v9fs_vfs_mknod_dotl - create a special file
* @dir: inode destination for new link * @dir: inode destination for new link
* @dentry: dentry for file * @dentry: dentry for file
* @mode: mode for creation * @omode: mode for creation
* @rdev: device associated with special file * @rdev: device associated with special file
* *
*/ */