cregit-Linux how code gets into the kernel

Release 4.14 arch/ia64/mm/hugetlbpage.c

Directory: arch/ia64/mm
// SPDX-License-Identifier: GPL-2.0
/*
 * IA-64 Huge TLB Page Support for Kernel.
 *
 * Copyright (C) 2002-2004 Rohit Seth <rohit.seth@intel.com>
 * Copyright (C) 2003-2004 Ken Chen <kenneth.w.chen@intel.com>
 *
 * Sep, 2003: add numa support
 * Feb, 2004: dynamic hugetlb page size via boot parameter
 */

#include <linux/init.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/hugetlb.h>
#include <linux/pagemap.h>
#include <linux/module.h>
#include <linux/sysctl.h>
#include <linux/log2.h>
#include <asm/mman.h>
#include <asm/pgalloc.h>
#include <asm/tlb.h>
#include <asm/tlbflush.h>


unsigned int hpage_shift = HPAGE_SHIFT_DEFAULT;

EXPORT_SYMBOL(hpage_shift);


pte_t * huge_pte_alloc(struct mm_struct *mm, unsigned long addr, unsigned long sz) { unsigned long taddr = htlbpage_to_page(addr); pgd_t *pgd; pud_t *pud; pmd_t *pmd; pte_t *pte = NULL; pgd = pgd_offset(mm, taddr); pud = pud_alloc(mm, pgd, taddr); if (pud) { pmd = pmd_alloc(mm, pud, taddr); if (pmd) pte = pte_alloc_map(mm, pmd, taddr); } return pte; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4948.51%228.57%
Nicholas Piggin2221.78%114.29%
Kenneth W. Chen1211.88%114.29%
David Mosberger-Tang1211.88%114.29%
Andi Kleen43.96%114.29%
Rohit Seth21.98%114.29%
Total101100.00%7100.00%


pte_t * huge_pte_offset (struct mm_struct *mm, unsigned long addr, unsigned long sz) { unsigned long taddr = htlbpage_to_page(addr); pgd_t *pgd; pud_t *pud; pmd_t *pmd; pte_t *pte = NULL; pgd = pgd_offset(mm, taddr); if (pgd_present(*pgd)) { pud = pud_offset(pgd, taddr); if (pud_present(*pud)) { pmd = pmd_offset(pud, taddr); if (pmd_present(*pmd)) pte = pte_offset_map(pmd, taddr); } } return pte; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton6658.41%240.00%
Nicholas Piggin2421.24%120.00%
Kenneth W. Chen1916.81%120.00%
Punit Agrawal43.54%120.00%
Total113100.00%5100.00%

#define mk_pte_huge(entry) { pte_val(entry) |= _PAGE_P; } /* * Don't actually need to do any preparation, but need to make sure * the address is in the right region. */
int prepare_hugepage_range(struct file *file, unsigned long addr, unsigned long len) { if (len & ~HPAGE_MASK) return -EINVAL; if (addr & ~HPAGE_MASK) return -EINVAL; if (REGION_NUMBER(addr) != RGN_HPAGE) return -EINVAL; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton3562.50%120.00%
David Mosberger-Tang1425.00%120.00%
Andi Kleen58.93%120.00%
David Gibson11.79%120.00%
Peter Chubb11.79%120.00%
Total56100.00%5100.00%


struct page *follow_huge_addr(struct mm_struct *mm, unsigned long addr, int write) { struct page *page; pte_t *ptep; if (REGION_NUMBER(addr) != RGN_HPAGE) return ERR_PTR(-EINVAL); ptep = huge_pte_offset(mm, addr, HPAGE_SIZE); if (!ptep || pte_none(*ptep)) return NULL; page = pte_page(*ptep); page += ((addr & ~HPAGE_MASK) >> PAGE_SHIFT); return page; }

Contributors

PersonTokensPropCommitsCommitProp
David Gibson5356.99%114.29%
David Mosberger-Tang2830.11%114.29%
Rohit Seth44.30%114.29%
Andrew Morton44.30%114.29%
Punit Agrawal22.15%114.29%
Christoph Lameter11.08%114.29%
Peter Chubb11.08%114.29%
Total93100.00%7100.00%


int pmd_huge(pmd_t pmd) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
David Gibson981.82%150.00%
David Mosberger-Tang218.18%150.00%
Total11100.00%2100.00%


int pud_huge(pud_t pud) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen11100.00%1100.00%
Total11100.00%1100.00%


void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, unsigned long end, unsigned long floor, unsigned long ceiling) { /* * This is called to free hugetlb page tables. * * The offset of these addresses from the base of the hugetlb * region must be scaled down by HPAGE_SIZE/PAGE_SIZE so that * the standard free_pgd_range will free the right page tables. * * If floor and ceiling are also in the hugetlb region, they * must likewise be scaled down; but if outside, left unchanged. */ addr = htlbpage_to_page(addr); end = htlbpage_to_page(end); if (REGION_NUMBER(floor) == RGN_HPAGE) floor = htlbpage_to_page(floor); if (REGION_NUMBER(ceiling) == RGN_HPAGE) ceiling = htlbpage_to_page(ceiling); free_pgd_range(tlb, addr, end, floor, ceiling); }

Contributors

PersonTokensPropCommitsCommitProp
Hugh Dickins6373.26%120.00%
David Gibson910.47%120.00%
Kenneth W. Chen78.14%120.00%
David Mosberger-Tang78.14%240.00%
Total86100.00%5100.00%


unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags) { struct vm_unmapped_area_info info; if (len > RGN_MAP_LIMIT) return -ENOMEM; if (len & ~HPAGE_MASK) return -EINVAL; /* Handle MAP_FIXED */ if (flags & MAP_FIXED) { if (prepare_hugepage_range(file, addr, len)) return -EINVAL; return addr; } /* This code assumes that RGN_HPAGE != 0. */ if ((REGION_NUMBER(addr) != RGN_HPAGE) || (addr & (HPAGE_SIZE - 1))) addr = HPAGE_REGION_BASE; info.flags = 0; info.length = len; info.low_limit = addr; info.high_limit = HPAGE_REGION_BASE + RGN_MAP_LIMIT; info.align_mask = PAGE_MASK & (HPAGE_SIZE - 1); info.align_offset = 0; return vm_unmapped_area(&info); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton7044.87%114.29%
Michel Lespinasse4126.28%114.29%
Benjamin Herrenschmidt2516.03%114.29%
David Mosberger-Tang127.69%114.29%
Rohit Seth42.56%114.29%
Peter Chubb21.28%114.29%
Andi Kleen21.28%114.29%
Total156100.00%7100.00%


static int __init hugetlb_setup_sz(char *str) { u64 tr_pages; unsigned long long size; if (ia64_pal_vm_page_size(&tr_pages, NULL) != 0) /* * shouldn't happen, but just in case. */ tr_pages = 0x15557000UL; size = memparse(str, &str); if (*str || !is_power_of_2(size) || !(tr_pages & size) || size <= PAGE_SIZE || size >= (1UL << PAGE_SHIFT << MAX_ORDER)) { printk(KERN_WARNING "Invalid huge page size specified\n"); return 1; } hpage_shift = __ffs(size); /* * boot cpu already executed ia64_mmu_init, and has HPAGE_SHIFT_DEFAULT * override here with new page shift. */ ia64_set_rr(HPAGE_REGION_BASE, hpage_shift << 2); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Kenneth W. Chen10495.41%133.33%
Vignesh Babu43.67%133.33%
Mel Gorman10.92%133.33%
Total109100.00%3100.00%

early_param("hugepagesz", hugetlb_setup_sz);

Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton23729.62%519.23%
Kenneth W. Chen15619.50%311.54%
David Mosberger-Tang9511.88%27.69%
David Gibson739.12%27.69%
Hugh Dickins637.88%13.85%
Nicholas Piggin465.75%13.85%
Michel Lespinasse415.12%13.85%
Benjamin Herrenschmidt253.12%13.85%
Andi Kleen222.75%27.69%
Rohit Seth121.50%13.85%
Jack Steiner81.00%13.85%
Vignesh Babu70.88%13.85%
Punit Agrawal60.75%13.85%
Peter Chubb40.50%13.85%
Mel Gorman30.38%13.85%
Greg Kroah-Hartman10.12%13.85%
Christoph Lameter10.12%13.85%
Total800100.00%26100.00%
Directory: arch/ia64/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.