usr/src/uts/common/fs/zfs/sys/zfs_vfsops.h
author Albert Lee <trisk@nexenta.com>
Sat, 14 May 2011 00:29:13 -0400
changeset 13370 8c04143bd318
parent 12772 71326a76a341
permissions -rw-r--r--
742 Resurrect the ZFS "aclmode" property 664 Umask masking "deny" ACL entries. 279 Bug in the new ACL (post-PSARC/2010/029) semantics Reviewed by: Aram Hăvărneanu <[email protected]> Reviewed by: Gordon Ross <[email protected]> Reviewed by: Robert Gordon <[email protected]> Reviewed by: [email protected] Approved by: Garrett D'Amore <[email protected]>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
     5
 * Common Development and Distribution License (the "License").
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
12164
0eb8d6741e37 PSARC/2010/029 Improved ACL interoperability
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11935
diff changeset
    22
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
#ifndef	_SYS_FS_ZFS_VFSOPS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
#define	_SYS_FS_ZFS_VFSOPS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#include <sys/isa_defs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/types32.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/list.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/vfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/zil.h>
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
    33
#include <sys/sa.h>
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    34
#include <sys/rrwlock.h>
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    35
#include <sys/zfs_ioctl.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
typedef struct zfsvfs zfsvfs_t;
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
    42
struct znode;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
struct zfsvfs {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
	vfs_t		*z_vfs;		/* generic fs struct */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
	zfsvfs_t	*z_parent;	/* parent fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
	objset_t	*z_os;		/* objset reference */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
	uint64_t	z_root;		/* id of root znode */
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
    49
	uint64_t	z_unlinkedobj;	/* id of unlinked zapobj */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
	uint64_t	z_max_blksz;	/* maximum block size for files */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    51
	uint64_t	z_fuid_obj;	/* fuid table object number */
5824
1d2d522d19b5 6603908 can't change mode if FS/dir is out of quota
marks
parents: 5498
diff changeset
    52
	uint64_t	z_fuid_size;	/* fuid table size */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    53
	avl_tree_t	z_fuid_idx;	/* fuid tree keyed by index */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    54
	avl_tree_t	z_fuid_domain;	/* fuid tree keyed by domain */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    55
	krwlock_t	z_fuid_lock;	/* fuid lock */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    56
	boolean_t	z_fuid_loaded;	/* fuid tables are loaded */
9179
d8fbd96b79b3 6790064 zfs needs to determine uid and gid earlier in create process
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 9030
diff changeset
    57
	boolean_t	z_fuid_dirty;   /* need to sync fuid table ? */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    58
	struct zfs_fuid_info	*z_fuid_replay; /* fuid info for replay */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
	zilog_t		*z_log;		/* intent log pointer */
13370
8c04143bd318 742 Resurrect the ZFS "aclmode" property
Albert Lee <trisk@nexenta.com>
parents: 12772
diff changeset
    60
	uint_t		z_acl_mode;	/* acl chmod/mode behavior */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
	uint_t		z_acl_inherit;	/* acl inheritance behavior */
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    62
	zfs_case_t	z_case;		/* case-sense */
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    63
	boolean_t	z_utf8;		/* utf8-only */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    64
	int		z_norm;		/* normalization flags */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
	boolean_t	z_atime;	/* enable atimes mount option */
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4720
diff changeset
    66
	boolean_t	z_unmounted;	/* unmounted */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    67
	rrwlock_t	z_teardown_lock;
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    68
	krwlock_t	z_teardown_inactive_lock;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
	list_t		z_all_znodes;	/* all vnodes in the fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
	kmutex_t	z_znodes_lock;	/* lock for z_all_znodes */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	vnode_t		*z_ctldir;	/* .zfs directory pointer */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
	boolean_t	z_show_ctldir;	/* expose .zfs in the root dir */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	boolean_t	z_issnap;	/* true if this is a snapshot */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    74
	boolean_t	z_vscan;	/* virus scan on/off */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    75
	boolean_t	z_use_fuids;	/* version allows fuids */
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 6083
diff changeset
    76
	boolean_t	z_replay;	/* set during ZIL replay */
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
    77
	boolean_t	z_use_sa;	/* version allow system attributes */
6083
23e77aa611b1 6655963 Panic: 0 == zap_add(mos, pds->dd_phys->dd_child_dir_zapobj, name, sizeof (uint64_t), 1, &ddobj, tx)
ek110237
parents: 5824
diff changeset
    78
	uint64_t	z_version;	/* ZPL version */
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8227
diff changeset
    79
	uint64_t	z_shares_dir;	/* hidden shares dir */
9030
243fd360d81f 6815893 hang mounting a dataset after booting into a new boot environment
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 8845
diff changeset
    80
	kmutex_t	z_lock;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
    81
	uint64_t	z_userquota_obj;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
    82
	uint64_t	z_groupquota_obj;
12772
71326a76a341 6959659 Extending end of file *may* get lost on replay of writes.
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 12164
diff changeset
    83
	uint64_t	z_replay_eof;	/* New end of file - replay only */
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
    84
	sa_attr_type_t	*z_attr_table;	/* SA attr mapping->id */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
#define	ZFS_OBJ_MTX_SZ	64
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
	kmutex_t	z_hold_mtx[ZFS_OBJ_MTX_SZ];	/* znode hold locks */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
};
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
/*
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    90
 * Normal filesystems (those not under .zfs/snapshot) have a total
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    91
 * file ID size limited to 12 bytes (including the length field) due to
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    92
 * NFSv2 protocol's limitation of 32 bytes for a filehandle.  For historical
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    93
 * reasons, this same limit is being imposed by the Solaris NFSv3 implementation
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    94
 * (although the NFSv3 protocol actually permits a maximum of 64 bytes).  It
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    95
 * is not possible to expand beyond 12 bytes without abandoning support
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    96
 * of NFSv2.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
 *
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    98
 * For normal filesystems, we partition up the available space as follows:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    99
 *	2 bytes		fid length (required)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   100
 *	6 bytes		object number (48 bits)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
 *	4 bytes		generation number (32 bits)
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   102
 *
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
 * We reserve only 48 bits for the object number, as this is the limit
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
 * currently defined and imposed by the DMU.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   106
typedef struct zfid_short {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   107
	uint16_t	zf_len;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
	uint8_t		zf_object[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	uint8_t		zf_gen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
} zfid_short_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   112
/*
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   113
 * Filesystems under .zfs/snapshot have a total file ID size of 22 bytes
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   114
 * (including the length field).  This makes files under .zfs/snapshot
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   115
 * accessible by NFSv3 and NFSv4, but not NFSv2.
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   116
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   117
 * For files under .zfs/snapshot, we partition up the available space
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   118
 * as follows:
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   119
 *	2 bytes		fid length (required)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   120
 *	6 bytes		object number (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   121
 *	4 bytes		generation number (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   122
 *	6 bytes		objset id (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   123
 *	4 bytes		currently just zero (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   124
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   125
 * We reserve only 48 bits for the object number and objset id, as these are
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   126
 * the limits currently defined and imposed by the DMU.
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   127
 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   128
typedef struct zfid_long {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   129
	zfid_short_t	z_fid;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   130
	uint8_t		zf_setid[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   131
	uint8_t		zf_setgen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   132
} zfid_long_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   133
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   134
#define	SHORT_FID_LEN	(sizeof (zfid_short_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
#define	LONG_FID_LEN	(sizeof (zfid_long_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
4720
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   137
extern uint_t zfs_fsyncer_key;
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   138
10298
a0d52501437c 6860996 %temporary clones are not automatically destroyed on error
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10204
diff changeset
   139
extern int zfs_suspend_fs(zfsvfs_t *zfsvfs);
a0d52501437c 6860996 %temporary clones are not automatically destroyed on error
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10204
diff changeset
   140
extern int zfs_resume_fs(zfsvfs_t *zfsvfs, const char *osname);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   141
extern int zfs_userspace_one(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   142
    const char *domain, uint64_t rid, uint64_t *valuep);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   143
extern int zfs_userspace_many(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   144
    uint64_t *cookiep, void *vbuf, uint64_t *bufsizep);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   145
extern int zfs_set_userquota(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   146
    const char *domain, uint64_t rid, uint64_t quota);
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
   147
extern boolean_t zfs_owner_overquota(zfsvfs_t *zfsvfs, struct znode *,
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
   148
    boolean_t isgroup);
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
   149
extern boolean_t zfs_fuid_overquota(zfsvfs_t *zfsvfs, boolean_t isgroup,
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11185
diff changeset
   150
    uint64_t fuid);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   151
extern int zfs_set_version(zfsvfs_t *zfsvfs, uint64_t newvers);
11185
f0c31008e395 6887924 PP_ISKAS needs to be defined in terms of VN_ISKAS for vnodes
Sean McEnroe <Sean.McEnroe@Sun.COM>
parents: 10972
diff changeset
   152
extern int zfsvfs_create(const char *name, zfsvfs_t **zfvp);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9179
diff changeset
   153
extern void zfsvfs_free(zfsvfs_t *zfsvfs);
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10298
diff changeset
   154
extern int zfs_check_global_label(const char *dsname, const char *hexsl);
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
   155
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   156
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   157
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   158
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   160
#endif	/* _SYS_FS_ZFS_VFSOPS_H */