linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Chen Ridong <chenridong@huaweicloud.com>
To: Michal Hocko <mhocko@suse.com>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: hannes@cmpxchg.org, yosryahmed@google.com,
	roman.gushchin@linux.dev, shakeel.butt@linux.dev,
	muchun.song@linux.dev, davidf@vimeo.com, vbabka@suse.cz,
	handai.szj@taobao.com, rientjes@google.com,
	kamezawa.hiroyu@jp.fujitsu.com, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org, cgroups@vger.kernel.org,
	chenridong@huawei.com, wangweiyang2@huawei.com
Subject: Re: [PATCH v2] memcg: fix soft lockup in the OOM process
Date: Mon, 23 Dec 2024 10:37:49 +0800	[thread overview]
Message-ID: <acb8ff3b-8c7a-4e31-a566-35c5427ba951@huaweicloud.com> (raw)
In-Reply-To: <6319a3df-b19c-4e35-a46c-c4a5ea003a6b@huaweicloud.com>



On 2024/12/23 10:23, Chen Ridong wrote:
> 
> 
> On 2024/12/21 15:28, Michal Hocko wrote:
>> On Fri 20-12-24 14:47:34, Andrew Morton wrote:
>>> On Fri, 20 Dec 2024 10:31:23 +0000 Chen Ridong <chenridong@huaweicloud.com> wrote:
>>>
>>>> From: Chen Ridong <chenridong@huawei.com>
>>>>
>>>> A soft lockup issue was found in the product with about 56,000 tasks were
>>>> in the OOM cgroup, it was traversing them when the soft lockup was
>>>> triggered.
>>>>
>>>> ...
>>>>
>>>> This is because thousands of processes are in the OOM cgroup, it takes a
>>>> long time to traverse all of them. As a result, this lead to soft lockup
>>>> in the OOM process.
>>>>
>>>> To fix this issue, call 'cond_resched' in the 'mem_cgroup_scan_tasks'
>>>> function per 1000 iterations. For global OOM, call
>>>> 'touch_softlockup_watchdog' per 1000 iterations to avoid this issue.
>>>>
>>>> ...
>>>>
>>>> --- a/include/linux/oom.h
>>>> +++ b/include/linux/oom.h
>>>> @@ -14,6 +14,13 @@ struct notifier_block;
>>>>  struct mem_cgroup;
>>>>  struct task_struct;
>>>>  
>>>> +/* When it traverses for long time,  to prevent softlockup, call
>>>> + * cond_resched/touch_softlockup_watchdog very 1000 iterations.
>>>> + * The 1000 value  is not exactly right, it's used to mitigate the overhead
>>>> + * of cond_resched/touch_softlockup_watchdog.
>>>> + */
>>>> +#define SOFTLOCKUP_PREVENTION_LIMIT 1000
>>>
>>> If this is to have potentially kernel-wide scope, its name should
>>> identify which subsystem it belongs to.  Maybe OOM_KILL_RESCHED or
>>> something.
>>>
>>> But I'm not sure that this really needs to exist.  Are the two usage
>>> sites particularly related?
>>
>> Yes, I do not think this needs to pretend to be a more generic mechanism
>> to prevent soft lockups. The number of iterations highly depends on the
>> operation itself.
>>
> 
> Thanks, I will update.
> 
>>>
>>>>  enum oom_constraint {
>>>>  	CONSTRAINT_NONE,
>>>>  	CONSTRAINT_CPUSET,
>>>> diff --git a/mm/memcontrol.c b/mm/memcontrol.c
>>>> index 5c373d275e7a..f4c12d6e7b37 100644
>>>> --- a/mm/memcontrol.c
>>>> +++ b/mm/memcontrol.c
>>>> @@ -1161,6 +1161,7 @@ void mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
>>>>  {
>>>>  	struct mem_cgroup *iter;
>>>>  	int ret = 0;
>>>> +	int i = 0;
>>>>  
>>>>  	BUG_ON(mem_cgroup_is_root(memcg));
>>>>  
>>>> @@ -1169,8 +1170,11 @@ void mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
>>>>  		struct task_struct *task;
>>>>  
>>>>  		css_task_iter_start(&iter->css, CSS_TASK_ITER_PROCS, &it);
>>>> -		while (!ret && (task = css_task_iter_next(&it)))
>>>> +		while (!ret && (task = css_task_iter_next(&it))) {
>>>>  			ret = fn(task, arg);
>>>> +			if (++i % SOFTLOCKUP_PREVENTION_LIMIT)
>>>
>>> And a modulus operation is somewhat expensive.
>>
>> This is a cold path used during OOM. While we can make it more optimal I
>> doubt it matters in practice so we should aim at readbility. I do not
>> mind either way, I just wanted to note that this is not performance
>> sensitive.
>>
> 
> I think '(++i & 1023)' is much better, I will update.
> Thank you all gays.
> 
So sorry for wrong spelling
Sorry sorry.

Thank you all guys.

Best regards
Ridong

> Best regards
> Ridong
> 
>>>
>>> Perhaps a simple
>>>
>>> 		/* Avoid potential softlockup warning */
>>> 		if ((++i & 1023) == 0)
>>>
>>> at both sites will suffice.  Opinions might vary...
>>>
>>
> 



      reply	other threads:[~2024-12-23  2:38 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-20 10:31 Chen Ridong
2024-12-20 22:47 ` Andrew Morton
2024-12-21  7:28   ` Michal Hocko
2024-12-23  2:23     ` Chen Ridong
2024-12-23  2:37       ` Chen Ridong [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=acb8ff3b-8c7a-4e31-a566-35c5427ba951@huaweicloud.com \
    --to=chenridong@huaweicloud.com \
    --cc=akpm@linux-foundation.org \
    --cc=cgroups@vger.kernel.org \
    --cc=chenridong@huawei.com \
    --cc=davidf@vimeo.com \
    --cc=handai.szj@taobao.com \
    --cc=hannes@cmpxchg.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=muchun.song@linux.dev \
    --cc=rientjes@google.com \
    --cc=roman.gushchin@linux.dev \
    --cc=shakeel.butt@linux.dev \
    --cc=vbabka@suse.cz \
    --cc=wangweiyang2@huawei.com \
    --cc=yosryahmed@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox