From: Akinobu Mita Subject: [PATCH 2/4] ext3: add missing ext3_journal_stop() Date: Sun, 17 Feb 2008 15:03:43 +0900 Message-ID: <20080217060342.GE3390@APFDCB5C> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Cc: Andrew Morton , Stephen Tweedie , adilger@clusterfs.com To: linux-ext4@vger.kernel.org Return-path: Received: from wa-out-1112.google.com ([209.85.146.181]:47590 "EHLO wa-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752341AbYBQGKC (ORCPT ); Sun, 17 Feb 2008 01:10:02 -0500 Received: by wa-out-1112.google.com with SMTP id v27so2075354wah.23 for ; Sat, 16 Feb 2008 22:10:02 -0800 (PST) Content-Disposition: inline Sender: linux-ext4-owner@vger.kernel.org List-ID: Add missing ext3_journal_stop() in error handling. Signed-off-by: Akinobu Mita Cc: Stephen Tweedie Cc: adilger@clusterfs.com Cc: Andrew Morton --- fs/ext3/resize.c | 1 + 1 file changed, 1 insertion(+) Index: 2.6-rc/fs/ext3/resize.c =================================================================== --- 2.6-rc.orig/fs/ext3/resize.c +++ 2.6-rc/fs/ext3/resize.c @@ -1049,6 +1049,7 @@ int ext3_group_extend(struct super_block ext3_warning(sb, __FUNCTION__, "multiple resizers run on filesystem!"); unlock_super(sb); + ext3_journal_stop(handle); err = -EBUSY; goto exit_put; }