cregit-Linux how code gets into the kernel

Release 4.14 arch/powerpc/include/asm/pgtable-types.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_POWERPC_PGTABLE_TYPES_H

#define _ASM_POWERPC_PGTABLE_TYPES_H

/* PTE level */


typedef struct { pte_basic_t pte; } pte_t;

#define __pte(x)	((pte_t) { (x) })

static inline pte_basic_t pte_val(pte_t x) { return x.pte; }

Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V15100.00%1100.00%
Total15100.00%1100.00%

/* PMD level */ #ifdef CONFIG_PPC64 typedef struct { unsigned long pmd; } pmd_t; #define __pmd(x) ((pmd_t) { (x) })
static inline unsigned long pmd_val(pmd_t x) { return x.pmd; }

Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V16100.00%1100.00%
Total16100.00%1100.00%

/* * 64 bit hash always use 4 level table. Everybody else use 4 level * only for 4K page size. */ #if defined(CONFIG_PPC_BOOK3S_64) || !defined(CONFIG_PPC_64K_PAGES) typedef struct { unsigned long pud; } pud_t; #define __pud(x) ((pud_t) { (x) })
static inline unsigned long pud_val(pud_t x) { return x.pud; }

Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V16100.00%1100.00%
Total16100.00%1100.00%

#endif /* CONFIG_PPC_BOOK3S_64 || !CONFIG_PPC_64K_PAGES */ #endif /* CONFIG_PPC64 */ /* PGD level */ typedef struct { unsigned long pgd; } pgd_t; #define __pgd(x) ((pgd_t) { (x) })
static inline unsigned long pgd_val(pgd_t x) { return x.pgd; }

Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V16100.00%1100.00%
Total16100.00%1100.00%

/* Page protection bits */ typedef struct { unsigned long pgprot; } pgprot_t; #define pgprot_val(x) ((x).pgprot) #define __pgprot(x) ((pgprot_t) { (x) }) /* * With hash config 64k pages additionally define a bigger "real PTE" type that * gathers the "second half" part of the PTE for pseudo 64k pages */ #if defined(CONFIG_PPC_64K_PAGES) && defined(CONFIG_PPC_STD_MMU_64) typedef struct { pte_t pte; unsigned long hidx; } real_pte_t; #else typedef struct { pte_t pte; } real_pte_t; #endif #ifdef CONFIG_PPC_STD_MMU_64 #include <asm/cmpxchg.h>
static inline bool pte_xchg(pte_t *ptep, pte_t old, pte_t new) { unsigned long *p = (unsigned long *)ptep; /* See comment in switch_mm_irqs_off() */ return pte_val(old) == __cmpxchg_u64(p, pte_val(old), pte_val(new)); }

Contributors

PersonTokensPropCommitsCommitProp
Michael Ellerman5098.04%150.00%
Benjamin Herrenschmidt11.96%150.00%
Total51100.00%2100.00%

#endif typedef struct { unsigned long pd; } hugepd_t; #define __hugepd(x) ((hugepd_t) { (x) })
static inline unsigned long hpd_val(hugepd_t x) { return x.pd; }

Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V16100.00%1100.00%
Total16100.00%1100.00%

#endif /* _ASM_POWERPC_PGTABLE_TYPES_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Aneesh Kumar K.V26081.25%457.14%
Michael Ellerman5818.12%114.29%
Benjamin Herrenschmidt10.31%114.29%
Greg Kroah-Hartman10.31%114.29%
Total320100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.