linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c
@ 2021-03-17  4:18 Bhaskar Chowdhury
  2021-03-17  5:11 ` Randy Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-17  4:18 UTC (permalink / raw)
  To: peterz, mingo, will, longman, boqun.feng, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/folowing/following/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 kernel/locking/rwsem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c
index abba5df50006..fe9cc65cd522 100644
--- a/kernel/locking/rwsem.c
+++ b/kernel/locking/rwsem.c
@@ -632,7 +632,7 @@ static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem)
 }

 /*
- * The rwsem_spin_on_owner() function returns the folowing 4 values
+ * The rwsem_spin_on_owner() function returns the following 4 values
  * depending on the lock owner state.
  *   OWNER_NULL  : owner is currently NULL
  *   OWNER_WRITER: when owner changes and is a writer
--
2.30.2


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

* Re: [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c
  2021-03-17  4:18 [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Bhaskar Chowdhury
@ 2021-03-17  5:11 ` Randy Dunlap
  2021-03-17 12:38 ` [tip: locking/core] locking/rwsem: Fix comment typo tip-bot2 for Bhaskar Chowdhury
  2021-03-17 23:31 ` [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Waiman Long
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2021-03-17  5:11 UTC (permalink / raw)
  To: Bhaskar Chowdhury, peterz, mingo, will, longman, boqun.feng,
	linux-kernel

On 3/16/21 9:18 PM, Bhaskar Chowdhury wrote:
> 
> s/folowing/following/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  kernel/locking/rwsem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c
> index abba5df50006..fe9cc65cd522 100644
> --- a/kernel/locking/rwsem.c
> +++ b/kernel/locking/rwsem.c
> @@ -632,7 +632,7 @@ static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem)
>  }
> 
>  /*
> - * The rwsem_spin_on_owner() function returns the folowing 4 values
> + * The rwsem_spin_on_owner() function returns the following 4 values
>   * depending on the lock owner state.
>   *   OWNER_NULL  : owner is currently NULL
>   *   OWNER_WRITER: when owner changes and is a writer
> --


-- 
~Randy


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

* [tip: locking/core] locking/rwsem: Fix comment typo
  2021-03-17  4:18 [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Bhaskar Chowdhury
  2021-03-17  5:11 ` Randy Dunlap
@ 2021-03-17 12:38 ` tip-bot2 for Bhaskar Chowdhury
  2021-03-17 23:31 ` [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Waiman Long
  2 siblings, 0 replies; 4+ messages in thread
From: tip-bot2 for Bhaskar Chowdhury @ 2021-03-17 12:38 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Bhaskar Chowdhury, Ingo Molnar, Randy Dunlap, x86, linux-kernel

The following commit has been merged into the locking/core branch of tip:

Commit-ID:     4faf62b1ef1a9367f7dcf8b7ce509980dfdcee83
Gitweb:        https://git.kernel.org/tip/4faf62b1ef1a9367f7dcf8b7ce509980dfdcee83
Author:        Bhaskar Chowdhury <unixbhaskar@gmail.com>
AuthorDate:    Wed, 17 Mar 2021 09:48:06 +05:30
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Wed, 17 Mar 2021 09:34:39 +01:00

locking/rwsem: Fix comment typo

s/folowing/following/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20210317041806.4096156-1-unixbhaskar@gmail.com
---
 kernel/locking/rwsem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c
index abba5df..fe9cc65 100644
--- a/kernel/locking/rwsem.c
+++ b/kernel/locking/rwsem.c
@@ -632,7 +632,7 @@ static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem)
 }
 
 /*
- * The rwsem_spin_on_owner() function returns the folowing 4 values
+ * The rwsem_spin_on_owner() function returns the following 4 values
  * depending on the lock owner state.
  *   OWNER_NULL  : owner is currently NULL
  *   OWNER_WRITER: when owner changes and is a writer

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

* Re: [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c
  2021-03-17  4:18 [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Bhaskar Chowdhury
  2021-03-17  5:11 ` Randy Dunlap
  2021-03-17 12:38 ` [tip: locking/core] locking/rwsem: Fix comment typo tip-bot2 for Bhaskar Chowdhury
@ 2021-03-17 23:31 ` Waiman Long
  2 siblings, 0 replies; 4+ messages in thread
From: Waiman Long @ 2021-03-17 23:31 UTC (permalink / raw)
  To: Bhaskar Chowdhury, peterz, mingo, will, boqun.feng, linux-kernel; +Cc: rdunlap

On 3/17/21 12:18 AM, Bhaskar Chowdhury wrote:
> s/folowing/following/
>
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
> ---
>   kernel/locking/rwsem.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c
> index abba5df50006..fe9cc65cd522 100644
> --- a/kernel/locking/rwsem.c
> +++ b/kernel/locking/rwsem.c
> @@ -632,7 +632,7 @@ static inline bool rwsem_can_spin_on_owner(struct rw_semaphore *sem)
>   }
>
>   /*
> - * The rwsem_spin_on_owner() function returns the folowing 4 values
> + * The rwsem_spin_on_owner() function returns the following 4 values
>    * depending on the lock owner state.
>    *   OWNER_NULL  : owner is currently NULL
>    *   OWNER_WRITER: when owner changes and is a writer
> --
> 2.30.2
>
Acked-by: Waiman Long <longman@redhat.com>


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

end of thread, other threads:[~2021-03-17 23:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  4:18 [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Bhaskar Chowdhury
2021-03-17  5:11 ` Randy Dunlap
2021-03-17 12:38 ` [tip: locking/core] locking/rwsem: Fix comment typo tip-bot2 for Bhaskar Chowdhury
2021-03-17 23:31 ` [PATCH] kernel: locking: Mundane typo fix in the file rwsem.c Waiman Long

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).