2012-09-21 23:43:09 +04:00
|
|
|
#ifndef _ASM_X86_ALTERNATIVE_ASM_H
|
|
|
|
#define _ASM_X86_ALTERNATIVE_ASM_H
|
|
|
|
|
2007-10-17 20:04:38 +04:00
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
|
2009-11-27 18:06:16 +03:00
|
|
|
#include <asm/asm.h>
|
2007-10-17 20:04:38 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
.macro LOCK_PREFIX
|
2012-01-03 20:35:40 +04:00
|
|
|
672: lock
|
2012-09-21 23:43:08 +04:00
|
|
|
.pushsection .smp_locks,"a"
|
2010-04-21 19:08:14 +04:00
|
|
|
.balign 4
|
2012-01-03 20:35:40 +04:00
|
|
|
.long 672b - .
|
2012-09-21 23:43:08 +04:00
|
|
|
.popsection
|
2007-10-17 20:04:38 +04:00
|
|
|
.endm
|
|
|
|
#else
|
|
|
|
.macro LOCK_PREFIX
|
|
|
|
.endm
|
|
|
|
#endif
|
|
|
|
|
2011-05-18 02:29:13 +04:00
|
|
|
.macro altinstruction_entry orig alt feature orig_len alt_len
|
2011-07-13 17:24:10 +04:00
|
|
|
.long \orig - .
|
|
|
|
.long \alt - .
|
2011-05-18 02:29:13 +04:00
|
|
|
.word \feature
|
|
|
|
.byte \orig_len
|
|
|
|
.byte \alt_len
|
|
|
|
.endm
|
|
|
|
|
2007-10-17 20:04:38 +04:00
|
|
|
#endif /* __ASSEMBLY__ */
|
2012-09-21 23:43:09 +04:00
|
|
|
|
|
|
|
#endif /* _ASM_X86_ALTERNATIVE_ASM_H */
|