cregit-Linux how code gets into the kernel

Release 4.14 arch/s390/include/asm/barrier.h

/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright IBM Corp. 1999, 2009
 *
 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
 */

#ifndef __ASM_BARRIER_H

#define __ASM_BARRIER_H

/*
 * Force strict CPU ordering.
 * And yes, this is required on UP too when we're talking
 * to devices.
 */

#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
/* Fast-BCR without checkpoint synchronization */

#define __ASM_BARRIER "bcr 14,0\n"
#else

#define __ASM_BARRIER "bcr 15,0\n"
#endif


#define mb() do {  asm volatile(__ASM_BARRIER : : : "memory"); } while (0)


#define rmb()				barrier()

#define wmb()				barrier()

#define dma_rmb()			mb()

#define dma_wmb()			mb()

#define __smp_mb()			mb()

#define __smp_rmb()			rmb()

#define __smp_wmb()			wmb()


#define __smp_store_release(p, v)					\
do {                                                                    \
        compiletime_assert_atomic_type(*p);                             \
        barrier();                                                      \
        WRITE_ONCE(*p, v);                                              \
} while (0)


#define __smp_load_acquire(p)						\
({                                                                      \
        typeof(*p) ___p1 = READ_ONCE(*p);                               \
        compiletime_assert_atomic_type(*p);                             \
        barrier();                                                      \
        ___p1;                                                          \
})


#define __smp_mb__before_atomic()	barrier()

#define __smp_mb__after_atomic()	barrier()

#include <asm-generic/barrier.h>

#endif /* __ASM_BARRIER_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Michael S. Tsirkin3030.30%323.08%
Heiko Carstens2222.22%430.77%
David Howells1818.18%17.69%
Peter Zijlstra1414.14%17.69%
Alexander Duyck88.08%17.69%
Christian Bornträger44.04%17.69%
Andrey Konovalov22.02%17.69%
Greg Kroah-Hartman11.01%17.69%
Total99100.00%13100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.