From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Stabellini Subject: [PATCH v9 2/5] kernel: missing include in cputime.c Date: Thu, 9 Jan 2014 18:32:13 +0000 Message-ID: <1389292336-9292-2-git-send-email-stefano.stabellini@eu.citrix.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: xen-devel@lists.xensource.com Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, konrad.wilk@oracle.com, marc.zyngier@arm.com, will.deacon@arm.com, Stefano.Stabellini@eu.citrix.com, Ian.Campbell@citrix.com, linux@arm.linux.org.uk, olof@lixom.net, arnd@arndb.de, catalin.marinas@arm.com, Stefano Stabellini , mingo@redhat.com, peterz@infradead.org List-Id: xen-devel@lists.xenproject.org steal_account_process_tick calls paravirt_steal_clock, but paravirt.h is currently missing amoung the included header files. Add include asm/paravirt.h. Signed-off-by: Stefano Stabellini CC: mingo@redhat.com CC: peterz@infradead.org --- kernel/sched/cputime.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c index 9994791..951833e 100644 --- a/kernel/sched/cputime.c +++ b/kernel/sched/cputime.c @@ -5,6 +5,9 @@ #include #include #include "sched.h" +#ifdef CONFIG_PARAVIRT +#include +#endif #ifdef CONFIG_IRQ_TIME_ACCOUNTING -- 1.7.10.4