linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mm/khugepaged: Remove redundant try_to_freeze()
@ 2023-12-19 23:17 Kevin Hao
  2023-12-20  0:00 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hao @ 2023-12-19 23:17 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-mm, Rafael J. Wysocki, Pavel Machek

A freezable kernel thread can enter frozen state during freezing by
either calling try_to_freeze() or using wait_event_freezable() and its
variants. However, there is no need to use both methods simultaneously.
The freezable wait variants have been used in khugepaged_wait_work()
and khugepaged_alloc_sleep(), so remove this redundant
try_to_freeze().

Signed-off-by: Kevin Hao <haokexin@gmail.com>
---
v2: Adjust the patch subject to make it look more unique.

 mm/khugepaged.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/khugepaged.c b/mm/khugepaged.c
index 5bf9a4d0e47e..13c6eadbeda3 100644
--- a/mm/khugepaged.c
+++ b/mm/khugepaged.c
@@ -2500,7 +2500,7 @@ static void khugepaged_do_scan(struct collapse_control *cc)
 	while (true) {
 		cond_resched();
 
-		if (unlikely(kthread_should_stop() || try_to_freeze()))
+		if (unlikely(kthread_should_stop()))
 			break;
 
 		spin_lock(&khugepaged_mm_lock);
-- 
2.39.2



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

end of thread, other threads:[~2023-12-20 12:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-19 23:17 [PATCH v2] mm/khugepaged: Remove redundant try_to_freeze() Kevin Hao
2023-12-20  0:00 ` Andrew Morton
2023-12-20 12:38   ` Kevin Hao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox