Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/uvm change the names of the arguments to uvn_put() to ma...



details:   https://anonhg.NetBSD.org/src/rev/af3732746b91
branches:  trunk
changeset: 515470:af3732746b91
user:      chs <chs%NetBSD.org@localhost>
date:      Wed Sep 26 07:23:51 2001 +0000

description:
change the names of the arguments to uvn_put() to match their usage.

diffstat:

 sys/uvm/uvm_vnode.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (31 lines):

diff -r 721db36a2630 -r af3732746b91 sys/uvm/uvm_vnode.c
--- a/sys/uvm/uvm_vnode.c       Wed Sep 26 07:21:42 2001 +0000
+++ b/sys/uvm/uvm_vnode.c       Wed Sep 26 07:23:51 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_vnode.c,v 1.53 2001/09/22 22:33:16 sommerfeld Exp $        */
+/*     $NetBSD: uvm_vnode.c,v 1.54 2001/09/26 07:23:51 chs Exp $       */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -253,17 +253,17 @@
  */
 
 int
-uvn_put(uobj, off, len, flags)
+uvn_put(uobj, offlo, offhi, flags)
        struct uvm_object *uobj;
-       voff_t off;
-       voff_t len;
+       voff_t offlo;
+       voff_t offhi;
        int flags;
 {
        struct vnode *vp = (struct vnode *)uobj;
        int error;
 
        LOCK_ASSERT(simple_lock_held(&vp->v_interlock));
-       error = VOP_PUTPAGES(vp, off, len, flags);
+       error = VOP_PUTPAGES(vp, offlo, offhi, flags);
        LOCK_ASSERT(!simple_lock_held(&vp->v_interlock));
        return error;
 }



Home | Main Index | Thread Index | Old Index