Contributors: 6
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Jeff Dike |
84 |
83.17% |
2 |
25.00% |
Al Viro |
11 |
10.89% |
2 |
25.00% |
Alexey Dobriyan |
2 |
1.98% |
1 |
12.50% |
Alex Dewar |
2 |
1.98% |
1 |
12.50% |
Linus Torvalds |
1 |
0.99% |
1 |
12.50% |
Dominik Brodowski |
1 |
0.99% |
1 |
12.50% |
Total |
101 |
|
8 |
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
*/
#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;
}