linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] include: linux:  Typos fixed in throughout the file lru_cache.h
@ 2021-03-01 13:02 Bhaskar Chowdhury
  2021-03-01 17:04 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-01 13:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: rdunlap, Bhaskar Chowdhury


Few typos fixed throughout the file.


Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 include/linux/lru_cache.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/linux/lru_cache.h b/include/linux/lru_cache.h
index 429d67d815ce..f65c6734be3c 100644
--- a/include/linux/lru_cache.h
+++ b/include/linux/lru_cache.h
@@ -32,7 +32,7 @@ This header file (and its .c file; kernel-doc of functions see there)
   Because of this later property, it is called "lru_cache".
   As it actually Tracks Objects in an Active SeT, we could also call it
   toast (incidentally that is what may happen to the data on the
-  backend storage uppon next resync, if we don't get it right).
+  backend storage upon next resync, if we don't get it right).

 What for?

@@ -152,7 +152,7 @@ struct lc_element {
 	 * for paranoia, and for "lc_element_to_index" */
 	unsigned lc_index;
 	/* if we want to track a larger set of objects,
-	 * it needs to become arch independend u64 */
+	 * it needs to become arch independent u64 */
 	unsigned lc_number;
 	/* special label when on free list */
 #define LC_FREE (~0U)
@@ -263,7 +263,7 @@ extern void lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char
  *
  * Allows (expects) the set to be "dirty".  Note that the reference counts and
  * order on the active and lru lists may still change.  Used to serialize
- * changing transactions.  Returns true if we aquired the lock.
+ * changing transactions.  Returns true if we acquired the lock.
  */
 static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
 {
@@ -275,7 +275,7 @@ static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
  * @lc: the lru cache to operate on
  *
  * Note that the reference counts and order on the active and lru lists may
- * still change.  Only works on a "clean" set.  Returns true if we aquired the
+ * still change.  Only works on a "clean" set.  Returns true if we acquired the
  * lock, which means there are no pending changes, and any further attempt to
  * change the set will not succeed until the next lc_unlock().
  */
--
2.26.2


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

* Re: [PATCH] include: linux: Typos fixed in throughout the file lru_cache.h
  2021-03-01 13:02 [PATCH] include: linux: Typos fixed in throughout the file lru_cache.h Bhaskar Chowdhury
@ 2021-03-01 17:04 ` Randy Dunlap
  2021-03-01 19:57   ` Bhaskar Chowdhury
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2021-03-01 17:04 UTC (permalink / raw)
  To: Bhaskar Chowdhury, linux-kernel

On 3/1/21 5:02 AM, Bhaskar Chowdhury wrote:
> 
> Few typos fixed throughout the file.
> 
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

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

but no maintainer Cc:ed to pick it up....

> ---
>  include/linux/lru_cache.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/include/linux/lru_cache.h b/include/linux/lru_cache.h
> index 429d67d815ce..f65c6734be3c 100644
> --- a/include/linux/lru_cache.h
> +++ b/include/linux/lru_cache.h
> @@ -32,7 +32,7 @@ This header file (and its .c file; kernel-doc of functions see there)
>    Because of this later property, it is called "lru_cache".
>    As it actually Tracks Objects in an Active SeT, we could also call it
>    toast (incidentally that is what may happen to the data on the
> -  backend storage uppon next resync, if we don't get it right).
> +  backend storage upon next resync, if we don't get it right).
> 
>  What for?
> 
> @@ -152,7 +152,7 @@ struct lc_element {
>  	 * for paranoia, and for "lc_element_to_index" */
>  	unsigned lc_index;
>  	/* if we want to track a larger set of objects,
> -	 * it needs to become arch independend u64 */
> +	 * it needs to become arch independent u64 */
>  	unsigned lc_number;
>  	/* special label when on free list */
>  #define LC_FREE (~0U)
> @@ -263,7 +263,7 @@ extern void lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char
>   *
>   * Allows (expects) the set to be "dirty".  Note that the reference counts and
>   * order on the active and lru lists may still change.  Used to serialize
> - * changing transactions.  Returns true if we aquired the lock.
> + * changing transactions.  Returns true if we acquired the lock.
>   */
>  static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
>  {
> @@ -275,7 +275,7 @@ static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
>   * @lc: the lru cache to operate on
>   *
>   * Note that the reference counts and order on the active and lru lists may
> - * still change.  Only works on a "clean" set.  Returns true if we aquired the
> + * still change.  Only works on a "clean" set.  Returns true if we acquired the
>   * lock, which means there are no pending changes, and any further attempt to
>   * change the set will not succeed until the next lc_unlock().
>   */
> --


-- 
~Randy


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

* Re: [PATCH] include: linux: Typos fixed in throughout the file lru_cache.h
  2021-03-01 17:04 ` Randy Dunlap
@ 2021-03-01 19:57   ` Bhaskar Chowdhury
  0 siblings, 0 replies; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-01 19:57 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2865 bytes --]

On 09:04 Mon 01 Mar 2021, Randy Dunlap wrote:
>On 3/1/21 5:02 AM, Bhaskar Chowdhury wrote:
>>
>> Few typos fixed throughout the file.
>>
>>
>> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
>
>Acked-by: Randy Dunlap <rdunlap@infradead.org>
>
>but no maintainer Cc:ed to pick it up....
>

None showed up ...except this :

✔ ~/git-linux/linux [patch L|✔]
01:24 $ owner include/linux/lru_cache.h
Bhaskar Chowdhury <unixbhaskar@gmail.com> (commit_signer:1/1=100%,authored:1/1=100%,added_lines:4/4=100%,removed_lines:4/4=100%)
linux-kernel@vger.kernel.org (open list)


get_maintainer.pl returns those.



>> ---
>>  include/linux/lru_cache.h | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/include/linux/lru_cache.h b/include/linux/lru_cache.h
>> index 429d67d815ce..f65c6734be3c 100644
>> --- a/include/linux/lru_cache.h
>> +++ b/include/linux/lru_cache.h
>> @@ -32,7 +32,7 @@ This header file (and its .c file; kernel-doc of functions see there)
>>    Because of this later property, it is called "lru_cache".
>>    As it actually Tracks Objects in an Active SeT, we could also call it
>>    toast (incidentally that is what may happen to the data on the
>> -  backend storage uppon next resync, if we don't get it right).
>> +  backend storage upon next resync, if we don't get it right).
>>
>>  What for?
>>
>> @@ -152,7 +152,7 @@ struct lc_element {
>>  	 * for paranoia, and for "lc_element_to_index" */
>>  	unsigned lc_index;
>>  	/* if we want to track a larger set of objects,
>> -	 * it needs to become arch independend u64 */
>> +	 * it needs to become arch independent u64 */
>>  	unsigned lc_number;
>>  	/* special label when on free list */
>>  #define LC_FREE (~0U)
>> @@ -263,7 +263,7 @@ extern void lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char
>>   *
>>   * Allows (expects) the set to be "dirty".  Note that the reference counts and
>>   * order on the active and lru lists may still change.  Used to serialize
>> - * changing transactions.  Returns true if we aquired the lock.
>> + * changing transactions.  Returns true if we acquired the lock.
>>   */
>>  static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
>>  {
>> @@ -275,7 +275,7 @@ static inline int lc_try_lock_for_transaction(struct lru_cache *lc)
>>   * @lc: the lru cache to operate on
>>   *
>>   * Note that the reference counts and order on the active and lru lists may
>> - * still change.  Only works on a "clean" set.  Returns true if we aquired the
>> + * still change.  Only works on a "clean" set.  Returns true if we acquired the
>>   * lock, which means there are no pending changes, and any further attempt to
>>   * change the set will not succeed until the next lc_unlock().
>>   */
>> --
>
>
>--
>~Randy
>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-03-02  5:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-01 13:02 [PATCH] include: linux: Typos fixed in throughout the file lru_cache.h Bhaskar Chowdhury
2021-03-01 17:04 ` Randy Dunlap
2021-03-01 19:57   ` Bhaskar Chowdhury

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