* [PATCH 12/17]fs:jbd Remove one to many n's in a word.
[not found] <1298781250-2718-1-git-send-email-justinmattock@gmail.com>
@ 2011-02-27 4:34 ` Justin P. Mattock
2011-02-27 22:38 ` Ted Ts'o
2011-02-28 18:25 ` Jan Kara
0 siblings, 2 replies; 3+ messages in thread
From: Justin P. Mattock @ 2011-02-27 4:34 UTC (permalink / raw)
To: trivial
Cc: linux-kernel, Justin P. Mattock, Andrew Morton, Jan Kara,
linux-ext4
The Patch below removes one to many "n's" in a word..
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: Jan Kara <jack@suse.cz>
CC: linux-ext4@vger.kernel.org
---
fs/jbd/journal.c | 2 +-
fs/jbd2/journal.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c
index da1b5e4..eb11601 100644
--- a/fs/jbd/journal.c
+++ b/fs/jbd/journal.c
@@ -839,7 +839,7 @@ journal_t * journal_init_inode (struct inode *inode)
err = journal_bmap(journal, 0, &blocknr);
/* If that failed, give up */
if (err) {
- printk(KERN_ERR "%s: Cannnot locate journal superblock\n",
+ printk(KERN_ERR "%s: Cannot locate journal superblock\n",
__func__);
goto out_err;
}
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
index 97e7346..90407b8 100644
--- a/fs/jbd2/journal.c
+++ b/fs/jbd2/journal.c
@@ -991,7 +991,7 @@ journal_t * jbd2_journal_init_inode (struct inode *inode)
err = jbd2_journal_bmap(journal, 0, &blocknr);
/* If that failed, give up */
if (err) {
- printk(KERN_ERR "%s: Cannnot locate journal superblock\n",
+ printk(KERN_ERR "%s: Cannot locate journal superblock\n",
__func__);
goto out_err;
}
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 12/17]fs:jbd Remove one to many n's in a word.
2011-02-27 4:34 ` [PATCH 12/17]fs:jbd Remove one to many n's in a word Justin P. Mattock
@ 2011-02-27 22:38 ` Ted Ts'o
2011-02-28 18:25 ` Jan Kara
1 sibling, 0 replies; 3+ messages in thread
From: Ted Ts'o @ 2011-02-27 22:38 UTC (permalink / raw)
To: Justin P. Mattock
Cc: trivial, linux-kernel, Andrew Morton, Jan Kara, linux-ext4
On Sat, Feb 26, 2011 at 08:34:05PM -0800, Justin P. Mattock wrote:
> The Patch below removes one to many "n's" in a word..
>
> Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
> CC: Andrew Morton <akpm@linux-foundation.org>
> CC: Jan Kara <jack@suse.cz>
> CC: linux-ext4@vger.kernel.org
Acked-by: "Theodore Ts'o" <tytso@mit.edu>
- Ted
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 12/17]fs:jbd Remove one to many n's in a word.
2011-02-27 4:34 ` [PATCH 12/17]fs:jbd Remove one to many n's in a word Justin P. Mattock
2011-02-27 22:38 ` Ted Ts'o
@ 2011-02-28 18:25 ` Jan Kara
1 sibling, 0 replies; 3+ messages in thread
From: Jan Kara @ 2011-02-28 18:25 UTC (permalink / raw)
To: Justin P. Mattock
Cc: trivial, linux-kernel, Andrew Morton, Jan Kara, linux-ext4
On Sat 26-02-11 20:34:05, Justin P. Mattock wrote:
> The Patch below removes one to many "n's" in a word..
Thanks. Merged.
Honza
>
> Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
> CC: Andrew Morton <akpm@linux-foundation.org>
> CC: Jan Kara <jack@suse.cz>
> CC: linux-ext4@vger.kernel.org
> ---
> fs/jbd/journal.c | 2 +-
> fs/jbd2/journal.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c
> index da1b5e4..eb11601 100644
> --- a/fs/jbd/journal.c
> +++ b/fs/jbd/journal.c
> @@ -839,7 +839,7 @@ journal_t * journal_init_inode (struct inode *inode)
> err = journal_bmap(journal, 0, &blocknr);
> /* If that failed, give up */
> if (err) {
> - printk(KERN_ERR "%s: Cannnot locate journal superblock\n",
> + printk(KERN_ERR "%s: Cannot locate journal superblock\n",
> __func__);
> goto out_err;
> }
> diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
> index 97e7346..90407b8 100644
> --- a/fs/jbd2/journal.c
> +++ b/fs/jbd2/journal.c
> @@ -991,7 +991,7 @@ journal_t * jbd2_journal_init_inode (struct inode *inode)
> err = jbd2_journal_bmap(journal, 0, &blocknr);
> /* If that failed, give up */
> if (err) {
> - printk(KERN_ERR "%s: Cannnot locate journal superblock\n",
> + printk(KERN_ERR "%s: Cannot locate journal superblock\n",
> __func__);
> goto out_err;
> }
> --
> 1.7.4.1
>
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-02-28 18:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1298781250-2718-1-git-send-email-justinmattock@gmail.com>
2011-02-27 4:34 ` [PATCH 12/17]fs:jbd Remove one to many n's in a word Justin P. Mattock
2011-02-27 22:38 ` Ted Ts'o
2011-02-28 18:25 ` Jan Kara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).