From: Adrian Bunk Date: Mon, 29 Oct 2007 20:18:10 +0000 (+0100) Subject: sched: make kernel/sched.c:account_guest_time() static X-Git-Tag: v2.6.24-rc2~96^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7402e0361d4472535e07cfca648f2fa81d85cd2;p=platform%2Fkernel%2Flinux-3.10.git sched: make kernel/sched.c:account_guest_time() static account_guest_time() can become static. Signed-off-by: Adrian Bunk Signed-off-by: Ingo Molnar --- diff --git a/kernel/sched.c b/kernel/sched.c index b4fbbc4..74dbb40 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -3355,7 +3355,7 @@ void account_user_time(struct task_struct *p, cputime_t cputime) * @p: the process that the cpu time gets accounted to * @cputime: the cpu time spent in virtual machine since the last update */ -void account_guest_time(struct task_struct *p, cputime_t cputime) +static void account_guest_time(struct task_struct *p, cputime_t cputime) { cputime64_t tmp; struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;