Module Name: src
Committed By: yamt
Date: Sat May 30 04:25:43 UTC 2009
Modified Files:
src/sys/uvm [yamt-nfs-mp]: uvm_mmap.c
Log Message:
revert the previous, which has been committed to the wrong branch.
To generate a diff of this commit:
cvs rdiff -u -r1.122.4.2 -r1.122.4.3 src/sys/uvm/uvm_mmap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_mmap.c
diff -u src/sys/uvm/uvm_mmap.c:1.122.4.2 src/sys/uvm/uvm_mmap.c:1.122.4.3
--- src/sys/uvm/uvm_mmap.c:1.122.4.2 Sat May 30 04:23:20 2009
+++ src/sys/uvm/uvm_mmap.c Sat May 30 04:25:43 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_mmap.c,v 1.122.4.2 2009/05/30 04:23:20 yamt Exp $ */
+/* $NetBSD: uvm_mmap.c,v 1.122.4.3 2009/05/30 04:25:43 yamt Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -51,7 +51,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.122.4.2 2009/05/30 04:23:20 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.122.4.3 2009/05/30 04:25:43 yamt Exp $");
#include "opt_compat_netbsd.h"
#include "opt_pax.h"
@@ -145,8 +145,7 @@
/* ARGSUSED */
int
-sys_mincore(struct lwp *l, const struct sys_mincore_args *uap,
- register_t *retval)
+sys_mincore(struct lwp *l, const struct sys_mincore_args *uap, register_t *retval)
{
/* {
syscallarg(void *) addr;
@@ -563,8 +562,7 @@
*/
int
-sys___msync13(struct lwp *l, const struct sys___msync13_args *uap,
- register_t *retval)
+sys___msync13(struct lwp *l, const struct sys___msync13_args *uap, register_t *retval)
{
/* {
syscallarg(void *) addr;
@@ -718,8 +716,7 @@
*/
int
-sys_mprotect(struct lwp *l, const struct sys_mprotect_args *uap,
- register_t *retval)
+sys_mprotect(struct lwp *l, const struct sys_mprotect_args *uap, register_t *retval)
{
/* {
syscallarg(void *) addr;
@@ -763,8 +760,7 @@
*/
int
-sys_minherit(struct lwp *l, const struct sys_minherit_args *uap,
- register_t *retval)
+sys_minherit(struct lwp *l, const struct sys_minherit_args *uap, register_t *retval)
{
/* {
syscallarg(void *) addr;
@@ -805,8 +801,7 @@
/* ARGSUSED */
int
-sys_madvise(struct lwp *l, const struct sys_madvise_args *uap,
- register_t *retval)
+sys_madvise(struct lwp *l, const struct sys_madvise_args *uap, register_t *retval)
{
/* {
syscallarg(void *) addr;
@@ -958,8 +953,7 @@
*/
int
-sys_munlock(struct lwp *l, const struct sys_munlock_args *uap,
- register_t *retval)
+sys_munlock(struct lwp *l, const struct sys_munlock_args *uap, register_t *retval)
{
/* {
syscallarg(const void *) addr;
@@ -1002,8 +996,7 @@
*/
int
-sys_mlockall(struct lwp *l, const struct sys_mlockall_args *uap,
- register_t *retval)
+sys_mlockall(struct lwp *l, const struct sys_mlockall_args *uap, register_t *retval)
{
/* {
syscallarg(int) flags;
@@ -1044,8 +1037,7 @@
*/
int
-uvm_mmap(struct vm_map *map, vaddr_t *addr, vsize_t size, vm_prot_t prot,
- vm_prot_t maxprot, int flags, void *handle, voff_t foff, vsize_t locklimit)
+uvm_mmap(struct vm_map *map, vaddr_t *addr, vsize_t size, vm_prot_t prot, vm_prot_t maxprot, int flags, void *handle, voff_t foff, vsize_t locklimit)
{
struct uvm_object *uobj;
struct vnode *vp;