usr/src/uts/common/fs/zfs/sys/dsl_pool.h
author Christopher Siden <chris.siden@delphix.com>
Mon, 21 May 2012 12:11:39 -0700
changeset 13700 2889e2596bd6
parent 12470 54258108784b
child 13776 cd512c80fd75
permissions -rw-r--r--
2619 asynchronous destruction of ZFS file systems 2747 SPA versioning with zfs feature flags Reviewed by: Matt Ahrens <[email protected]> Reviewed by: George Wilson <[email protected]> Reviewed by: Richard Lowe <[email protected]> Reviewed by: Dan Kruchinin <[email protected]> Approved by: Eric Schrock <[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
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
     5
 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
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
/*
12295
e16f396f04a1 6948911 snapshot deletion can induce unsatisfiable allocations in txg sync
George Wilson <George.Wilson@Sun.COM>
parents: 11614
diff changeset
    22
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
    23
 * Copyright (c) 2012 by Delphix. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
#ifndef	_SYS_DSL_POOL_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
#define	_SYS_DSL_POOL_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/spa.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/txg.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/txg_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/zfs_context.h>
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    33
#include <sys/zio.h>
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    34
#include <sys/dnode.h>
11125
fca3e6d28599 6899923 vdev_offline/vdev_add deadlock
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10951
diff changeset
    35
#include <sys/ddt.h>
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
    36
#include <sys/arc.h>
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
    37
#include <sys/bpobj.h>
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
    38
#include <sys/bptree.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
struct objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
struct dsl_dir;
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    46
struct dsl_dataset;
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    47
struct dsl_pool;
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    48
struct dmu_tx;
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
    49
struct dsl_scan;
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    50
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    51
/* These macros are for indexing into the zfs_all_blkstats_t. */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    52
#define	DMU_OT_DEFERRED	DMU_OT_NONE
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
    53
#define	DMU_OT_OTHER	DMU_OT_NUMTYPES /* place holder for DMU_OT() types */
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
    54
#define	DMU_OT_TOTAL	(DMU_OT_NUMTYPES + 1)
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    55
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    56
typedef struct zfs_blkstat {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    57
	uint64_t	zb_count;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    58
	uint64_t	zb_asize;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    59
	uint64_t	zb_lsize;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    60
	uint64_t	zb_psize;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    61
	uint64_t	zb_gangs;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    62
	uint64_t	zb_ditto_2_of_2_samevdev;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    63
	uint64_t	zb_ditto_2_of_3_samevdev;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    64
	uint64_t	zb_ditto_3_of_3_samevdev;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    65
} zfs_blkstat_t;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    66
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    67
typedef struct zfs_all_blkstats {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    68
	zfs_blkstat_t	zab_type[DN_MAX_LEVELS + 1][DMU_OT_TOTAL + 1];
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    69
} zfs_all_blkstats_t;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
    70
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
typedef struct dsl_pool {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	/* Immutable */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	spa_t *dp_spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
	struct objset *dp_meta_objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
	struct dsl_dir *dp_root_dir;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	struct dsl_dir *dp_mos_dir;
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
    78
	struct dsl_dir *dp_free_dir;
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
    79
	struct dsl_dataset *dp_origin_snap;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
	uint64_t dp_root_dir_obj;
9321
dca349c475c1 6591646 Hang while trying to enter a txg while holding a txg open
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7837
diff changeset
    81
	struct taskq *dp_vnrele_taskq;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
	/* No lock needed - sync context only */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
	blkptr_t dp_meta_rootbp;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 2199
diff changeset
    85
	list_t dp_synced_datasets;
7468
23915842aa09 6687412 zfs stuck issuing small txg
Mark Maybee <Mark.Maybee@Sun.COM>
parents: 7184
diff changeset
    86
	hrtime_t dp_read_overhead;
11614
04f97eb93d43 6918925 txg sync lasts a fraction of zfs_txg_synctime
Lin Ling <Lin.Ling@Sun.COM>
parents: 11147
diff changeset
    87
	uint64_t dp_throughput; /* bytes per millisec */
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    88
	uint64_t dp_write_limit;
10342
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
    89
	uint64_t dp_tmp_userrefs_obj;
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
    90
	bpobj_t dp_free_bpobj;
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
    91
	uint64_t dp_bptree_obj;
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    92
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
    93
	struct dsl_scan *dp_scan;
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
    94
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    95
	/* Uses dp_lock */
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    96
	kmutex_t dp_lock;
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    97
	uint64_t dp_space_towrite[TXG_SIZE];
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    98
	uint64_t dp_tempreserved[TXG_SIZE];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    99
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   100
	/* Has its own locking */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
	tx_state_t dp_tx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   102
	txg_list_t dp_dirty_datasets;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
	txg_list_t dp_dirty_dirs;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 1544
diff changeset
   104
	txg_list_t dp_sync_tasks;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   106
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   107
	 * Protects administrative changes (properties, namespace)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
	 * It is only held for write in syncing context.  Therefore
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	 * syncing context does not need to ever have it for read, since
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
	 * nobody else could possibly have it for write.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
	krwlock_t dp_config_rwlock;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
   113
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7468
diff changeset
   114
	zfs_all_blkstats_t *dp_blkstats;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
} dsl_pool_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
   117
int dsl_pool_init(spa_t *spa, uint64_t txg, dsl_pool_t **dpp);
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 12470
diff changeset
   118
int dsl_pool_open(dsl_pool_t *dp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
void dsl_pool_close(dsl_pool_t *dp);
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   120
dsl_pool_t *dsl_pool_create(spa_t *spa, nvlist_t *zplprops, uint64_t txg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
void dsl_pool_sync(dsl_pool_t *dp, uint64_t txg);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   122
void dsl_pool_sync_done(dsl_pool_t *dp, uint64_t txg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
int dsl_pool_sync_context(dsl_pool_t *dp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
uint64_t dsl_pool_adjustedsize(dsl_pool_t *dp, boolean_t netfree);
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10342
diff changeset
   125
uint64_t dsl_pool_adjustedfree(dsl_pool_t *dp, boolean_t netfree);
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
   126
int dsl_pool_tempreserve_space(dsl_pool_t *dp, uint64_t space, dmu_tx_t *tx);
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
   127
void dsl_pool_tempreserve_clear(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx);
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
   128
void dsl_pool_memory_pressure(dsl_pool_t *dp);
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
   129
void dsl_pool_willuse_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   130
void dsl_free(dsl_pool_t *dp, uint64_t txg, const blkptr_t *bpp);
12295
e16f396f04a1 6948911 snapshot deletion can induce unsatisfiable allocations in txg sync
George Wilson <George.Wilson@Sun.COM>
parents: 11614
diff changeset
   131
void dsl_free_sync(zio_t *pio, dsl_pool_t *dp, uint64_t txg,
e16f396f04a1 6948911 snapshot deletion can induce unsatisfiable allocations in txg sync
George Wilson <George.Wilson@Sun.COM>
parents: 11614
diff changeset
   132
    const blkptr_t *bpp);
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   133
int dsl_read(zio_t *pio, spa_t *spa, const blkptr_t *bpp, arc_buf_t *pbuf,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   134
    arc_done_func_t *done, void *private, int priority, int zio_flags,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   135
    uint32_t *arc_flags, const zbookmark_t *zb);
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   136
int dsl_read_nolock(zio_t *pio, spa_t *spa, const blkptr_t *bpp,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   137
    arc_done_func_t *done, void *private, int priority, int zio_flags,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   138
    uint32_t *arc_flags, const zbookmark_t *zb);
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
   139
void dsl_pool_create_origin(dsl_pool_t *dp, dmu_tx_t *tx);
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
   140
void dsl_pool_upgrade_clones(dsl_pool_t *dp, dmu_tx_t *tx);
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
   141
void dsl_pool_upgrade_dir_clones(dsl_pool_t *dp, dmu_tx_t *tx);
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6245
diff changeset
   142
9321
dca349c475c1 6591646 Hang while trying to enter a txg while holding a txg open
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7837
diff changeset
   143
taskq_t *dsl_pool_vnrele_taskq(dsl_pool_t *dp);
dca349c475c1 6591646 Hang while trying to enter a txg while holding a txg open
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7837
diff changeset
   144
10342
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
   145
extern int dsl_pool_user_hold(dsl_pool_t *dp, uint64_t dsobj,
10951
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
   146
    const char *tag, uint64_t *now, dmu_tx_t *tx);
10342
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
   147
extern int dsl_pool_user_release(dsl_pool_t *dp, uint64_t dsobj,
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
   148
    const char *tag, dmu_tx_t *tx);
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
   149
extern void dsl_pool_clean_tmp_userrefs(dsl_pool_t *dp);
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12295
diff changeset
   150
int dsl_pool_open_special_dir(dsl_pool_t *dp, const char *name, dsl_dir_t **);
10342
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 9321
diff changeset
   151
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   154
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   155
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   156
#endif /* _SYS_DSL_POOL_H */