Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1413570 > unrolled thread
| Started by | Brian Silverman <brian@peloton-tech.com> |
|---|---|
| First post | 2016-06-04 01:20 +0200 |
| Last post | 2016-06-05 02:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[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
| From | Brian Silverman <brian@peloton-tech.com> |
|---|---|
| Date | 2016-06-04 01:20 +0200 |
| Subject | [PATCH] Force processes to non-realtime before mm_exit |
| Message-ID | <rG6xH-167-1@gated-at.bofh.it> |
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
[toc] | [next] | [standalone]
| From | Corey Minyard <cminyard@mvista.com> |
|---|---|
| Date | 2016-06-05 02:30 +0200 |
| Message-ID | <rGu6Z-87v-3@gated-at.bofh.it> |
| In reply to | #1413570 |
On 06/03/2016 06:18 PM, Brian Silverman wrote:
> 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.
Could this cause a subtle priority inversion for a process waiting
on this process to die? I'm thinking that if this is a critical process,
it crashes, and the system is very busy with other RT processes,
it could take a long time before the process gets restarted when
it is expected to happen quickly.
I don't have another solution for you, and beyond speeding up the
memory reclamation process (which may not be possible or easy)
I'm not sure there is. I'm just pointing out a possible side effect.
-corey
> 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)
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web