From patchwork Thu Oct 23 19:50:46 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rafael J. Wysocki" X-Patchwork-Id: 5518 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 A1B76DDDE7 for ; Fri, 24 Oct 2008 06:46:08 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753963AbYJWTqG (ORCPT ); Thu, 23 Oct 2008 15:46:06 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754785AbYJWTqF (ORCPT ); Thu, 23 Oct 2008 15:46:05 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:40721 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753963AbYJWTqD (ORCPT ); Thu, 23 Oct 2008 15:46:03 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by ogre.sisk.pl (Postfix) with ESMTP id A09A1108A6F; Thu, 23 Oct 2008 19:55:40 +0200 (CEST) Received: from ogre.sisk.pl ([127.0.0.1]) by localhost (ogre.sisk.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26540-10; Thu, 23 Oct 2008 19:55:34 +0200 (CEST) Received: from [192.168.100.100] (220-bem-13.acn.waw.pl [82.210.184.220]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ogre.sisk.pl (Postfix) with ESMTP id 120E7108091; Thu, 23 Oct 2008 19:55:34 +0200 (CEST) From: "Rafael J. Wysocki" To: Theodore Tso Subject: [PATCH] ext3: Fix compilation of super.c Date: Thu, 23 Oct 2008 21:50:46 +0200 User-Agent: KMail/1.9.9 Cc: Ext4 Developers List , Linus Torvalds , Andrew Morton , Hidehiro Kawai MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200810232150.47692.rjw@sisk.pl> X-Virus-Scanned: amavisd-new at ogre.sisk.pl using MkS_Vir for Linux Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Rafael J. Wysocki ext3: Fix compilation of super.c Signed-off-by: Rafael J. Wysocki --- fs/ext3/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-2.6/fs/ext3/super.c =================================================================== --- linux-2.6.orig/fs/ext3/super.c +++ linux-2.6/fs/ext3/super.c @@ -2836,7 +2836,7 @@ static int ext3_quota_on(struct super_bl err = journal_flush(EXT3_SB(sb)->s_journal); journal_unlock_updates(EXT3_SB(sb)->s_journal); if (err) { - path_put(&nd.path); + path_put(&path); return err; } }