2006-07-10 13:45:13 +02:00
|
|
|
/*
|
2007-10-16 10:27:00 +02:00
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2012-10-08 04:27:32 +02:00
|
|
|
#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 <asm/uaccess.h>
|
|
|
|
#include <asm/unistd.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2009-11-30 23:37:04 +01:00
|
|
|
err = sys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
|
2005-04-17 00:20:36 +02:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|