Merge commit 'dc97a43d4a70c8773a619f11b95b07a787f6f5b7' into merges
[unleashed.git] / kernel / fs / zfs / sys / dmu_tx.h
blobafc97994efbf9d5d4a17617fffef91d88857645c
1 /*
2 * CDDL HEADER START
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.
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.
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]
19 * CDDL HEADER END
22 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 * Copyright (c) 2012, 2016 by Delphix. All rights reserved.
29 #ifndef _SYS_DMU_TX_H
30 #define _SYS_DMU_TX_H
32 #include <sys/inttypes.h>
33 #include <sys/dmu.h>
34 #include <sys/txg.h>
35 #include <sys/refcount.h>
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
41 struct dmu_buf_impl;
42 struct dmu_tx_hold;
43 struct dnode_link;
44 struct dsl_pool;
45 struct dnode;
46 struct dsl_dir;
48 struct dmu_tx {
50 * No synchronization is needed because a tx can only be handled
51 * by one thread.
53 list_t tx_holds; /* list of dmu_tx_hold_t */
54 objset_t *tx_objset;
55 struct dsl_dir *tx_dir;
56 struct dsl_pool *tx_pool;
57 uint64_t tx_txg;
58 uint64_t tx_lastsnap_txg;
59 uint64_t tx_lasttried_txg;
60 txg_handle_t tx_txgh;
61 void *tx_tempreserve_cookie;
62 struct dmu_tx_hold *tx_needassign_txh;
64 /* list of dmu_tx_callback_t on this dmu_tx */
65 list_t tx_callbacks;
67 /* placeholder for syncing context, doesn't need specific holds */
68 boolean_t tx_anyobj;
70 /* has this transaction already been delayed? */
71 boolean_t tx_waited;
73 /* transaction is marked as being a "net free" of space */
74 boolean_t tx_netfree;
76 /* time this transaction was created */
77 hrtime_t tx_start;
79 /* need to wait for sufficient dirty space */
80 boolean_t tx_wait_dirty;
82 int tx_err;
85 enum dmu_tx_hold_type {
86 THT_NEWOBJECT,
87 THT_WRITE,
88 THT_BONUS,
89 THT_FREE,
90 THT_ZAP,
91 THT_SPACE,
92 THT_SPILL,
93 THT_NUMTYPES
96 typedef struct dmu_tx_hold {
97 dmu_tx_t *txh_tx;
98 list_node_t txh_node;
99 struct dnode *txh_dnode;
100 refcount_t txh_space_towrite;
101 refcount_t txh_memory_tohold;
102 enum dmu_tx_hold_type txh_type;
103 uint64_t txh_arg1;
104 uint64_t txh_arg2;
105 } dmu_tx_hold_t;
107 typedef struct dmu_tx_callback {
108 list_node_t dcb_node; /* linked to tx_callbacks list */
109 dmu_tx_callback_func_t *dcb_func; /* caller function pointer */
110 void *dcb_data; /* caller private data */
111 } dmu_tx_callback_t;
114 * These routines are defined in dmu.h, and are called by the user.
116 dmu_tx_t *dmu_tx_create(objset_t *dd);
117 int dmu_tx_assign(dmu_tx_t *tx, txg_how_t txg_how);
118 void dmu_tx_commit(dmu_tx_t *tx);
119 void dmu_tx_abort(dmu_tx_t *tx);
120 uint64_t dmu_tx_get_txg(dmu_tx_t *tx);
121 struct dsl_pool *dmu_tx_pool(dmu_tx_t *tx);
122 void dmu_tx_wait(dmu_tx_t *tx);
124 void dmu_tx_callback_register(dmu_tx_t *tx, dmu_tx_callback_func_t *dcb_func,
125 void *dcb_data);
126 void dmu_tx_do_callbacks(list_t *cb_list, int error);
129 * These routines are defined in dmu_spa.h, and are called by the SPA.
131 extern dmu_tx_t *dmu_tx_create_assigned(struct dsl_pool *dp, uint64_t txg);
134 * These routines are only called by the DMU.
136 dmu_tx_t *dmu_tx_create_dd(dsl_dir_t *dd);
137 int dmu_tx_is_syncing(dmu_tx_t *tx);
138 int dmu_tx_private_ok(dmu_tx_t *tx);
139 void dmu_tx_add_new_object(dmu_tx_t *tx, dnode_t *dn);
140 void dmu_tx_dirty_buf(dmu_tx_t *tx, struct dmu_buf_impl *db);
141 void dmu_tx_hold_space(dmu_tx_t *tx, uint64_t space);
143 #ifdef ZFS_DEBUG
144 #define DMU_TX_DIRTY_BUF(tx, db) dmu_tx_dirty_buf(tx, db)
145 #else
146 #define DMU_TX_DIRTY_BUF(tx, db)
147 #endif
149 #ifdef __cplusplus
151 #endif
153 #endif /* _SYS_DMU_TX_H */