summaryrefslogtreecommitdiffstats
path: root/fs/attr.c
diff options
context:
space:
mode:
authorMatthew Wilcox <willy@infradead.org>2018-07-03 08:08:34 -0700
committerAl Viro <viro@zeniv.linux.org.uk>2018-07-03 16:44:45 -0400
commit3fae17468a96f3a397dff633be82a42d89fb1b91 (patch)
tree736c8b1234512d17a333eb29c736faeccfc5376a /fs/attr.c
parentcf85ec88701610f0de2e959ac447d9613462fbc7 (diff)
downloadlinux-stable-3fae17468a96f3a397dff633be82a42d89fb1b91.tar.gz
linux-stable-3fae17468a96f3a397dff633be82a42d89fb1b91.tar.bz2
linux-stable-3fae17468a96f3a397dff633be82a42d89fb1b91.zip
fs: Fix attr.c kernel-doc
A couple of minor warnings. Signed-off-by: Matthew Wilcox <willy@infradead.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/attr.c')
-rw-r--r--fs/attr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/attr.c b/fs/attr.c
index e3d53bf12240..d22e8187477f 100644
--- a/fs/attr.c
+++ b/fs/attr.c
@@ -120,7 +120,6 @@ EXPORT_SYMBOL(setattr_prepare);
* inode_newsize_ok - may this inode be truncated to a given size
* @inode: the inode to be truncated
* @offset: the new size to assign to the inode
- * @Returns: 0 on success, -ve errno on failure
*
* inode_newsize_ok must be called with i_mutex held.
*
@@ -130,6 +129,8 @@ EXPORT_SYMBOL(setattr_prepare);
* returned. @inode must be a file (not directory), with appropriate
* permissions to allow truncate (inode_newsize_ok does NOT check these
* conditions).
+ *
+ * Return: 0 on success, -ve errno on failure
*/
int inode_newsize_ok(const struct inode *inode, loff_t offset)
{
@@ -205,7 +206,7 @@ EXPORT_SYMBOL(setattr_copy);
/**
* notify_change - modify attributes of a filesytem object
* @dentry: object affected
- * @iattr: new attributes
+ * @attr: new attributes
* @delegated_inode: returns inode, if the inode is delegated
*
* The caller must hold the i_mutex on the affected object.