Print this page
2882 implement libzfs_core
2883 changing "canmount" property to "on" should not always remount dataset
2900 "zfs snapshot" should be able to create multiple, arbitrary snapshots at once
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: Chris Siden <christopher.siden@delphix.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Reviewed by: Bill Pijewski <wdp@joyent.com>
Reviewed by: Dan Kruchinin <dan.kruchinin@gmail.com>


   3  *
   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.

  23  */
  24 
  25 /* Portions Copyright 2010 Robert Milkowski */
  26 
  27 #ifndef _SYS_DMU_OBJSET_H
  28 #define _SYS_DMU_OBJSET_H
  29 
  30 #include <sys/spa.h>
  31 #include <sys/arc.h>
  32 #include <sys/txg.h>
  33 #include <sys/zfs_context.h>
  34 #include <sys/dnode.h>
  35 #include <sys/zio.h>
  36 #include <sys/zil.h>
  37 #include <sys/sa.h>
  38 
  39 #ifdef  __cplusplus
  40 extern "C" {
  41 #endif
  42 


 120 
 121 #define DMU_META_OBJSET         0
 122 #define DMU_META_DNODE_OBJECT   0
 123 #define DMU_OBJECT_IS_SPECIAL(obj) ((int64_t)(obj) <= 0)
 124 #define DMU_META_DNODE(os)      ((os)->os_meta_dnode.dnh_dnode)
 125 #define DMU_USERUSED_DNODE(os)  ((os)->os_userused_dnode.dnh_dnode)
 126 #define DMU_GROUPUSED_DNODE(os) ((os)->os_groupused_dnode.dnh_dnode)
 127 
 128 #define DMU_OS_IS_L2CACHEABLE(os)                               \
 129         ((os)->os_secondary_cache == ZFS_CACHE_ALL ||                \
 130         (os)->os_secondary_cache == ZFS_CACHE_METADATA)
 131 
 132 /* called from zpl */
 133 int dmu_objset_hold(const char *name, void *tag, objset_t **osp);
 134 int dmu_objset_own(const char *name, dmu_objset_type_t type,
 135     boolean_t readonly, void *tag, objset_t **osp);
 136 void dmu_objset_rele(objset_t *os, void *tag);
 137 void dmu_objset_disown(objset_t *os, void *tag);
 138 int dmu_objset_from_ds(struct dsl_dataset *ds, objset_t **osp);
 139 
 140 int dmu_objset_create(const char *name, dmu_objset_type_t type, uint64_t flags,
 141     void (*func)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx), void *arg);
 142 int dmu_objset_clone(const char *name, struct dsl_dataset *clone_origin,
 143     uint64_t flags);
 144 int dmu_objset_destroy(const char *name, boolean_t defer);
 145 int dmu_objset_snapshot(char *fsname, char *snapname, char *tag,
 146     struct nvlist *props, boolean_t recursive, boolean_t temporary, int fd);
 147 void dmu_objset_stats(objset_t *os, nvlist_t *nv);
 148 void dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat);
 149 void dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
 150     uint64_t *usedobjsp, uint64_t *availobjsp);
 151 uint64_t dmu_objset_fsid_guid(objset_t *os);
 152 int dmu_objset_find(char *name, int func(const char *, void *), void *arg,
 153     int flags);
 154 int dmu_objset_find_spa(spa_t *spa, const char *name,
 155     int func(spa_t *, uint64_t, const char *, void *), void *arg, int flags);
 156 int dmu_objset_prefetch(const char *name, void *arg);
 157 void dmu_objset_byteswap(void *buf, size_t size);
 158 int dmu_objset_evict_dbufs(objset_t *os);
 159 timestruc_t dmu_objset_snap_cmtime(objset_t *os);
 160 
 161 /* called from dsl */
 162 void dmu_objset_sync(objset_t *os, zio_t *zio, dmu_tx_t *tx);
 163 boolean_t dmu_objset_is_dirty(objset_t *os, uint64_t txg);
 164 boolean_t dmu_objset_is_dirty_anywhere(objset_t *os);
 165 objset_t *dmu_objset_create_impl(spa_t *spa, struct dsl_dataset *ds,
 166     blkptr_t *bp, dmu_objset_type_t type, dmu_tx_t *tx);
 167 int dmu_objset_open_impl(spa_t *spa, struct dsl_dataset *ds, blkptr_t *bp,
 168     objset_t **osp);
 169 void dmu_objset_evict(objset_t *os);
 170 void dmu_objset_do_userquota_updates(objset_t *os, dmu_tx_t *tx);
 171 void dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx);
 172 boolean_t dmu_objset_userused_enabled(objset_t *os);
 173 int dmu_objset_userspace_upgrade(objset_t *os);
 174 boolean_t dmu_objset_userspace_present(objset_t *os);
 175 
 176 void dmu_objset_init(void);
 177 void dmu_objset_fini(void);


   3  *
   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  23  * Copyright (c) 2012 by Delphix. All rights reserved.
  24  */
  25 
  26 /* Portions Copyright 2010 Robert Milkowski */
  27 
  28 #ifndef _SYS_DMU_OBJSET_H
  29 #define _SYS_DMU_OBJSET_H
  30 
  31 #include <sys/spa.h>
  32 #include <sys/arc.h>
  33 #include <sys/txg.h>
  34 #include <sys/zfs_context.h>
  35 #include <sys/dnode.h>
  36 #include <sys/zio.h>
  37 #include <sys/zil.h>
  38 #include <sys/sa.h>
  39 
  40 #ifdef  __cplusplus
  41 extern "C" {
  42 #endif
  43 


 121 
 122 #define DMU_META_OBJSET         0
 123 #define DMU_META_DNODE_OBJECT   0
 124 #define DMU_OBJECT_IS_SPECIAL(obj) ((int64_t)(obj) <= 0)
 125 #define DMU_META_DNODE(os)      ((os)->os_meta_dnode.dnh_dnode)
 126 #define DMU_USERUSED_DNODE(os)  ((os)->os_userused_dnode.dnh_dnode)
 127 #define DMU_GROUPUSED_DNODE(os) ((os)->os_groupused_dnode.dnh_dnode)
 128 
 129 #define DMU_OS_IS_L2CACHEABLE(os)                               \
 130         ((os)->os_secondary_cache == ZFS_CACHE_ALL ||                \
 131         (os)->os_secondary_cache == ZFS_CACHE_METADATA)
 132 
 133 /* called from zpl */
 134 int dmu_objset_hold(const char *name, void *tag, objset_t **osp);
 135 int dmu_objset_own(const char *name, dmu_objset_type_t type,
 136     boolean_t readonly, void *tag, objset_t **osp);
 137 void dmu_objset_rele(objset_t *os, void *tag);
 138 void dmu_objset_disown(objset_t *os, void *tag);
 139 int dmu_objset_from_ds(struct dsl_dataset *ds, objset_t **osp);
 140 







 141 void dmu_objset_stats(objset_t *os, nvlist_t *nv);
 142 void dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat);
 143 void dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
 144     uint64_t *usedobjsp, uint64_t *availobjsp);
 145 uint64_t dmu_objset_fsid_guid(objset_t *os);


 146 int dmu_objset_find_spa(spa_t *spa, const char *name,
 147     int func(spa_t *, uint64_t, const char *, void *), void *arg, int flags);
 148 int dmu_objset_prefetch(const char *name, void *arg);

 149 int dmu_objset_evict_dbufs(objset_t *os);
 150 timestruc_t dmu_objset_snap_cmtime(objset_t *os);
 151 
 152 /* called from dsl */
 153 void dmu_objset_sync(objset_t *os, zio_t *zio, dmu_tx_t *tx);
 154 boolean_t dmu_objset_is_dirty(objset_t *os, uint64_t txg);
 155 boolean_t dmu_objset_is_dirty_anywhere(objset_t *os);
 156 objset_t *dmu_objset_create_impl(spa_t *spa, struct dsl_dataset *ds,
 157     blkptr_t *bp, dmu_objset_type_t type, dmu_tx_t *tx);
 158 int dmu_objset_open_impl(spa_t *spa, struct dsl_dataset *ds, blkptr_t *bp,
 159     objset_t **osp);
 160 void dmu_objset_evict(objset_t *os);
 161 void dmu_objset_do_userquota_updates(objset_t *os, dmu_tx_t *tx);
 162 void dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx);
 163 boolean_t dmu_objset_userused_enabled(objset_t *os);
 164 int dmu_objset_userspace_upgrade(objset_t *os);
 165 boolean_t dmu_objset_userspace_present(objset_t *os);
 166 
 167 void dmu_objset_init(void);
 168 void dmu_objset_fini(void);