* [folded-merged] hung_task-add-detect-count-for-hung-tasks-fix.patch removed from -mm tree
@ 2024-11-06 21:38 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-11-06 21:38 UTC (permalink / raw)
To: mm-commits, ioworker0, akpm
The quilt patch titled
Subject: hung_task-add-detect-count-for-hung-tasks-fix
has been removed from the -mm tree. Its filename was
hung_task-add-detect-count-for-hung-tasks-fix.patch
This patch was dropped because it was folded into hung_task-add-detect-count-for-hung-tasks.patch
------------------------------------------------------
From: Lance Yang <ioworker0@gmail.com>
Subject: hung_task-add-detect-count-for-hung-tasks-fix
Date: Fri, 1 Nov 2024 19:48:33 +0800
sysctl_hung_task_detect_count is defined as an unsigned long, so we need
to use proc_doulongvec_minmax instead of proc_dointvec to handle it
correctly.
Link: https://lkml.kernel.org/r/20241101114833.8377-1-ioworker0@gmail.com
Signed-off-by: Lance Yang <ioworker0@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
kernel/hung_task.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/kernel/hung_task.c~hung_task-add-detect-count-for-hung-tasks-fix
+++ a/kernel/hung_task.c
@@ -330,7 +330,7 @@ static struct ctl_table hung_task_sysctl
.data = &sysctl_hung_task_detect_count,
.maxlen = sizeof(unsigned long),
.mode = 0444,
- .proc_handler = proc_dointvec,
+ .proc_handler = proc_doulongvec_minmax,
},
};
_
Patches currently in -mm which might be from ioworker0@gmail.com are
hung_task-add-detect-count-for-hung-tasks.patch
hung_task-add-docs-for-hung_task_detect_count.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-11-06 21:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-06 21:38 [folded-merged] hung_task-add-detect-count-for-hung-tasks-fix.patch removed from -mm tree Andrew Morton
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.