mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[PATCH] rcutorture: renice to low priority
Make the box usable for interactive work when running the RCU torture test, by renicing the RCU torture-test threads to +19 by default. Kthreads run at nice -5 by default. Signed-off-by: Ingo Molnar <mingo@elte.hu> Acked-by: Paul E. McKenney" <paulmck@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
66341a905e
commit
dbdf65b1b7
1 changed files with 4 additions and 0 deletions
|
@ -195,6 +195,8 @@ rcu_torture_writer(void *arg)
|
||||||
static DEFINE_RCU_RANDOM(rand);
|
static DEFINE_RCU_RANDOM(rand);
|
||||||
|
|
||||||
VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
|
VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
|
||||||
|
set_user_nice(current, 19);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
schedule_timeout_uninterruptible(1);
|
schedule_timeout_uninterruptible(1);
|
||||||
if (rcu_batches_completed() == oldbatch)
|
if (rcu_batches_completed() == oldbatch)
|
||||||
|
@ -238,6 +240,8 @@ rcu_torture_reader(void *arg)
|
||||||
int pipe_count;
|
int pipe_count;
|
||||||
|
|
||||||
VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
|
VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
|
||||||
|
set_user_nice(current, 19);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
completed = rcu_batches_completed();
|
completed = rcu_batches_completed();
|
||||||
|
|
Loading…
Reference in a new issue