|
@@ -696,37 +696,37 @@ static void __vtime_account_system(struct task_struct *tsk)
|
|
|
|
|
|
void vtime_account_system(struct task_struct *tsk)
|
|
void vtime_account_system(struct task_struct *tsk)
|
|
{
|
|
{
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
__vtime_account_system(tsk);
|
|
__vtime_account_system(tsk);
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
|
|
|
|
void vtime_gen_account_irq_exit(struct task_struct *tsk)
|
|
void vtime_gen_account_irq_exit(struct task_struct *tsk)
|
|
{
|
|
{
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
__vtime_account_system(tsk);
|
|
__vtime_account_system(tsk);
|
|
if (context_tracking_in_user())
|
|
if (context_tracking_in_user())
|
|
tsk->vtime_snap_whence = VTIME_USER;
|
|
tsk->vtime_snap_whence = VTIME_USER;
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
|
|
|
|
void vtime_account_user(struct task_struct *tsk)
|
|
void vtime_account_user(struct task_struct *tsk)
|
|
{
|
|
{
|
|
cputime_t delta_cpu;
|
|
cputime_t delta_cpu;
|
|
|
|
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
delta_cpu = get_vtime_delta(tsk);
|
|
delta_cpu = get_vtime_delta(tsk);
|
|
tsk->vtime_snap_whence = VTIME_SYS;
|
|
tsk->vtime_snap_whence = VTIME_SYS;
|
|
account_user_time(tsk, delta_cpu, cputime_to_scaled(delta_cpu));
|
|
account_user_time(tsk, delta_cpu, cputime_to_scaled(delta_cpu));
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
|
|
|
|
void vtime_user_enter(struct task_struct *tsk)
|
|
void vtime_user_enter(struct task_struct *tsk)
|
|
{
|
|
{
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
__vtime_account_system(tsk);
|
|
__vtime_account_system(tsk);
|
|
tsk->vtime_snap_whence = VTIME_USER;
|
|
tsk->vtime_snap_whence = VTIME_USER;
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
|
|
|
|
void vtime_guest_enter(struct task_struct *tsk)
|
|
void vtime_guest_enter(struct task_struct *tsk)
|
|
@@ -738,19 +738,19 @@ void vtime_guest_enter(struct task_struct *tsk)
|
|
* synchronization against the reader (task_gtime())
|
|
* synchronization against the reader (task_gtime())
|
|
* that can thus safely catch up with a tickless delta.
|
|
* that can thus safely catch up with a tickless delta.
|
|
*/
|
|
*/
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
__vtime_account_system(tsk);
|
|
__vtime_account_system(tsk);
|
|
current->flags |= PF_VCPU;
|
|
current->flags |= PF_VCPU;
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(vtime_guest_enter);
|
|
EXPORT_SYMBOL_GPL(vtime_guest_enter);
|
|
|
|
|
|
void vtime_guest_exit(struct task_struct *tsk)
|
|
void vtime_guest_exit(struct task_struct *tsk)
|
|
{
|
|
{
|
|
- write_seqlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&tsk->vtime_seqcount);
|
|
__vtime_account_system(tsk);
|
|
__vtime_account_system(tsk);
|
|
current->flags &= ~PF_VCPU;
|
|
current->flags &= ~PF_VCPU;
|
|
- write_sequnlock(&tsk->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&tsk->vtime_seqcount);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(vtime_guest_exit);
|
|
EXPORT_SYMBOL_GPL(vtime_guest_exit);
|
|
|
|
|
|
@@ -763,24 +763,26 @@ void vtime_account_idle(struct task_struct *tsk)
|
|
|
|
|
|
void arch_vtime_task_switch(struct task_struct *prev)
|
|
void arch_vtime_task_switch(struct task_struct *prev)
|
|
{
|
|
{
|
|
- write_seqlock(&prev->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(&prev->vtime_seqcount);
|
|
prev->vtime_snap_whence = VTIME_INACTIVE;
|
|
prev->vtime_snap_whence = VTIME_INACTIVE;
|
|
- write_sequnlock(&prev->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(&prev->vtime_seqcount);
|
|
|
|
|
|
- write_seqlock(¤t->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_begin(¤t->vtime_seqcount);
|
|
current->vtime_snap_whence = VTIME_SYS;
|
|
current->vtime_snap_whence = VTIME_SYS;
|
|
current->vtime_snap = sched_clock_cpu(smp_processor_id());
|
|
current->vtime_snap = sched_clock_cpu(smp_processor_id());
|
|
- write_sequnlock(¤t->vtime_seqlock);
|
|
|
|
|
|
+ write_seqcount_end(¤t->vtime_seqcount);
|
|
}
|
|
}
|
|
|
|
|
|
void vtime_init_idle(struct task_struct *t, int cpu)
|
|
void vtime_init_idle(struct task_struct *t, int cpu)
|
|
{
|
|
{
|
|
unsigned long flags;
|
|
unsigned long flags;
|
|
|
|
|
|
- write_seqlock_irqsave(&t->vtime_seqlock, flags);
|
|
|
|
|
|
+ local_irq_save(flags);
|
|
|
|
+ write_seqcount_begin(&t->vtime_seqcount);
|
|
t->vtime_snap_whence = VTIME_SYS;
|
|
t->vtime_snap_whence = VTIME_SYS;
|
|
t->vtime_snap = sched_clock_cpu(cpu);
|
|
t->vtime_snap = sched_clock_cpu(cpu);
|
|
- write_sequnlock_irqrestore(&t->vtime_seqlock, flags);
|
|
|
|
|
|
+ write_seqcount_end(&t->vtime_seqcount);
|
|
|
|
+ local_irq_restore(flags);
|
|
}
|
|
}
|
|
|
|
|
|
cputime_t task_gtime(struct task_struct *t)
|
|
cputime_t task_gtime(struct task_struct *t)
|
|
@@ -792,13 +794,13 @@ cputime_t task_gtime(struct task_struct *t)
|
|
return t->gtime;
|
|
return t->gtime;
|
|
|
|
|
|
do {
|
|
do {
|
|
- seq = read_seqbegin(&t->vtime_seqlock);
|
|
|
|
|
|
+ seq = read_seqcount_begin(&t->vtime_seqcount);
|
|
|
|
|
|
gtime = t->gtime;
|
|
gtime = t->gtime;
|
|
if (t->vtime_snap_whence == VTIME_SYS && t->flags & PF_VCPU)
|
|
if (t->vtime_snap_whence == VTIME_SYS && t->flags & PF_VCPU)
|
|
gtime += vtime_delta(t);
|
|
gtime += vtime_delta(t);
|
|
|
|
|
|
- } while (read_seqretry(&t->vtime_seqlock, seq));
|
|
|
|
|
|
+ } while (read_seqcount_retry(&t->vtime_seqcount, seq));
|
|
|
|
|
|
return gtime;
|
|
return gtime;
|
|
}
|
|
}
|
|
@@ -821,7 +823,7 @@ fetch_task_cputime(struct task_struct *t,
|
|
*udelta = 0;
|
|
*udelta = 0;
|
|
*sdelta = 0;
|
|
*sdelta = 0;
|
|
|
|
|
|
- seq = read_seqbegin(&t->vtime_seqlock);
|
|
|
|
|
|
+ seq = read_seqcount_begin(&t->vtime_seqcount);
|
|
|
|
|
|
if (u_dst)
|
|
if (u_dst)
|
|
*u_dst = *u_src;
|
|
*u_dst = *u_src;
|
|
@@ -845,7 +847,7 @@ fetch_task_cputime(struct task_struct *t,
|
|
if (t->vtime_snap_whence == VTIME_SYS)
|
|
if (t->vtime_snap_whence == VTIME_SYS)
|
|
*sdelta = delta;
|
|
*sdelta = delta;
|
|
}
|
|
}
|
|
- } while (read_seqretry(&t->vtime_seqlock, seq));
|
|
|
|
|
|
+ } while (read_seqcount_retry(&t->vtime_seqcount, seq));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|