/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_X86_TEXT_PATCHING_H #define _ASM_X86_TEXT_PATCHING_H #include <linux/types.h> #include <linux/stddef.h> #include <asm/ptrace.h> struct paravirt_patch_site; #ifdef CONFIG_PARAVIRT void apply_paravirt(struct paravirt_patch_site *start, struct paravirt_patch_site *end); #else
static inline void apply_paravirt(struct paravirt_patch_site *start, struct paravirt_patch_site *end) {}Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Lutomirski | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Lutomirski | 135 | 99.26% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 0.74% | 1 | 50.00% |
Total | 136 | 100.00% | 2 | 100.00% |