return vtime;
 }
 
-static void account_system_index_scaled(struct task_struct *p,
-                                       u64 cputime, u64 scaled,
+static void account_system_index_scaled(struct task_struct *p, u64 cputime,
                                        enum cpu_usage_stat index)
 {
-       p->stimescaled += cputime_to_nsecs(scaled);
+       p->stimescaled += cputime_to_nsecs(scale_vtime(cputime));
        account_system_index_time(p, cputime_to_nsecs(cputime), index);
 }
 
        }
 
        if (system)
-               account_system_index_scaled(tsk, system, scale_vtime(system),
-                                           CPUTIME_SYSTEM);
+               account_system_index_scaled(tsk, system, CPUTIME_SYSTEM);
        if (hardirq)
-               account_system_index_scaled(tsk, hardirq, scale_vtime(hardirq),
-                                           CPUTIME_IRQ);
+               account_system_index_scaled(tsk, hardirq, CPUTIME_IRQ);
        if (softirq)
-               account_system_index_scaled(tsk, softirq, scale_vtime(softirq),
-                                           CPUTIME_SOFTIRQ);
+               account_system_index_scaled(tsk, softirq, CPUTIME_SOFTIRQ);
 
        steal = S390_lowcore.steal_timer;
        if ((s64) steal > 0) {