cregit-Linux how code gets into the kernel

Release 4.18 arch/um/kernel/syscall.c

Directory: arch/um/kernel
/*
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <linux/file.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/utsname.h>
#include <linux/syscalls.h>
#include <asm/current.h>
#include <asm/mman.h>
#include <linux/uaccess.h>
#include <asm/unistd.h>


long old_mmap(unsigned long addr, unsigned long len, unsigned long prot, unsigned long flags, unsigned long fd, unsigned long offset) { long err = -EINVAL; if (offset & ~PAGE_MASK) goto out; err = ksys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT); out: return err; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike6898.55%266.67%
Dominik Brodowski11.45%133.33%
Total69100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike8585.00%337.50%
Al Viro1111.00%225.00%
Alexey Dobriyan22.00%112.50%
Dominik Brodowski11.00%112.50%
Linus Torvalds11.00%112.50%
Total100100.00%8100.00%
Directory: arch/um/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.