提交 672627d1 编写于 作者: C Christoph Lameter 提交者: Xie XiuQi

kmod: run usermodehelpers only on cpus allowed for kthreadd V2

hulk inclusion
category: feature
feature: performance/latency
upstream: never
bugzilla: 2680,10641
CVE: NA

isolate this usermodehelper kernel threads to other cpus,
to avoid the latency issue.

With this patch, the usermodehelper thread could inherit kthreadd's
affinity.

For example, if you want to isolate usermodehelper to cpu 1:
1) taskset -cp 1 2   # bind kthreadd task (pid = 2) to cpu 1
2) trigger call usermodhelper threads

---------------------------------------------

usermodehelper() threads can currently run on all processors.  This is an
issue for low latency cores.  Spawnig a new thread causes cpu holdoffs in
the range of hundreds of microseconds to a few milliseconds.  Not good for
cores on which processes run that need to react as fast as possible.

kthreadd threads can be restricted using taskset to a limited set of
processors.  Then the kernel thread pool will not fork processes on those
anymore thereby protecting those processors from additional latencies.

Make usermodehelper() threads obey the limitations that kthreadd is
restricted to.  Kthreadd is not the parent of usermodehelper threads so we
need to explicitly get the allowed processors for kthreadd.

Before this patch there is no way to limit the cpus that usermodehelper
can run on since the affinity is set when the thread is spawned to all
processors.

[akpm@linux-foundation.org: set_cpus_allowed() doesn't exist when
CONFIG_CPUMASK_OFFSTACK=y]
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: NChristoph Lameter <cl@linux.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <bitbucket@online.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Gilad Ben-Yossef <gilad@benyossef.com>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Tejun Heo <tj@kernel.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Link: https://patchwork.kernel.org/patch/3153671/Reported-and-tested-by: NXiangyou Xie <xiexiangyou@huawei.com>
[
1) kmod.c => umh.c
2) ____call_usermodehelper => call_usermodehelper_exec_async
]
Signed-off-by: NXie XiuQi <xiexiuqi@huawei.com>
Reviewed-by: NLi Bin <huawei.libin@huawei.com>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 354b44e8
......@@ -66,6 +66,7 @@ void kthread_parkme(void);
int kthreadd(void *unused);
extern struct task_struct *kthreadd_task;
extern int tsk_fork_get_node(struct task_struct *tsk);
extern void set_kthreadd_affinity(void);
/*
* Simple work processor based on kthread.
......
......@@ -156,6 +156,15 @@ void *kthread_data(struct task_struct *task)
return to_kthread(task)->data;
}
/*
* Set the affinity of the calling task to be the same
* as the kthreadd affinities.
*/
void set_kthreadd_affinity(void)
{
set_cpus_allowed_ptr(current, &kthreadd_task->cpus_allowed);
}
/**
* kthread_probe_data - speculative version of kthread_data()
* @task: possible kthread task in question
......
......@@ -27,6 +27,7 @@
#include <linux/uaccess.h>
#include <linux/shmem_fs.h>
#include <linux/pipe_fs_i.h>
#include <linux/kthread.h>
#include <trace/events/module.h>
......@@ -72,6 +73,15 @@ static int call_usermodehelper_exec_async(void *data)
flush_signal_handlers(current, 1);
spin_unlock_irq(&current->sighand->siglock);
/*
* Kthreadd can be restricted to a set of processors if the user wants
* to protect other processors from OS latencies. If that has happened
* then we do not want to disturb the other processors here either so we
* start the usermode helper threads only on the processors allowed for
* kthreadd.
*/
set_kthreadd_affinity();
/*
* Our parent (unbound workqueue) runs with elevated scheduling
* priority. Avoid propagating that into the userspace child.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册