cregit-Linux how code gets into the kernel

Release 4.14 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 = sys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT); out: return err; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike6898.55%266.67%
Al Viro11.45%133.33%
Total69100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike8585.00%342.86%
Al Viro1212.00%228.57%
Alexey Dobriyan22.00%114.29%
Linus Torvalds11.00%114.29%
Total100100.00%7100.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.