diff mbox

- quota-add-reservation-support-for-delayed-block-allocation-checkpatch-fixes.patch removed from -mm tree

Message ID 200811062351.mA6NpEeg030199@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
     quota-add-reservation-support-for-delayed-block-allocation-checkpatch-fixes
has been removed from the -mm tree.  Its filename was
     quota-add-reservation-support-for-delayed-block-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: quota-add-reservation-support-for-delayed-block-allocation-checkpatch-fixes
From: Andrew Morton <akpm@linux-foundation.org>

ERROR: code indent should use tabs where possible
#193: FILE: fs/dquot.c:1279:
+         * re-enter the quota code and are already holding the mutex$

ERROR: code indent should use tabs where possible
#194: FILE: fs/dquot.c:1280:
+         */$

WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
#254: FILE: fs/dquot.c:2352:
+EXPORT_SYMBOL(dquot_reserve_space);

WARNING: line over 80 characters
#274: FILE: include/linux/quota.h:295:
+	int (*reserve_space) (struct inode *, qsize_t, int); /* reserve quota for delayed block allocation */

total: 2 errors, 2 warnings, 244 lines checked

./patches/quota-add-reservation-support-for-delayed-block-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/dquot.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff -puN fs/dquot.c~quota-add-reservation-support-for-delayed-block-allocation-checkpatch-fixes fs/dquot.c
--- a/fs/dquot.c~quota-add-reservation-support-for-delayed-block-allocation-checkpatch-fixes
+++ a/fs/dquot.c
@@ -1276,8 +1276,8 @@  int dquot_alloc_space(struct inode *inod
 
 	/*
 	 * First test before acquiring mutex - solves deadlocks when we
-         * re-enter the quota code and are already holding the mutex
-         */
+	 * re-enter the quota code and are already holding the mutex
+	 */
 	if (IS_NOQUOTA(inode)) {
 		inode_add_bytes(inode, number);
 		return ret;