2020-04-05 16:12:55

by Qiujun Huang

[permalink] [raw]
Subject: [PATCH] mm, slab_common: Fix a typo in comment "eariler"->"earlier"

There is a typo in comment, fix it.
s/eariler/earlier/

Signed-off-by: Qiujun Huang <[email protected]>
---
mm/slab_common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/slab_common.c b/mm/slab_common.c
index 1907cb2903c7..3b93a95cfb02 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -731,7 +731,7 @@ static void kmemcg_rcufn(struct rcu_head *head)
/*
* We need to grab blocking locks. Bounce to ->work. The
* work item shares the space with the RCU head and can't be
- * initialized eariler.
+ * initialized earlier.
*/
INIT_WORK(&s->memcg_params.work, kmemcg_workfn);
queue_work(memcg_kmem_cache_wq, &s->memcg_params.work);
--
2.17.1


Subject: Re: [PATCH] mm, slab_common: Fix a typo in comment "eariler"->"earlier"

On Mon, 6 Apr 2020, Qiujun Huang wrote:

> There is a typo in comment, fix it.
> s/eariler/earlier/


Acked-by: Christoph Lameter <[email protected]>