Release 4.14 arch/x86/include/asm/kmemcheck.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ASM_X86_KMEMCHECK_H
#define ASM_X86_KMEMCHECK_H
#include <linux/types.h>
#include <asm/ptrace.h>
#ifdef CONFIG_KMEMCHECK
bool kmemcheck_active(struct pt_regs *regs);
void kmemcheck_show(struct pt_regs *regs);
void kmemcheck_hide(struct pt_regs *regs);
bool kmemcheck_fault(struct pt_regs *regs,
unsigned long address, unsigned long error_code);
bool kmemcheck_trap(struct pt_regs *regs);
#else
static inline bool kmemcheck_active(struct pt_regs *regs)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
static inline void kmemcheck_show(struct pt_regs *regs)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
static inline void kmemcheck_hide(struct pt_regs *regs)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
static inline bool kmemcheck_fault(struct pt_regs *regs,
unsigned long address, unsigned long error_code)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 23 | 100.00% | 1 | 100.00% |
Total | 23 | 100.00% | 1 | 100.00% |
static inline bool kmemcheck_trap(struct pt_regs *regs)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_KMEMCHECK */
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vegard Nossum | 150 | 99.34% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 0.66% | 1 | 50.00% |
Total | 151 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.