aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-07-04 14:28:44 -0400
committerEric Van Hensbergen <ericvh@gmail.com>2015-03-20 10:34:41 -0400
commite8782e2fbcb5c1c8823a733a985a2896a1450334 (patch)
tree77c8ca8dace2d8baaadc0857f7862d5d15e37405 /fs
parentb314acaccd7e0d55314d96be4a33b5f50d0b3344 (diff)
9p: kerneldoc warning fixes
options argument was removed from v9fs_session_info in commit 4b53e4b50077 ("9p: remove unnecessary v9fses->options which duplicates the mount string") iov and nr_segs were removed from v9fs_direct_IO in commit d8d3d94b80aa ("pass iov_iter to ->direct_IO()") Cc: Eric Van Hensbergen <ericvh@gmail.com> Cc: Ron Minnich <rminnich@sandia.gov> Cc: Latchesar Ionkov <lucho@ionkov.net> Cc: v9fs-developer@lists.sourceforge.net Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/9p/v9fs.h1
-rw-r--r--fs/9p/vfs_addr.c2
2 files changed, 0 insertions, 3 deletions
diff --git a/fs/9p/v9fs.h b/fs/9p/v9fs.h
index 099c7712631c..fb9ffcb43277 100644
--- a/fs/9p/v9fs.h
+++ b/fs/9p/v9fs.h
@@ -78,7 +78,6 @@ enum p9_cache_modes {
78 * @cache: cache mode of type &p9_cache_modes 78 * @cache: cache mode of type &p9_cache_modes
79 * @cachetag: the tag of the cache associated with this session 79 * @cachetag: the tag of the cache associated with this session
80 * @fscache: session cookie associated with FS-Cache 80 * @fscache: session cookie associated with FS-Cache
81 * @options: copy of options string given by user
82 * @uname: string user name to mount hierarchy as 81 * @uname: string user name to mount hierarchy as
83 * @aname: mount specifier for remote hierarchy 82 * @aname: mount specifier for remote hierarchy
84 * @maxdata: maximum data to be sent/recvd per protocol message 83 * @maxdata: maximum data to be sent/recvd per protocol message
diff --git a/fs/9p/vfs_addr.c b/fs/9p/vfs_addr.c
index eb14e055ea83..3672b16feac6 100644
--- a/fs/9p/vfs_addr.c
+++ b/fs/9p/vfs_addr.c
@@ -243,9 +243,7 @@ static int v9fs_launder_page(struct page *page)
243 * v9fs_direct_IO - 9P address space operation for direct I/O 243 * v9fs_direct_IO - 9P address space operation for direct I/O
244 * @rw: direction (read or write) 244 * @rw: direction (read or write)
245 * @iocb: target I/O control block 245 * @iocb: target I/O control block
246 * @iov: array of vectors that define I/O buffer
247 * @pos: offset in file to begin the operation 246 * @pos: offset in file to begin the operation
248 * @nr_segs: size of iovec array
249 * 247 *
250 * The presence of v9fs_direct_IO() in the address space ops vector 248 * The presence of v9fs_direct_IO() in the address space ops vector
251 * allowes open() O_DIRECT flags which would have failed otherwise. 249 * allowes open() O_DIRECT flags which would have failed otherwise.