-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-3.4-rc3' of git://git.kernel.org/pub/scm/linux/kern…
…el/git/rw/uml Pull UML fixes from Richard Weinberger. * 'for-3.4-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml: um: uml_setup_stubs': warning: unused variable 'pages' um: Use asm-generic/switch_to.h um: Disintegrate asm/system.h um: switch cow_user.h to htobe{32,64}/betoh{32,64} um: several x86 hw-dependent crypto modules won't build on uml um: fix linker script generation
- Loading branch information
Showing
11 changed files
with
110 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
generic-y += bug.h cputime.h device.h emergency-restart.h futex.h hardirq.h | ||
generic-y += hw_irq.h irq_regs.h kdebug.h percpu.h sections.h topology.h xor.h | ||
generic-y += ftrace.h pci.h io.h param.h delay.h mutex.h current.h | ||
generic-y += ftrace.h pci.h io.h param.h delay.h mutex.h current.h exec.h | ||
generic-y += switch_to.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#ifndef _ASM_UM_BARRIER_H_ | ||
#define _ASM_UM_BARRIER_H_ | ||
|
||
#include <asm/asm.h> | ||
#include <asm/segment.h> | ||
#include <asm/cpufeature.h> | ||
#include <asm/cmpxchg.h> | ||
#include <asm/nops.h> | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/irqflags.h> | ||
|
||
/* | ||
* Force strict CPU ordering. | ||
* And yes, this is required on UP too when we're talking | ||
* to devices. | ||
*/ | ||
#ifdef CONFIG_X86_32 | ||
|
||
#define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2) | ||
#define rmb() alternative("lock; addl $0,0(%%esp)", "lfence", X86_FEATURE_XMM2) | ||
#define wmb() alternative("lock; addl $0,0(%%esp)", "sfence", X86_FEATURE_XMM) | ||
|
||
#else /* CONFIG_X86_32 */ | ||
|
||
#define mb() asm volatile("mfence" : : : "memory") | ||
#define rmb() asm volatile("lfence" : : : "memory") | ||
#define wmb() asm volatile("sfence" : : : "memory") | ||
|
||
#endif /* CONFIG_X86_32 */ | ||
|
||
#define read_barrier_depends() do { } while (0) | ||
|
||
#ifdef CONFIG_SMP | ||
|
||
#define smp_mb() mb() | ||
#ifdef CONFIG_X86_PPRO_FENCE | ||
#define smp_rmb() rmb() | ||
#else /* CONFIG_X86_PPRO_FENCE */ | ||
#define smp_rmb() barrier() | ||
#endif /* CONFIG_X86_PPRO_FENCE */ | ||
|
||
#ifdef CONFIG_X86_OOSTORE | ||
#define smp_wmb() wmb() | ||
#else /* CONFIG_X86_OOSTORE */ | ||
#define smp_wmb() barrier() | ||
#endif /* CONFIG_X86_OOSTORE */ | ||
|
||
#define smp_read_barrier_depends() read_barrier_depends() | ||
#define set_mb(var, value) do { (void)xchg(&var, value); } while (0) | ||
|
||
#else /* CONFIG_SMP */ | ||
|
||
#define smp_mb() barrier() | ||
#define smp_rmb() barrier() | ||
#define smp_wmb() barrier() | ||
#define smp_read_barrier_depends() do { } while (0) | ||
#define set_mb(var, value) do { var = value; barrier(); } while (0) | ||
|
||
#endif /* CONFIG_SMP */ | ||
|
||
/* | ||
* Stop RDTSC speculation. This is needed when you need to use RDTSC | ||
* (or get_cycles or vread that possibly accesses the TSC) in a defined | ||
* code region. | ||
* | ||
* (Could use an alternative three way for this if there was one.) | ||
*/ | ||
static inline void rdtsc_barrier(void) | ||
{ | ||
alternative(ASM_NOP3, "mfence", X86_FEATURE_MFENCE_RDTSC); | ||
alternative(ASM_NOP3, "lfence", X86_FEATURE_LFENCE_RDTSC); | ||
} | ||
|
||
#endif |
Oops, something went wrong.