usr/src/uts/common/fs/zfs/sys/dsl_pool.h
author maybee
Thu, 20 Mar 2008 11:01:28 -0700
changeset 6245 1a2a7cfb9f26
parent 5367 c40abbe796be
child 7046 361307ae060d
permissions -rw-r--r--
6429205 each zpool needs to monitor its throughput and throttle heavy writers 6528296 system hangs when swapping to a zvol 6662330 ::zfs_params should look for metaslab_gang_bang instead of zio_gang_bang
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
/*
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    22
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
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
#pragma ident	"%Z%%M%	%I%	%E% SMI"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/spa.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/txg.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <sys/txg_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <sys/zfs_context.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
struct objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
struct dsl_dir;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
typedef struct dsl_pool {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
	/* Immutable */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
	spa_t *dp_spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
	struct objset *dp_meta_objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
	struct dsl_dir *dp_root_dir;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
	struct dsl_dir *dp_mos_dir;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    49
	uint64_t dp_root_dir_obj;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
	/* No lock needed - sync context only */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
	blkptr_t dp_meta_rootbp;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 2199
diff changeset
    53
	list_t dp_synced_datasets;
6245
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    54
	uint64_t dp_write_limit;
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    55
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    56
	/* Uses dp_lock */
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    57
	kmutex_t dp_lock;
1a2a7cfb9f26 6429205 each zpool needs to monitor its throughput and throttle heavy writers
maybee
parents: 5367
diff changeset
    58
	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
    59
	uint64_t dp_tempreserved[TXG_SIZE];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
	/* Has its own locking */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
	tx_state_t dp_tx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
	txg_list_t dp_dirty_datasets;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
	txg_list_t dp_dirty_dirs;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 1544
diff changeset
    65
	txg_list_t dp_sync_tasks;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
	 * Protects administrative changes (properties, namespace)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
	 * It is only held for write in syncing context.  Therefore
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
	 * syncing context does not need to ever have it for read, since
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	 * nobody else could possibly have it for write.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	krwlock_t dp_config_rwlock;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
} dsl_pool_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    76
int dsl_pool_open(spa_t *spa, uint64_t txg, dsl_pool_t **dpp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
void dsl_pool_close(dsl_pool_t *dp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
dsl_pool_t *dsl_pool_create(spa_t *spa, uint64_t txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
void dsl_pool_sync(dsl_pool_t *dp, uint64_t txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
void dsl_pool_zil_clean(dsl_pool_t *dp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
int dsl_pool_sync_context(dsl_pool_t *dp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
uint64_t dsl_pool_adjustedsize(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
    83
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
    84
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
    85
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
    86
void dsl_pool_willuse_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
#endif /* _SYS_DSL_POOL_H */