Commit 1c27dfb2 authored by Heiko Carstens's avatar Heiko Carstens Committed by Vasily Gorbik

s390/jump_label: use text_poke_sync()

Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
parent e16d02ee
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
* Author(s): Jan Glauber <jang@linux.vnet.ibm.com> * Author(s): Jan Glauber <jang@linux.vnet.ibm.com>
*/ */
#include <linux/uaccess.h> #include <linux/uaccess.h>
#include <linux/stop_machine.h>
#include <linux/jump_label.h> #include <linux/jump_label.h>
#include <asm/text-patching.h>
#include <asm/ipl.h> #include <asm/ipl.h>
struct insn { struct insn {
...@@ -72,15 +72,11 @@ static void __jump_label_transform(struct jump_entry *entry, ...@@ -72,15 +72,11 @@ static void __jump_label_transform(struct jump_entry *entry,
s390_kernel_write(code, &new, sizeof(new)); s390_kernel_write(code, &new, sizeof(new));
} }
static void __jump_label_sync(void *dummy)
{
}
void arch_jump_label_transform(struct jump_entry *entry, void arch_jump_label_transform(struct jump_entry *entry,
enum jump_label_type type) enum jump_label_type type)
{ {
__jump_label_transform(entry, type, 0); __jump_label_transform(entry, type, 0);
smp_call_function(__jump_label_sync, NULL, 1); text_poke_sync();
} }
void arch_jump_label_transform_static(struct jump_entry *entry, void arch_jump_label_transform_static(struct jump_entry *entry,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment