2006-03-23 11:59:32 +01:00
|
|
|
#include <linux/module.h>
|
2006-10-18 07:47:25 +02:00
|
|
|
#include <linux/sched.h>
|
2008-05-12 21:21:01 +02:00
|
|
|
#include <linux/mutex.h>
|
2006-03-23 11:59:32 +01:00
|
|
|
#include <linux/list.h>
|
2009-08-19 09:40:48 +02:00
|
|
|
#include <linux/stringify.h>
|
2007-07-22 11:12:31 +02:00
|
|
|
#include <linux/kprobes.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/vmalloc.h>
|
2009-03-06 16:37:22 +01:00
|
|
|
#include <linux/memory.h>
|
2010-02-25 14:34:38 +01:00
|
|
|
#include <linux/stop_machine.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2006-03-23 11:59:32 +01:00
|
|
|
#include <asm/alternative.h>
|
|
|
|
#include <asm/sections.h>
|
2007-07-22 11:12:31 +02:00
|
|
|
#include <asm/pgtable.h>
|
2007-07-22 11:12:32 +02:00
|
|
|
#include <asm/mce.h>
|
|
|
|
#include <asm/nmi.h>
|
2008-03-06 14:48:49 +01:00
|
|
|
#include <asm/cacheflush.h>
|
2009-03-06 16:37:54 +01:00
|
|
|
#include <asm/tlbflush.h>
|
2008-03-06 14:48:49 +01:00
|
|
|
#include <asm/io.h>
|
2009-03-06 16:37:54 +01:00
|
|
|
#include <asm/fixmap.h>
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2007-08-10 22:31:03 +02:00
|
|
|
#define MAX_PATCH_LEN (255-1)
|
|
|
|
|
2007-07-21 17:10:25 +02:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
static int smp_alt_once;
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2006-06-26 13:56:16 +02:00
|
|
|
static int __init bootonly(char *str)
|
|
|
|
{
|
|
|
|
smp_alt_once = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
2007-05-02 19:27:13 +02:00
|
|
|
__setup("smp-alt-boot", bootonly);
|
2007-07-21 17:10:25 +02:00
|
|
|
#else
|
|
|
|
#define smp_alt_once 1
|
|
|
|
#endif
|
|
|
|
|
2009-08-19 09:40:48 +02:00
|
|
|
static int __initdata_or_module debug_alternative;
|
2007-05-02 19:27:13 +02:00
|
|
|
|
2006-06-26 13:56:16 +02:00
|
|
|
static int __init debug_alt(char *str)
|
|
|
|
{
|
|
|
|
debug_alternative = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("debug-alternative", debug_alt);
|
|
|
|
|
2007-07-21 17:10:25 +02:00
|
|
|
static int noreplace_smp;
|
|
|
|
|
2007-05-02 19:27:13 +02:00
|
|
|
static int __init setup_noreplace_smp(char *str)
|
|
|
|
{
|
|
|
|
noreplace_smp = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("noreplace-smp", setup_noreplace_smp);
|
|
|
|
|
2007-05-02 19:27:16 +02:00
|
|
|
#ifdef CONFIG_PARAVIRT
|
2009-08-19 09:40:48 +02:00
|
|
|
static int __initdata_or_module noreplace_paravirt = 0;
|
2007-05-02 19:27:16 +02:00
|
|
|
|
|
|
|
static int __init setup_noreplace_paravirt(char *str)
|
|
|
|
{
|
|
|
|
noreplace_paravirt = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("noreplace-paravirt", setup_noreplace_paravirt);
|
|
|
|
#endif
|
2007-05-02 19:27:13 +02:00
|
|
|
|
2006-06-26 13:56:16 +02:00
|
|
|
#define DPRINTK(fmt, args...) if (debug_alternative) \
|
|
|
|
printk(KERN_DEBUG fmt, args)
|
|
|
|
|
2011-04-19 00:19:51 +02:00
|
|
|
/*
|
|
|
|
* Each GENERIC_NOPX is of X bytes, and defined as an array of bytes
|
|
|
|
* that correspond to that nop. Getting from one nop to the next, we
|
|
|
|
* add to the array the offset that is equal to the sum of all sizes of
|
|
|
|
* nops preceding the one we are after.
|
|
|
|
*
|
|
|
|
* Note: The GENERIC_NOP5_ATOMIC is at the end, as it breaks the
|
|
|
|
* nice symmetry of sizes of the previous nops.
|
|
|
|
*/
|
2009-08-19 09:40:48 +02:00
|
|
|
#if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64)
|
2011-04-19 00:19:51 +02:00
|
|
|
static const unsigned char intelnops[] =
|
|
|
|
{
|
|
|
|
GENERIC_NOP1,
|
|
|
|
GENERIC_NOP2,
|
|
|
|
GENERIC_NOP3,
|
|
|
|
GENERIC_NOP4,
|
|
|
|
GENERIC_NOP5,
|
|
|
|
GENERIC_NOP6,
|
|
|
|
GENERIC_NOP7,
|
|
|
|
GENERIC_NOP8,
|
|
|
|
GENERIC_NOP5_ATOMIC
|
|
|
|
};
|
|
|
|
static const unsigned char * const intel_nops[ASM_NOP_MAX+2] =
|
|
|
|
{
|
2006-03-23 11:59:32 +01:00
|
|
|
NULL,
|
|
|
|
intelnops,
|
|
|
|
intelnops + 1,
|
|
|
|
intelnops + 1 + 2,
|
|
|
|
intelnops + 1 + 2 + 3,
|
|
|
|
intelnops + 1 + 2 + 3 + 4,
|
|
|
|
intelnops + 1 + 2 + 3 + 4 + 5,
|
|
|
|
intelnops + 1 + 2 + 3 + 4 + 5 + 6,
|
|
|
|
intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
|
2011-04-19 00:19:51 +02:00
|
|
|
intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
|
2006-03-23 11:59:32 +01:00
|
|
|
};
|
2006-06-26 13:56:16 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef K8_NOP1
|
2011-04-19 00:19:51 +02:00
|
|
|
static const unsigned char k8nops[] =
|
|
|
|
{
|
|
|
|
K8_NOP1,
|
|
|
|
K8_NOP2,
|
|
|
|
K8_NOP3,
|
|
|
|
K8_NOP4,
|
|
|
|
K8_NOP5,
|
|
|
|
K8_NOP6,
|
|
|
|
K8_NOP7,
|
|
|
|
K8_NOP8,
|
|
|
|
K8_NOP5_ATOMIC
|
|
|
|
};
|
|
|
|
static const unsigned char * const k8_nops[ASM_NOP_MAX+2] =
|
|
|
|
{
|
2006-03-23 11:59:32 +01:00
|
|
|
NULL,
|
|
|
|
k8nops,
|
|
|
|
k8nops + 1,
|
|
|
|
k8nops + 1 + 2,
|
|
|
|
k8nops + 1 + 2 + 3,
|
|
|
|
k8nops + 1 + 2 + 3 + 4,
|
|
|
|
k8nops + 1 + 2 + 3 + 4 + 5,
|
|
|
|
k8nops + 1 + 2 + 3 + 4 + 5 + 6,
|
|
|
|
k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
|
2011-04-19 00:19:51 +02:00
|
|
|
k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
|
2006-03-23 11:59:32 +01:00
|
|
|
};
|
2006-06-26 13:56:16 +02:00
|
|
|
#endif
|
|
|
|
|
2009-08-19 09:40:48 +02:00
|
|
|
#if defined(K7_NOP1) && !defined(CONFIG_X86_64)
|
2011-04-19 00:19:51 +02:00
|
|
|
static const unsigned char k7nops[] =
|
|
|
|
{
|
|
|
|
K7_NOP1,
|
|
|
|
K7_NOP2,
|
|
|
|
K7_NOP3,
|
|
|
|
K7_NOP4,
|
|
|
|
K7_NOP5,
|
|
|
|
K7_NOP6,
|
|
|
|
K7_NOP7,
|
|
|
|
K7_NOP8,
|
|
|
|
K7_NOP5_ATOMIC
|
|
|
|
};
|
|
|
|
static const unsigned char * const k7_nops[ASM_NOP_MAX+2] =
|
|
|
|
{
|
2006-03-23 11:59:32 +01:00
|
|
|
NULL,
|
|
|
|
k7nops,
|
|
|
|
k7nops + 1,
|
|
|
|
k7nops + 1 + 2,
|
|
|
|
k7nops + 1 + 2 + 3,
|
|
|
|
k7nops + 1 + 2 + 3 + 4,
|
|
|
|
k7nops + 1 + 2 + 3 + 4 + 5,
|
|
|
|
k7nops + 1 + 2 + 3 + 4 + 5 + 6,
|
|
|
|
k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
|
2011-04-19 00:19:51 +02:00
|
|
|
k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
|
2006-03-23 11:59:32 +01:00
|
|
|
};
|
2006-06-26 13:56:16 +02:00
|
|
|
#endif
|
|
|
|
|
2007-10-17 18:04:41 +02:00
|
|
|
#ifdef P6_NOP1
|
2011-04-19 00:19:51 +02:00
|
|
|
static const unsigned char __initconst_or_module p6nops[] =
|
|
|
|
{
|
|
|
|
P6_NOP1,
|
|
|
|
P6_NOP2,
|
|
|
|
P6_NOP3,
|
|
|
|
P6_NOP4,
|
|
|
|
P6_NOP5,
|
|
|
|
P6_NOP6,
|
|
|
|
P6_NOP7,
|
|
|
|
P6_NOP8,
|
|
|
|
P6_NOP5_ATOMIC
|
|
|
|
};
|
|
|
|
static const unsigned char * const p6_nops[ASM_NOP_MAX+2] =
|
|
|
|
{
|
2007-10-17 18:04:41 +02:00
|
|
|
NULL,
|
|
|
|
p6nops,
|
|
|
|
p6nops + 1,
|
|
|
|
p6nops + 1 + 2,
|
|
|
|
p6nops + 1 + 2 + 3,
|
|
|
|
p6nops + 1 + 2 + 3 + 4,
|
|
|
|
p6nops + 1 + 2 + 3 + 4 + 5,
|
|
|
|
p6nops + 1 + 2 + 3 + 4 + 5 + 6,
|
|
|
|
p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
|
2011-04-19 00:19:51 +02:00
|
|
|
p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
|
2007-10-17 18:04:41 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2011-04-19 00:19:51 +02:00
|
|
|
/* Initialize these to a safe default */
|
2006-06-26 13:56:16 +02:00
|
|
|
#ifdef CONFIG_X86_64
|
2011-04-19 00:19:51 +02:00
|
|
|
const unsigned char * const *ideal_nops = p6_nops;
|
|
|
|
#else
|
|
|
|
const unsigned char * const *ideal_nops = intel_nops;
|
|
|
|
#endif
|
2006-06-26 13:56:16 +02:00
|
|
|
|
2011-04-19 00:19:51 +02:00
|
|
|
void __init arch_init_ideal_nops(void)
|
2006-06-26 13:56:16 +02:00
|
|
|
{
|
2011-04-19 00:19:51 +02:00
|
|
|
switch (boot_cpu_data.x86_vendor) {
|
|
|
|
case X86_VENDOR_INTEL:
|
2011-04-19 00:31:57 +02:00
|
|
|
/*
|
|
|
|
* Due to a decoder implementation quirk, some
|
|
|
|
* specific Intel CPUs actually perform better with
|
|
|
|
* the "k8_nops" than with the SDM-recommended NOPs.
|
|
|
|
*/
|
|
|
|
if (boot_cpu_data.x86 == 6 &&
|
|
|
|
boot_cpu_data.x86_model >= 0x0f &&
|
|
|
|
boot_cpu_data.x86_model != 0x1c &&
|
|
|
|
boot_cpu_data.x86_model != 0x26 &&
|
|
|
|
boot_cpu_data.x86_model != 0x27 &&
|
|
|
|
boot_cpu_data.x86_model < 0x30) {
|
|
|
|
ideal_nops = k8_nops;
|
|
|
|
} else if (boot_cpu_has(X86_FEATURE_NOPL)) {
|
2011-04-19 00:19:51 +02:00
|
|
|
ideal_nops = p6_nops;
|
|
|
|
} else {
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
ideal_nops = k8_nops;
|
|
|
|
#else
|
|
|
|
ideal_nops = intel_nops;
|
|
|
|
#endif
|
|
|
|
}
|
2006-06-26 13:56:16 +02:00
|
|
|
|
2011-04-19 00:19:51 +02:00
|
|
|
default:
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
ideal_nops = k8_nops;
|
|
|
|
#else
|
|
|
|
if (boot_cpu_has(X86_FEATURE_K8))
|
|
|
|
ideal_nops = k8_nops;
|
|
|
|
else if (boot_cpu_has(X86_FEATURE_K7))
|
|
|
|
ideal_nops = k7_nops;
|
|
|
|
else
|
|
|
|
ideal_nops = intel_nops;
|
|
|
|
#endif
|
|
|
|
}
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
2007-08-10 22:31:03 +02:00
|
|
|
/* Use this to add nops to a buffer, then text_poke the whole buffer. */
|
2009-08-19 09:40:48 +02:00
|
|
|
static void __init_or_module add_nops(void *insns, unsigned int len)
|
2006-12-07 02:14:08 +01:00
|
|
|
{
|
|
|
|
while (len > 0) {
|
|
|
|
unsigned int noplen = len;
|
|
|
|
if (noplen > ASM_NOP_MAX)
|
|
|
|
noplen = ASM_NOP_MAX;
|
2011-04-19 00:19:51 +02:00
|
|
|
memcpy(insns, ideal_nops[noplen], noplen);
|
2006-12-07 02:14:08 +01:00
|
|
|
insns += noplen;
|
|
|
|
len -= noplen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-26 13:56:16 +02:00
|
|
|
extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
|
2010-04-21 17:08:14 +02:00
|
|
|
extern s32 __smp_locks[], __smp_locks_end[];
|
2010-09-17 17:08:56 +02:00
|
|
|
void *text_poke_early(void *addr, const void *opcode, size_t len);
|
2006-06-26 13:56:16 +02:00
|
|
|
|
2006-03-23 11:59:32 +01:00
|
|
|
/* Replace instructions with better alternatives for this CPU type.
|
|
|
|
This runs before SMP is initialized to avoid SMP problems with
|
2011-03-17 20:24:16 +01:00
|
|
|
self modifying code. This implies that asymmetric systems where
|
2006-03-23 11:59:32 +01:00
|
|
|
APs have less capabilities than the boot processor are not handled.
|
|
|
|
Tough. Make sure you disable such features by hand. */
|
|
|
|
|
2009-08-19 09:40:48 +02:00
|
|
|
void __init_or_module apply_alternatives(struct alt_instr *start,
|
|
|
|
struct alt_instr *end)
|
2006-03-23 11:59:32 +01:00
|
|
|
{
|
|
|
|
struct alt_instr *a;
|
2011-07-13 15:24:10 +02:00
|
|
|
u8 *instr, *replacement;
|
2009-12-18 17:12:56 +01:00
|
|
|
u8 insnbuf[MAX_PATCH_LEN];
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2008-03-03 20:37:23 +01:00
|
|
|
DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
|
2011-05-18 00:29:12 +02:00
|
|
|
/*
|
|
|
|
* The scan order should be from start to end. A later scanned
|
|
|
|
* alternative code can overwrite a previous scanned alternative code.
|
|
|
|
* Some kernel functions (e.g. memcpy, memset, etc) use this order to
|
|
|
|
* patch code.
|
|
|
|
*
|
|
|
|
* So be careful if you want to change the scan order to any other
|
|
|
|
* order.
|
|
|
|
*/
|
2006-03-23 11:59:32 +01:00
|
|
|
for (a = start; a < end; a++) {
|
2011-07-13 15:24:10 +02:00
|
|
|
instr = (u8 *)&a->instr_offset + a->instr_offset;
|
|
|
|
replacement = (u8 *)&a->repl_offset + a->repl_offset;
|
2006-03-23 11:59:32 +01:00
|
|
|
BUG_ON(a->replacementlen > a->instrlen);
|
2007-08-10 22:31:03 +02:00
|
|
|
BUG_ON(a->instrlen > sizeof(insnbuf));
|
2010-07-13 23:57:50 +02:00
|
|
|
BUG_ON(a->cpuid >= NCAPINTS*32);
|
2006-03-23 11:59:32 +01:00
|
|
|
if (!boot_cpu_has(a->cpuid))
|
|
|
|
continue;
|
2011-07-13 15:24:10 +02:00
|
|
|
|
|
|
|
memcpy(insnbuf, replacement, a->replacementlen);
|
|
|
|
|
|
|
|
/* 0xe8 is a relative jump; fix the offset. */
|
|
|
|
if (*insnbuf == 0xe8 && a->replacementlen == 5)
|
|
|
|
*(s32 *)(insnbuf + 1) += replacement - instr;
|
|
|
|
|
|
|
|
add_nops(insnbuf + a->replacementlen,
|
|
|
|
a->instrlen - a->replacementlen);
|
|
|
|
|
2008-03-06 14:48:49 +01:00
|
|
|
text_poke_early(instr, insnbuf, a->instrlen);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-01 13:36:18 +02:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
2010-04-21 17:08:14 +02:00
|
|
|
static void alternatives_smp_lock(const s32 *start, const s32 *end,
|
|
|
|
u8 *text, u8 *text_end)
|
2006-03-23 11:59:32 +01:00
|
|
|
{
|
2010-04-21 17:08:14 +02:00
|
|
|
const s32 *poff;
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2009-03-06 16:37:22 +01:00
|
|
|
mutex_lock(&text_mutex);
|
2010-04-21 17:08:14 +02:00
|
|
|
for (poff = start; poff < end; poff++) {
|
|
|
|
u8 *ptr = (u8 *)poff + *poff;
|
|
|
|
|
|
|
|
if (!*poff || ptr < text || ptr >= text_end)
|
2006-03-23 11:59:32 +01:00
|
|
|
continue;
|
x86: alternatives : fix LOCK_PREFIX race with preemptible kernel and CPU hotplug
If a kernel thread is preempted in single-cpu mode right after the NOP (nop
about to be turned into a lock prefix), then we CPU hotplug a CPU, and then the
thread is scheduled back again, a SMP-unsafe atomic operation will be used on
shared SMP variables, leading to corruption. No corruption would happen in the
reverse case : going from SMP to UP is ok because we split a bit instruction
into tiny pieces, which does not present this condition.
Changing the 0x90 (single-byte nop) currently used into a 0x3E DS segment
override prefix should fix this issue. Since the default of the atomic
instructions is to use the DS segment anyway, it should not affect the
behavior.
The exception to this are references that use ESP/RSP and EBP/RBP as
the base register (they will use the SS segment), however, in Linux
(a) DS == SS at all times, and (b) we do not distinguish between
segment violations reported as #SS as opposed to #GP, so there is no
need to disassemble the instruction to figure out the suitable segment.
This patch assumes that the 0x3E prefix will leave atomic operations as-is (thus
assuming they normally touch data in the DS segment). Since there seem to be no
obvious ill-use of other segment override prefixes for atomic operations, it
should be safe. It can be verified with a quick
grep -r LOCK_PREFIX include/asm-x86/
grep -A 1 -r LOCK_PREFIX arch/x86/
Taken from
This source :
AMD64 Architecture Programmer's Manual Volume 3: General-Purpose and System
Instructions
States
"Instructions that Reference a Non-Stack Segment—If an instruction encoding
references any base register other than rBP or rSP, or if an instruction
contains an immediate offset, the default segment is the data segment (DS).
These instructions can use the segment-override prefix to select one of the
non-default segments, as shown in Table 1-5."
Therefore, forcing the DS segment on the atomic operations, which already use
the DS segment, should not change.
This source :
http://wiki.osdev.org/X86_Instruction_Encoding
States
"In 64-bit the CS, SS, DS and ES segment overrides are ignored."
Confirmed by "AMD 64-Bit Technology" A.7
http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/x86-64_overview.pdf
"In 64-bit mode, the DS, ES, SS and CS segment-override prefixes have no effect.
These four prefixes are no longer treated as segment-override prefixes in the
context of multipleprefix rules. Instead, they are treated as null prefixes."
This patch applies to 2.6.27-rc2, but would also have to be applied to earlier
kernels (2.6.26, 2.6.25, ...).
Performance impact of the fix : tests done on "xaddq" and "xaddl" shows it
actually improves performances on Intel Xeon, AMD64, Pentium M. It does not
change the performance on Pentium II, Pentium 3 and Pentium 4.
Xeon E5405 2.0GHz :
NR_TESTS 10000000
test empty cycles : 162207948
test test 1-byte nop xadd cycles : 170755422
test test DS override prefix xadd cycles : 170000118 *
test test LOCK xadd cycles : 472012134
AMD64 2.0GHz :
NR_TESTS 10000000
test empty cycles : 146674549
test test 1-byte nop xadd cycles : 150273860
test test DS override prefix xadd cycles : 149982382 *
test test LOCK xadd cycles : 270000690
Pentium 4 3.0GHz
NR_TESTS 10000000
test empty cycles : 290001195
test test 1-byte nop xadd cycles : 310000560
test test DS override prefix xadd cycles : 310000575 *
test test LOCK xadd cycles : 1050103740
Pentium M 2.0GHz
NR_TESTS 10000000
test empty cycles : 180000523
test test 1-byte nop xadd cycles : 320000345
test test DS override prefix xadd cycles : 310000374 *
test test LOCK xadd cycles : 480000357
Pentium 3 550MHz
NR_TESTS 10000000
test empty cycles : 510000231
test test 1-byte nop xadd cycles : 620000128
test test DS override prefix xadd cycles : 620000110 *
test test LOCK xadd cycles : 800000088
Pentium II 350MHz
NR_TESTS 10000000
test empty cycles : 200833494
test test 1-byte nop xadd cycles : 340000130
test test DS override prefix xadd cycles : 340000126 *
test test LOCK xadd cycles : 530000078
Speed test modules can be found at
http://ltt.polymtl.ca/svn/trunk/tests/kernel/test-prefix-speed-32.c
http://ltt.polymtl.ca/svn/trunk/tests/kernel/test-prefix-speed.c
Macro-benchmarks
2.0GHz E5405 Core 2 dual Quad-Core Xeon
Summary
* replace smp lock prefixes with DS segment selector prefixes
no lock prefix (s) with lock prefix (s) Speedup
make -j1 kernel/ 33.94 +/- 0.07 34.91 +/- 0.27 2.8 %
hackbench 50 2.99 +/- 0.01 3.74 +/- 0.01 25.1 %
* replace smp lock prefixes with 0x90 nops
no lock prefix (s) with lock prefix (s) Speedup
make -j1 kernel/ 34.16 +/- 0.32 34.91 +/- 0.27 2.2 %
hackbench 50 3.00 +/- 0.01 3.74 +/- 0.01 24.7 %
Detail :
1 CPU, replace smp lock prefixes with DS segment selector prefixes
make -j1 kernel/
real 0m34.067s
user 0m30.630s
sys 0m2.980s
real 0m33.867s
user 0m30.582s
sys 0m3.024s
real 0m33.939s
user 0m30.738s
sys 0m2.876s
real 0m33.913s
user 0m30.806s
sys 0m2.808s
avg : 33.94s
std. dev. : 0.07s
hackbench 50
Time: 2.978
Time: 2.982
Time: 3.010
Time: 2.984
Time: 2.982
avg : 2.99
std. dev. : 0.01
1 CPU, noreplace-smp
make -j1 kernel/
real 0m35.326s
user 0m30.630s
sys 0m3.260s
real 0m34.325s
user 0m30.802s
sys 0m3.084s
real 0m35.568s
user 0m30.722s
sys 0m3.168s
real 0m34.435s
user 0m30.886s
sys 0m2.996s
avg.: 34.91s
std. dev. : 0.27s
hackbench 50
Time: 3.733
Time: 3.750
Time: 3.761
Time: 3.737
Time: 3.741
avg : 3.74
std. dev. : 0.01
1 CPU, replace smp lock prefixes with 0x90 nops
make -j1 kernel/
real 0m34.139s
user 0m30.782s
sys 0m2.820s
real 0m34.010s
user 0m30.630s
sys 0m2.976s
real 0m34.777s
user 0m30.658s
sys 0m2.916s
real 0m33.924s
user 0m30.634s
sys 0m2.924s
real 0m33.962s
user 0m30.774s
sys 0m2.800s
real 0m34.141s
user 0m30.770s
sys 0m2.828s
avg : 34.16
std. dev. : 0.32
hackbench 50
Time: 2.999
Time: 2.994
Time: 3.004
Time: 2.991
Time: 2.988
avg : 3.00
std. dev. : 0.01
I did more runs (20 runs of each) to compare the nop case to the DS
prefix case. Results in seconds. They actually does not seems to show a
significant difference.
NOP
34.155
33.955
34.012
35.299
35.679
34.141
33.995
35.016
34.254
33.957
33.957
34.008
35.013
34.494
33.893
34.295
34.314
34.854
33.991
34.132
DS
34.080
34.304
34.374
35.095
34.291
34.135
33.940
34.208
35.276
34.288
33.861
33.898
34.610
34.709
33.851
34.256
35.161
34.283
33.865
35.078
Used http://www.graphpad.com/quickcalcs/ttest1.cfm?Format=C to do the
T-test (yeah, I'm lazy) :
Group Group One (DS prefix) Group Two (nops)
Mean 34.37815 34.37070
SD 0.46108 0.51905
SEM 0.10310 0.11606
N 20 20
P value and statistical significance:
The two-tailed P value equals 0.9620
By conventional criteria, this difference is considered to be not statistically significant.
Confidence interval:
The mean of Group One minus Group Two equals 0.00745
95% confidence interval of this difference: From -0.30682 to 0.32172
Intermediate values used in calculations:
t = 0.0480
df = 38
standard error of difference = 0.155
So, unless these calculus are completely bogus, the difference between the nop
and the DS case seems not to be statistically significant.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Acked-by: H. Peter Anvin <hpa@zytor.com>
CC: Linus Torvalds <torvalds@linux-foundation.org>
CC: Jeremy Fitzhardinge <jeremy@goop.org>
CC: Roland McGrath <roland@redhat.com>
CC: Ingo Molnar <mingo@elte.hu>
Cc: Steven Rostedt <rostedt@goodmis.org>
CC: Steven Rostedt <srostedt@redhat.com>
CC: Thomas Gleixner <tglx@linutronix.de>
CC: Peter Zijlstra <peterz@infradead.org>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: David Miller <davem@davemloft.net>
CC: Ulrich Drepper <drepper@redhat.com>
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Gregory Haskins <ghaskins@novell.com>
CC: Arnaldo Carvalho de Melo <acme@redhat.com>
CC: "Luis Claudio R. Goncalves" <lclaudio@uudg.org>
CC: Clark Williams <williams@redhat.com>
CC: Christoph Lameter <cl@linux-foundation.org>
CC: Andi Kleen <andi@firstfloor.org>
CC: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-08-14 22:58:15 +02:00
|
|
|
/* turn DS segment override prefix into lock prefix */
|
2010-04-30 01:53:17 +02:00
|
|
|
if (*ptr == 0x3e)
|
|
|
|
text_poke(ptr, ((unsigned char []){0xf0}), 1);
|
2006-03-23 11:59:32 +01:00
|
|
|
};
|
2009-03-06 16:37:22 +01:00
|
|
|
mutex_unlock(&text_mutex);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
2010-04-21 17:08:14 +02:00
|
|
|
static void alternatives_smp_unlock(const s32 *start, const s32 *end,
|
|
|
|
u8 *text, u8 *text_end)
|
2006-03-23 11:59:32 +01:00
|
|
|
{
|
2010-04-21 17:08:14 +02:00
|
|
|
const s32 *poff;
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2007-05-02 19:27:13 +02:00
|
|
|
if (noreplace_smp)
|
|
|
|
return;
|
|
|
|
|
2009-03-06 16:37:22 +01:00
|
|
|
mutex_lock(&text_mutex);
|
2010-04-21 17:08:14 +02:00
|
|
|
for (poff = start; poff < end; poff++) {
|
|
|
|
u8 *ptr = (u8 *)poff + *poff;
|
|
|
|
|
|
|
|
if (!*poff || ptr < text || ptr >= text_end)
|
2006-03-23 11:59:32 +01:00
|
|
|
continue;
|
x86: alternatives : fix LOCK_PREFIX race with preemptible kernel and CPU hotplug
If a kernel thread is preempted in single-cpu mode right after the NOP (nop
about to be turned into a lock prefix), then we CPU hotplug a CPU, and then the
thread is scheduled back again, a SMP-unsafe atomic operation will be used on
shared SMP variables, leading to corruption. No corruption would happen in the
reverse case : going from SMP to UP is ok because we split a bit instruction
into tiny pieces, which does not present this condition.
Changing the 0x90 (single-byte nop) currently used into a 0x3E DS segment
override prefix should fix this issue. Since the default of the atomic
instructions is to use the DS segment anyway, it should not affect the
behavior.
The exception to this are references that use ESP/RSP and EBP/RBP as
the base register (they will use the SS segment), however, in Linux
(a) DS == SS at all times, and (b) we do not distinguish between
segment violations reported as #SS as opposed to #GP, so there is no
need to disassemble the instruction to figure out the suitable segment.
This patch assumes that the 0x3E prefix will leave atomic operations as-is (thus
assuming they normally touch data in the DS segment). Since there seem to be no
obvious ill-use of other segment override prefixes for atomic operations, it
should be safe. It can be verified with a quick
grep -r LOCK_PREFIX include/asm-x86/
grep -A 1 -r LOCK_PREFIX arch/x86/
Taken from
This source :
AMD64 Architecture Programmer's Manual Volume 3: General-Purpose and System
Instructions
States
"Instructions that Reference a Non-Stack Segment—If an instruction encoding
references any base register other than rBP or rSP, or if an instruction
contains an immediate offset, the default segment is the data segment (DS).
These instructions can use the segment-override prefix to select one of the
non-default segments, as shown in Table 1-5."
Therefore, forcing the DS segment on the atomic operations, which already use
the DS segment, should not change.
This source :
http://wiki.osdev.org/X86_Instruction_Encoding
States
"In 64-bit the CS, SS, DS and ES segment overrides are ignored."
Confirmed by "AMD 64-Bit Technology" A.7
http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/x86-64_overview.pdf
"In 64-bit mode, the DS, ES, SS and CS segment-override prefixes have no effect.
These four prefixes are no longer treated as segment-override prefixes in the
context of multipleprefix rules. Instead, they are treated as null prefixes."
This patch applies to 2.6.27-rc2, but would also have to be applied to earlier
kernels (2.6.26, 2.6.25, ...).
Performance impact of the fix : tests done on "xaddq" and "xaddl" shows it
actually improves performances on Intel Xeon, AMD64, Pentium M. It does not
change the performance on Pentium II, Pentium 3 and Pentium 4.
Xeon E5405 2.0GHz :
NR_TESTS 10000000
test empty cycles : 162207948
test test 1-byte nop xadd cycles : 170755422
test test DS override prefix xadd cycles : 170000118 *
test test LOCK xadd cycles : 472012134
AMD64 2.0GHz :
NR_TESTS 10000000
test empty cycles : 146674549
test test 1-byte nop xadd cycles : 150273860
test test DS override prefix xadd cycles : 149982382 *
test test LOCK xadd cycles : 270000690
Pentium 4 3.0GHz
NR_TESTS 10000000
test empty cycles : 290001195
test test 1-byte nop xadd cycles : 310000560
test test DS override prefix xadd cycles : 310000575 *
test test LOCK xadd cycles : 1050103740
Pentium M 2.0GHz
NR_TESTS 10000000
test empty cycles : 180000523
test test 1-byte nop xadd cycles : 320000345
test test DS override prefix xadd cycles : 310000374 *
test test LOCK xadd cycles : 480000357
Pentium 3 550MHz
NR_TESTS 10000000
test empty cycles : 510000231
test test 1-byte nop xadd cycles : 620000128
test test DS override prefix xadd cycles : 620000110 *
test test LOCK xadd cycles : 800000088
Pentium II 350MHz
NR_TESTS 10000000
test empty cycles : 200833494
test test 1-byte nop xadd cycles : 340000130
test test DS override prefix xadd cycles : 340000126 *
test test LOCK xadd cycles : 530000078
Speed test modules can be found at
http://ltt.polymtl.ca/svn/trunk/tests/kernel/test-prefix-speed-32.c
http://ltt.polymtl.ca/svn/trunk/tests/kernel/test-prefix-speed.c
Macro-benchmarks
2.0GHz E5405 Core 2 dual Quad-Core Xeon
Summary
* replace smp lock prefixes with DS segment selector prefixes
no lock prefix (s) with lock prefix (s) Speedup
make -j1 kernel/ 33.94 +/- 0.07 34.91 +/- 0.27 2.8 %
hackbench 50 2.99 +/- 0.01 3.74 +/- 0.01 25.1 %
* replace smp lock prefixes with 0x90 nops
no lock prefix (s) with lock prefix (s) Speedup
make -j1 kernel/ 34.16 +/- 0.32 34.91 +/- 0.27 2.2 %
hackbench 50 3.00 +/- 0.01 3.74 +/- 0.01 24.7 %
Detail :
1 CPU, replace smp lock prefixes with DS segment selector prefixes
make -j1 kernel/
real 0m34.067s
user 0m30.630s
sys 0m2.980s
real 0m33.867s
user 0m30.582s
sys 0m3.024s
real 0m33.939s
user 0m30.738s
sys 0m2.876s
real 0m33.913s
user 0m30.806s
sys 0m2.808s
avg : 33.94s
std. dev. : 0.07s
hackbench 50
Time: 2.978
Time: 2.982
Time: 3.010
Time: 2.984
Time: 2.982
avg : 2.99
std. dev. : 0.01
1 CPU, noreplace-smp
make -j1 kernel/
real 0m35.326s
user 0m30.630s
sys 0m3.260s
real 0m34.325s
user 0m30.802s
sys 0m3.084s
real 0m35.568s
user 0m30.722s
sys 0m3.168s
real 0m34.435s
user 0m30.886s
sys 0m2.996s
avg.: 34.91s
std. dev. : 0.27s
hackbench 50
Time: 3.733
Time: 3.750
Time: 3.761
Time: 3.737
Time: 3.741
avg : 3.74
std. dev. : 0.01
1 CPU, replace smp lock prefixes with 0x90 nops
make -j1 kernel/
real 0m34.139s
user 0m30.782s
sys 0m2.820s
real 0m34.010s
user 0m30.630s
sys 0m2.976s
real 0m34.777s
user 0m30.658s
sys 0m2.916s
real 0m33.924s
user 0m30.634s
sys 0m2.924s
real 0m33.962s
user 0m30.774s
sys 0m2.800s
real 0m34.141s
user 0m30.770s
sys 0m2.828s
avg : 34.16
std. dev. : 0.32
hackbench 50
Time: 2.999
Time: 2.994
Time: 3.004
Time: 2.991
Time: 2.988
avg : 3.00
std. dev. : 0.01
I did more runs (20 runs of each) to compare the nop case to the DS
prefix case. Results in seconds. They actually does not seems to show a
significant difference.
NOP
34.155
33.955
34.012
35.299
35.679
34.141
33.995
35.016
34.254
33.957
33.957
34.008
35.013
34.494
33.893
34.295
34.314
34.854
33.991
34.132
DS
34.080
34.304
34.374
35.095
34.291
34.135
33.940
34.208
35.276
34.288
33.861
33.898
34.610
34.709
33.851
34.256
35.161
34.283
33.865
35.078
Used http://www.graphpad.com/quickcalcs/ttest1.cfm?Format=C to do the
T-test (yeah, I'm lazy) :
Group Group One (DS prefix) Group Two (nops)
Mean 34.37815 34.37070
SD 0.46108 0.51905
SEM 0.10310 0.11606
N 20 20
P value and statistical significance:
The two-tailed P value equals 0.9620
By conventional criteria, this difference is considered to be not statistically significant.
Confidence interval:
The mean of Group One minus Group Two equals 0.00745
95% confidence interval of this difference: From -0.30682 to 0.32172
Intermediate values used in calculations:
t = 0.0480
df = 38
standard error of difference = 0.155
So, unless these calculus are completely bogus, the difference between the nop
and the DS case seems not to be statistically significant.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Acked-by: H. Peter Anvin <hpa@zytor.com>
CC: Linus Torvalds <torvalds@linux-foundation.org>
CC: Jeremy Fitzhardinge <jeremy@goop.org>
CC: Roland McGrath <roland@redhat.com>
CC: Ingo Molnar <mingo@elte.hu>
Cc: Steven Rostedt <rostedt@goodmis.org>
CC: Steven Rostedt <srostedt@redhat.com>
CC: Thomas Gleixner <tglx@linutronix.de>
CC: Peter Zijlstra <peterz@infradead.org>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: David Miller <davem@davemloft.net>
CC: Ulrich Drepper <drepper@redhat.com>
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Gregory Haskins <ghaskins@novell.com>
CC: Arnaldo Carvalho de Melo <acme@redhat.com>
CC: "Luis Claudio R. Goncalves" <lclaudio@uudg.org>
CC: Clark Williams <williams@redhat.com>
CC: Christoph Lameter <cl@linux-foundation.org>
CC: Andi Kleen <andi@firstfloor.org>
CC: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-08-14 22:58:15 +02:00
|
|
|
/* turn lock prefix into DS segment override prefix */
|
2010-04-30 01:53:17 +02:00
|
|
|
if (*ptr == 0xf0)
|
|
|
|
text_poke(ptr, ((unsigned char []){0x3E}), 1);
|
2006-03-23 11:59:32 +01:00
|
|
|
};
|
2009-03-06 16:37:22 +01:00
|
|
|
mutex_unlock(&text_mutex);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct smp_alt_module {
|
|
|
|
/* what is this ??? */
|
|
|
|
struct module *mod;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
/* ptrs to lock prefixes */
|
2010-04-21 17:08:14 +02:00
|
|
|
const s32 *locks;
|
|
|
|
const s32 *locks_end;
|
2006-03-23 11:59:32 +01:00
|
|
|
|
|
|
|
/* .text segment, needed to avoid patching init code ;) */
|
|
|
|
u8 *text;
|
|
|
|
u8 *text_end;
|
|
|
|
|
|
|
|
struct list_head next;
|
|
|
|
};
|
|
|
|
static LIST_HEAD(smp_alt_modules);
|
2008-05-12 21:21:01 +02:00
|
|
|
static DEFINE_MUTEX(smp_alt);
|
2008-01-30 13:33:17 +01:00
|
|
|
static int smp_mode = 1; /* protected by smp_alt */
|
2006-03-23 11:59:32 +01:00
|
|
|
|
2009-08-19 09:40:48 +02:00
|
|
|
void __init_or_module alternatives_smp_module_add(struct module *mod,
|
|
|
|
char *name,
|
|
|
|
void *locks, void *locks_end,
|
|
|
|
void *text, void *text_end)
|
2006-03-23 11:59:32 +01:00
|
|
|
{
|
|
|
|
struct smp_alt_module *smp;
|
|
|
|
|
2007-05-02 19:27:13 +02:00
|
|
|
if (noreplace_smp)
|
|
|
|
return;
|
|
|
|
|
2006-03-23 11:59:32 +01:00
|
|
|
if (smp_alt_once) {
|
|
|
|
if (boot_cpu_has(X86_FEATURE_UP))
|
|
|
|
alternatives_smp_unlock(locks, locks_end,
|
|
|
|
text, text_end);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
smp = kzalloc(sizeof(*smp), GFP_KERNEL);
|
|
|
|
if (NULL == smp)
|
|
|
|
return; /* we'll run the (safe but slow) SMP code then ... */
|
|
|
|
|
|
|
|
smp->mod = mod;
|
|
|
|
smp->name = name;
|
|
|
|
smp->locks = locks;
|
|
|
|
smp->locks_end = locks_end;
|
|
|
|
smp->text = text;
|
|
|
|
smp->text_end = text_end;
|
|
|
|
DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
|
2008-03-03 20:37:23 +01:00
|
|
|
__func__, smp->locks, smp->locks_end,
|
2006-03-23 11:59:32 +01:00
|
|
|
smp->text, smp->text_end, smp->name);
|
|
|
|
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_lock(&smp_alt);
|
2006-03-23 11:59:32 +01:00
|
|
|
list_add_tail(&smp->next, &smp_alt_modules);
|
|
|
|
if (boot_cpu_has(X86_FEATURE_UP))
|
|
|
|
alternatives_smp_unlock(smp->locks, smp->locks_end,
|
|
|
|
smp->text, smp->text_end);
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_unlock(&smp_alt);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
2009-08-19 09:40:48 +02:00
|
|
|
void __init_or_module alternatives_smp_module_del(struct module *mod)
|
2006-03-23 11:59:32 +01:00
|
|
|
{
|
|
|
|
struct smp_alt_module *item;
|
|
|
|
|
2007-05-02 19:27:13 +02:00
|
|
|
if (smp_alt_once || noreplace_smp)
|
2006-03-23 11:59:32 +01:00
|
|
|
return;
|
|
|
|
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_lock(&smp_alt);
|
2006-03-23 11:59:32 +01:00
|
|
|
list_for_each_entry(item, &smp_alt_modules, next) {
|
|
|
|
if (mod != item->mod)
|
|
|
|
continue;
|
|
|
|
list_del(&item->next);
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_unlock(&smp_alt);
|
2008-03-03 20:37:23 +01:00
|
|
|
DPRINTK("%s: %s\n", __func__, item->name);
|
2006-03-23 11:59:32 +01:00
|
|
|
kfree(item);
|
|
|
|
return;
|
|
|
|
}
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_unlock(&smp_alt);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
2010-11-24 01:11:40 +01:00
|
|
|
bool skip_smp_alternatives;
|
2006-03-23 11:59:32 +01:00
|
|
|
void alternatives_smp_switch(int smp)
|
|
|
|
{
|
|
|
|
struct smp_alt_module *mod;
|
|
|
|
|
2006-07-03 09:24:57 +02:00
|
|
|
#ifdef CONFIG_LOCKDEP
|
|
|
|
/*
|
2008-01-30 13:33:24 +01:00
|
|
|
* Older binutils section handling bug prevented
|
|
|
|
* alternatives-replacement from working reliably.
|
|
|
|
*
|
|
|
|
* If this still occurs then you should see a hang
|
|
|
|
* or crash shortly after this line:
|
2006-07-03 09:24:57 +02:00
|
|
|
*/
|
2008-01-30 13:33:24 +01:00
|
|
|
printk("lockdep: fixing up alternatives.\n");
|
2006-07-03 09:24:57 +02:00
|
|
|
#endif
|
|
|
|
|
2010-11-24 01:11:40 +01:00
|
|
|
if (noreplace_smp || smp_alt_once || skip_smp_alternatives)
|
2006-03-23 11:59:32 +01:00
|
|
|
return;
|
|
|
|
BUG_ON(!smp && (num_online_cpus() > 1));
|
|
|
|
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_lock(&smp_alt);
|
2008-01-30 13:33:17 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Avoid unnecessary switches because it forces JIT based VMs to
|
|
|
|
* throw away all cached translations, which can be quite costly.
|
|
|
|
*/
|
|
|
|
if (smp == smp_mode) {
|
|
|
|
/* nothing */
|
|
|
|
} else if (smp) {
|
2006-03-23 11:59:32 +01:00
|
|
|
printk(KERN_INFO "SMP alternatives: switching to SMP code\n");
|
2008-01-30 13:30:55 +01:00
|
|
|
clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
|
|
|
|
clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
|
2006-03-23 11:59:32 +01:00
|
|
|
list_for_each_entry(mod, &smp_alt_modules, next)
|
|
|
|
alternatives_smp_lock(mod->locks, mod->locks_end,
|
|
|
|
mod->text, mod->text_end);
|
|
|
|
} else {
|
|
|
|
printk(KERN_INFO "SMP alternatives: switching to UP code\n");
|
2008-01-30 13:30:55 +01:00
|
|
|
set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
|
|
|
|
set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
|
2006-03-23 11:59:32 +01:00
|
|
|
list_for_each_entry(mod, &smp_alt_modules, next)
|
|
|
|
alternatives_smp_unlock(mod->locks, mod->locks_end,
|
|
|
|
mod->text, mod->text_end);
|
|
|
|
}
|
2008-01-30 13:33:17 +01:00
|
|
|
smp_mode = smp;
|
2008-05-12 21:21:01 +02:00
|
|
|
mutex_unlock(&smp_alt);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
|
|
|
|
2010-02-02 22:49:11 +01:00
|
|
|
/* Return 1 if the address range is reserved for smp-alternatives */
|
|
|
|
int alternatives_text_reserved(void *start, void *end)
|
|
|
|
{
|
|
|
|
struct smp_alt_module *mod;
|
2010-04-21 17:08:14 +02:00
|
|
|
const s32 *poff;
|
2010-02-05 18:16:47 +01:00
|
|
|
u8 *text_start = start;
|
|
|
|
u8 *text_end = end;
|
2010-02-02 22:49:11 +01:00
|
|
|
|
|
|
|
list_for_each_entry(mod, &smp_alt_modules, next) {
|
2010-02-05 18:16:47 +01:00
|
|
|
if (mod->text > text_end || mod->text_end < text_start)
|
2010-02-02 22:49:11 +01:00
|
|
|
continue;
|
2010-04-21 17:08:14 +02:00
|
|
|
for (poff = mod->locks; poff < mod->locks_end; poff++) {
|
|
|
|
const u8 *ptr = (const u8 *)poff + *poff;
|
|
|
|
|
|
|
|
if (text_start <= ptr && text_end > ptr)
|
2010-02-02 22:49:11 +01:00
|
|
|
return 1;
|
2010-04-21 17:08:14 +02:00
|
|
|
}
|
2010-02-02 22:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-01 13:36:18 +02:00
|
|
|
#endif
|
|
|
|
|
2006-12-07 02:14:08 +01:00
|
|
|
#ifdef CONFIG_PARAVIRT
|
2009-08-19 09:40:48 +02:00
|
|
|
void __init_or_module apply_paravirt(struct paravirt_patch_site *start,
|
|
|
|
struct paravirt_patch_site *end)
|
2006-12-07 02:14:08 +01:00
|
|
|
{
|
2007-05-02 19:27:14 +02:00
|
|
|
struct paravirt_patch_site *p;
|
2007-08-10 22:31:03 +02:00
|
|
|
char insnbuf[MAX_PATCH_LEN];
|
2006-12-07 02:14:08 +01:00
|
|
|
|
2007-05-02 19:27:16 +02:00
|
|
|
if (noreplace_paravirt)
|
|
|
|
return;
|
|
|
|
|
2006-12-07 02:14:08 +01:00
|
|
|
for (p = start; p < end; p++) {
|
|
|
|
unsigned int used;
|
|
|
|
|
2007-08-10 22:31:03 +02:00
|
|
|
BUG_ON(p->len > MAX_PATCH_LEN);
|
2007-08-18 23:31:41 +02:00
|
|
|
/* prep the buffer with the original instructions */
|
|
|
|
memcpy(insnbuf, p->instr, p->len);
|
2007-10-16 20:51:29 +02:00
|
|
|
used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
|
|
|
|
(unsigned long)p->instr, p->len);
|
2007-05-02 19:27:13 +02:00
|
|
|
|
2007-05-02 19:27:14 +02:00
|
|
|
BUG_ON(used > p->len);
|
|
|
|
|
2006-12-07 02:14:08 +01:00
|
|
|
/* Pad the rest with nops */
|
2007-08-10 22:31:03 +02:00
|
|
|
add_nops(insnbuf + used, p->len - used);
|
2008-03-06 14:48:49 +01:00
|
|
|
text_poke_early(p->instr, insnbuf, p->len);
|
2006-12-07 02:14:08 +01:00
|
|
|
}
|
|
|
|
}
|
2007-05-02 19:27:14 +02:00
|
|
|
extern struct paravirt_patch_site __start_parainstructions[],
|
2006-12-07 02:14:08 +01:00
|
|
|
__stop_parainstructions[];
|
|
|
|
#endif /* CONFIG_PARAVIRT */
|
|
|
|
|
2006-03-23 11:59:32 +01:00
|
|
|
void __init alternative_instructions(void)
|
|
|
|
{
|
2007-07-22 11:12:32 +02:00
|
|
|
/* The patching is not fully atomic, so try to avoid local interruptions
|
|
|
|
that might execute the to be patched code.
|
|
|
|
Other CPUs are not running. */
|
|
|
|
stop_nmi();
|
2009-02-12 13:39:27 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't stop machine check exceptions while patching.
|
|
|
|
* MCEs only happen when something got corrupted and in this
|
|
|
|
* case we must do something about the corruption.
|
|
|
|
* Ignoring it is worse than a unlikely patching race.
|
|
|
|
* Also machine checks tend to be broadcast and if one CPU
|
|
|
|
* goes into machine check the others follow quickly, so we don't
|
|
|
|
* expect a machine check to cause undue problems during to code
|
|
|
|
* patching.
|
|
|
|
*/
|
2007-07-22 11:12:32 +02:00
|
|
|
|
2006-03-23 11:59:32 +01:00
|
|
|
apply_alternatives(__alt_instructions, __alt_instructions_end);
|
|
|
|
|
|
|
|
/* switch to patch-once-at-boottime-only mode and free the
|
|
|
|
* tables in case we know the number of CPUs will never ever
|
|
|
|
* change */
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
if (num_possible_cpus() < 2)
|
|
|
|
smp_alt_once = 1;
|
|
|
|
#endif
|
|
|
|
|
2006-07-01 13:36:18 +02:00
|
|
|
#ifdef CONFIG_SMP
|
2006-03-23 11:59:32 +01:00
|
|
|
if (smp_alt_once) {
|
|
|
|
if (1 == num_possible_cpus()) {
|
|
|
|
printk(KERN_INFO "SMP alternatives: switching to UP code\n");
|
2008-01-30 13:30:55 +01:00
|
|
|
set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
|
|
|
|
set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
|
|
|
|
|
2006-03-23 11:59:32 +01:00
|
|
|
alternatives_smp_unlock(__smp_locks, __smp_locks_end,
|
|
|
|
_text, _etext);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
alternatives_smp_module_add(NULL, "core kernel",
|
|
|
|
__smp_locks, __smp_locks_end,
|
|
|
|
_text, _etext);
|
2008-01-30 13:33:17 +01:00
|
|
|
|
|
|
|
/* Only switch to UP mode if we don't immediately boot others */
|
2008-10-05 16:52:24 +02:00
|
|
|
if (num_present_cpus() == 1 || setup_max_cpus <= 1)
|
2008-01-30 13:33:17 +01:00
|
|
|
alternatives_smp_switch(0);
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
2006-07-01 13:36:18 +02:00
|
|
|
#endif
|
2007-05-02 19:27:16 +02:00
|
|
|
apply_paravirt(__parainstructions, __parainstructions_end);
|
2007-07-22 11:12:32 +02:00
|
|
|
|
2007-10-17 18:04:34 +02:00
|
|
|
if (smp_alt_once)
|
|
|
|
free_init_pages("SMP alternatives",
|
|
|
|
(unsigned long)__smp_locks,
|
|
|
|
(unsigned long)__smp_locks_end);
|
|
|
|
|
2007-07-22 11:12:32 +02:00
|
|
|
restart_nmi();
|
2006-03-23 11:59:32 +01:00
|
|
|
}
|
2007-07-22 11:12:31 +02:00
|
|
|
|
2008-03-06 14:48:49 +01:00
|
|
|
/**
|
|
|
|
* text_poke_early - Update instructions on a live kernel at boot time
|
|
|
|
* @addr: address to modify
|
|
|
|
* @opcode: source of the copy
|
|
|
|
* @len: length to copy
|
|
|
|
*
|
2007-07-22 11:12:31 +02:00
|
|
|
* When you use this code to patch more than one byte of an instruction
|
|
|
|
* you need to make sure that other CPUs cannot execute this code in parallel.
|
2008-03-06 14:48:49 +01:00
|
|
|
* Also no thread must be currently preempted in the middle of these
|
|
|
|
* instructions. And on the local CPU you need to be protected again NMI or MCE
|
|
|
|
* handlers seeing an inconsistent instruction while you patch.
|
2007-07-22 11:12:31 +02:00
|
|
|
*/
|
2010-09-17 17:08:56 +02:00
|
|
|
void *__init_or_module text_poke_early(void *addr, const void *opcode,
|
2009-08-19 09:40:48 +02:00
|
|
|
size_t len)
|
2007-07-22 11:12:31 +02:00
|
|
|
{
|
2008-03-06 14:48:49 +01:00
|
|
|
unsigned long flags;
|
|
|
|
local_irq_save(flags);
|
2007-07-22 11:12:31 +02:00
|
|
|
memcpy(addr, opcode, len);
|
2008-03-06 14:48:49 +01:00
|
|
|
sync_core();
|
2009-09-10 03:53:50 +02:00
|
|
|
local_irq_restore(flags);
|
2008-03-06 14:48:49 +01:00
|
|
|
/* Could also do a CLFLUSH here to speed up CPU recovery; but
|
|
|
|
that causes hangs on some VIA CPUs. */
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* text_poke - Update instructions on a live kernel
|
|
|
|
* @addr: address to modify
|
|
|
|
* @opcode: source of the copy
|
|
|
|
* @len: length to copy
|
|
|
|
*
|
|
|
|
* Only atomic text poke/set should be allowed when not doing early patching.
|
|
|
|
* It means the size must be writable atomically and the address must be aligned
|
|
|
|
* in a way that permits an atomic write. It also makes sure we fit on a single
|
|
|
|
* page.
|
2009-03-06 16:37:54 +01:00
|
|
|
*
|
|
|
|
* Note: Must be called under text_mutex.
|
2008-03-06 14:48:49 +01:00
|
|
|
*/
|
|
|
|
void *__kprobes text_poke(void *addr, const void *opcode, size_t len)
|
|
|
|
{
|
2009-03-06 16:37:54 +01:00
|
|
|
unsigned long flags;
|
2008-03-06 14:48:49 +01:00
|
|
|
char *vaddr;
|
2008-04-24 17:03:33 +02:00
|
|
|
struct page *pages[2];
|
|
|
|
int i;
|
2008-03-06 14:48:49 +01:00
|
|
|
|
2008-04-24 17:03:33 +02:00
|
|
|
if (!core_kernel_text((unsigned long)addr)) {
|
|
|
|
pages[0] = vmalloc_to_page(addr);
|
|
|
|
pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
|
x86: fix test_poke for vmalloced pages
* Ingo Molnar (mingo@elte.hu) wrote:
>
> * Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> wrote:
>
> > The shadow vmap for DEBUG_RODATA kernel text modification uses
> > virt_to_page to get the pages from the pointer address.
> >
> > However, I think vmalloc_to_page would be required in case the page is
> > used for modules.
> >
> > Since only the core kernel text is marked read-only, use
> > kernel_text_address() to make sure we only shadow map the core kernel
> > text, not modules.
>
> actually, i think we should mark module text readonly too.
>
Yes, but in the meantime, the x86 tree would need this patch to make
kprobes work correctly on modules.
I suspect that without this fix, with the enhanced hotplug and kprobes
patch, kprobes will use text_poke to insert breakpoints in modules
(vmalloced pages used), which will map the wrong pages and corrupt
random kernel locations instead of updating the correct page.
Work that would write protect the module pages should clearly be done,
but it can come in a later time. We have to make sure we interact
correctly with the page allocation debugging, as an example.
Here is the patch against x86.git 2.6.25-rc5 :
The shadow vmap for DEBUG_RODATA kernel text modification uses virt_to_page to
get the pages from the pointer address.
However, I think vmalloc_to_page would be required in case the page is used for
modules.
Since only the core kernel text is marked read-only, use kernel_text_address()
to make sure we only shadow map the core kernel text, not modules.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
CC: akpm@linux-foundation.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-03-12 16:54:16 +01:00
|
|
|
} else {
|
2008-04-24 17:03:33 +02:00
|
|
|
pages[0] = virt_to_page(addr);
|
2008-04-25 17:07:03 +02:00
|
|
|
WARN_ON(!PageReserved(pages[0]));
|
2008-04-24 17:03:33 +02:00
|
|
|
pages[1] = virt_to_page(addr + PAGE_SIZE);
|
2008-03-06 14:48:49 +01:00
|
|
|
}
|
2008-04-24 17:03:33 +02:00
|
|
|
BUG_ON(!pages[0]);
|
2009-03-09 17:40:40 +01:00
|
|
|
local_irq_save(flags);
|
2009-03-06 16:37:54 +01:00
|
|
|
set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0]));
|
|
|
|
if (pages[1])
|
|
|
|
set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1]));
|
|
|
|
vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0);
|
2008-04-24 17:03:33 +02:00
|
|
|
memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
|
2009-03-06 16:37:54 +01:00
|
|
|
clear_fixmap(FIX_TEXT_POKE0);
|
|
|
|
if (pages[1])
|
|
|
|
clear_fixmap(FIX_TEXT_POKE1);
|
|
|
|
local_flush_tlb();
|
2007-07-22 11:12:31 +02:00
|
|
|
sync_core();
|
2007-09-06 16:59:52 +02:00
|
|
|
/* Could also do a CLFLUSH here to speed up CPU recovery; but
|
|
|
|
that causes hangs on some VIA CPUs. */
|
2008-04-24 17:03:33 +02:00
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
|
2009-03-09 17:40:40 +01:00
|
|
|
local_irq_restore(flags);
|
2008-03-06 14:48:49 +01:00
|
|
|
return addr;
|
2007-07-22 11:12:31 +02:00
|
|
|
}
|
2010-02-25 14:34:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Cross-modifying kernel text with stop_machine().
|
|
|
|
* This code originally comes from immediate value.
|
|
|
|
*/
|
|
|
|
static atomic_t stop_machine_first;
|
|
|
|
static int wrote_text;
|
|
|
|
|
|
|
|
struct text_poke_params {
|
2010-12-03 10:54:22 +01:00
|
|
|
struct text_poke_param *params;
|
|
|
|
int nparams;
|
2010-02-25 14:34:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __kprobes stop_machine_text_poke(void *data)
|
|
|
|
{
|
|
|
|
struct text_poke_params *tpp = data;
|
2010-12-03 10:54:22 +01:00
|
|
|
struct text_poke_param *p;
|
|
|
|
int i;
|
2010-02-25 14:34:38 +01:00
|
|
|
|
|
|
|
if (atomic_dec_and_test(&stop_machine_first)) {
|
2010-12-03 10:54:22 +01:00
|
|
|
for (i = 0; i < tpp->nparams; i++) {
|
|
|
|
p = &tpp->params[i];
|
|
|
|
text_poke(p->addr, p->opcode, p->len);
|
|
|
|
}
|
2010-02-25 14:34:38 +01:00
|
|
|
smp_wmb(); /* Make sure other cpus see that this has run */
|
|
|
|
wrote_text = 1;
|
|
|
|
} else {
|
|
|
|
while (!wrote_text)
|
2010-03-04 04:38:50 +01:00
|
|
|
cpu_relax();
|
|
|
|
smp_mb(); /* Load wrote_text before following execution */
|
2010-02-25 14:34:38 +01:00
|
|
|
}
|
|
|
|
|
2010-12-03 10:54:22 +01:00
|
|
|
for (i = 0; i < tpp->nparams; i++) {
|
|
|
|
p = &tpp->params[i];
|
|
|
|
flush_icache_range((unsigned long)p->addr,
|
|
|
|
(unsigned long)p->addr + p->len);
|
|
|
|
}
|
x86: stop_machine_text_poke() should issue sync_core()
Intel Archiecture Software Developer's Manual section 7.1.3 specifies that a
core serializing instruction such as "cpuid" should be executed on _each_ core
before the new instruction is made visible.
Failure to do so can lead to unspecified behavior (Intel XMC erratas include
General Protection Fault in the list), so we should avoid this at all cost.
This problem can affect modified code executed by interrupt handlers after
interrupt are re-enabled at the end of stop_machine, because no core serializing
instruction is executed between the code modification and the moment interrupts
are reenabled.
Because stop_machine_text_poke performs the text modification from the first CPU
decrementing stop_machine_first, modified code executed in thread context is
also affected by this problem. To explain why, we have to split the CPUs in two
categories: the CPU that initiates the text modification (calls text_poke_smp)
and all the others. The scheduler, executed on all other CPUs after
stop_machine, issues an "iret" core serializing instruction, and therefore
handles core serialization for all these CPUs. However, the text modification
initiator can continue its execution on the same thread and access the modified
text without any scheduler call. Given that the CPU that initiates the code
modification is not guaranteed to be the one actually performing the code
modification, it falls into the XMC errata.
Q: Isn't this executed from an IPI handler, which will return with IRET (a
serializing instruction) anyway?
A: No, now stop_machine uses per-cpu workqueue, so that handler will be
executed from worker threads. There is no iret anymore.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
LKML-Reference: <20110303160137.GB1590@Krystal>
Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: <stable@kernel.org>
Cc: Arjan van de Ven <arjan@infradead.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2011-03-03 17:01:37 +01:00
|
|
|
/*
|
|
|
|
* Intel Archiecture Software Developer's Manual section 7.1.3 specifies
|
|
|
|
* that a core serializing instruction such as "cpuid" should be
|
|
|
|
* executed on _each_ core before the new instruction is made visible.
|
|
|
|
*/
|
|
|
|
sync_core();
|
2010-02-25 14:34:38 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* text_poke_smp - Update instructions on a live kernel on SMP
|
|
|
|
* @addr: address to modify
|
|
|
|
* @opcode: source of the copy
|
|
|
|
* @len: length to copy
|
|
|
|
*
|
|
|
|
* Modify multi-byte instruction by using stop_machine() on SMP. This allows
|
|
|
|
* user to poke/set multi-byte text on SMP. Only non-NMI/MCE code modifying
|
|
|
|
* should be allowed, since stop_machine() does _not_ protect code against
|
|
|
|
* NMI and MCE.
|
|
|
|
*
|
|
|
|
* Note: Must be called under get_online_cpus() and text_mutex.
|
|
|
|
*/
|
|
|
|
void *__kprobes text_poke_smp(void *addr, const void *opcode, size_t len)
|
|
|
|
{
|
|
|
|
struct text_poke_params tpp;
|
2010-12-03 10:54:22 +01:00
|
|
|
struct text_poke_param p;
|
2010-02-25 14:34:38 +01:00
|
|
|
|
2010-12-03 10:54:22 +01:00
|
|
|
p.addr = addr;
|
|
|
|
p.opcode = opcode;
|
|
|
|
p.len = len;
|
|
|
|
tpp.params = &p;
|
|
|
|
tpp.nparams = 1;
|
2010-02-25 14:34:38 +01:00
|
|
|
atomic_set(&stop_machine_first, 1);
|
|
|
|
wrote_text = 0;
|
2010-10-14 05:10:36 +02:00
|
|
|
/* Use __stop_machine() because the caller already got online_cpus. */
|
2010-10-28 17:20:27 +02:00
|
|
|
__stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask);
|
2010-02-25 14:34:38 +01:00
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2010-12-03 10:54:22 +01:00
|
|
|
/**
|
|
|
|
* text_poke_smp_batch - Update instructions on a live kernel on SMP
|
|
|
|
* @params: an array of text_poke parameters
|
|
|
|
* @n: the number of elements in params.
|
|
|
|
*
|
|
|
|
* Modify multi-byte instruction by using stop_machine() on SMP. Since the
|
|
|
|
* stop_machine() is heavy task, it is better to aggregate text_poke requests
|
|
|
|
* and do it once if possible.
|
|
|
|
*
|
|
|
|
* Note: Must be called under get_online_cpus() and text_mutex.
|
|
|
|
*/
|
|
|
|
void __kprobes text_poke_smp_batch(struct text_poke_param *params, int n)
|
|
|
|
{
|
|
|
|
struct text_poke_params tpp = {.params = params, .nparams = n};
|
|
|
|
|
|
|
|
atomic_set(&stop_machine_first, 1);
|
|
|
|
wrote_text = 0;
|
2011-10-27 09:54:32 +02:00
|
|
|
__stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask);
|
2010-12-03 10:54:22 +01:00
|
|
|
}
|