cregit-Linux how code gets into the kernel

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

/*
 * 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.61%325.00%
Heiko Carstens2222.45%433.33%
David Howells1818.37%18.33%
Peter Zijlstra1414.29%18.33%
Alexander Duyck88.16%18.33%
Christian Bornträger44.08%18.33%
Andrey Konovalov22.04%18.33%
Total98100.00%12100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.