x86/asm/64: Clear AC on NMI entries
[linux/fpc-iii.git] / tools / include / asm-generic / barrier.h
blob47b933903eaf3d611e6b7859208839cbbaaf4f27
1 /*
2 * Copied from the kernel sources to tools/perf/:
4 * Generic barrier definitions, originally based on MN10300 definitions.
6 * It should be possible to use these on really simple architectures,
7 * but it serves more as a starting point for new ports.
9 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
10 * Written by David Howells (dhowells@redhat.com)
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public Licence
14 * as published by the Free Software Foundation; either version
15 * 2 of the Licence, or (at your option) any later version.
17 #ifndef __TOOLS_LINUX_ASM_GENERIC_BARRIER_H
18 #define __TOOLS_LINUX_ASM_GENERIC_BARRIER_H
20 #ifndef __ASSEMBLY__
22 #include <linux/compiler.h>
25 * Force strict CPU ordering. And yes, this is required on UP too when we're
26 * talking to devices.
28 * Fall back to compiler barriers if nothing better is provided.
31 #ifndef mb
32 #define mb() barrier()
33 #endif
35 #ifndef rmb
36 #define rmb() mb()
37 #endif
39 #ifndef wmb
40 #define wmb() mb()
41 #endif
43 #endif /* !__ASSEMBLY__ */
44 #endif /* __TOOLS_LINUX_ASM_GENERIC_BARRIER_H */