cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/kernel/jump_label.c

// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mutex.h>
#include <linux/cpu.h>

#include <linux/jump_label.h>
#include <linux/memory.h>

#include <asm/cacheflush.h>

#ifdef HAVE_JUMP_LABEL


void arch_jump_label_transform(struct jump_entry *entry, enum jump_label_type type) { u32 *insn = (u32 *) (unsigned long) entry->code; u32 val; if (type == JUMP_LABEL_JMP) { s32 off = (s32)entry->target - (s32)entry->code; bool use_v9_branch = false; BUG_ON(off & 3); #ifdef CONFIG_SPARC64 if (off <= 0xfffff && off >= -0x100000) use_v9_branch = true; #endif if (use_v9_branch) { /* WDISP19 - target is . + immed << 2 */ /* ba,pt %xcc, . + off */ val = 0x10680000 | (((u32) off >> 2) & 0x7ffff); } else { /* WDISP22 - target is . + immed << 2 */ BUG_ON(off > 0x7fffff); BUG_ON(off < -0x800000); /* ba . + off */ val = 0x10800000 | (((u32) off >> 2) & 0x3fffff); } } else { val = 0x01000000; } mutex_lock(&text_mutex); *insn = val; flushi(insn); mutex_unlock(&text_mutex); }

Contributors

PersonTokensPropCommitsCommitProp
David S. Miller11261.88%133.33%
James Clarke6837.57%133.33%
Peter Zijlstra10.55%133.33%
Total181100.00%3100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
David S. Miller13866.35%240.00%
James Clarke6832.69%120.00%
Peter Zijlstra10.48%120.00%
Greg Kroah-Hartman10.48%120.00%
Total208100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.