[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191225160626.968-1-linux@roeck-us.net>
Date: Wed, 25 Dec 2019 08:06:26 -0800
From: Guenter Roeck <linux@...ck-us.net>
To: Michael Ellerman <mpe@...erman.id.au>
Cc: Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>, Will Deacon <will@...nel.org>,
Benjamin Herrenschmidt <benh@...nel.crashing.org>,
Paul Mackerras <paulus@...ba.org>,
linux-kernel@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org,
Guenter Roeck <linux@...ck-us.net>,
Srikar Dronamraju <srikar@...ux.vnet.ibm.com>,
Phil Auld <pauld@...hat.com>, Waiman Long <longman@...hat.com>,
Juri Lelli <juri.lelli@...hat.com>
Subject: [PATCH] powerpc/shared: Fix build problem
Since commit 656c21d6af5d ("powerpc/shared: Use static key to detect
shared processor") and 14c73bd344da ("powerpc/vcpu: Assume dedicated
processors as non-preempt"), powerpc test builds may fail with the
following build errors.
./arch/powerpc/include/asm/spinlock.h:39:1: error:
type defaults to ‘int’ in declaration of ‘DECLARE_STATIC_KEY_FALSE’
./arch/powerpc/include/asm/spinlock.h: In function ‘vcpu_is_preempted’:
./arch/powerpc/include/asm/spinlock.h:44:7: error:
implicit declaration of function ‘static_branch_unlikely’
./arch/powerpc/include/asm/spinlock.h:44:31: error:
‘shared_processor’ undeclared
The offending commits use static_branch_unlikely and shared_processor
without adding the include file declaring it.
Cc: Srikar Dronamraju <srikar@...ux.vnet.ibm.com>
Cc: Phil Auld <pauld@...hat.com>
Cc: Waiman Long <longman@...hat.com>
Cc: Michael Ellerman <mpe@...erman.id.au>
Cc: Juri Lelli <juri.lelli@...hat.com>
Fixes: 656c21d6af5d ("powerpc/shared: Use static key to detect shared processor")
Fixes: 14c73bd344da ("powerpc/vcpu: Assume dedicated processors as non-preempt")
Signed-off-by: Guenter Roeck <linux@...ck-us.net>
---
arch/powerpc/include/asm/spinlock.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/powerpc/include/asm/spinlock.h b/arch/powerpc/include/asm/spinlock.h
index 1b55fc08f853..5ddd48616b1c 100644
--- a/arch/powerpc/include/asm/spinlock.h
+++ b/arch/powerpc/include/asm/spinlock.h
@@ -16,6 +16,7 @@
* (the type definitions are in asm/spinlock_types.h)
*/
#include <linux/irqflags.h>
+#include <linux/jump_label.h>
#ifdef CONFIG_PPC64
#include <asm/paca.h>
#include <asm/hvcall.h>
--
2.17.1
Powered by blists - more mailing lists