Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 19583ca584d6f574384e17fe7613dfaeadcdc4a6 authored by Linus Torvalds on 03 August 2014, 22:25:02 UTC
Linux 3.16
Tip revision: 19583ca
barriers.h
/*
 * Barriers redefined for RealView ARM11MPCore platforms with L220 cache
 * controller to work around hardware errata causing the outer_sync()
 * operation to deadlock the system.
 */
#define mb()		dsb()
#define rmb()		dsb()
#define wmb()		mb()
back to top