Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1415779
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC PATCH 1/2] sched: encapsulate priority changes in a sched_set_prio static function |
| Date | 2016-06-07 09:20 +0200 |
| Message-ID | <rHjsS-82q-21@gated-at.bofh.it> (permalink) |
| References | <rDrS1-59z-13@gated-at.bofh.it> <rEvgR-4GH-11@gated-at.bofh.it> <rHazf-1ZA-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, Jun 06, 2016 at 09:47:52PM +0000, Mathieu Desnoyers wrote:
> >> +++ b/kernel/sched/core.c
> >> @@ -2230,6 +2230,11 @@ int sysctl_schedstats(struct ctl_table *table, int write,
> >> #endif
> >> #endif
> >>
> >> +static void sched_set_prio(struct task_struct *p, int prio)
> >> +{
> >> + p->prio = prio;
> >> +}
Urgh; so there's a bunch of patches to the PI code that I've been
ignoring that'll completely break all this.
Let me dig them up and get this all sorted.
Basically, looking at @prio is broken.
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [RFC PATCH 1/2] sched: encapsulate priority changes in a sched_set_prio static function Mathieu Desnoyers <mathieu.desnoyers@efficios.com> - 2016-06-06 23:50 +0200 Re: [RFC PATCH 1/2] sched: encapsulate priority changes in a sched_set_prio static function Peter Zijlstra <peterz@infradead.org> - 2016-06-07 09:20 +0200
csiph-web