From: Andrew Morton WARNING: line over 80 characters #31: FILE: fs/affs/affs.h:177: +extern struct inode *affs_iget(struct super_block *sb, unsigned long ino); WARNING: line over 80 characters #44: FILE: fs/affs/amigaffs.c:173: + dir = affs_iget(sb, be32_to_cpu(AFFS_TAIL(sb, link_bh)->parent)); ERROR: need space after that ',' (ctx:VxV) #81: FILE: fs/affs/inode.c:36: + pr_debug("AFFS: affs_iget(%lu)\n",inode->i_ino); ^ total: 1 errors, 2 warnings, 130 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: David Howells Cc: Roman Zippel Signed-off-by: Andrew Morton --- fs/affs/affs.h | 3 ++- fs/affs/inode.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff -puN fs/affs/affs.h~iget-stop-affs-from-using-iget-and-read_inode-try-checkpatch-fixes fs/affs/affs.h --- a/fs/affs/affs.h~iget-stop-affs-from-using-iget-and-read_inode-try-checkpatch-fixes +++ a/fs/affs/affs.h @@ -174,7 +174,8 @@ extern void affs_put_inode(struct ino extern void affs_drop_inode(struct inode *inode); extern void affs_delete_inode(struct inode *inode); extern void affs_clear_inode(struct inode *inode); -extern struct inode *affs_iget(struct super_block *sb, unsigned long ino); +extern struct inode *affs_iget(struct super_block *sb, + unsigned long ino); extern int affs_write_inode(struct inode *inode, int); extern int affs_add_entry(struct inode *dir, struct inode *inode, struct dentry *dentry, s32 type); diff -puN fs/affs/inode.c~iget-stop-affs-from-using-iget-and-read_inode-try-checkpatch-fixes fs/affs/inode.c --- a/fs/affs/inode.c~iget-stop-affs-from-using-iget-and-read_inode-try-checkpatch-fixes +++ a/fs/affs/inode.c @@ -33,7 +33,7 @@ struct inode *affs_iget(struct super_blo if (!(inode->i_state & I_NEW)) return inode; - pr_debug("AFFS: affs_iget(%lu)\n",inode->i_ino); + pr_debug("AFFS: affs_iget(%lu)\n", inode->i_ino); block = inode->i_ino; bh = affs_bread(sb, block); _