Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753291AbZLHKAe (ORCPT ); Tue, 8 Dec 2009 05:00:34 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753164AbZLHKAd (ORCPT ); Tue, 8 Dec 2009 05:00:33 -0500 Received: from cantor.suse.de ([195.135.220.2]:51630 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752893AbZLHKAc (ORCPT ); Tue, 8 Dec 2009 05:00:32 -0500 Date: Tue, 8 Dec 2009 11:00:32 +0100 From: Jan Kara To: root Cc: linux-kernel@vger.kernel.org, linux-ext4@vger.kernel.org, Manish Katiyar , Jan Kara , Andrew Morton , Christoph Hellwig , Al Viro , Corentin Chary Subject: Re: [PATCH] fix ext2 parse_options printk Message-ID: <20091208100032.GA4095@quack.suse.de> References: <1260194461-8937-1-git-send-email-jeremy.cochoy@gmail.com> <1260194461-8937-2-git-send-email-jeremy.cochoy@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1260194461-8937-2-git-send-email-jeremy.cochoy@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2044 Lines: 64 On Mon 07-12-09 15:01:01, root wrote: > From: Jeremy Cochoy > > Signed-off-by: Jeremy Cochoy Thanks for the patch but it's actually already fixed in my tree due to ext2 message unification patches. So should get into 2.6.33-rc1. Honza > --- > fs/ext2/super.c | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/fs/ext2/super.c b/fs/ext2/super.c > index 1a9ffee..f28618f 100644 > --- a/fs/ext2/super.c > +++ b/fs/ext2/super.c > @@ -505,7 +505,7 @@ static int parse_options (char * options, > #else > case Opt_user_xattr: > case Opt_nouser_xattr: > - printk("EXT2 (no)user_xattr options not supported\n"); > + printk(KERN_NOTICE "EXT2 (no)user_xattr options not supported\n"); > break; > #endif > #ifdef CONFIG_EXT2_FS_POSIX_ACL > @@ -518,14 +518,14 @@ static int parse_options (char * options, > #else > case Opt_acl: > case Opt_noacl: > - printk("EXT2 (no)acl options not supported\n"); > + printk(KERN_NOTICE "EXT2 (no)acl options not supported\n"); > break; > #endif > case Opt_xip: > #ifdef CONFIG_EXT2_FS_XIP > set_opt (sbi->s_mount_opt, XIP); > #else > - printk("EXT2 xip option not supported\n"); > + printk(KERN_NOTICE "EXT2 xip option not supported\n"); > #endif > break; > > @@ -550,11 +550,11 @@ static int parse_options (char * options, > > case Opt_reservation: > set_opt(sbi->s_mount_opt, RESERVATION); > - printk("reservations ON\n"); > + printk(KERN_INFO "reservations ON\n"); > break; > case Opt_noreservation: > clear_opt(sbi->s_mount_opt, RESERVATION); > - printk("reservations OFF\n"); > + printk(KERN_INFO "reservations OFF\n"); > break; > case Opt_ignore: > break; > -- > 1.5.6.5 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/