Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1413570
| From | Brian Silverman <brian@peloton-tech.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Force processes to non-realtime before mm_exit |
| Date | 2016-06-04 01:20 +0200 |
| Message-ID | <rG6xH-167-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Without this, a realtime process which has called mlockall exiting
causes large latencies for other realtime processes at the same or
lower priorities. This seems like a fairly common use case too, because
realtime processes generally want their memory locked into RAM.
Signed-off-by: Brian Silverman <brian@peloton-tech.com>
---
kernel/exit.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/kernel/exit.c b/kernel/exit.c
index a0cf72b..68a97df 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -730,6 +730,12 @@ void do_exit(long code)
tsk->exit_code = code;
taskstats_exit(tsk, group_dead);
+ if (tsk->policy == SCHED_FIFO || tsk->policy == SCHED_RR) {
+ struct sched_param param = { .sched_priority = 0 };
+
+ sched_setscheduler_nocheck(current, SCHED_NORMAL, ¶m);
+ }
+
exit_mm(tsk);
if (group_dead)
--
2.1.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Force processes to non-realtime before mm_exit Brian Silverman <brian@peloton-tech.com> - 2016-06-04 01:20 +0200 Re: [PATCH] Force processes to non-realtime before mm_exit Corey Minyard <cminyard@mvista.com> - 2016-06-05 02:30 +0200
csiph-web