All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28] 2.6.32.stable scheduler backport series
@ 2011-02-10  9:27 Mike Galbraith
  2011-02-10 12:37 ` Mike Galbraith
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Galbraith @ 2011-02-10  9:27 UTC (permalink / raw)
  To: stable; +Cc: linux-kernel, Peter Zijlstra, Ingo Molnar

Alex Shi (1):
  sched: Fix volanomark performance regression

Dave Young (1):
  sched: Remove unused PF_ALIGNWARN flag

Dhaval Giani (1):
  sched: Remove USER_SCHED

Ingo Molnar (1):
  sched: Export account_system_vtime()

Li Zefan (1):
  sched: Remove remaining USER_SCHED code

Nikhil Rao (4):
  sched: Do not consider SCHED_IDLE tasks to be cache hot
  sched: Force balancing on newidle balance if local group has capacity
  sched: Drop group_capacity to 1 only if local group has extra capacity
  sched: Fix idle balancing

Paul E. McKenney (1):
  sched: suppress RCU lockdep splat in task_fork_fair

Peter Zijlstra (4):
  sched: fix RCU lockdep splat from task_group()
  sched, cgroup: Fixup broken cgroup movement
  sched: Fix cross-sched-class wakeup preemption
  sched: Fix wake_affine() vs RT tasks

Steven Rostedt (2):
  sched: Try not to migrate higher priority RT tasks
  sched: Give CPU bound RT tasks preference

Suresh Siddha (2):
  sched: Move sched_avg_update() to update_cpu_load()
  sched: Use group weight, idle cpu metrics to fix imbalances during idle

Venkatesh Pallipadi (9):
  sched: Increment cache_nice_tries only on periodic lb
  sched: Fix softirq time accounting
  sched: Consolidate account_system_vtime extern declaration
  sched: Add a PF flag for ksoftirqd identification
  sched: Add IRQ_TIME_ACCOUNTING, finer accounting of irq time
  x86: Add IRQ_TIME_ACCOUNTING
  sched: Do not account irq time to current task
  sched: Remove irq time from available CPU power
  sched: Call tick_check_idle before __irq_enter

Nikhil Rao (1):
  sched: Set group_imb only a task can be pulled from the busiest cpu

 Documentation/kernel-parameters.txt |    4 +
 arch/ia64/include/asm/system.h      |    4 -
 arch/powerpc/include/asm/system.h   |    4 -
 arch/s390/include/asm/system.h      |    1 -
 arch/x86/Kconfig                    |   11 +
 arch/x86/kernel/tsc.c               |    8 +
 include/linux/hardirq.h             |    9 +-
 include/linux/sched.h               |   39 ++--
 init/Kconfig                        |   80 +++-----
 kernel/capability.c                 |    1 -
 kernel/cred-internals.h             |   21 --
 kernel/cred.c                       |    3 -
 kernel/exit.c                       |    1 -
 kernel/ksysfs.c                     |    8 -
 kernel/sched.c                      |  392 ++++++++++++++++++++++-------------
 kernel/sched_debug.c                |    5 -
 kernel/sched_fair.c                 |   56 ++++--
 kernel/sched_features.h             |    5 +
 kernel/sched_rt.c                   |   34 ++--
 kernel/softirq.c                    |   64 ++++--
 kernel/sys.c                        |    5 -
 kernel/user.c                       |  315 +----------------------------
 net/sched/cls_cgroup.c              |    2 +-
 23 files changed, 438 insertions(+), 634 deletions(-)
 delete mode 100644 kernel/cred-internals.h

-- 
1.7.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 00/28] 2.6.32.stable scheduler backport series
  2011-02-10  9:27 [PATCH 00/28] 2.6.32.stable scheduler backport series Mike Galbraith
@ 2011-02-10 12:37 ` Mike Galbraith
  2011-02-10 18:17   ` [stable] " Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Galbraith @ 2011-02-10 12:37 UTC (permalink / raw)
  To: stable; +Cc: linux-kernel, Peter Zijlstra, Ingo Molnar

(Letting series escape is _one_ way of settling on a format.  Hohum.
Fly patches, fly)



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH 00/28] 2.6.32.stable scheduler backport series
  2011-02-10 12:37 ` Mike Galbraith
@ 2011-02-10 18:17   ` Greg KH
  2011-02-10 18:28     ` Mike Galbraith
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2011-02-10 18:17 UTC (permalink / raw)
  To: Mike Galbraith; +Cc: stable, Ingo Molnar, linux-kernel, Peter Zijlstra

On Thu, Feb 10, 2011 at 01:37:21PM +0100, Mike Galbraith wrote:
> (Letting series escape is _one_ way of settling on a format.  Hohum.
> Fly patches, fly)

Heh, ok, that works, I'll review them and queue them up for the next .32
series :)

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH 00/28] 2.6.32.stable scheduler backport series
  2011-02-10 18:17   ` [stable] " Greg KH
@ 2011-02-10 18:28     ` Mike Galbraith
  2011-02-15 21:18       ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Galbraith @ 2011-02-10 18:28 UTC (permalink / raw)
  To: Greg KH; +Cc: stable, Ingo Molnar, linux-kernel, Peter Zijlstra

On Thu, 2011-02-10 at 10:17 -0800, Greg KH wrote:
> On Thu, Feb 10, 2011 at 01:37:21PM +0100, Mike Galbraith wrote:
> > (Letting series escape is _one_ way of settling on a format.  Hohum.
> > Fly patches, fly)
> 
> Heh, ok, that works, I'll review them and queue them up for the next .32
> series :)

Thanks :-/

	-Mike


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH 00/28] 2.6.32.stable scheduler backport series
  2011-02-10 18:28     ` Mike Galbraith
@ 2011-02-15 21:18       ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2011-02-15 21:18 UTC (permalink / raw)
  To: Mike Galbraith; +Cc: stable, Ingo Molnar, linux-kernel, Peter Zijlstra

On Thu, Feb 10, 2011 at 07:28:34PM +0100, Mike Galbraith wrote:
> On Thu, 2011-02-10 at 10:17 -0800, Greg KH wrote:
> > On Thu, Feb 10, 2011 at 01:37:21PM +0100, Mike Galbraith wrote:
> > > (Letting series escape is _one_ way of settling on a format.  Hohum.
> > > Fly patches, fly)
> > 
> > Heh, ok, that works, I'll review them and queue them up for the next .32
> > series :)
> 
> Thanks :-/

Ok, I got the first 28, I'll queue the remaining 2 up after lunch...

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-02-15 22:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-10  9:27 [PATCH 00/28] 2.6.32.stable scheduler backport series Mike Galbraith
2011-02-10 12:37 ` Mike Galbraith
2011-02-10 18:17   ` [stable] " Greg KH
2011-02-10 18:28     ` Mike Galbraith
2011-02-15 21:18       ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.