cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/mm/pgtable-64.c

Directory: arch/mips/mm
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1999, 2000 by Silicon Graphics
 * Copyright (C) 2003 by Ralf Baechle
 */
#include <linux/export.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <asm/fixmap.h>
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/tlbflush.h>


void pgd_init(unsigned long page) { unsigned long *p, *end; unsigned long entry; #if !defined(__PAGETABLE_PUD_FOLDED) entry = (unsigned long)invalid_pud_table; #elif !defined(__PAGETABLE_PMD_FOLDED) entry = (unsigned long)invalid_pmd_table; #else entry = (unsigned long)invalid_pte_table; #endif p = (unsigned long *) page; end = p + PTRS_PER_PGD; do { p[0] = entry; p[1] = entry; p[2] = entry; p[3] = entry; p[4] = entry; p += 8; p[-3] = entry; p[-2] = entry; p[-1] = entry; } while (p != end); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle7952.32%125.00%
David Daney4932.45%250.00%
Alex Belits2315.23%125.00%
Total151100.00%4100.00%

#ifndef __PAGETABLE_PMD_FOLDED
void pmd_init(unsigned long addr, unsigned long pagetable) { unsigned long *p, *end; p = (unsigned long *) addr; end = p + PTRS_PER_PMD; do { p[0] = pagetable; p[1] = pagetable; p[2] = pagetable; p[3] = pagetable; p[4] = pagetable; p += 8; p[-3] = pagetable; p[-2] = pagetable; p[-1] = pagetable; } while (p != end); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle9183.49%150.00%
David Daney1816.51%150.00%
Total109100.00%2100.00%

EXPORT_SYMBOL_GPL(pmd_init); #endif #ifndef __PAGETABLE_PUD_FOLDED
void pud_init(unsigned long addr, unsigned long pagetable) { unsigned long *p, *end; p = (unsigned long *)addr; end = p + PTRS_PER_PUD; do { p[0] = pagetable; p[1] = pagetable; p[2] = pagetable; p[3] = pagetable; p[4] = pagetable; p += 8; p[-3] = pagetable; p[-2] = pagetable; p[-1] = pagetable; } while (p != end); }

Contributors

PersonTokensPropCommitsCommitProp
Alex Belits109100.00%1100.00%
Total109100.00%1100.00%

#endif
pmd_t mk_pmd(struct page *page, pgprot_t prot) { pmd_t pmd; pmd_val(pmd) = (page_to_pfn(page) << _PFN_SHIFT) | pgprot_val(prot); return pmd; }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle38100.00%1100.00%
Total38100.00%1100.00%


void set_pmd_at(struct mm_struct *mm, unsigned long addr, pmd_t *pmdp, pmd_t pmd) { *pmdp = pmd; flush_tlb_all(); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle29100.00%1100.00%
Total29100.00%1100.00%


void __init pagetable_init(void) { unsigned long vaddr; pgd_t *pgd_base; /* Initialize the entire pgd. */ pgd_init((unsigned long)swapper_pg_dir); #ifndef __PAGETABLE_PUD_FOLDED pud_init((unsigned long)invalid_pud_table, (unsigned long)invalid_pmd_table); #endif #ifndef __PAGETABLE_PMD_FOLDED pmd_init((unsigned long)invalid_pmd_table, (unsigned long)invalid_pte_table); #endif pgd_base = swapper_pg_dir; /* * Fixed mappings: */ vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK; fixrange_init(vaddr, vaddr + FIXADDR_SIZE, pgd_base); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle6569.89%240.00%
Alex Belits2021.51%120.00%
David Daney55.38%120.00%
Kevin Cernekee33.23%120.00%
Total93100.00%5100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle31856.18%333.33%
Alex Belits15727.74%111.11%
David Daney7713.60%222.22%
James Hogan81.41%111.11%
Kevin Cernekee30.53%111.11%
Atsushi Nemoto30.53%111.11%
Total566100.00%9100.00%
Directory: arch/mips/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.