mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 02:58:57 +07:00
6a5b78b32d
Remove the deprecated (pre-ARMv7) compat barriers as they would not be used
on an ARMv8 system.
Fixes: a7f71a2c89
("arm64: compat: Add vDSO")
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: linux-arch@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-mips@vger.kernel.org
Cc: linux-kselftest@vger.kernel.org
Cc: Will Deacon <will.deacon@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paul Burton <paul.burton@mips.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Mark Salyzyn <salyzyn@android.com>
Cc: Peter Collingbourne <pcc@google.com>
Cc: Shuah Khan <shuah@kernel.org>
Cc: Dmitry Safonov <0x7f454c46@gmail.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Huw Davies <huw@codeweavers.com>
Cc: Shijith Thotton <sthotton@marvell.com>
Cc: Andre Przywara <andre.przywara@arm.com>
Link: https://lkml.kernel.org/r/20190624140018.GD29120@arrakis.emea.arm.com
45 lines
922 B
C
45 lines
922 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2018 ARM Limited
|
|
*/
|
|
#ifndef __COMPAT_BARRIER_H
|
|
#define __COMPAT_BARRIER_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
/*
|
|
* Warning: This code is meant to be used with
|
|
* ENABLE_COMPAT_VDSO only.
|
|
*/
|
|
#ifndef ENABLE_COMPAT_VDSO
|
|
#error This header is meant to be used with ENABLE_COMPAT_VDSO only
|
|
#endif
|
|
|
|
#ifdef dmb
|
|
#undef dmb
|
|
#endif
|
|
|
|
#define dmb(option) __asm__ __volatile__ ("dmb " #option : : : "memory")
|
|
|
|
#if __LINUX_ARM_ARCH__ >= 8
|
|
#define aarch32_smp_mb() dmb(ish)
|
|
#define aarch32_smp_rmb() dmb(ishld)
|
|
#define aarch32_smp_wmb() dmb(ishst)
|
|
#else
|
|
#define aarch32_smp_mb() dmb(ish)
|
|
#define aarch32_smp_rmb() aarch32_smp_mb()
|
|
#define aarch32_smp_wmb() dmb(ishst)
|
|
#endif
|
|
|
|
|
|
#undef smp_mb
|
|
#undef smp_rmb
|
|
#undef smp_wmb
|
|
|
|
#define smp_mb() aarch32_smp_mb()
|
|
#define smp_rmb() aarch32_smp_rmb()
|
|
#define smp_wmb() aarch32_smp_wmb()
|
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
#endif /* __COMPAT_BARRIER_H */
|