sevki
c9e1dba412
setup CI/CD for kernel development - added CodeQL for code scanning - every pr is built as an image and is available for 30days on https://oklinux.dev - tagged and released on github for now Signed-off-by: sevki <s@sevki.io>
21 lines
474 B
C
21 lines
474 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef __ASM_SPINLOCK_H
|
|
#define __ASM_SPINLOCK_H
|
|
#ifdef __KERNEL__
|
|
|
|
#ifdef CONFIG_PPC_QUEUED_SPINLOCKS
|
|
#include <asm/qspinlock.h>
|
|
#include <asm/qrwlock.h>
|
|
#else
|
|
#include <asm/simple_spinlock.h>
|
|
#endif
|
|
|
|
/* See include/linux/spinlock.h */
|
|
#define smp_mb__after_spinlock() smp_mb()
|
|
|
|
#ifndef CONFIG_PPC_QUEUED_SPINLOCKS
|
|
static inline void pv_spinlocks_init(void) { }
|
|
#endif
|
|
|
|
#endif /* __KERNEL__ */
|
|
#endif /* __ASM_SPINLOCK_H */
|