Commit acd6c9af authored by Heiko Carstens's avatar Heiko Carstens Committed by Vasily Gorbik
Browse files

s390/jump_label: rename __jump_label_transform()



Trivial patch just to get rid of the leading underscores.

Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
parent 4e0502b8
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ static struct insn orignop = {
	.offset = JUMP_LABEL_NOP_OFFSET >> 1,
};

static void __jump_label_transform(struct jump_entry *entry,
static void jump_label_transform(struct jump_entry *entry,
				 enum jump_label_type type,
				 int init)
{
@@ -75,14 +75,14 @@ static void __jump_label_transform(struct jump_entry *entry,
void arch_jump_label_transform(struct jump_entry *entry,
			       enum jump_label_type type)
{
	__jump_label_transform(entry, type, 0);
	jump_label_transform(entry, type, 0);
	text_poke_sync();
}

bool arch_jump_label_transform_queue(struct jump_entry *entry,
				     enum jump_label_type type)
{
	__jump_label_transform(entry, type, 0);
	jump_label_transform(entry, type, 0);
	return true;
}

@@ -94,6 +94,6 @@ void arch_jump_label_transform_apply(void)
void arch_jump_label_transform_static(struct jump_entry *entry,
				      enum jump_label_type type)
{
	__jump_label_transform(entry, type, 1);
	jump_label_transform(entry, type, 1);
	text_poke_sync();
}