]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/vfs/vfs_support.h
xnu-4570.31.3.tar.gz
[apple/xnu.git] / bsd / vfs / vfs_support.h
index 19e2e42eb50aad6208ccb0dd88a2807f76f2ccd4..ae94ff643f9d972a967fad8cad0ea7311e64b9cc 100644 (file)
@@ -1,16 +1,19 @@
 /*
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
  *
  *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
+ * 
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
  * 
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * 
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
@@ -20,7 +23,7 @@
  * Please see the License for the specific language governing rights and
  * limitations under the License.
  * 
  * Please see the License for the specific language governing rights and
  * limitations under the License.
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
  * Copyright (c) 1998 Apple Computer, Inc.  All rights reserved.
  */
 /*
  * Copyright (c) 1998 Apple Computer, Inc.  All rights reserved.
 #ifndef        _VFS_VFS_SUPPORT_H_
 #define        _VFS_VFS_SUPPORT_H_
 
 #ifndef        _VFS_VFS_SUPPORT_H_
 #define        _VFS_VFS_SUPPORT_H_
 
+#include <sys/cdefs.h>
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/namei.h>
-#include <sys/resourcevar.h>
 #include <sys/kernel.h>
 #include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/kernel.h>
 #include <sys/file.h>
 #include <sys/stat.h>
-#include <sys/buf.h>
 #include <sys/proc.h>
 #include <sys/conf.h>
 #include <sys/mount.h>
 #include <sys/vnode.h>
 #include <sys/proc.h>
 #include <sys/conf.h>
 #include <sys/mount.h>
 #include <sys/vnode.h>
+#include <sys/vnode_if.h>
 #include <sys/malloc.h>
 #include <sys/dirent.h>
 #include <sys/malloc.h>
 #include <sys/dirent.h>
-#include <vm/vm_pageout.h>
-
-extern int nop_create(struct vop_create_args *ap);
-extern int err_create(struct vop_create_args *ap);
-
-extern int nop_whiteout(struct vop_whiteout_args *ap);
-extern int err_whiteout(struct vop_whiteout_args *ap);
-
-extern int nop_mknod(struct vop_mknod_args *ap);
-extern int err_mknod(struct vop_mknod_args *ap);
-
-extern int nop_mkcomplex(struct vop_mkcomplex_args *ap);
-extern int err_mkcomplex(struct vop_mkcomplex_args *ap);
-
-extern int nop_open(struct vop_open_args *ap);
-extern int err_open(struct vop_open_args *ap);
-
-extern int nop_close(struct vop_close_args *ap);
-extern int err_close(struct vop_close_args *ap);
-
-extern int nop_access(struct vop_access_args *ap);
-extern int err_access(struct vop_access_args *ap);
-
-extern int nop_getattr(struct vop_getattr_args *ap);
-extern int err_getattr(struct vop_getattr_args *ap);
-
-extern int nop_setattr(struct vop_setattr_args *ap);
-extern int err_setattr(struct vop_setattr_args *ap);
-
-extern int nop_getattrlist(struct vop_getattrlist_args *ap);
-extern int err_getattrlist(struct vop_getattrlist_args *ap);
-
-extern int nop_setattrlist(struct vop_setattrlist_args *ap);
-extern int err_setattrlist(struct vop_setattrlist_args *ap);
-
-extern int nop_read(struct vop_read_args *ap);
-extern int err_read(struct vop_read_args *ap);
-
-extern int nop_write(struct vop_write_args *ap);
-extern int err_write(struct vop_write_args *ap);
-
-extern int nop_lease(struct vop_lease_args *ap);
-extern int err_lease(struct vop_lease_args *ap);
-
-extern int nop_ioctl(struct vop_ioctl_args *ap);
-extern int err_ioctl(struct vop_ioctl_args *ap);
-
-extern int nop_select(struct vop_select_args *ap);
-extern int err_select(struct vop_select_args *ap);
-
-extern int nop_exchange(struct vop_exchange_args *ap);
-extern int err_exchange(struct vop_exchange_args *ap);
 
 
-extern int nop_revoke(struct vop_revoke_args *ap);
-extern int err_revoke(struct vop_revoke_args *ap);
+__BEGIN_DECLS
+extern int nop_create(struct vnop_create_args *ap);
+extern int err_create(struct vnop_create_args *ap);
 
 
-extern int nop_mmap(struct vop_mmap_args *ap);
-extern int err_mmap(struct vop_mmap_args *ap);
+extern int nop_whiteout(struct vnop_whiteout_args *ap);
+extern int err_whiteout(struct vnop_whiteout_args *ap);
 
 
-extern int nop_fsync(struct vop_fsync_args *ap);
-extern int err_fsync(struct vop_fsync_args *ap);
+extern int nop_mknod(struct vnop_mknod_args *ap);
+extern int err_mknod(struct vnop_mknod_args *ap);
 
 
-extern int nop_seek(struct vop_seek_args *ap);
-extern int err_seek(struct vop_seek_args *ap);
+extern int nop_open(struct vnop_open_args *ap);
+extern int err_open(struct vnop_open_args *ap);
 
 
-extern int nop_remove(struct vop_remove_args *ap);
-extern int err_remove(struct vop_remove_args *ap);
+extern int nop_close(struct vnop_close_args *ap);
+extern int err_close(struct vnop_close_args *ap);
 
 
-extern int nop_link(struct vop_link_args *ap);
-extern int err_link(struct vop_link_args *ap);
+extern int nop_access(struct vnop_access_args *ap);
+extern int err_access(struct vnop_access_args *ap);
 
 
-extern int nop_rename(struct vop_rename_args *ap);
-extern int err_rename(struct vop_rename_args *ap);
+extern int nop_getattr(struct vnop_getattr_args *ap);
+extern int err_getattr(struct vnop_getattr_args *ap);
 
 
-extern int nop_mkdir(struct vop_mkdir_args *ap);
-extern int err_mkdir(struct vop_mkdir_args *ap);
+extern int nop_setattr(struct vnop_setattr_args *ap);
+extern int err_setattr(struct vnop_setattr_args *ap);
 
 
-extern int nop_rmdir(struct vop_rmdir_args *ap);
-extern int err_rmdir(struct vop_rmdir_args *ap);
+extern int nop_read(struct vnop_read_args *ap);
+extern int err_read(struct vnop_read_args *ap);
 
 
-extern int nop_symlink(struct vop_symlink_args *ap);
-extern int err_symlink(struct vop_symlink_args *ap);
+extern int nop_write(struct vnop_write_args *ap);
+extern int err_write(struct vnop_write_args *ap);
 
 
-extern int nop_readdir(struct vop_readdir_args *ap);
-extern int err_readdir(struct vop_readdir_args *ap);
+extern int nop_ioctl(struct vnop_ioctl_args *ap);
+extern int err_ioctl(struct vnop_ioctl_args *ap);
 
 
-extern int nop_readdirattr(struct vop_readdirattr_args *ap);
-extern int err_readdirattr(struct vop_readdirattr_args *ap);
+extern int nop_select(struct vnop_select_args *ap);
+extern int err_select(struct vnop_select_args *ap);
 
 
-extern int nop_readlink(struct vop_readlink_args *ap);
-extern int err_readlink(struct vop_readlink_args *ap);
+extern int nop_exchange(struct vnop_exchange_args *ap);
+extern int err_exchange(struct vnop_exchange_args *ap);
 
 
-extern int nop_abortop(struct vop_abortop_args *ap);
-extern int err_abortop(struct vop_abortop_args *ap);
+extern int nop_revoke(struct vnop_revoke_args *ap);
+extern int err_revoke(struct vnop_revoke_args *ap);
 
 
-extern int nop_inactive(struct vop_inactive_args *ap);
-extern int err_inactive(struct vop_inactive_args *ap);
+extern int nop_mmap(struct vnop_mmap_args *ap);
+extern int err_mmap(struct vnop_mmap_args *ap);
 
 
-extern int nop_reclaim(struct vop_reclaim_args *ap);
-extern int err_reclaim(struct vop_reclaim_args *ap);
+extern int nop_fsync(struct vnop_fsync_args *ap);
+extern int err_fsync(struct vnop_fsync_args *ap);
 
 
-extern int nop_lock(struct vop_lock_args *ap);
-extern int err_lock(struct vop_lock_args *ap);
+extern int nop_remove(struct vnop_remove_args *ap);
+extern int err_remove(struct vnop_remove_args *ap);
 
 
-extern int nop_unlock(struct vop_unlock_args *ap);
-extern int err_unlock(struct vop_unlock_args *ap);
+extern int nop_link(struct vnop_link_args *ap);
+extern int err_link(struct vnop_link_args *ap);
 
 
-extern int nop_bmap(struct vop_bmap_args *ap);
-extern int err_bmap(struct vop_bmap_args *ap);
+extern int nop_rename(struct vnop_rename_args *ap);
+extern int err_rename(struct vnop_rename_args *ap);
 
 
-extern int nop_strategy(struct vop_strategy_args *ap);
-extern int err_strategy(struct vop_strategy_args *ap);
+extern int nop_mkdir(struct vnop_mkdir_args *ap);
+extern int err_mkdir(struct vnop_mkdir_args *ap);
 
 
-extern int nop_print(struct vop_print_args *ap);
-extern int err_print(struct vop_print_args *ap);
+extern int nop_rmdir(struct vnop_rmdir_args *ap);
+extern int err_rmdir(struct vnop_rmdir_args *ap);
 
 
-extern int nop_islocked(struct vop_islocked_args *ap);
-extern int err_islocked(struct vop_islocked_args *ap);
+extern int nop_symlink(struct vnop_symlink_args *ap);
+extern int err_symlink(struct vnop_symlink_args *ap);
 
 
-extern int nop_pathconf(struct vop_pathconf_args *ap);
-extern int err_pathconf(struct vop_pathconf_args *ap);
+extern int nop_readdir(struct vnop_readdir_args *ap);
+extern int err_readdir(struct vnop_readdir_args *ap);
 
 
-extern int nop_advlock(struct vop_advlock_args *ap);
-extern int err_advlock(struct vop_advlock_args *ap);
+extern int nop_readdirattr(struct vnop_readdirattr_args *ap);
+extern int err_readdirattr(struct vnop_readdirattr_args *ap);
 
 
-extern int nop_blkatoff(struct vop_blkatoff_args *ap);
-extern int err_blkatoff(struct vop_blkatoff_args *ap);
+extern int nop_readlink(struct vnop_readlink_args *ap);
+extern int err_readlink(struct vnop_readlink_args *ap);
 
 
-extern int nop_valloc(struct vop_valloc_args *ap);
-extern int err_valloc(struct vop_valloc_args *ap);
+extern int nop_inactive(struct vnop_inactive_args *ap);
+extern int err_inactive(struct vnop_inactive_args *ap);
 
 
-extern int nop_reallocblks(struct vop_reallocblks_args *ap);
-extern int err_reallocblks(struct vop_reallocblks_args *ap);
+extern int nop_reclaim(struct vnop_reclaim_args *ap);
+extern int err_reclaim(struct vnop_reclaim_args *ap);
 
 
-extern int nop_vfree(struct vop_vfree_args *ap);
-extern int err_vfree(struct vop_vfree_args *ap);
 
 
-extern int nop_truncate(struct vop_truncate_args *ap);
-extern int err_truncate(struct vop_truncate_args *ap);
+extern int nop_strategy(struct vnop_strategy_args *ap);
+extern int err_strategy(struct vnop_strategy_args *ap);
 
 
-extern int nop_allocate(struct vop_allocate_args *ap);
-extern int err_allocate(struct vop_allocate_args *ap);
+extern int nop_pathconf(struct vnop_pathconf_args *ap);
+extern int err_pathconf(struct vnop_pathconf_args *ap);
 
 
-extern int nop_update(struct vop_update_args *ap);
-extern int err_update(struct vop_update_args *ap);
+extern int nop_advlock(struct vnop_advlock_args *ap);
+extern int err_advlock(struct vnop_advlock_args *ap);
 
 
-extern int nop_pgrd(struct vop_pgrd_args *ap);
-extern int err_pgrd(struct vop_pgrd_args *ap);
 
 
-extern int nop_pgwr(struct vop_pgwr_args *ap);
-extern int err_pgwr(struct vop_pgwr_args *ap);
+extern int nop_allocate(struct vnop_allocate_args *ap);
+extern int err_allocate(struct vnop_allocate_args *ap);
 
 
-extern int nop_bwrite(struct vop_bwrite_args *ap);
-extern int err_bwrite(struct vop_bwrite_args *ap);
+extern int nop_bwrite(struct vnop_bwrite_args *ap);
+extern int err_bwrite(struct vnop_bwrite_args *ap);
 
 
-extern int nop_pagein(struct vop_pagein_args *ap);
-extern int err_pagein(struct vop_pagein_args *ap);
+extern int nop_pagein(struct vnop_pagein_args *ap);
+extern int err_pagein(struct vnop_pagein_args *ap);
 
 
-extern int nop_pageout(struct vop_pageout_args *ap);
-extern int err_pageout(struct vop_pageout_args *ap);
+extern int nop_pageout(struct vnop_pageout_args *ap);
+extern int err_pageout(struct vnop_pageout_args *ap);
 
 
-extern int nop_devblocksize(struct vop_devblocksize_args *ap);
-extern int err_devblocksize(struct vop_devblocksize_args *ap);
+extern int nop_searchfs(struct vnop_searchfs_args *ap);
+extern int err_searchfs(struct vnop_searchfs_args *ap);
 
 
-extern int nop_searchfs(struct vop_searchfs_args *ap);
-extern int err_searchfs(struct vop_searchfs_args *ap);
+extern int nop_copyfile(struct vnop_copyfile_args *ap);
+extern int err_copyfile(struct vnop_copyfile_args *ap);
 
 
-extern int nop_copyfile(struct vop_copyfile_args *ap);
-extern int err_copyfile(struct vop_copyfile_args *ap);
+extern int nop_blktooff(struct vnop_blktooff_args *ap);
+extern int err_blktooff(struct vnop_blktooff_args *ap);
 
 
-extern int nop_blktooff(struct vop_blktooff_args *ap);
-extern int err_blktooff(struct vop_blktooff_args *ap);
+extern int nop_offtoblk(struct vnop_offtoblk_args *ap);
+extern int err_offtoblk(struct vnop_offtoblk_args *ap);
 
 
-extern int nop_offtoblk(struct vop_offtoblk_args *ap);
-extern int err_offtoblk(struct vop_offtoblk_args *ap);
+extern int nop_blockmap(struct vnop_blockmap_args *ap);
+extern int err_blockmap(struct vnop_blockmap_args *ap);
+__END_DECLS
 
 
-extern int nop_cmap(struct vop_cmap_args *ap);
-extern int err_cmap(struct vop_cmap_args *ap);
 #endif /* _VFS_VFS_SUPPORT_H_ */
 #endif /* _VFS_VFS_SUPPORT_H_ */