Commit 41c51c98f588edcdf6141cff1895df738e03ddd4

Authored by Oleg Nesterov
Committed by Ingo Molnar
1 parent 05725f7eb4

rcu: rcu_sched_grace_period(): kill the bogus flush_signals()

As a kernel thread, rcu_sched_grace_period() runs with all signals ignored.
It can never receive a signal even if it sleeps in TASK_INTERRUPTIBLE, it
needs the explicit allow_signal() to be visible for signals.

[ Impact: reduce kernel size, remove dead code ]

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
LKML-Reference: <20090503211118.GA22973@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 1 changed file with 1 additions and 7 deletions Side-by-side Diff

... ... @@ -1356,17 +1356,11 @@
1356 1356  
1357 1357 rcu_ctrlblk.sched_sleep = rcu_sched_sleeping;
1358 1358 spin_unlock_irqrestore(&rcu_ctrlblk.schedlock, flags);
1359   - ret = 0;
  1359 + ret = 0; /* unused */
1360 1360 __wait_event_interruptible(rcu_ctrlblk.sched_wq,
1361 1361 rcu_ctrlblk.sched_sleep != rcu_sched_sleeping,
1362 1362 ret);
1363 1363  
1364   - /*
1365   - * Signals would prevent us from sleeping, and we cannot
1366   - * do much with them in any case. So flush them.
1367   - */
1368   - if (ret)
1369   - flush_signals(current);
1370 1364 couldsleepnext = 0;
1371 1365  
1372 1366 } while (!kthread_should_stop());