From patchwork Wed Nov 5 01:33:48 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Morton X-Patchwork-Id: 7278 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 415C5DDD0B for ; Wed, 5 Nov 2008 12:34:27 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754077AbYKEBe0 (ORCPT ); Tue, 4 Nov 2008 20:34:26 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754102AbYKEBeZ (ORCPT ); Tue, 4 Nov 2008 20:34:25 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:34848 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754077AbYKEBeX (ORCPT ); Tue, 4 Nov 2008 20:34:23 -0500 Received: from imap1.linux-foundation.org (imap1.linux-foundation.org [140.211.169.55]) by smtp1.linux-foundation.org (8.14.2/8.13.5/Debian-3ubuntu1.1) with ESMTP id mA51Xn39005269 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 4 Nov 2008 17:33:50 -0800 Received: from localhost.localdomain (localhost [127.0.0.1]) by imap1.linux-foundation.org (8.13.5.20060308/8.13.5/Debian-3ubuntu1.1) with ESMTP id mA51XmYd018696; Tue, 4 Nov 2008 17:33:49 -0800 Message-Id: <200811050133.mA51XmYd018696@imap1.linux-foundation.org> Subject: + ext4-quota-handling-for-delayed-allocation-checkpatch-fixes.patch added to -mm tree To: mm-commits@vger.kernel.org Cc: akpm@linux-foundation.org, cmm@us.ibm.com, jack@ucw.cz, linux-ext4@vger.kernel.org From: akpm@linux-foundation.org Date: Tue, 04 Nov 2008 17:33:48 -0800 X-Spam-Status: No, hits=-2.871 required=5 tests=AWL,BAYES_00 X-Spam-Checker-Version: SpamAssassin 3.2.4-osdl_revision__1.47__ X-MIMEDefang-Filter: lf$Revision: 1.188 $ X-Scanned-By: MIMEDefang 2.63 on 140.211.169.13 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org The patch titled ext4-quota-handling-for-delayed-allocation-checkpatch-fixes has been added to the -mm tree. Its filename is ext4-quota-handling-for-delayed-allocation-checkpatch-fixes.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this 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 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: Cc: Jan Kara Cc: Mingming Cao Signed-off-by: Andrew Morton --- fs/ext4/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;