2007-11-26 22:01:26 +03:00
|
|
|
/* $NetBSD: ffs_vnops.c,v 1.93 2007/11/26 19:02:30 pooka Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1982, 1986, 1989, 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-06-08 15:41:58 +04:00
|
|
|
* 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
|
|
|
* @(#)ffs_vnops.c 8.15 (Berkeley) 5/14/95
|
1994-06-08 15:41:58 +04:00
|
|
|
*/
|
|
|
|
|
2001-10-30 04:11:53 +03:00
|
|
|
#include <sys/cdefs.h>
|
2007-11-26 22:01:26 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: ffs_vnops.c,v 1.93 2007/11/26 19:02:30 pooka Exp $");
|
2001-10-30 04:11:53 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/buf.h>
|
2002-10-23 13:10:23 +04:00
|
|
|
#include <sys/event.h>
|
1994-06-08 15:41:58 +04:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/vnode.h>
|
1998-09-01 07:11:08 +04:00
|
|
|
#include <sys/pool.h>
|
1996-02-10 01:22:18 +03:00
|
|
|
#include <sys/signalvar.h>
|
2006-05-15 01:31:52 +04:00
|
|
|
#include <sys/kauth.h>
|
2007-01-19 17:49:08 +03:00
|
|
|
#include <sys/fstrans.h>
|
1994-06-08 15:41:58 +04:00
|
|
|
|
|
|
|
#include <miscfs/fifofs/fifo.h>
|
1996-09-02 03:47:48 +04:00
|
|
|
#include <miscfs/genfs/genfs.h>
|
|
|
|
#include <miscfs/specfs/specdev.h>
|
1994-06-08 15:41:58 +04:00
|
|
|
|
|
|
|
#include <ufs/ufs/inode.h>
|
|
|
|
#include <ufs/ufs/dir.h>
|
|
|
|
#include <ufs/ufs/ufs_extern.h>
|
1994-06-22 09:45:19 +04:00
|
|
|
#include <ufs/ufs/ufsmount.h>
|
1994-06-08 15:41:58 +04:00
|
|
|
|
|
|
|
#include <ufs/ffs/fs.h>
|
|
|
|
#include <ufs/ffs/ffs_extern.h>
|
|
|
|
|
2002-05-05 21:00:06 +04:00
|
|
|
#include <uvm/uvm.h>
|
|
|
|
|
2005-08-31 02:01:12 +04:00
|
|
|
static int ffs_full_fsync(void *);
|
2000-09-20 02:04:08 +04:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/* Global vfs data structures for ufs. */
|
2005-08-31 02:01:12 +04:00
|
|
|
int (**ffs_vnodeop_p)(void *);
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_entry_desc ffs_vnodeop_entries[] = {
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_default_desc, vn_default_error },
|
|
|
|
{ &vop_lookup_desc, ufs_lookup }, /* lookup */
|
|
|
|
{ &vop_create_desc, ufs_create }, /* create */
|
1994-12-14 16:03:35 +03:00
|
|
|
{ &vop_whiteout_desc, ufs_whiteout }, /* whiteout */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_mknod_desc, ufs_mknod }, /* mknod */
|
|
|
|
{ &vop_open_desc, ufs_open }, /* open */
|
|
|
|
{ &vop_close_desc, ufs_close }, /* close */
|
|
|
|
{ &vop_access_desc, ufs_access }, /* access */
|
|
|
|
{ &vop_getattr_desc, ufs_getattr }, /* getattr */
|
|
|
|
{ &vop_setattr_desc, ufs_setattr }, /* setattr */
|
|
|
|
{ &vop_read_desc, ffs_read }, /* read */
|
|
|
|
{ &vop_write_desc, ffs_write }, /* write */
|
1994-12-13 23:14:30 +03:00
|
|
|
{ &vop_lease_desc, ufs_lease_check }, /* lease */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_ioctl_desc, ufs_ioctl }, /* ioctl */
|
1999-08-04 00:19:16 +04:00
|
|
|
{ &vop_fcntl_desc, ufs_fcntl }, /* fcntl */
|
1996-09-07 16:40:22 +04:00
|
|
|
{ &vop_poll_desc, ufs_poll }, /* poll */
|
2002-10-23 13:10:23 +04:00
|
|
|
{ &vop_kqfilter_desc, genfs_kqfilter }, /* kqfilter */
|
1998-03-01 05:20:01 +03:00
|
|
|
{ &vop_revoke_desc, ufs_revoke }, /* revoke */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_mmap_desc, ufs_mmap }, /* mmap */
|
|
|
|
{ &vop_fsync_desc, ffs_fsync }, /* fsync */
|
|
|
|
{ &vop_seek_desc, ufs_seek }, /* seek */
|
|
|
|
{ &vop_remove_desc, ufs_remove }, /* remove */
|
|
|
|
{ &vop_link_desc, ufs_link }, /* link */
|
|
|
|
{ &vop_rename_desc, ufs_rename }, /* rename */
|
|
|
|
{ &vop_mkdir_desc, ufs_mkdir }, /* mkdir */
|
|
|
|
{ &vop_rmdir_desc, ufs_rmdir }, /* rmdir */
|
|
|
|
{ &vop_symlink_desc, ufs_symlink }, /* symlink */
|
|
|
|
{ &vop_readdir_desc, ufs_readdir }, /* readdir */
|
|
|
|
{ &vop_readlink_desc, ufs_readlink }, /* readlink */
|
|
|
|
{ &vop_abortop_desc, ufs_abortop }, /* abortop */
|
|
|
|
{ &vop_inactive_desc, ufs_inactive }, /* inactive */
|
|
|
|
{ &vop_reclaim_desc, ffs_reclaim }, /* reclaim */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_lock_desc, ffs_lock }, /* lock */
|
|
|
|
{ &vop_unlock_desc, ffs_unlock }, /* unlock */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_bmap_desc, ufs_bmap }, /* bmap */
|
|
|
|
{ &vop_strategy_desc, ufs_strategy }, /* strategy */
|
|
|
|
{ &vop_print_desc, ufs_print }, /* print */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_islocked_desc, ffs_islocked }, /* islocked */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_pathconf_desc, ufs_pathconf }, /* pathconf */
|
|
|
|
{ &vop_advlock_desc, ufs_advlock }, /* advlock */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_bwrite_desc, vn_bwrite }, /* bwrite */
|
2007-06-05 16:31:30 +04:00
|
|
|
{ &vop_getpages_desc, genfs_getpages }, /* getpages */
|
2005-09-09 19:00:39 +04:00
|
|
|
{ &vop_putpages_desc, genfs_putpages }, /* putpages */
|
2005-08-28 23:37:58 +04:00
|
|
|
{ &vop_openextattr_desc, ffs_openextattr }, /* openextattr */
|
|
|
|
{ &vop_closeextattr_desc, ffs_closeextattr }, /* closeextattr */
|
|
|
|
{ &vop_getextattr_desc, ffs_getextattr }, /* getextattr */
|
|
|
|
{ &vop_setextattr_desc, ffs_setextattr }, /* setextattr */
|
|
|
|
{ &vop_listextattr_desc, ffs_listextattr }, /* listextattr */
|
|
|
|
{ &vop_deleteextattr_desc, ffs_deleteextattr }, /* deleteextattr */
|
2000-11-27 11:39:39 +03:00
|
|
|
{ NULL, NULL }
|
1994-06-08 15:41:58 +04:00
|
|
|
};
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc ffs_vnodeop_opv_desc =
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &ffs_vnodeop_p, ffs_vnodeop_entries };
|
|
|
|
|
2005-08-31 02:01:12 +04:00
|
|
|
int (**ffs_specop_p)(void *);
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_entry_desc ffs_specop_entries[] = {
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_default_desc, vn_default_error },
|
|
|
|
{ &vop_lookup_desc, spec_lookup }, /* lookup */
|
|
|
|
{ &vop_create_desc, spec_create }, /* create */
|
|
|
|
{ &vop_mknod_desc, spec_mknod }, /* mknod */
|
|
|
|
{ &vop_open_desc, spec_open }, /* open */
|
|
|
|
{ &vop_close_desc, ufsspec_close }, /* close */
|
|
|
|
{ &vop_access_desc, ufs_access }, /* access */
|
|
|
|
{ &vop_getattr_desc, ufs_getattr }, /* getattr */
|
|
|
|
{ &vop_setattr_desc, ufs_setattr }, /* setattr */
|
|
|
|
{ &vop_read_desc, ufsspec_read }, /* read */
|
|
|
|
{ &vop_write_desc, ufsspec_write }, /* write */
|
1994-12-13 23:14:30 +03:00
|
|
|
{ &vop_lease_desc, spec_lease_check }, /* lease */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_ioctl_desc, spec_ioctl }, /* ioctl */
|
1999-08-04 00:19:16 +04:00
|
|
|
{ &vop_fcntl_desc, ufs_fcntl }, /* fcntl */
|
1996-09-07 16:40:22 +04:00
|
|
|
{ &vop_poll_desc, spec_poll }, /* poll */
|
2002-10-23 13:10:23 +04:00
|
|
|
{ &vop_kqfilter_desc, spec_kqfilter }, /* kqfilter */
|
1998-03-01 05:20:01 +03:00
|
|
|
{ &vop_revoke_desc, spec_revoke }, /* revoke */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_mmap_desc, spec_mmap }, /* mmap */
|
|
|
|
{ &vop_fsync_desc, ffs_fsync }, /* fsync */
|
|
|
|
{ &vop_seek_desc, spec_seek }, /* seek */
|
|
|
|
{ &vop_remove_desc, spec_remove }, /* remove */
|
|
|
|
{ &vop_link_desc, spec_link }, /* link */
|
|
|
|
{ &vop_rename_desc, spec_rename }, /* rename */
|
|
|
|
{ &vop_mkdir_desc, spec_mkdir }, /* mkdir */
|
|
|
|
{ &vop_rmdir_desc, spec_rmdir }, /* rmdir */
|
|
|
|
{ &vop_symlink_desc, spec_symlink }, /* symlink */
|
|
|
|
{ &vop_readdir_desc, spec_readdir }, /* readdir */
|
|
|
|
{ &vop_readlink_desc, spec_readlink }, /* readlink */
|
|
|
|
{ &vop_abortop_desc, spec_abortop }, /* abortop */
|
|
|
|
{ &vop_inactive_desc, ufs_inactive }, /* inactive */
|
|
|
|
{ &vop_reclaim_desc, ffs_reclaim }, /* reclaim */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_lock_desc, ffs_lock }, /* lock */
|
|
|
|
{ &vop_unlock_desc, ffs_unlock }, /* unlock */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_bmap_desc, spec_bmap }, /* bmap */
|
|
|
|
{ &vop_strategy_desc, spec_strategy }, /* strategy */
|
|
|
|
{ &vop_print_desc, ufs_print }, /* print */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_islocked_desc, ffs_islocked }, /* islocked */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_pathconf_desc, spec_pathconf }, /* pathconf */
|
|
|
|
{ &vop_advlock_desc, spec_advlock }, /* advlock */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_bwrite_desc, vn_bwrite }, /* bwrite */
|
2001-08-17 09:54:36 +04:00
|
|
|
{ &vop_getpages_desc, spec_getpages }, /* getpages */
|
|
|
|
{ &vop_putpages_desc, spec_putpages }, /* putpages */
|
2005-08-28 23:37:58 +04:00
|
|
|
{ &vop_openextattr_desc, ffs_openextattr }, /* openextattr */
|
|
|
|
{ &vop_closeextattr_desc, ffs_closeextattr }, /* closeextattr */
|
|
|
|
{ &vop_getextattr_desc, ffs_getextattr }, /* getextattr */
|
|
|
|
{ &vop_setextattr_desc, ffs_setextattr }, /* setextattr */
|
|
|
|
{ &vop_listextattr_desc, ffs_listextattr }, /* listextattr */
|
|
|
|
{ &vop_deleteextattr_desc, ffs_deleteextattr }, /* deleteextattr */
|
2000-11-27 11:39:39 +03:00
|
|
|
{ NULL, NULL }
|
1994-06-08 15:41:58 +04:00
|
|
|
};
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc ffs_specop_opv_desc =
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &ffs_specop_p, ffs_specop_entries };
|
|
|
|
|
2005-08-31 02:01:12 +04:00
|
|
|
int (**ffs_fifoop_p)(void *);
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_entry_desc ffs_fifoop_entries[] = {
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_default_desc, vn_default_error },
|
|
|
|
{ &vop_lookup_desc, fifo_lookup }, /* lookup */
|
|
|
|
{ &vop_create_desc, fifo_create }, /* create */
|
|
|
|
{ &vop_mknod_desc, fifo_mknod }, /* mknod */
|
|
|
|
{ &vop_open_desc, fifo_open }, /* open */
|
|
|
|
{ &vop_close_desc, ufsfifo_close }, /* close */
|
|
|
|
{ &vop_access_desc, ufs_access }, /* access */
|
|
|
|
{ &vop_getattr_desc, ufs_getattr }, /* getattr */
|
|
|
|
{ &vop_setattr_desc, ufs_setattr }, /* setattr */
|
|
|
|
{ &vop_read_desc, ufsfifo_read }, /* read */
|
|
|
|
{ &vop_write_desc, ufsfifo_write }, /* write */
|
1994-12-13 23:14:30 +03:00
|
|
|
{ &vop_lease_desc, fifo_lease_check }, /* lease */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_ioctl_desc, fifo_ioctl }, /* ioctl */
|
1999-08-04 00:19:16 +04:00
|
|
|
{ &vop_fcntl_desc, ufs_fcntl }, /* fcntl */
|
1996-09-07 16:40:22 +04:00
|
|
|
{ &vop_poll_desc, fifo_poll }, /* poll */
|
2002-10-23 13:10:23 +04:00
|
|
|
{ &vop_kqfilter_desc, fifo_kqfilter }, /* kqfilter */
|
1998-03-01 05:20:01 +03:00
|
|
|
{ &vop_revoke_desc, fifo_revoke }, /* revoke */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_mmap_desc, fifo_mmap }, /* mmap */
|
|
|
|
{ &vop_fsync_desc, ffs_fsync }, /* fsync */
|
|
|
|
{ &vop_seek_desc, fifo_seek }, /* seek */
|
|
|
|
{ &vop_remove_desc, fifo_remove }, /* remove */
|
|
|
|
{ &vop_link_desc, fifo_link }, /* link */
|
|
|
|
{ &vop_rename_desc, fifo_rename }, /* rename */
|
|
|
|
{ &vop_mkdir_desc, fifo_mkdir }, /* mkdir */
|
|
|
|
{ &vop_rmdir_desc, fifo_rmdir }, /* rmdir */
|
|
|
|
{ &vop_symlink_desc, fifo_symlink }, /* symlink */
|
|
|
|
{ &vop_readdir_desc, fifo_readdir }, /* readdir */
|
|
|
|
{ &vop_readlink_desc, fifo_readlink }, /* readlink */
|
|
|
|
{ &vop_abortop_desc, fifo_abortop }, /* abortop */
|
|
|
|
{ &vop_inactive_desc, ufs_inactive }, /* inactive */
|
|
|
|
{ &vop_reclaim_desc, ffs_reclaim }, /* reclaim */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_lock_desc, ffs_lock }, /* lock */
|
|
|
|
{ &vop_unlock_desc, ffs_unlock }, /* unlock */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_bmap_desc, fifo_bmap }, /* bmap */
|
|
|
|
{ &vop_strategy_desc, fifo_strategy }, /* strategy */
|
|
|
|
{ &vop_print_desc, ufs_print }, /* print */
|
2007-08-09 13:22:34 +04:00
|
|
|
{ &vop_islocked_desc, ffs_islocked }, /* islocked */
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &vop_pathconf_desc, fifo_pathconf }, /* pathconf */
|
|
|
|
{ &vop_advlock_desc, fifo_advlock }, /* advlock */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_bwrite_desc, vn_bwrite }, /* bwrite */
|
2001-09-23 02:35:18 +04:00
|
|
|
{ &vop_putpages_desc, fifo_putpages }, /* putpages */
|
2005-08-28 23:37:58 +04:00
|
|
|
{ &vop_openextattr_desc, ffs_openextattr }, /* openextattr */
|
|
|
|
{ &vop_closeextattr_desc, ffs_closeextattr }, /* closeextattr */
|
|
|
|
{ &vop_getextattr_desc, ffs_getextattr }, /* getextattr */
|
|
|
|
{ &vop_setextattr_desc, ffs_setextattr }, /* setextattr */
|
|
|
|
{ &vop_listextattr_desc, ffs_listextattr }, /* listextattr */
|
|
|
|
{ &vop_deleteextattr_desc, ffs_deleteextattr }, /* deleteextattr */
|
2000-11-27 11:39:39 +03:00
|
|
|
{ NULL, NULL }
|
1994-06-08 15:41:58 +04:00
|
|
|
};
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc ffs_fifoop_opv_desc =
|
1994-06-08 15:41:58 +04:00
|
|
|
{ &ffs_fifoop_p, ffs_fifoop_entries };
|
|
|
|
|
|
|
|
#include <ufs/ufs/ufs_readwrite.c>
|
|
|
|
|
2000-09-20 02:04:08 +04:00
|
|
|
int
|
2005-07-15 09:01:16 +04:00
|
|
|
ffs_fsync(void *v)
|
2000-09-20 02:04:08 +04:00
|
|
|
{
|
|
|
|
struct vop_fsync_args /* {
|
|
|
|
struct vnode *a_vp;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2000-09-20 02:04:08 +04:00
|
|
|
int a_flags;
|
2001-11-08 07:51:05 +03:00
|
|
|
off_t a_offlo;
|
|
|
|
off_t a_offhi;
|
2005-12-11 15:16:03 +03:00
|
|
|
struct lwp *a_l;
|
2000-09-20 02:04:08 +04:00
|
|
|
} */ *ap = v;
|
2000-11-27 11:39:39 +03:00
|
|
|
struct buf *bp;
|
2000-09-20 02:04:08 +04:00
|
|
|
int s, num, error, i;
|
|
|
|
struct indir ia[NIADDR + 1];
|
|
|
|
int bsize;
|
2001-11-06 10:11:29 +03:00
|
|
|
daddr_t blk_high;
|
2000-09-20 02:04:08 +04:00
|
|
|
struct vnode *vp;
|
|
|
|
|
2007-01-19 17:49:08 +03:00
|
|
|
vp = ap->a_vp;
|
|
|
|
|
2007-05-17 11:26:21 +04:00
|
|
|
fstrans_start(vp->v_mount, FSTRANS_LAZY);
|
2000-09-20 02:04:08 +04:00
|
|
|
/*
|
|
|
|
* XXX no easy way to sync a range in a file with softdep.
|
|
|
|
*/
|
2007-01-19 17:49:08 +03:00
|
|
|
if ((ap->a_offlo == 0 && ap->a_offhi == 0) || DOINGSOFTDEP(vp) ||
|
|
|
|
(vp->v_type != VREG)) {
|
|
|
|
error = ffs_full_fsync(v);
|
|
|
|
goto out;
|
|
|
|
}
|
2000-09-20 02:04:08 +04:00
|
|
|
|
2007-01-19 17:49:08 +03:00
|
|
|
bsize = vp->v_mount->mnt_stat.f_iosize;
|
2000-09-20 02:04:08 +04:00
|
|
|
blk_high = ap->a_offhi / bsize;
|
|
|
|
if (ap->a_offhi % bsize != 0)
|
|
|
|
blk_high++;
|
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* First, flush all pages in range.
|
2000-09-20 02:04:08 +04:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2003-11-08 09:00:39 +03:00
|
|
|
simple_lock(&vp->v_interlock);
|
|
|
|
error = VOP_PUTPAGES(vp, trunc_page(ap->a_offlo),
|
|
|
|
round_page(ap->a_offhi), PGO_CLEANIT |
|
|
|
|
((ap->a_flags & FSYNC_WAIT) ? PGO_SYNCIO : 0));
|
|
|
|
if (error) {
|
2007-01-19 17:49:08 +03:00
|
|
|
goto out;
|
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
|
|
|
}
|
2000-09-20 02:04:08 +04:00
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* Then, flush indirect blocks.
|
2000-09-20 02:04:08 +04:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2001-09-26 09:25:03 +04:00
|
|
|
s = splbio();
|
2003-10-25 23:52:21 +04:00
|
|
|
if (blk_high >= NDADDR) {
|
2000-09-20 02:04:08 +04:00
|
|
|
error = ufs_getlbns(vp, blk_high, ia, &num);
|
2001-09-26 10:20:50 +04:00
|
|
|
if (error) {
|
|
|
|
splx(s);
|
2007-01-19 17:49:08 +03:00
|
|
|
goto out;
|
2001-09-26 10:20:50 +04:00
|
|
|
}
|
2000-09-20 02:04:08 +04:00
|
|
|
for (i = 0; i < num; i++) {
|
2000-11-27 11:39:39 +03:00
|
|
|
bp = incore(vp, ia[i].in_lbn);
|
2003-11-08 07:22:35 +03:00
|
|
|
if (bp != NULL) {
|
|
|
|
simple_lock(&bp->b_interlock);
|
|
|
|
if (!(bp->b_flags & B_BUSY) && (bp->b_flags & B_DELWRI)) {
|
|
|
|
bp->b_flags |= B_BUSY | B_VFLUSH;
|
|
|
|
simple_unlock(&bp->b_interlock);
|
|
|
|
splx(s);
|
|
|
|
bawrite(bp);
|
|
|
|
s = splbio();
|
|
|
|
} else {
|
|
|
|
simple_unlock(&bp->b_interlock);
|
|
|
|
}
|
2000-09-20 02:04:08 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ap->a_flags & FSYNC_WAIT) {
|
2003-02-06 00:38:38 +03:00
|
|
|
simple_lock(&global_v_numoutput_slock);
|
2000-09-20 02:04:08 +04:00
|
|
|
while (vp->v_numoutput > 0) {
|
2007-10-11 00:42:20 +04:00
|
|
|
vp->v_iflag |= VI_BWAIT;
|
2003-02-06 00:38:38 +03:00
|
|
|
ltsleep(&vp->v_numoutput, PRIBIO + 1, "fsync_range", 0,
|
|
|
|
&global_v_numoutput_slock);
|
2000-09-20 02:04:08 +04:00
|
|
|
}
|
2003-02-06 00:38:38 +03:00
|
|
|
simple_unlock(&global_v_numoutput_slock);
|
2000-09-20 02:04:08 +04:00
|
|
|
}
|
2000-10-24 18:43:32 +04:00
|
|
|
splx(s);
|
|
|
|
|
2005-11-02 15:38:58 +03:00
|
|
|
error = ffs_update(vp, NULL, NULL,
|
2003-11-15 04:19:38 +03:00
|
|
|
((ap->a_flags & (FSYNC_WAIT | FSYNC_DATAONLY)) == FSYNC_WAIT)
|
2005-01-26 02:55:20 +03:00
|
|
|
? UPDATE_WAIT : 0);
|
|
|
|
|
|
|
|
if (error == 0 && ap->a_flags & FSYNC_CACHE) {
|
|
|
|
int l = 0;
|
|
|
|
VOP_IOCTL(VTOI(vp)->i_devvp, DIOCCACHESYNC, &l, FWRITE,
|
2007-11-26 22:01:26 +03:00
|
|
|
curlwp->l_cred);
|
2005-01-26 02:55:20 +03:00
|
|
|
}
|
|
|
|
|
2007-01-19 17:49:08 +03:00
|
|
|
out:
|
|
|
|
fstrans_done(vp->v_mount);
|
2005-01-26 02:55:20 +03:00
|
|
|
return error;
|
2000-09-20 02:04:08 +04:00
|
|
|
}
|
|
|
|
|
1999-11-15 21:49:07 +03:00
|
|
|
/*
|
|
|
|
* Synch an open file.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
2000-09-20 02:04:08 +04:00
|
|
|
static int
|
2005-07-15 09:01:16 +04:00
|
|
|
ffs_full_fsync(void *v)
|
1999-11-15 21:49:07 +03:00
|
|
|
{
|
2000-05-29 21:12:06 +04:00
|
|
|
struct vop_fsync_args /* {
|
1999-11-15 21:49:07 +03:00
|
|
|
struct vnode *a_vp;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
1999-11-15 21:49:07 +03:00
|
|
|
int a_flags;
|
2001-11-08 07:51:05 +03:00
|
|
|
off_t a_offlo;
|
|
|
|
off_t a_offhi;
|
2005-12-11 15:16:03 +03:00
|
|
|
struct lwp *a_l;
|
1999-11-15 21:49:07 +03:00
|
|
|
} */ *ap = v;
|
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct buf *bp, *nbp;
|
2001-12-27 04:44:59 +03:00
|
|
|
int s, error, passes, skipmeta, inodedeps_only, waitfor;
|
1999-11-15 21:49:07 +03:00
|
|
|
|
|
|
|
if (vp->v_type == VBLK &&
|
|
|
|
vp->v_specmountpoint != NULL &&
|
|
|
|
(vp->v_specmountpoint->mnt_flag & MNT_SOFTDEP))
|
|
|
|
softdep_fsync_mountdev(vp);
|
2000-03-11 08:00:18 +03:00
|
|
|
|
2001-12-27 04:44:59 +03:00
|
|
|
inodedeps_only = DOINGSOFTDEP(vp) && (ap->a_flags & FSYNC_RECLAIM)
|
2007-07-20 20:46:43 +04:00
|
|
|
&& UVM_OBJ_IS_CLEAN(&vp->v_uobj) && LIST_EMPTY(&vp->v_dirtyblkhd);
|
2001-12-27 04:44:59 +03:00
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
/*
|
|
|
|
* Flush all dirty data associated with a vnode.
|
1999-11-15 21:49:07 +03:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2005-07-26 16:14:46 +04:00
|
|
|
if (vp->v_type == VREG || vp->v_type == VBLK) {
|
2001-11-08 07:51:05 +03:00
|
|
|
simple_lock(&vp->v_interlock);
|
|
|
|
error = VOP_PUTPAGES(vp, 0, 0, PGO_ALLPAGES | PGO_CLEANIT |
|
2007-01-19 17:49:08 +03:00
|
|
|
((ap->a_flags & FSYNC_WAIT) ? PGO_SYNCIO : 0) |
|
2007-01-29 18:42:50 +03:00
|
|
|
(fstrans_getstate(vp->v_mount) == FSTRANS_SUSPENDING ?
|
2007-01-19 17:49:08 +03:00
|
|
|
PGO_FREE : 0));
|
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
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
|
|
|
|
1999-11-15 21:49:07 +03:00
|
|
|
passes = NIADDR + 1;
|
|
|
|
skipmeta = 0;
|
2003-10-25 23:52:21 +04:00
|
|
|
if (ap->a_flags & FSYNC_WAIT)
|
1999-11-15 21:49:07 +03:00
|
|
|
skipmeta = 1;
|
|
|
|
s = splbio();
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-11-15 21:49:07 +03:00
|
|
|
loop:
|
2000-11-27 11:39:39 +03:00
|
|
|
LIST_FOREACH(bp, &vp->v_dirtyblkhd, b_vnbufs)
|
1999-11-15 21:49:07 +03:00
|
|
|
bp->b_flags &= ~B_SCANNED;
|
2000-05-29 21:12:06 +04:00
|
|
|
for (bp = LIST_FIRST(&vp->v_dirtyblkhd); bp; bp = nbp) {
|
|
|
|
nbp = LIST_NEXT(bp, b_vnbufs);
|
2003-11-08 07:39:00 +03:00
|
|
|
simple_lock(&bp->b_interlock);
|
|
|
|
if (bp->b_flags & (B_BUSY | B_SCANNED)) {
|
|
|
|
simple_unlock(&bp->b_interlock);
|
1999-11-15 21:49:07 +03:00
|
|
|
continue;
|
2003-11-08 07:39:00 +03:00
|
|
|
}
|
1999-11-15 21:49:07 +03:00
|
|
|
if ((bp->b_flags & B_DELWRI) == 0)
|
|
|
|
panic("ffs_fsync: not dirty");
|
2003-11-08 07:39:00 +03:00
|
|
|
if (skipmeta && bp->b_lblkno < 0) {
|
|
|
|
simple_unlock(&bp->b_interlock);
|
1999-11-15 21:49:07 +03:00
|
|
|
continue;
|
2003-11-08 07:39:00 +03:00
|
|
|
}
|
|
|
|
simple_unlock(&bp->b_interlock);
|
1999-11-15 21:49:07 +03:00
|
|
|
bp->b_flags |= B_BUSY | B_VFLUSH | B_SCANNED;
|
|
|
|
splx(s);
|
|
|
|
/*
|
|
|
|
* On our final pass through, do all I/O synchronously
|
|
|
|
* so that we can find out if our flush is failing
|
|
|
|
* because of write errors.
|
|
|
|
*/
|
|
|
|
if (passes > 0 || !(ap->a_flags & FSYNC_WAIT))
|
|
|
|
(void) bawrite(bp);
|
|
|
|
else if ((error = bwrite(bp)) != 0)
|
|
|
|
return (error);
|
|
|
|
s = splbio();
|
|
|
|
/*
|
|
|
|
* Since we may have slept during the I/O, we need
|
|
|
|
* to start from a known point.
|
|
|
|
*/
|
2000-05-29 21:12:06 +04:00
|
|
|
nbp = LIST_FIRST(&vp->v_dirtyblkhd);
|
1999-11-15 21:49:07 +03:00
|
|
|
}
|
2003-10-25 23:52:21 +04:00
|
|
|
if (skipmeta) {
|
1999-11-15 21:49:07 +03:00
|
|
|
skipmeta = 0;
|
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
if (ap->a_flags & FSYNC_WAIT) {
|
2003-02-06 00:38:38 +03:00
|
|
|
simple_lock(&global_v_numoutput_slock);
|
1999-11-15 21:49:07 +03:00
|
|
|
while (vp->v_numoutput) {
|
2007-10-11 00:42:20 +04:00
|
|
|
vp->v_iflag |= VI_BWAIT;
|
2003-02-06 00:38:38 +03:00
|
|
|
(void) ltsleep(&vp->v_numoutput, PRIBIO + 1,
|
|
|
|
"ffsfsync", 0, &global_v_numoutput_slock);
|
1999-11-15 21:49:07 +03:00
|
|
|
}
|
2003-02-06 00:38:38 +03:00
|
|
|
simple_unlock(&global_v_numoutput_slock);
|
2000-05-29 21:12:06 +04:00
|
|
|
splx(s);
|
1999-11-15 21:49:07 +03:00
|
|
|
|
2005-02-27 01:31:44 +03:00
|
|
|
/*
|
1999-11-15 21:49:07 +03:00
|
|
|
* Ensure that any filesystem metadata associated
|
|
|
|
* with the vnode has been written.
|
|
|
|
*/
|
2000-05-29 22:53:35 +04:00
|
|
|
if ((error = softdep_sync_metadata(ap)) != 0)
|
1999-11-15 21:49:07 +03:00
|
|
|
return (error);
|
|
|
|
|
2000-05-29 21:12:06 +04:00
|
|
|
s = splbio();
|
|
|
|
if (!LIST_EMPTY(&vp->v_dirtyblkhd)) {
|
|
|
|
/*
|
|
|
|
* Block devices associated with filesystems may
|
|
|
|
* have new I/O requests posted for them even if
|
|
|
|
* the vnode is locked, so no amount of trying will
|
|
|
|
* get them clean. Thus we give block devices a
|
|
|
|
* good effort, then just give up. For all other file
|
|
|
|
* types, go around and try again until it is clean.
|
|
|
|
*/
|
|
|
|
if (passes > 0) {
|
|
|
|
passes--;
|
|
|
|
goto loop;
|
|
|
|
}
|
1999-11-15 21:49:07 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
2000-05-29 21:12:06 +04:00
|
|
|
if (vp->v_type != VBLK)
|
|
|
|
vprint("ffs_fsync: dirty", vp);
|
1999-11-15 21:49:07 +03:00
|
|
|
#endif
|
2000-05-29 21:12:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
splx(s);
|
2001-12-27 04:44:59 +03:00
|
|
|
|
|
|
|
if (inodedeps_only)
|
|
|
|
waitfor = 0;
|
|
|
|
else
|
|
|
|
waitfor = (ap->a_flags & FSYNC_WAIT) ? UPDATE_WAIT : 0;
|
2005-11-02 15:38:58 +03:00
|
|
|
error = ffs_update(vp, NULL, NULL, waitfor);
|
2005-01-26 02:55:20 +03:00
|
|
|
|
2005-01-27 05:16:42 +03:00
|
|
|
if (error == 0 && ap->a_flags & FSYNC_CACHE) {
|
2005-01-26 02:55:20 +03:00
|
|
|
int i = 0;
|
|
|
|
VOP_IOCTL(VTOI(vp)->i_devvp, DIOCCACHESYNC, &i, FWRITE,
|
2007-11-26 22:01:26 +03:00
|
|
|
curlwp->l_cred);
|
2005-01-26 02:55:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
1999-11-15 21:49:07 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/*
|
|
|
|
* Reclaim an inode so that it can be used for other purposes.
|
|
|
|
*/
|
|
|
|
int
|
2005-07-15 09:01:16 +04:00
|
|
|
ffs_reclaim(void *v)
|
1996-02-10 01:22:18 +03:00
|
|
|
{
|
1994-06-08 15:41:58 +04:00
|
|
|
struct vop_reclaim_args /* {
|
|
|
|
struct vnode *a_vp;
|
2005-12-11 15:16:03 +03:00
|
|
|
struct lwp *a_l;
|
1996-02-10 01:22:18 +03:00
|
|
|
} */ *ap = v;
|
2000-03-30 16:41:09 +04:00
|
|
|
struct vnode *vp = ap->a_vp;
|
2003-04-02 14:39:19 +04:00
|
|
|
struct inode *ip = VTOI(vp);
|
2007-01-19 17:49:08 +03:00
|
|
|
struct mount *mp = vp->v_mount;
|
2003-04-02 14:39:19 +04:00
|
|
|
struct ufsmount *ump = ip->i_ump;
|
1994-06-08 15:41:58 +04:00
|
|
|
int error;
|
|
|
|
|
2007-05-17 11:26:21 +04:00
|
|
|
fstrans_start(mp, FSTRANS_LAZY);
|
2007-11-26 22:01:26 +03:00
|
|
|
if ((error = ufs_reclaim(vp)) != 0) {
|
2007-01-19 17:49:08 +03:00
|
|
|
fstrans_done(mp);
|
1994-06-08 15:41:58 +04:00
|
|
|
return (error);
|
2007-01-19 17:49:08 +03:00
|
|
|
}
|
2003-04-16 11:38:25 +04:00
|
|
|
if (ip->i_din.ffs1_din != NULL) {
|
|
|
|
if (ump->um_fstype == UFS1)
|
|
|
|
pool_put(&ffs_dinode1_pool, ip->i_din.ffs1_din);
|
|
|
|
else
|
|
|
|
pool_put(&ffs_dinode2_pool, ip->i_din.ffs2_din);
|
|
|
|
}
|
1998-09-01 07:11:08 +04:00
|
|
|
/*
|
|
|
|
* XXX MFS ends up here, too, to free an inode. Should we create
|
|
|
|
* XXX a separate pool for MFS inodes?
|
|
|
|
*/
|
2007-02-20 19:21:03 +03:00
|
|
|
genfs_node_destroy(vp);
|
1998-09-01 07:11:08 +04:00
|
|
|
pool_put(&ffs_inode_pool, vp->v_data);
|
1994-06-08 15:41:58 +04:00
|
|
|
vp->v_data = NULL;
|
2007-01-19 17:49:08 +03:00
|
|
|
fstrans_done(mp);
|
1994-06-08 15:41:58 +04:00
|
|
|
return (0);
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2007-06-05 16:31:30 +04:00
|
|
|
#if 0
|
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
|
|
|
int
|
|
|
|
ffs_getpages(void *v)
|
|
|
|
{
|
|
|
|
struct vop_getpages_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
voff_t a_offset;
|
|
|
|
struct vm_page **a_m;
|
|
|
|
int *a_count;
|
|
|
|
int a_centeridx;
|
|
|
|
vm_prot_t a_access_type;
|
|
|
|
int a_advice;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct inode *ip = VTOI(vp);
|
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* don't allow a softdep write to create pages for only part of a block.
|
|
|
|
* the dependency tracking requires that all pages be in memory for
|
|
|
|
* a block involved in a dependency.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ap->a_flags & PGO_OVERWRITE &&
|
|
|
|
(blkoff(fs, ap->a_offset) != 0 ||
|
|
|
|
blkoff(fs, *ap->a_count << PAGE_SHIFT) != 0) &&
|
|
|
|
DOINGSOFTDEP(ap->a_vp)) {
|
|
|
|
if ((ap->a_flags & PGO_LOCKED) == 0) {
|
2001-11-08 07:51:05 +03:00
|
|
|
simple_unlock(&vp->v_interlock);
|
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
|
|
|
}
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
return genfs_getpages(v);
|
|
|
|
}
|
2007-06-05 16:31:30 +04:00
|
|
|
#endif
|
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
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
/*
|
|
|
|
* Return the last logical file offset that should be written for this file
|
|
|
|
* if we're doing a write that ends at "size".
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
ffs_gop_size(struct vnode *vp, off_t size, off_t *eobp, int flags)
|
2000-11-27 11:39: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
|
|
|
struct inode *ip = VTOI(vp);
|
2000-11-27 11:39:39 +03:00
|
|
|
struct fs *fs = ip->i_fs;
|
2003-01-25 00:55:02 +03:00
|
|
|
daddr_t olbn, nlbn;
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2003-04-02 14:39:19 +04:00
|
|
|
olbn = lblkno(fs, ip->i_size);
|
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
|
|
|
nlbn = lblkno(fs, size);
|
2000-11-27 11:39:39 +03:00
|
|
|
if (nlbn < NDADDR && olbn <= nlbn) {
|
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
|
|
|
*eobp = fragroundup(fs, size);
|
2000-11-27 11:39:39 +03:00
|
|
|
} else {
|
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
|
|
|
*eobp = blkroundup(fs, size);
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
|
|
|
}
|
2005-08-28 23:37:58 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
ffs_openextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_openextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct inode *ip = VTOI(ap->a_vp);
|
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
/* Not supported for UFS1 file systems. */
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC)
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ffs_closeextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_closeextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_commit;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct inode *ip = VTOI(ap->a_vp);
|
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
/* Not supported for UFS1 file systems. */
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC)
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ffs_getextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_getextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_attrnamespace;
|
|
|
|
const char *a_name;
|
|
|
|
struct uio *a_uio;
|
|
|
|
size_t *a_size;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
2007-01-19 17:49:08 +03:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct inode *ip = VTOI(vp);
|
2005-08-28 23:37:58 +04:00
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC) {
|
|
|
|
#ifdef UFS_EXTATTR
|
2007-01-19 17:49:08 +03:00
|
|
|
int error;
|
|
|
|
|
2007-05-17 11:26:21 +04:00
|
|
|
fstrans_start(vp->v_mount, FSTRANS_SHARED);
|
2007-01-19 17:49:08 +03:00
|
|
|
error = ufs_getextattr(ap);
|
|
|
|
fstrans_done(vp->v_mount);
|
|
|
|
return error;
|
2005-08-28 23:37:58 +04:00
|
|
|
#else
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ffs_setextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_setextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_attrnamespace;
|
|
|
|
const char *a_name;
|
|
|
|
struct uio *a_uio;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
2007-01-19 17:49:08 +03:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct inode *ip = VTOI(vp);
|
2005-08-28 23:37:58 +04:00
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC) {
|
|
|
|
#ifdef UFS_EXTATTR
|
2007-01-19 17:49:08 +03:00
|
|
|
int error;
|
|
|
|
|
2007-05-17 11:26:21 +04:00
|
|
|
fstrans_start(vp->v_mount, FSTRANS_SHARED);
|
2007-01-19 17:49:08 +03:00
|
|
|
error = ufs_setextattr(ap);
|
|
|
|
fstrans_done(vp->v_mount);
|
|
|
|
return error;
|
2005-08-28 23:37:58 +04:00
|
|
|
#else
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ffs_listextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_listextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_attrnamespace;
|
|
|
|
struct uio *a_uio;
|
|
|
|
size_t *a_size;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct inode *ip = VTOI(ap->a_vp);
|
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
/* Not supported for UFS1 file systems. */
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC)
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ffs_deleteextattr(void *v)
|
|
|
|
{
|
|
|
|
struct vop_deleteextattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_attrnamespace;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-08-28 23:37:58 +04:00
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap = v;
|
2007-01-19 17:49:08 +03:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct inode *ip = VTOI(vp);
|
2005-08-28 23:37:58 +04:00
|
|
|
struct fs *fs = ip->i_fs;
|
|
|
|
|
|
|
|
if (fs->fs_magic == FS_UFS1_MAGIC) {
|
|
|
|
#ifdef UFS_EXTATTR
|
2007-01-19 17:49:08 +03:00
|
|
|
int error;
|
|
|
|
|
2007-05-17 11:26:21 +04:00
|
|
|
fstrans_start(vp->v_mount, FSTRANS_SHARED);
|
2007-01-19 17:49:08 +03:00
|
|
|
error = ufs_deleteextattr(ap);
|
|
|
|
fstrans_done(vp->v_mount);
|
|
|
|
return error;
|
2005-08-28 23:37:58 +04:00
|
|
|
#else
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX Not implemented for UFS2 file systems. */
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
2007-08-09 13:22:34 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock the node.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ffs_lock(void *v)
|
|
|
|
{
|
|
|
|
struct vop_lock_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct mount *mp = vp->v_mount;
|
2007-08-21 13:27:33 +04:00
|
|
|
struct lock *lkp;
|
|
|
|
int flags = ap->a_flags;
|
|
|
|
int result;
|
2007-08-09 13:22:34 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fake lock during file system suspension.
|
|
|
|
*/
|
|
|
|
if ((vp->v_type == VREG || vp->v_type == VDIR) &&
|
|
|
|
fstrans_is_owner(mp) &&
|
|
|
|
fstrans_getstate(mp) == FSTRANS_SUSPENDING) {
|
2007-08-21 13:27:33 +04:00
|
|
|
if ((flags & LK_INTERLOCK) != 0)
|
2007-08-09 13:22:34 +04:00
|
|
|
simple_unlock(&vp->v_interlock);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-08-21 13:27:33 +04:00
|
|
|
|
|
|
|
if ((flags & LK_TYPE_MASK) == LK_DRAIN)
|
|
|
|
return (lockmgr(vp->v_vnlock, flags, &vp->v_interlock));
|
|
|
|
|
|
|
|
KASSERT((flags & ~(LK_SHARED | LK_EXCLUSIVE | LK_SLEEPFAIL |
|
|
|
|
LK_INTERLOCK | LK_NOWAIT | LK_SETRECURSE | LK_CANRECURSE)) == 0);
|
|
|
|
for (;;) {
|
|
|
|
if ((flags & LK_INTERLOCK) == 0) {
|
|
|
|
simple_lock(&vp->v_interlock);
|
|
|
|
flags |= LK_INTERLOCK;
|
|
|
|
}
|
|
|
|
lkp = vp->v_vnlock;
|
|
|
|
result = lockmgr(lkp, flags, &vp->v_interlock);
|
|
|
|
if (lkp == vp->v_vnlock || result != 0)
|
|
|
|
return result;
|
|
|
|
/*
|
|
|
|
* Apparent success, except that the vnode mutated between
|
|
|
|
* snapshot file vnode and regular file vnode while this
|
|
|
|
* thread slept. The lock currently held is not the right
|
|
|
|
* lock. Release it, and try to get the new lock.
|
|
|
|
*/
|
|
|
|
(void) lockmgr(lkp, LK_RELEASE, NULL);
|
|
|
|
flags &= ~LK_INTERLOCK;
|
|
|
|
}
|
2007-08-09 13:22:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unlock the node.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ffs_unlock(void *v)
|
|
|
|
{
|
|
|
|
struct vop_unlock_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct mount *mp = vp->v_mount;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fake unlock during file system suspension.
|
|
|
|
*/
|
|
|
|
if ((vp->v_type == VREG || vp->v_type == VDIR) &&
|
|
|
|
fstrans_is_owner(mp) &&
|
|
|
|
fstrans_getstate(mp) == FSTRANS_SUSPENDING) {
|
|
|
|
if ((ap->a_flags & LK_INTERLOCK) != 0)
|
|
|
|
simple_unlock(&vp->v_interlock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return (lockmgr(vp->v_vnlock, ap->a_flags | LK_RELEASE,
|
|
|
|
&vp->v_interlock));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return whether or not the node is locked.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ffs_islocked(void *v)
|
|
|
|
{
|
|
|
|
struct vop_islocked_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
|
|
|
|
return (lockstatus(vp->v_vnlock));
|
|
|
|
}
|