diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-06-16 09:02:22 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2021-06-16 09:02:22 +0000 |
commit | cebbe14112cd8835ae378eb86899a7abb8235dfc (patch) | |
tree | 1e9f4067cee2406d2d4f9216bc444d01a80956bf /sys/uvm/uvm_aobj.c | |
parent | 6b211b338419b1b5599550ed82b02a603014349e (diff) |
Change the prefix of UVM object functions to match NetBSD's.
For example uvm_objinit() becomes uvm_obj_init(). Reduce differences
between the trees and help porting new functions needed for UVM object
locking.
No functionnal change.
Diffstat (limited to 'sys/uvm/uvm_aobj.c')
-rw-r--r-- | sys/uvm/uvm_aobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_aobj.c b/sys/uvm/uvm_aobj.c index e187741a0fd..f21fc92974a 100644 --- a/sys/uvm/uvm_aobj.c +++ b/sys/uvm/uvm_aobj.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_aobj.c,v 1.97 2021/06/15 16:38:09 mpi Exp $ */ +/* $OpenBSD: uvm_aobj.c,v 1.98 2021/06/16 09:02:21 mpi Exp $ */ /* $NetBSD: uvm_aobj.c,v 1.39 2001/02/18 21:19:08 chs Exp $ */ /* @@ -741,7 +741,7 @@ uao_create(vsize_t size, int flags) /* * Initialise UVM object. */ - uvm_objinit(&aobj->u_obj, &aobj_pager, refs); + uvm_obj_init(&aobj->u_obj, &aobj_pager, refs); /* * now that aobj is ready, add it to the global list |