2008-01-25 17:32:11 +03:00
|
|
|
# $NetBSD: vnode_if.src,v 1.57 2008/01/25 14:32:15 ad Exp $
|
1994-06-08 15:28:29 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 1992, 1993
|
|
|
|
# The Regents of the University of California. All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 3. All advertising materials mentioning features or use of this software
|
|
|
|
# must display the following acknowledgement:
|
|
|
|
# This product includes software developed by the University of
|
|
|
|
# California, Berkeley and its contributors.
|
|
|
|
# 4. Neither the name of the University nor the names of its contributors
|
|
|
|
# may be used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
1998-03-01 05:20:01 +03:00
|
|
|
# @(#)vnode_if.src 8.14 (Berkeley) 8/6/95
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
1998-03-01 05:20:01 +03:00
|
|
|
# Above each of the vop descriptors is a specification of the locking
|
|
|
|
# protocol used by each vop call. The first column is the name of
|
|
|
|
# the variable, the remaining three columns are in, out and error
|
|
|
|
# respectively. The "in" column defines the lock state on input,
|
2003-11-17 14:16:10 +03:00
|
|
|
# the "out" column defines the state on successful return, and the
|
1998-03-01 05:20:01 +03:00
|
|
|
# "error" column defines the locking state on error exit.
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
1998-03-01 05:20:01 +03:00
|
|
|
# The locking value can take the following values:
|
|
|
|
# L: locked.
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
# U: unlocked.
|
1998-03-01 05:20:01 +03:00
|
|
|
# -: not applicable. vnode does not yet (or no longer) exists.
|
|
|
|
# =: the same on input and output, may be either L or U.
|
|
|
|
# X: locked if not nil.
|
1999-12-08 00:06:48 +03:00
|
|
|
#
|
|
|
|
# For operations other than VOP_LOOKUP which require a component name
|
|
|
|
# parameter, the flags required for the initial namei() call are listed.
|
|
|
|
# Additional flags may be added to the namei() call, but these are required.
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2007-01-08 00:33:24 +03:00
|
|
|
#% lookup dvp L L L
|
1998-03-01 05:20:01 +03:00
|
|
|
#% lookup vpp - L -
|
|
|
|
#
|
2007-01-08 00:33:24 +03:00
|
|
|
# XXX - the lookup locking protocol defies simple description.
|
|
|
|
# Note especially that *vpp may equal dvp.
|
1994-06-08 15:28:29 +04:00
|
|
|
#
|
1999-03-22 19:57:37 +03:00
|
|
|
# More details:
|
1999-08-11 04:20:50 +04:00
|
|
|
# There are three types of lookups: ".", ".." (ISDOTDOT), and other.
|
|
|
|
# On successful lookup of ".", a reference is added to dvp, and it
|
|
|
|
# is returned in *vpp.
|
|
|
|
# To look up ISDOTDOT, dvp is unlocked, the ".." node is locked, and
|
2007-01-08 00:33:24 +03:00
|
|
|
# then dvp is relocked. This preserves the protocol of always
|
|
|
|
# locking nodes from root ("/") downward and prevents deadlock.
|
1999-08-11 04:20:50 +04:00
|
|
|
# Other lookups find the named node (creating the vnode if needed) and
|
|
|
|
# return it, locked, in *vpp.
|
2007-01-08 00:33:24 +03:00
|
|
|
# On failure, *vpp is NULL, and *dvp is left locked.
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
1999-03-22 19:57:37 +03:00
|
|
|
# *vpp is always locked on return if the operation succeeds.
|
2007-01-08 00:33:24 +03:00
|
|
|
# Typically, if *vpp == dvp, you need to release twice, but
|
|
|
|
# unlock only once.
|
1999-03-22 19:57:37 +03:00
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
# See sys/sys/namei.h for a description of the SAVENAME and SAVESTART
|
|
|
|
# flags.
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_lookup {
|
|
|
|
IN struct vnode *dvp;
|
2007-07-23 01:26:53 +04:00
|
|
|
INOUT WILLMAKE struct vnode **vpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% create dvp L U U
|
|
|
|
#% create vpp - L -
|
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! create cnp CREATE, LOCKPARENT
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_create {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
2007-07-23 01:26:53 +04:00
|
|
|
OUT WILLMAKE struct vnode **vpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
IN struct vattr *vap;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% mknod dvp L U U
|
2001-07-24 19:39:30 +04:00
|
|
|
#% mknod vpp - L -
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! mknod cnp CREATE, LOCKPARENT
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_mknod {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
2007-07-23 01:26:53 +04:00
|
|
|
OUT WILLMAKE struct vnode **vpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
IN struct vattr *vap;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% open vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_open {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int mode;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1999-02-27 02:38:55 +03:00
|
|
|
#% close vp L L L
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_close {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int fflag;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% access vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_access {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int mode;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% getattr vp = = =
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_getattr {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
IN struct vattr *vap;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% setattr vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_setattr {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct vattr *vap;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% read vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_read {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
INOUT struct uio *uio;
|
|
|
|
IN int ioflag;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% write vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_write {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
INOUT struct uio *uio;
|
|
|
|
IN int ioflag;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% ioctl vp U U U
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_ioctl {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1994-10-31 00:43:03 +03:00
|
|
|
IN u_long command;
|
2003-04-11 00:26:57 +04:00
|
|
|
IN void *data;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int fflag;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1999-08-03 22:19:08 +04:00
|
|
|
#
|
2006-05-04 20:48:16 +04:00
|
|
|
#% fcntl vp U U U
|
1999-08-03 22:19:08 +04:00
|
|
|
#
|
|
|
|
vop_fcntl {
|
2006-05-04 20:48:16 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1999-08-03 22:19:08 +04:00
|
|
|
IN u_int command;
|
2003-04-11 00:26:57 +04:00
|
|
|
IN void *data;
|
1999-08-03 22:19:08 +04:00
|
|
|
IN int fflag;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1999-08-03 22:19:08 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% poll vp U U U
|
|
|
|
#
|
1996-09-07 16:40:22 +04:00
|
|
|
vop_poll {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1996-09-07 16:40:22 +04:00
|
|
|
IN int events;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
#
|
|
|
|
#% kqfilter vp U U U
|
|
|
|
#
|
|
|
|
vop_kqfilter {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
2002-10-23 13:10:23 +04:00
|
|
|
IN struct knote *kn;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% revoke vp U U U
|
|
|
|
#
|
|
|
|
vop_revoke {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1998-03-01 05:20:01 +03:00
|
|
|
IN int flags;
|
|
|
|
};
|
|
|
|
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
#% mmap vp = = =
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_mmap {
|
|
|
|
IN struct vnode *vp;
|
2007-07-27 12:26:38 +04:00
|
|
|
IN vm_prot_t prot;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% fsync vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_fsync {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1998-06-05 23:38:56 +04:00
|
|
|
IN int flags;
|
2004-01-24 04:40:57 +03:00
|
|
|
IN off_t offlo;
|
|
|
|
IN off_t offhi;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
# Needs work: Is newoff right? What's it mean?
|
2005-09-25 16:50:14 +04:00
|
|
|
# XXX Locking protocol?
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_seek {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
IN off_t oldoff;
|
|
|
|
IN off_t newoff;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% remove dvp L U U
|
|
|
|
#% remove vp L U U
|
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! remove cnp DELETE, LOCKPARENT | LOCKLEAF
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_remove {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
|
|
|
IN LOCKED=YES WILLPUT struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2004-09-21 07:10:35 +04:00
|
|
|
#% link dvp L U U
|
2007-04-09 18:58:28 +04:00
|
|
|
#% link vp U U U
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! link cnp CREATE, LOCKPARENT
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_link {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% rename fdvp U U U
|
|
|
|
#% rename fvp U U U
|
|
|
|
#% rename tdvp L U U
|
|
|
|
#% rename tvp X U U
|
|
|
|
#
|
2007-01-08 00:33:24 +03:00
|
|
|
#! rename fcnp DELETE, LOCKPARENT | SAVESTART
|
1999-12-08 00:06:48 +03:00
|
|
|
#! rename tcnp RENAME, LOCKPARENT | LOCKLEAF | NOCACHE | SAVESTART
|
|
|
|
#
|
|
|
|
# XXX the vop_rename routines should REALLY NOT be depending on SAVESTART!
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_rename {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO WILLRELE struct vnode *fdvp;
|
|
|
|
IN LOCKED=NO WILLRELE struct vnode *fvp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *fcnp;
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *tdvp;
|
2003-04-11 00:35:36 +04:00
|
|
|
IN WILLPUT struct vnode *tvp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *tcnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% mkdir dvp L U U
|
2005-02-27 01:14:39 +03:00
|
|
|
#% mkdir vpp - L -
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! mkdir cnp CREATE, LOCKPARENT
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_mkdir {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
2007-07-23 01:26:53 +04:00
|
|
|
OUT WILLMAKE struct vnode **vpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
IN struct vattr *vap;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% rmdir dvp L U U
|
|
|
|
#% rmdir vp L U U
|
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! rmdir cnp DELETE, LOCKPARENT | LOCKLEAF
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_rmdir {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
|
|
|
IN LOCKED=YES WILLPUT struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% symlink dvp L U U
|
2001-07-24 19:39:30 +04:00
|
|
|
#% symlink vpp - L -
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! symlink cnp CREATE, LOCKPARENT
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_symlink {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLPUT struct vnode *dvp;
|
2007-07-23 01:26:53 +04:00
|
|
|
OUT WILLMAKE struct vnode **vpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
IN struct vattr *vap;
|
|
|
|
IN char *target;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2005-02-27 01:14:39 +03:00
|
|
|
#% readdir vp L L L
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_readdir {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
INOUT struct uio *uio;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
OUT int *eofflag;
|
1998-03-01 05:20:01 +03:00
|
|
|
OUT off_t **cookies;
|
|
|
|
IN int *ncookies;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% readlink vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_readlink {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
INOUT struct uio *uio;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% abortop dvp = = =
|
|
|
|
#
|
1999-12-08 00:06:48 +03:00
|
|
|
#! abortop cnp as appropriate.
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_abortop {
|
|
|
|
IN struct vnode *dvp;
|
|
|
|
IN struct componentname *cnp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2005-02-27 01:14:39 +03:00
|
|
|
#% inactive vp L U U
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_inactive {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES WILLUNLOCK struct vnode *vp;
|
2008-01-02 14:48:20 +03:00
|
|
|
INOUT bool *recycle;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% reclaim vp U U U
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_reclaim {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% lock vp U L U
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_lock {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
1998-03-01 05:20:01 +03:00
|
|
|
IN int flags;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% unlock vp L U L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_unlock {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1998-03-01 05:20:01 +03:00
|
|
|
IN int flags;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2004-09-10 13:37:41 +04:00
|
|
|
#% bmap vp = = =
|
1998-03-01 05:20:01 +03:00
|
|
|
#% bmap vpp - U -
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_bmap {
|
2005-12-30 14:19:09 +03:00
|
|
|
IN struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN daddr_t bn;
|
|
|
|
OUT struct vnode **vpp;
|
|
|
|
IN daddr_t *bnp;
|
|
|
|
OUT int *runp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2004-01-25 21:02:04 +03:00
|
|
|
#% strategy vp = = =
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
2004-01-25 21:02:04 +03:00
|
|
|
vop_strategy {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
IN struct buf *bp;
|
|
|
|
};
|
1994-06-08 15:28:29 +04:00
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% print vp = = =
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_print {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% islocked vp = = =
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_islocked {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% pathconf vp L L L
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_pathconf {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *vp;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int name;
|
1994-10-20 07:22:35 +03:00
|
|
|
OUT register_t *retval;
|
1994-06-08 15:28:29 +04:00
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% advlock vp U U U
|
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
vop_advlock {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=NO struct vnode *vp;
|
2003-04-11 00:26:57 +04:00
|
|
|
IN void *id;
|
1994-06-08 15:28:29 +04:00
|
|
|
IN int op;
|
|
|
|
IN struct flock *fl;
|
|
|
|
IN int flags;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
|
|
|
#% whiteout dvp L L L
|
|
|
|
#% whiteout cnp - - -
|
|
|
|
#% whiteout flag - - -
|
1999-12-08 00:06:48 +03:00
|
|
|
#
|
|
|
|
#! whiteout cnp CREATE, LOCKPARENT
|
2005-02-27 01:14:39 +03:00
|
|
|
#
|
1994-12-14 16:03:11 +03:00
|
|
|
vop_whiteout {
|
2004-09-21 07:10:35 +04:00
|
|
|
IN LOCKED=YES struct vnode *dvp;
|
1994-12-14 16:03:11 +03:00
|
|
|
IN struct componentname *cnp;
|
|
|
|
IN int flags;
|
|
|
|
};
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
# Needs work: no vp?
|
1998-03-01 05:20:01 +03:00
|
|
|
#
|
1994-06-08 15:28:29 +04:00
|
|
|
#vop_bwrite {
|
|
|
|
# IN struct buf *bp;
|
|
|
|
#};
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
#
|
2004-05-27 16:49:09 +04:00
|
|
|
#% getpages vp = = =
|
2000-11-27 11:39:39 +03:00
|
|
|
#
|
|
|
|
vop_getpages {
|
|
|
|
IN struct vnode *vp;
|
|
|
|
IN voff_t offset;
|
2001-05-27 01:27:10 +04:00
|
|
|
IN struct vm_page **m;
|
2000-11-27 11:39:39 +03:00
|
|
|
IN int *count;
|
|
|
|
IN int centeridx;
|
|
|
|
IN vm_prot_t access_type;
|
|
|
|
IN int advice;
|
|
|
|
IN int flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
#
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
#% putpages vp = = =
|
2000-11-27 11:39:39 +03:00
|
|
|
#
|
|
|
|
vop_putpages {
|
|
|
|
IN struct vnode *vp;
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
IN voff_t offlo;
|
|
|
|
IN voff_t offhi;
|
2000-11-27 11:39:39 +03:00
|
|
|
IN int flags;
|
|
|
|
};
|
2005-01-02 19:08:28 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
#% closeextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_closeextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
|
|
|
IN int commit;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
#% getextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_getextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
|
|
|
IN int attrnamespace;
|
|
|
|
IN const char *name;
|
|
|
|
INOUT struct uio *uio;
|
|
|
|
OUT size_t *size;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
#% listextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_listextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
|
|
|
IN int attrnamespace;
|
|
|
|
INOUT struct uio *uio;
|
|
|
|
OUT size_t *size;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
#% openextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_openextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
#% deleteextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_deleteextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
|
|
|
IN int attrnamespace;
|
|
|
|
IN const char *name;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
#% setextattr vp L L L
|
|
|
|
#
|
|
|
|
vop_setextattr {
|
|
|
|
IN LOCKED=YES struct vnode *vp;
|
|
|
|
IN int attrnamespace;
|
|
|
|
IN const char *name;
|
|
|
|
INOUT struct uio *uio;
|
2006-05-15 01:15:11 +04:00
|
|
|
IN kauth_cred_t cred;
|
2005-01-02 19:08:28 +03:00
|
|
|
};
|