[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4A1474B6.5000408@redhat.com>
Date: Wed, 20 May 2009 16:23:02 -0500
From: Eric Sandeen <sandeen@...hat.com>
To: Andi Kleen <andi@...stfloor.org>
CC: Theodore Tso <tytso@....edu>, Jan Kara <jack@...e.cz>,
linux-ext4@...r.kernel.org
Subject: Re: [PATCH] EXT3: Change all super.c messages to print the device
Andi Kleen wrote:
>> Just a one I guess:
>>
>> $ grep '^+' patch | grep 'KERN[_A-Z]\+[ $]'
>> + ext3_msg(sb, KERN_ERR "(no)acl options not supported");
>> + printk(KERN_INFO "EXT3-FS (%s): ", sb->s_id);
>
> Ok thanks. Not sure how grep missed that one
>
> Here's a updated patch with that fixed.
>
> ---
Sorry, one more nitpick while I was comparing this to my ext4 patch
doing the same:
> @@ -1465,11 +1473,11 @@
> #define PLURAL(x) (x), ((x)==1) ? "" : "s"
>
> if (nr_orphans)
> - printk(KERN_INFO "EXT3-fs: %s: %d orphan inode%s deleted\n",
> - sb->s_id, PLURAL(nr_orphans));
> + ext3_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
> + PLURAL(nr_orphans));
> if (nr_truncates)
> - printk(KERN_INFO "EXT3-fs: %s: %d truncate%s cleaned up\n",
> - sb->s_id, PLURAL(nr_truncates));
> + ext3_msg(sb, KERN_INFO, "%5d truncate%s cleaned up",
^^^ I doubt you wanted this :)
-Eric
> + PLURAL(nr_truncates));
> #ifdef CONFIG_QUOTA
> /* Turn quotas off */
> for (i = 0; i < MAXQUOTAS; i++) {
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists