[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-5671360f29c68d9079914438f6a0109ef62f82a8@git.kernel.org>
Date: Sat, 8 Jul 2017 04:09:49 -0700
From: tip-bot for Stafford Horne <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: hpa@...or.com, torvalds@...ux-foundation.org, mingo@...nel.org,
linux-kernel@...r.kernel.org, paulmck@...ux.vnet.ibm.com,
peterz@...radead.org, akpm@...ux-foundation.org, shorne@...il.com,
tglx@...utronix.de
Subject: [tip:locking/urgent] locking/qspinlock: Explicitly include
asm/prefetch.h
Commit-ID: 5671360f29c68d9079914438f6a0109ef62f82a8
Gitweb: http://git.kernel.org/tip/5671360f29c68d9079914438f6a0109ef62f82a8
Author: Stafford Horne <shorne@...il.com>
AuthorDate: Sat, 8 Jul 2017 04:56:58 +0900
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Sat, 8 Jul 2017 11:01:11 +0200
locking/qspinlock: Explicitly include asm/prefetch.h
In architectures that use qspinlock, like x86, prefetch is loaded
indirectly via the asm/qspinlock.h include. On other architectures, like
OpenRISC, which may want to use asm-generic/qspinlock.h the built will
fail without the asm/prefetch.h include.
Fix this by including directly.
Signed-off-by: Stafford Horne <shorne@...il.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Paul E. McKenney <paulmck@...ux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Link: http://lkml.kernel.org/r/20170707195658.23840-1-shorne@gmail.com
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
kernel/locking/qspinlock.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c
index b2caec7..fd24153 100644
--- a/kernel/locking/qspinlock.c
+++ b/kernel/locking/qspinlock.c
@@ -28,6 +28,7 @@
#include <linux/percpu.h>
#include <linux/hardirq.h>
#include <linux/mutex.h>
+#include <linux/prefetch.h>
#include <asm/byteorder.h>
#include <asm/qspinlock.h>
Powered by blists - more mailing lists