From: Andrew Morton ERROR: use tabs not spaces #105: FILE: fs/efs/namei.c:94: +^I ^Ireturn ERR_PTR(-ESTALE);$ total: 1 errors, 0 warnings, 151 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 Signed-off-by: Andrew Morton --- fs/efs/namei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/efs/namei.c~iget-stop-efs-from-using-iget-and-read_inode-try-checkpatch-fixes fs/efs/namei.c --- a/fs/efs/namei.c~iget-stop-efs-from-using-iget-and-read_inode-try-checkpatch-fixes +++ a/fs/efs/namei.c @@ -91,7 +91,7 @@ static struct inode *efs_nfs_get_inode(s if (generation && inode->i_generation != generation) { iput(inode); - return ERR_PTR(-ESTALE); + return ERR_PTR(-ESTALE); } return inode; _