login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
November
»
16
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Mike Galbraith
Subject:
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
Date: Tuesday, November 16, 2010 - 7:26 am
On Tue, 2010-11-16 at 14:59 +0100, Peter Zijlstra wrote:
quoted text
> On Mon, 2010-11-15 at 17:55 -0800, Paul Menage wrote: > > On Mon, Nov 15, 2010 at 5:18 PM, Linus Torvalds > > <torvalds@linux-foundation.org> wrote: > > > > > > so sched_debug_show() is apparently calling cgroup_path() with a NULL > > > cgroup. I think it's "print_task()" that is to blame, it does > > > > > > cgroup_path(task_group(p)->css.cgroup, .. > > > > > > without checking whether there _is_ any css.cgroup. > > > > Right - previously the returned task_group would be always associated > > with a cgroup. Now, it may not be. > > > > The original task_group() should be made accessible for anything that > > wants a real cgroup in the scheduler hierarchy, and called from the > > new task_group() function. Not sure what the best naming convention > > would be, maybe task_group() and effective_task_group() ? > > Right, that doesn't solve the full problem though. > > /proc/sched_debug should show these automagic task_groups, its just that > there's currently no way to properly name them, we can of course add > something like a name field to the struct autogroup thing, but what do > we fill it with? "autogroup-%d" and keep a sequence number for each > autogroup?
I was considering exactly that for /proc/N/cgroup visibility. Might get thumped if I re-use that file though.
quoted text
> Then the below task_group_path() thing can try the autogroup name scheme > if it finds a NULL css. > > Something like the below might avoid the explosion: > > --- > kernel/sched_debug.c | 28 ++++++++++++++-------------- > 1 files changed, 14 insertions(+), 14 deletions(-) > > diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c > index 2e1b0d1..9b5560f 100644 > --- a/kernel/sched_debug.c > +++ b/kernel/sched_debug.c > @@ -87,6 +87,19 @@ static void print_cfs_group_stats(struct seq_file *m, int cpu, > } > #endif > > +#if defined(CONFIG_CGROUP_SCHED) && \ > + (defined(CONFIG_FAIR_GROUP_SCHED) || defined(CONFIG_RT_GROUP_SCHED)) > +static void task_group_path(struct task_group *tg, char *buf, int buflen) > +{ > + /* may be NULL if the underlying cgroup isn't fully-created yet */ > + if (!tg->css.cgroup) { > + buf[0] = '__PLACEHOLDER__1_'; > + return; > + } > + cgroup_path(tg->css.cgroup, buf, buflen); > +} > +#endif > + > static void > print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) > { > @@ -115,7 +128,7 @@ print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) > char path[64]; > > rcu_read_lock(); > - cgroup_path(task_group(p)->css.cgroup, path, sizeof(path)); > + task_group_path(task_group(p), path, sizeof(path)); > rcu_read_unlock(); > SEQ_printf(m, " %s", path); > } > @@ -147,19 +160,6 @@ static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu) > read_unlock_irqrestore(&tasklist_lock, flags); > } > > -#if defined(CONFIG_CGROUP_SCHED) && \ > - (defined(CONFIG_FAIR_GROUP_SCHED) || defined(CONFIG_RT_GROUP_SCHED)) > -static void task_group_path(struct task_group *tg, char *buf, int buflen) > -{ > - /* may be NULL if the underlying cgroup isn't fully-created yet */ > - if (!tg->css.cgroup) { > - buf[0] = '__PLACEHOLDER__1_'; > - return; > - } > - cgroup_path(tg->css.cgroup, buf, buflen); > -} > -#endif > - > void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) > { > s64 MIN_vruntime = -1, min_vruntime, max_vruntime = -1, >
--
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 2:16 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Oct 19, 2:26 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Oct 19, 2:29 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 2:39 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 2:42 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Oct 19, 2:43 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 2:46 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 4:29 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Ingo Molnar
, (Tue Oct 19, 4:56 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 6:12 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Linus Torvalds
, (Tue Oct 19, 8:28 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 11:13 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 19, 11:53 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Ingo Molnar
, (Tue Oct 19, 7:56 pm)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Markus Trippelsdorf
, (Wed Oct 20, 6:55 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Wed Oct 20, 7:41 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 12:55 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 1:11 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Ingo Molnar
, (Thu Oct 21, 1:31 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 1:39 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Markus Trippelsdorf
, (Thu Oct 21, 1:48 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 1:52 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Peter Zijlstra
, (Thu Oct 21, 3:28 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mathieu Desnoyers
, (Thu Oct 21, 3:51 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Peter Zijlstra
, (Thu Oct 21, 4:25 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 4:27 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mathieu Desnoyers
, (Thu Oct 21, 9:22 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Oleg Nesterov
, (Thu Oct 21, 9:29 am)
Re: [RFC/RFT PATCH] sched: automated per tty task groups
, Mike Galbraith
, (Thu Oct 21, 12:11 pm)
[RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 26, 12:07 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 26, 12:29 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Oct 26, 8:47 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Oct 26, 6:58 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 11, 8:26 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ingo Molnar
, (Thu Nov 11, 11:04 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Thu Nov 11, 11:34 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 11, 12:08 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Markus Trippelsdorf
, (Thu Nov 11, 12:15 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 11, 12:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Thu Nov 11, 12:37 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Markus Trippelsdorf
, (Thu Nov 11, 12:38 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 11, 12:58 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Thu Nov 11, 1:27 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Thu Nov 11, 1:29 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 11, 3:20 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Fri Nov 12, 11:12 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sat Nov 13, 4:42 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sun Nov 14, 10:19 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Markus Trippelsdorf
, (Sun Nov 14, 10:49 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sun Nov 14, 11:10 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 12:28 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 1:20 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Markus Trippelsdorf
, (Sun Nov 14, 1:27 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 1:48 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sun Nov 14, 4:43 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sun Nov 14, 5:02 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 5:15 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 5:26 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sun Nov 14, 6:13 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Sun Nov 14, 8:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Mon Nov 15, 1:57 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 4:32 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 4:46 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Mon Nov 15, 5:57 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 7:00 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 2:25 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Valdis.Kletnieks
, (Mon Nov 15, 3:41 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Mon Nov 15, 3:48 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Mon Nov 15, 4:25 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 4:46 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Mon Nov 15, 4:50 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Mon Nov 15, 5:04 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Mon Nov 15, 6:18 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Mon Nov 15, 6:55 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Mon Nov 15, 6:56 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Mon Nov 15, 7:18 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 5:58 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Tue Nov 16, 6:04 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 6:59 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 7:01 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 7:02 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 7:11 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 7:18 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 7:19 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 7:26 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Dhaval Giani
, (Tue Nov 16, 7:47 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Oleg Nesterov
, (Tue Nov 16, 8:03 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 8:41 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 10:03 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 10:11 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ingo Molnar
, (Tue Nov 16, 10:28 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 10:42 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 11:08 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 11:16 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 11:21 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Tue Nov 16, 11:25 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Tue Nov 16, 11:33 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 11:49 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, david
, (Tue Nov 16, 11:55 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Stephen Clark
, (Tue Nov 16, 11:56 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Stephen Clark
, (Tue Nov 16, 11:57 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 11:59 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Pekka Enberg
, (Tue Nov 16, 12:03 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, david
, (Tue Nov 16, 12:08 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Tue Nov 16, 12:09 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Tue Nov 16, 12:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 12:13 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Tue Nov 16, 12:22 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 12:25 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Dhaval Giani
, (Tue Nov 16, 12:27 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 12:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Tue Nov 16, 12:40 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Markus Trippelsdorf
, (Tue Nov 16, 12:42 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Diego Calleja
, (Tue Nov 16, 12:42 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 12:43 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 12:45 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 12:49 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Tue Nov 16, 12:56 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 12:57 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:03 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:05 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 1:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Tue Nov 16, 1:15 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Tue Nov 16, 1:17 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Kay Sievers
, (Tue Nov 16, 1:21 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:28 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:31 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:33 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 1:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:36 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 1:38 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Pekka Enberg
, (Tue Nov 16, 1:44 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, David Miller
, (Tue Nov 16, 1:46 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 1:50 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Alan Cox
, (Tue Nov 16, 1:52 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 2:08 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 2:08 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, David Miller
, (Tue Nov 16, 2:14 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 2:14 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 2:17 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 2:19 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ted Ts'o
, (Tue Nov 16, 4:39 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Tue Nov 16, 5:21 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Kyle McMartin
, (Tue Nov 16, 6:31 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Tue Nov 16, 6:50 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Kyle McMartin
, (Tue Nov 16, 6:56 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ted Ts'o
, (Tue Nov 16, 7:06 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Tue Nov 16, 7:14 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Balbir Singh
, (Wed Nov 17, 1:06 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Stephen Clark
, (Wed Nov 17, 6:21 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Stephen Clark
, (Wed Nov 17, 6:23 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Vivek Goyal
, (Wed Nov 17, 7:57 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Wed Nov 17, 8:01 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, John Stoffel
, (Wed Nov 17, 10:16 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, James Cloos
, (Wed Nov 17, 1:59 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Wed Nov 17, 3:34 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Wed Nov 17, 3:37 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Wed Nov 17, 3:45 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Wed Nov 17, 3:52 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Wed Nov 17, 4:49 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Stephen Clark
, (Thu Nov 18, 8:00 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Hans-Peter Jansen
, (Thu Nov 18, 3:33 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 4:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 18, 4:29 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 18, 4:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 4:43 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Thu Nov 18, 4:51 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 5:02 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 5:07 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, H. Peter Anvin
, (Thu Nov 18, 5:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 5:42 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Thu Nov 18, 5:42 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 5:59 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Thu Nov 18, 6:11 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 18, 6:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Thu Nov 18, 6:23 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Thu Nov 18, 7:28 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mathieu Desnoyers
, (Thu Nov 18, 8:15 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Andev
, (Thu Nov 18, 10:20 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Fri Nov 19, 2:02 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 4:49 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 4:57 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 4:59 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 5:19 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Fri Nov 19, 5:31 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Fri Nov 19, 5:38 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 5:51 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mathieu Desnoyers
, (Fri Nov 19, 5:55 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 6:00 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ben Gamari
, (Fri Nov 19, 6:03 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Fri Nov 19, 6:03 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Theodore Tso
, (Fri Nov 19, 6:07 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mathieu Desnoyers
, (Fri Nov 19, 6:20 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 6:21 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Fri Nov 19, 7:24 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Peter Zijlstra
, (Fri Nov 19, 7:43 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Fri Nov 19, 7:55 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, David Miller
, (Fri Nov 19, 9:29 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Fri Nov 19, 9:34 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, David Miller
, (Fri Nov 19, 9:43 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Fri Nov 19, 10:51 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Ben Gamari
, (Fri Nov 19, 12:12 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Fri Nov 19, 12:31 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Linus Torvalds
, (Fri Nov 19, 12:48 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Paul Menage
, (Fri Nov 19, 1:38 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Fri Nov 19, 6:13 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Fri Nov 19, 6:33 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Balbir Singh
, (Fri Nov 19, 9:25 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Sat Nov 20, 8:41 am)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Jesper Juhl
, (Sat Nov 20, 12:33 pm)
[PATCH v4] sched: automated per session task groups
, Mike Galbraith
, (Sat Nov 20, 12:35 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sat Nov 20, 12:47 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sat Nov 20, 12:51 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Sat Nov 20, 1:25 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Jesper Juhl
, (Sat Nov 20, 1:37 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Konstantin Svist
, (Sat Nov 20, 3:02 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Samuel Thibault
, (Sat Nov 20, 3:15 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mika Laitio
, (Sat Nov 20, 3:16 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Thomas Fjellstrom
, (Sat Nov 20, 3:18 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Mike Galbraith
, (Sat Nov 20, 5:19 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Balbir Singh
, (Sun Nov 21, 11:16 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Balbir Singh
, (Sun Nov 21, 11:22 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Balbir Singh
, (Sun Nov 21, 11:24 pm)
Re: [RFC/RFT PATCH v3] sched: automated per tty task groups
, Lennart Poettering
, (Mon Nov 22, 12:21 pm)
[tip:sched/core] sched: Add 'autogroup' scheduling feature ...
, tip-bot for Mike Gal ...
, (Tue Nov 30, 8:39 am)
Re: [PATCH v4] sched: automated per session task groups
, Colin Walters
, (Sat Dec 4, 10:39 am)
Re: [PATCH v4] sched: automated per session task groups
, Linus Torvalds
, (Sat Dec 4, 11:33 am)
Re: [PATCH v4] sched: automated per session task groups
, Colin Walters
, (Sat Dec 4, 1:01 pm)
Re: [PATCH v4] sched: automated per session task groups
, Linus Torvalds
, (Sat Dec 4, 3:39 pm)
Re: [PATCH v4] sched: automated per session task groups
, david
, (Sat Dec 4, 4:31 pm)
Re: [PATCH v4] sched: automated per session task groups
, Colin Walters
, (Sat Dec 4, 4:43 pm)
Re: [PATCH v4] sched: automated per session task groups
, Linus Torvalds
, (Sat Dec 4, 5:31 pm)
Re: [PATCH v4] sched: automated per session task groups
, Ray Lee
, (Sun Dec 5, 12:47 am)
Re: [PATCH v4] sched: automated per session task groups
, Con Kolivas
, (Sun Dec 5, 3:18 am)
Re: [PATCH v4] sched: automated per session task groups
, Nikos Chantziaras
, (Sun Dec 5, 4:11 am)
Re: [PATCH v4] sched: automated per session task groups
, Mike Galbraith
, (Sun Dec 5, 4:36 am)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Alan Cox
, (Sun Dec 5, 8:12 am)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Florian Mickler
, (Sun Dec 5, 9:16 am)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Mike Galbraith
, (Sun Dec 5, 9:59 am)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Mike Galbraith
, (Sun Dec 5, 10:09 am)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Mike Galbraith
, (Sun Dec 5, 10:15 am)
Re: [PATCH v4] sched: automated per session task groups
, Colin Walters
, (Sun Dec 5, 12:22 pm)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Alan Cox
, (Sun Dec 5, 12:48 pm)
Re: [PATCH v4] sched: automated per session task groups
, Linus Torvalds
, (Sun Dec 5, 1:47 pm)
Re: [PATCH v4] sched: automated per session task groups
, Ingo Molnar
, (Sun Dec 5, 1:58 pm)
Re: [PATCH v4] sched: automated per session task groups
, Colin Walters
, (Sun Dec 5, 3:47 pm)
Re: [PATCH v4] sched: automated per session task groups
, Jesper Juhl
, (Sun Dec 5, 3:58 pm)
Re: [PATCH v4] sched: automated per session task groups
, Jesper Juhl
, (Sun Dec 5, 4:05 pm)
Re: [PATCH v4] sched: automated per session task groups
, Valdis.Kletnieks
, (Sun Dec 5, 5:28 pm)
Re: [PATCH v4] Regression: sched: automated per session ta ...
, Florian Mickler
, (Mon Dec 6, 9:03 am)
Re: [PATCH v4] sched: automated per session task groups
, Peter Zijlstra
, (Tue Dec 7, 11:51 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Oleg Nesterov
, (Wed Dec 15, 10:50 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Mike Galbraith
, (Thu Dec 16, 12:53 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Mike Galbraith
, (Thu Dec 16, 7:09 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Oleg Nesterov
, (Thu Dec 16, 8:07 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Bharata B Rao
, (Mon Dec 20, 6:08 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Peter Zijlstra
, (Mon Dec 20, 6:19 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Bharata B Rao
, (Mon Dec 20, 8:46 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Bharata B Rao
, (Mon Dec 20, 8:53 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Mike Galbraith
, (Mon Dec 20, 9:39 am)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Bharata B Rao
, (Mon Dec 20, 10:04 pm)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Mike Galbraith
, (Mon Dec 20, 10:50 pm)
Re: [tip:sched/core] sched: Add 'autogroup' scheduling fea ...
, Peter Zijlstra
, (Tue Dec 21, 1:33 am)
[tip:sched/core] sched, autogroup: Fix potential access to ...
, tip-bot for Mike Gal ...
, (Tue Jan 4, 7:18 am)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 041/196] kobject: add kobject_init_and_add function
Lukas Hejtmanek
Re: Another libata error related to OCZ SSD
Greg Kroah-Hartman
[PATCH 023/196] MCP_UCB1200: Convert from class_device to device
Florian Fainelli
Re: System clock runs too fast after 2.6.27 -> 2.6.28.1 upgrade
Christoph Lameter
[patch 1/4] mmu_notifier: Core code
git
:
Johannes Schindelin
Re: [PATCH 1/2] Add strbuf_initf()
John Bito
[EGIT] Push to GitHub caused corruption
Jakub Narebski
Re: [PATCH 0/2] gitweb: patch view
Junio C Hamano
Re: [PATCH] When a remote is added but not fetched, tell the user.
Andy Parkins
Re: [RFC] Submodules in GIT
git-commits-head
:
Linux Kernel Mailing List
ahci: Workaround HW bug for SB600/700 SATA controller PMP support
Linux Kernel Mailing List
V4L/DVB (11086): au0828: rename macro for currently non-function VBI support
Linux Kernel Mailing List
ceph: client types
Linux Kernel Mailing List
ceph: on-wire types
Linux Kernel Mailing List
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
linux-netdev
:
Andrew Morton
Re: [Bugme-new] [Bug 14969] New: b44: WOL does not work in suspended state
Giuseppe CAVALLARO
Re: [PATCH 03/13] stmmac: add the new Header file for stmmac platform data
Taku Izumi
[PATCH 3/3] ixgbe: add registers etc. printout code just before resetting adapters
Eric Dumazet
rps: some comments
Thomas Gleixner
Re: [RFC PATCH 02/12] On Tue, 23 Sep 2008, David Miller wrote:
openbsd-misc
:
Stephan Andreas
problems with login after xlock in OpenBSD release 4.7
pmc
Make A Change. Alcoholism and Drug Addiction Treatment
ropers
Re: what exactly is enc0?
Fuad NAHDI
Re: What does your environment look like?
Matthew Szudzik
Typo on OpenBSD 4.4 CD Set
Colocation donated by:
Syndicate