diff mbox series

[1/3] kernel/locking: #include <asm/spinlock.h> in qrwlock.c

Message ID 20170503145141.4966-2-ynorov@caviumnetworks.com
State New
Headers show
Series arm64: queued spinlocks and rw-locks | expand

Commit Message

Yury Norov May 3, 2017, 2:51 p.m. UTC
qrwlock.c calls arch_spin_lock() and arch_spin_unlock() but doesn't
include the asm/spinlock.h, where those functions are defined. It
may produce "implicit declaration of function" errors. This patch
fixes it.

Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>

---
 kernel/locking/qrwlock.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.11.0

Comments

Geert Uytterhoeven May 3, 2017, 3:05 p.m. UTC | #1
On Wed, May 3, 2017 at 4:51 PM, Yury Norov <ynorov@caviumnetworks.com> wrote:
> --- a/kernel/locking/qrwlock.c

> +++ b/kernel/locking/qrwlock.c

> @@ -20,6 +20,7 @@

>  #include <linux/cpumask.h>

>  #include <linux/percpu.h>

>  #include <linux/hardirq.h>

> +#include <asm/spinlock.h>


linux/spinlock.h?

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
Yury Norov May 3, 2017, 8:32 p.m. UTC | #2
On Wed, May 03, 2017 at 05:05:29PM +0200, Geert Uytterhoeven wrote:
> On Wed, May 3, 2017 at 4:51 PM, Yury Norov <ynorov@caviumnetworks.com> wrote:

> > --- a/kernel/locking/qrwlock.c

> > +++ b/kernel/locking/qrwlock.c

> > @@ -20,6 +20,7 @@

> >  #include <linux/cpumask.h>

> >  #include <linux/percpu.h>

> >  #include <linux/hardirq.h>

> > +#include <asm/spinlock.h>

> 

> linux/spinlock.h?


Comment in include/linux/spinlock.h says:

 * here's the role of the various spinlock/rwlock related include
 * files:
 *
 * on SMP builds:
 *
 [...]
 *  asm/spinlock.h:       contains the arch_spin_*()/etc.  lowlevel
 *                        implementations, mostly inline assembly code
 *

This, and the fact that include/asm-generic/spinlock.h and
arch/arm64/include/asm/spinlock.h doesn't prevent the direct
inclusion means, for me, that I should include asm/spinlock.h,
because of all that I need only arch_spin_lock() and arch_spin_unlock().

Am I wrong?

Yury
diff mbox series

Patch

diff --git a/kernel/locking/qrwlock.c b/kernel/locking/qrwlock.c
index cc3ed0ccdfa2..6fb42925b201 100644
--- a/kernel/locking/qrwlock.c
+++ b/kernel/locking/qrwlock.c
@@ -20,6 +20,7 @@ 
 #include <linux/cpumask.h>
 #include <linux/percpu.h>
 #include <linux/hardirq.h>
+#include <asm/spinlock.h>
 #include <asm/qrwlock.h>
 
 /*