diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2012-05-20 17:24:20 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-20 13:33:35 -0700 |
commit | 9cd5f82246b724aae402959bffe0441b45a01a1c (patch) | |
tree | a95e6f397eb51adb45c61e583ab8dbacb00f711c /arch | |
parent | 857814990466cbdff5746f6116b2556dcc4fd923 (diff) | |
download | linux-3.10-9cd5f82246b724aae402959bffe0441b45a01a1c.tar.gz linux-3.10-9cd5f82246b724aae402959bffe0441b45a01a1c.tar.bz2 linux-3.10-9cd5f82246b724aae402959bffe0441b45a01a1c.zip |
sparc32: fix cpuid_patch run-time patching
We hang forever when trying to do run-time patching of instructions
identified by the cpuid_patch section
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/kernel/setup_32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sparc/kernel/setup_32.c b/arch/sparc/kernel/setup_32.c index 635df5c9e60..d65b5a1c220 100644 --- a/arch/sparc/kernel/setup_32.c +++ b/arch/sparc/kernel/setup_32.c @@ -229,6 +229,8 @@ static void __init per_cpu_patch(void) *(unsigned int *) (addr + 0) = insns[0]; *(unsigned int *) (addr + 4) = insns[1]; *(unsigned int *) (addr + 8) = insns[2]; + + p++; } #ifdef CONFIG_SMP local_ops->cache_all(); |