2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2011-06-29 19:16:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Michael Ellerman, IBM Corp.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/jump_label.h>
|
|
|
|
#include <asm/code-patching.h>
|
|
|
|
|
|
|
|
void arch_jump_label_transform(struct jump_entry *entry,
|
|
|
|
enum jump_label_type type)
|
|
|
|
{
|
|
|
|
u32 *addr = (u32 *)(unsigned long)entry->code;
|
|
|
|
|
2015-07-24 12:45:44 +00:00
|
|
|
if (type == JUMP_LABEL_JMP)
|
2011-06-29 19:16:59 +00:00
|
|
|
patch_branch(addr, entry->target, 0);
|
|
|
|
else
|
|
|
|
patch_instruction(addr, PPC_INST_NOP);
|
|
|
|
}
|