Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Matthew Wilcox and committed by
Al Viro
3fae1746 cf85ec88

+3 -2
+3 -2
fs/attr.c
··· 120 120 * inode_newsize_ok - may this inode be truncated to a given size 121 121 * @inode: the inode to be truncated 122 122 * @offset: the new size to assign to the inode 123 - * @Returns: 0 on success, -ve errno on failure 124 123 * 125 124 * inode_newsize_ok must be called with i_mutex held. 126 125 * ··· 129 130 * returned. @inode must be a file (not directory), with appropriate 130 131 * permissions to allow truncate (inode_newsize_ok does NOT check these 131 132 * conditions). 133 + * 134 + * Return: 0 on success, -ve errno on failure 132 135 */ 133 136 int inode_newsize_ok(const struct inode *inode, loff_t offset) 134 137 { ··· 206 205 /** 207 206 * notify_change - modify attributes of a filesytem object 208 207 * @dentry: object affected 209 - * @iattr: new attributes 208 + * @attr: new attributes 210 209 * @delegated_inode: returns inode, if the inode is delegated 211 210 * 212 211 * The caller must hold the i_mutex on the affected object.