patch-2.3.49 linux/arch/arm/kernel/sys_arm.c
Next file: linux/arch/arm/lib/findbit.S
Previous file: linux/arch/arm/kernel/setup.c
Back to the patch index
Back to the overall index
- Lines: 37
- Date:
Mon Feb 28 14:16:37 2000
- Orig file:
v2.3.48/linux/arch/arm/kernel/sys_arm.c
- Orig date:
Fri Jan 28 15:09:06 2000
diff -u --recursive --new-file v2.3.48/linux/arch/arm/kernel/sys_arm.c linux/arch/arm/kernel/sys_arm.c
@@ -50,7 +50,7 @@
}
/* common code for old and new mmaps */
-static inline long do_mmap2(
+inline long do_mmap2(
unsigned long addr, unsigned long len,
unsigned long prot, unsigned long flags,
unsigned long fd, unsigned long pgoff)
@@ -77,27 +77,6 @@
fput(file);
out:
return error;
-}
-
-#define PGOFF_SHIFT (PAGE_SHIFT - 12)
-#define PGOFF_MASK (~((1 << PGOFF_SHIFT) - 1))
-
-/*
- * Note: off_4k is always units of 4K. If we can't do the requested
- * offset, we return EINVAL.
- */
-asmlinkage long
-sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
- unsigned long flags, unsigned long fd, unsigned long off_4k)
-{
- unsigned long pgoff;
-
- if (off_4k & ~PGOFF_MASK)
- return -EINVAL;
-
- pgoff = off_4k >> PGOFF_SHIFT;
-
- return do_mmap2(addr, len, prot, flags, fd, pgoff);
}
struct mmap_arg_struct {
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)