diff mbox

- ext4-quota-handling-for-delayed-allocation-checkpatch-fixes.patch removed from -mm tree

Message ID 200811062351.mA6NpNkD030281@imap1.linux-foundation.org
State Not Applicable, archived
Headers show

Commit Message

Andrew Morton Nov. 6, 2008, 11:51 p.m. UTC
The patch titled
     ext4-quota-handling-for-delayed-allocation-checkpatch-fixes
has been removed from the -mm tree.  Its filename was
     ext4-quota-handling-for-delayed-allocation-checkpatch-fixes.patch

This patch was dropped because an updated version will be merged

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: ext4-quota-handling-for-delayed-allocation-checkpatch-fixes
From: Andrew Morton <akpm@linux-foundation.org>

ERROR: space required after that ',' (ctx:VxV)
#134: FILE: fs/ext4/inode.c:1560:
+		DQUOT_RELEASE_RSV_BLOCK(inode,total);
 		                             ^

total: 1 errors, 0 warnings, 157 lines checked

./patches/ext4-quota-handling-for-delayed-allocation.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: <linux-ext4@vger.kernel.org>
Cc: Jan Kara <jack@ucw.cz>
Cc: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 fs/ext4/inode.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff -puN fs/ext4/inode.c~ext4-quota-handling-for-delayed-allocation-checkpatch-fixes fs/ext4/inode.c
--- a/fs/ext4/inode.c~ext4-quota-handling-for-delayed-allocation-checkpatch-fixes
+++ a/fs/ext4/inode.c
@@ -1557,7 +1557,7 @@  repeat:
 			yield();
 			goto repeat;
 		}
-		DQUOT_RELEASE_RSV_BLOCK(inode,total);
+		DQUOT_RELEASE_RSV_BLOCK(inode, total);
 		return -ENOSPC;
 	}
 	EXT4_I(inode)->i_reserved_data_blocks += nrblocks;