Merge commit 'v2.6.30-rc1' into sched/urgent
authorIngo Molnar <mingo@elte.hu>
Wed, 8 Apr 2009 15:25:42 +0000 (17:25 +0200)
committerIngo Molnar <mingo@elte.hu>
Wed, 8 Apr 2009 15:26:00 +0000 (17:26 +0200)
Merge reason: update to latest upstream to queue up fix

Signed-off-by: Ingo Molnar <mingo@elte.hu>
1  2 
kernel/posix-cpu-timers.c
kernel/sched.c
kernel/sched_rt.c

Simple merge
diff --cc kernel/sched.c
index 6234d10c6a79ab4b188eb7603272555842fade1a,6cc1fd5d5072b69638c562d7e01697d4c9870684..5724508c3b66b30d8182f32bc0cde560f790ba01
@@@ -9764,32 -10092,9 +10199,32 @@@ static void cpuacct_charge(struct task_
        ca = task_ca(tsk);
  
        for (; ca; ca = ca->parent) {
-               u64 *cpuusage = percpu_ptr(ca->cpuusage, cpu);
+               u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
                *cpuusage += cputime;
        }
 +
 +      rcu_read_unlock();
 +}
 +
 +/*
 + * Charge the system/user time to the task's accounting group.
 + */
 +static void cpuacct_update_stats(struct task_struct *tsk,
 +              enum cpuacct_stat_index idx, cputime_t val)
 +{
 +      struct cpuacct *ca;
 +
 +      if (unlikely(!cpuacct_subsys.active))
 +              return;
 +
 +      rcu_read_lock();
 +      ca = task_ca(tsk);
 +
 +      do {
 +              percpu_counter_add(&ca->cpustat[idx], val);
 +              ca = ca->parent;
 +      } while (ca);
 +      rcu_read_unlock();
  }
  
  struct cgroup_subsys cpuacct_subsys = {
Simple merge