Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 324d666a authored by Chen Gang's avatar Chen Gang Committed by Linus Torvalds
Browse files

kernel/delayacct.c: remove redundant checking in __delayacct_add_tsk()



The wrapper function delayacct_add_tsk() already checked 'tsk->delays',
and __delayacct_add_tsk() has no another direct callers, so can remove the
redundancy checking code.

And the label 'done' is also useless, so remove it, too.

Signed-off-by: default avatarChen Gang <gang.chen@asianux.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c725ee54
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -108,12 +108,6 @@ int __delayacct_add_tsk(struct taskstats *d, struct task_struct *tsk)
	struct timespec ts;
	cputime_t utime, stime, stimescaled, utimescaled;

	/* Though tsk->delays accessed later, early exit avoids
	 * unnecessary returning of other data
	 */
	if (!tsk->delays)
		goto done;

	tmp = (s64)d->cpu_run_real_total;
	task_cputime(tsk, &utime, &stime);
	cputime_to_timespec(utime + stime, &ts);
@@ -158,7 +152,6 @@ int __delayacct_add_tsk(struct taskstats *d, struct task_struct *tsk)
	d->freepages_count += tsk->delays->freepages_count;
	spin_unlock_irqrestore(&tsk->delays->lock, flags);

done:
	return 0;
}