All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/slub.c: Trivial typo fixes
@ 2021-03-24 13:06 Bhaskar Chowdhury
  2021-03-24 18:49   ` David Rientjes
  0 siblings, 1 reply; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-24 13:06 UTC (permalink / raw)
  To: cl, penberg, rientjes, iamjoonsoo.kim, akpm, vbabka, linux-mm,
	linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/operatios/operation/
s/Mininum/Minimum/
s/mininum/minimum/  ......two different places.

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 mm/slub.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mm/slub.c b/mm/slub.c
index 3021ce9bf1b3..cd3c7be33f69 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -3,7 +3,7 @@
  * SLUB: A slab allocator that limits cache line use instead of queuing
  * objects in per cpu and per node lists.
  *
- * The allocator synchronizes using per slab locks or atomic operatios
+ * The allocator synchronizes using per slab locks or atomic operation
  * and only uses a centralized lock to manage a pool of partial slabs.
  *
  * (C) 2007 SGI, Christoph Lameter
@@ -160,7 +160,7 @@ static inline bool kmem_cache_has_cpu_partial(struct kmem_cache *s)
 #undef SLUB_DEBUG_CMPXCHG

 /*
- * Mininum number of partial slabs. These will be left on the partial
+ * Minimum number of partial slabs. These will be left on the partial
  * lists even if they are empty. kmem_cache_shrink may reclaim them.
  */
 #define MIN_PARTIAL 5
@@ -832,7 +832,7 @@ static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
  *
  * 	A. Free pointer (if we cannot overwrite object on free)
  * 	B. Tracking data for SLAB_STORE_USER
- * 	C. Padding to reach required alignment boundary or at mininum
+ * 	C. Padding to reach required alignment boundary or at minimum
  * 		one word if debugging is on to be able to detect writes
  * 		before the word boundary.
  *
@@ -3421,7 +3421,7 @@ static unsigned int slub_min_objects;
  *
  * Higher order allocations also allow the placement of more objects in a
  * slab and thereby reduce object handling overhead. If the user has
- * requested a higher mininum order then we start with that one instead of
+ * requested a higher minimum order then we start with that one instead of
  * the smallest order which will fit the object.
  */
 static inline unsigned int slab_order(unsigned int size,
--
2.30.1


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

* Re: [PATCH] mm/slub.c: Trivial typo fixes
  2021-03-24 13:06 [PATCH] mm/slub.c: Trivial typo fixes Bhaskar Chowdhury
@ 2021-03-24 18:49   ` David Rientjes
  0 siblings, 0 replies; 4+ messages in thread
From: David Rientjes @ 2021-03-24 18:49 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: cl, penberg, iamjoonsoo.kim, akpm, vbabka, linux-mm,
	linux-kernel, rdunlap

On Wed, 24 Mar 2021, Bhaskar Chowdhury wrote:

> diff --git a/mm/slub.c b/mm/slub.c
> index 3021ce9bf1b3..cd3c7be33f69 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -3,7 +3,7 @@
>   * SLUB: A slab allocator that limits cache line use instead of queuing
>   * objects in per cpu and per node lists.
>   *
> - * The allocator synchronizes using per slab locks or atomic operatios
> + * The allocator synchronizes using per slab locks or atomic operation

operations

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

* Re: [PATCH] mm/slub.c: Trivial typo fixes
@ 2021-03-24 18:49   ` David Rientjes
  0 siblings, 0 replies; 4+ messages in thread
From: David Rientjes @ 2021-03-24 18:49 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: cl, penberg, iamjoonsoo.kim, akpm, vbabka, linux-mm,
	linux-kernel, rdunlap

On Wed, 24 Mar 2021, Bhaskar Chowdhury wrote:

> diff --git a/mm/slub.c b/mm/slub.c
> index 3021ce9bf1b3..cd3c7be33f69 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -3,7 +3,7 @@
>   * SLUB: A slab allocator that limits cache line use instead of queuing
>   * objects in per cpu and per node lists.
>   *
> - * The allocator synchronizes using per slab locks or atomic operatios
> + * The allocator synchronizes using per slab locks or atomic operation

operations


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

* Re: [PATCH] mm/slub.c: Trivial typo fixes
  2021-03-24 18:49   ` David Rientjes
  (?)
@ 2021-03-25  4:39   ` Bhaskar Chowdhury
  -1 siblings, 0 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-25  4:39 UTC (permalink / raw)
  To: David Rientjes
  Cc: cl, penberg, iamjoonsoo.kim, akpm, vbabka, linux-mm,
	linux-kernel, rdunlap

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

On 11:49 Wed 24 Mar 2021, David Rientjes wrote:
>On Wed, 24 Mar 2021, Bhaskar Chowdhury wrote:
>
>> diff --git a/mm/slub.c b/mm/slub.c
>> index 3021ce9bf1b3..cd3c7be33f69 100644
>> --- a/mm/slub.c
>> +++ b/mm/slub.c
>> @@ -3,7 +3,7 @@
>>   * SLUB: A slab allocator that limits cache line use instead of queuing
>>   * objects in per cpu and per node lists.
>>   *
>> - * The allocator synchronizes using per slab locks or atomic operatios
>> + * The allocator synchronizes using per slab locks or atomic operation
>
>operations

Thanks..V2 on the way..

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

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-24 13:06 [PATCH] mm/slub.c: Trivial typo fixes Bhaskar Chowdhury
2021-03-24 18:49 ` David Rientjes
2021-03-24 18:49   ` David Rientjes
2021-03-25  4:39   ` Bhaskar Chowdhury

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.