public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] Fix minor typos in jbd2's journal.c
@ 2009-05-20 19:01 Alberto Bertogli
  2009-05-21  8:44 ` Jiri Kosina
  0 siblings, 1 reply; 6+ messages in thread
From: Alberto Bertogli @ 2009-05-20 19:01 UTC (permalink / raw)
  To: linux-ext4; +Cc: linux-kernel, tytso, jack, trivial, Alberto Bertogli

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---
 fs/jbd2/journal.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
index 5814410..85af8ea 100644
--- a/fs/jbd2/journal.c
+++ b/fs/jbd2/journal.c
@@ -1781,7 +1781,7 @@ int jbd2_journal_wipe(journal_t *journal, int write)
  * Journal abort has very specific semantics, which we describe
  * for journal abort.
  *
- * Two internal function, which provide abort to te jbd layer
+ * Two internal function, which provide abort to the jbd layer
  * itself are here.
  */
 
@@ -1879,7 +1879,7 @@ void jbd2_journal_abort(journal_t *journal, int errno)
  * int jbd2_journal_errno () - returns the journal's error state.
  * @journal: journal to examine.
  *
- * This is the errno numbet set with jbd2_journal_abort(), the last
+ * This is the errno number set with jbd2_journal_abort(), the last
  * time the journal was mounted - if the journal was stopped
  * without calling abort this will be 0.
  *
@@ -1903,7 +1903,7 @@ int jbd2_journal_errno(journal_t *journal)
  * int jbd2_journal_clear_err () - clears the journal's error state
  * @journal: journal to act on.
  *
- * An error must be cleared or Acked to take a FS out of readonly
+ * An error must be cleared or acked to take a FS out of readonly
  * mode.
  */
 int jbd2_journal_clear_err(journal_t *journal)
@@ -1923,7 +1923,7 @@ int jbd2_journal_clear_err(journal_t *journal)
  * void jbd2_journal_ack_err() - Ack journal err.
  * @journal: journal to act on.
  *
- * An error must be cleared or Acked to take a FS out of readonly
+ * An error must be cleared or acked to take a FS out of readonly
  * mode.
  */
 void jbd2_journal_ack_err(journal_t *journal)
-- 
1.6.2.2.646.gb214


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/4] Fix minor typos in jbd2's journal.c
  2009-05-20 19:01 [PATCH 1/4] Fix minor typos in jbd2's journal.c Alberto Bertogli
@ 2009-05-21  8:44 ` Jiri Kosina
  2009-05-21 13:39   ` [PATCH] " Alberto Bertogli
  0 siblings, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2009-05-21  8:44 UTC (permalink / raw)
  To: Alberto Bertogli; +Cc: linux-ext4, linux-kernel, tytso, jack, trivial

On Wed, 20 May 2009, Alberto Bertogli wrote:

> Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
> ---
>  fs/jbd2/journal.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
> index 5814410..85af8ea 100644
> --- a/fs/jbd2/journal.c
> +++ b/fs/jbd2/journal.c
> @@ -1781,7 +1781,7 @@ int jbd2_journal_wipe(journal_t *journal, int write)
>   * Journal abort has very specific semantics, which we describe
>   * for journal abort.
>   *
> - * Two internal function, which provide abort to te jbd layer
> + * Two internal function, which provide abort to the jbd layer

function*s*, while you are at it?

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] Fix minor typos in jbd2's journal.c
  2009-05-21  8:44 ` Jiri Kosina
@ 2009-05-21 13:39   ` Alberto Bertogli
  2009-05-27 15:29     ` Jiri Kosina
  2009-06-03 21:50     ` Theodore Tso
  0 siblings, 2 replies; 6+ messages in thread
From: Alberto Bertogli @ 2009-05-21 13:39 UTC (permalink / raw)
  To: jkosina; +Cc: linux-ext4, linux-kernel, tytso, jack, trivial, Alberto Bertogli

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---

On Thu, May 21, 2009 at 10:44:03AM +0200, Jiri Kosina wrote:
> > - * Two internal function, which provide abort to te jbd layer
> > + * Two internal function, which provide abort to the jbd layer
> 
> function*s*, while you are at it?

Fixed, thanks!
		Alberto


 fs/jbd2/journal.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
index 5814410..371a17e 100644
--- a/fs/jbd2/journal.c
+++ b/fs/jbd2/journal.c
@@ -1781,7 +1781,7 @@ int jbd2_journal_wipe(journal_t *journal, int write)
  * Journal abort has very specific semantics, which we describe
  * for journal abort.
  *
- * Two internal function, which provide abort to te jbd layer
+ * Two internal functions which provide abort to the jbd layer
  * itself are here.
  */
 
@@ -1879,7 +1879,7 @@ void jbd2_journal_abort(journal_t *journal, int errno)
  * int jbd2_journal_errno () - returns the journal's error state.
  * @journal: journal to examine.
  *
- * This is the errno numbet set with jbd2_journal_abort(), the last
+ * This is the errno number set with jbd2_journal_abort(), the last
  * time the journal was mounted - if the journal was stopped
  * without calling abort this will be 0.
  *
@@ -1903,7 +1903,7 @@ int jbd2_journal_errno(journal_t *journal)
  * int jbd2_journal_clear_err () - clears the journal's error state
  * @journal: journal to act on.
  *
- * An error must be cleared or Acked to take a FS out of readonly
+ * An error must be cleared or acked to take a FS out of readonly
  * mode.
  */
 int jbd2_journal_clear_err(journal_t *journal)
@@ -1923,7 +1923,7 @@ int jbd2_journal_clear_err(journal_t *journal)
  * void jbd2_journal_ack_err() - Ack journal err.
  * @journal: journal to act on.
  *
- * An error must be cleared or Acked to take a FS out of readonly
+ * An error must be cleared or acked to take a FS out of readonly
  * mode.
  */
 void jbd2_journal_ack_err(journal_t *journal)
-- 
1.6.2.2.646.gb214


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix minor typos in jbd2's journal.c
  2009-05-21 13:39   ` [PATCH] " Alberto Bertogli
@ 2009-05-27 15:29     ` Jiri Kosina
  2009-06-03 21:50     ` Theodore Tso
  1 sibling, 0 replies; 6+ messages in thread
From: Jiri Kosina @ 2009-05-27 15:29 UTC (permalink / raw)
  To: Alberto Bertogli; +Cc: linux-ext4, linux-kernel, tytso, jack, trivial

On Thu, 21 May 2009, Alberto Bertogli wrote:

> Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
> ---
> 
> On Thu, May 21, 2009 at 10:44:03AM +0200, Jiri Kosina wrote:
> > > - * Two internal function, which provide abort to te jbd layer
> > > + * Two internal function, which provide abort to the jbd layer
> > 
> > function*s*, while you are at it?
> 
> Fixed, thanks!
> 		Alberto
> 
> 
>  fs/jbd2/journal.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
> index 5814410..371a17e 100644
> --- a/fs/jbd2/journal.c
> +++ b/fs/jbd2/journal.c
> @@ -1781,7 +1781,7 @@ int jbd2_journal_wipe(journal_t *journal, int write)
>   * Journal abort has very specific semantics, which we describe
>   * for journal abort.
>   *
> - * Two internal function, which provide abort to te jbd layer
> + * Two internal functions which provide abort to the jbd layer
>   * itself are here.
>   */
>  
> @@ -1879,7 +1879,7 @@ void jbd2_journal_abort(journal_t *journal, int errno)
>   * int jbd2_journal_errno () - returns the journal's error state.
>   * @journal: journal to examine.
>   *
> - * This is the errno numbet set with jbd2_journal_abort(), the last
> + * This is the errno number set with jbd2_journal_abort(), the last
>   * time the journal was mounted - if the journal was stopped
>   * without calling abort this will be 0.
>   *
> @@ -1903,7 +1903,7 @@ int jbd2_journal_errno(journal_t *journal)
>   * int jbd2_journal_clear_err () - clears the journal's error state
>   * @journal: journal to act on.
>   *
> - * An error must be cleared or Acked to take a FS out of readonly
> + * An error must be cleared or acked to take a FS out of readonly
>   * mode.
>   */
>  int jbd2_journal_clear_err(journal_t *journal)
> @@ -1923,7 +1923,7 @@ int jbd2_journal_clear_err(journal_t *journal)
>   * void jbd2_journal_ack_err() - Ack journal err.
>   * @journal: journal to act on.
>   *
> - * An error must be cleared or Acked to take a FS out of readonly
> + * An error must be cleared or acked to take a FS out of readonly
>   * mode.
>   */
>  void jbd2_journal_ack_err(journal_t *journal)

Applied to trivial tree, thanks Alberto.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix minor typos in jbd2's journal.c
  2009-05-21 13:39   ` [PATCH] " Alberto Bertogli
  2009-05-27 15:29     ` Jiri Kosina
@ 2009-06-03 21:50     ` Theodore Tso
  2009-06-03 21:53       ` Jiri Kosina
  1 sibling, 1 reply; 6+ messages in thread
From: Theodore Tso @ 2009-06-03 21:50 UTC (permalink / raw)
  To: Alberto Bertogli; +Cc: jkosina, linux-ext4, linux-kernel, jack, trivial

On Thu, May 21, 2009 at 10:39:47AM -0300, Alberto Bertogli wrote:
> Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

Thanks, i've pulled this into the ext4 patch queue.

	     	    	      	       - Ted

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Fix minor typos in jbd2's journal.c
  2009-06-03 21:50     ` Theodore Tso
@ 2009-06-03 21:53       ` Jiri Kosina
  0 siblings, 0 replies; 6+ messages in thread
From: Jiri Kosina @ 2009-06-03 21:53 UTC (permalink / raw)
  To: Theodore Tso; +Cc: Alberto Bertogli, linux-ext4, linux-kernel, jack

On Wed, 3 Jun 2009, Theodore Tso wrote:

> > Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
> Thanks, i've pulled this into the ext4 patch queue.

Thanks for letting me know, dropped from trivial queue.

-- 
Jiri Kosina

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-06-03 21:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-20 19:01 [PATCH 1/4] Fix minor typos in jbd2's journal.c Alberto Bertogli
2009-05-21  8:44 ` Jiri Kosina
2009-05-21 13:39   ` [PATCH] " Alberto Bertogli
2009-05-27 15:29     ` Jiri Kosina
2009-06-03 21:50     ` Theodore Tso
2009-06-03 21:53       ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox