cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/mm/kmemcheck/pte.c

// SPDX-License-Identifier: GPL-2.0
#include <linux/mm.h>

#include <asm/pgtable.h>

#include "pte.h"


pte_t *kmemcheck_pte_lookup(unsigned long address) { pte_t *pte; unsigned int level; pte = lookup_address(address, &level); if (!pte) return NULL; if (level != PG_LEVEL_4K) return NULL; if (!pte_hidden(*pte)) return NULL; return pte; }

Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum60100.00%1100.00%
Total60100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Vegard Nossum6998.57%150.00%
Greg Kroah-Hartman11.43%150.00%
Total70100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.