1 /*
2  * CDDL HEADER START
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 https://opensource.org/licenses/CDDL-1.0.
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 /*
23  * Copyright (c) 2018, 2019 by Delphix. All rights reserved.
24  */
25 
26 #ifndef _SYS_SPA_LOG_SPACEMAP_H
27 #define	_SYS_SPA_LOG_SPACEMAP_H
28 
29 #include <sys/avl.h>
30 
31 typedef struct log_summary_entry {
32 	uint64_t lse_start;	/* start TXG */
33 	uint64_t lse_end;	/* last TXG */
34 	uint64_t lse_txgcount;	/* # of TXGs */
35 	uint64_t lse_mscount;	/* # of metaslabs needed to be flushed */
36 	uint64_t lse_msdcount;	/* # of dirty metaslabs needed to be flushed */
37 	uint64_t lse_blkcount;	/* blocks held by this entry  */
38 	list_node_t lse_node;
39 } log_summary_entry_t;
40 
41 typedef struct spa_unflushed_stats  {
42 	/* used for memory heuristic */
43 	uint64_t sus_memused;	/* current memory used for unflushed trees */
44 
45 	/* used for block heuristic */
46 	uint64_t sus_blocklimit;	/* max # of log blocks allowed */
47 	uint64_t sus_nblocks;	/* # of blocks in log space maps currently */
48 } spa_unflushed_stats_t;
49 
50 typedef struct spa_log_sm {
51 	uint64_t sls_sm_obj;	/* space map object ID */
52 	uint64_t sls_txg;	/* txg logged on the space map */
53 	uint64_t sls_nblocks;	/* number of blocks in this log */
54 	uint64_t sls_mscount;	/* # of metaslabs flushed in the log's txg */
55 	avl_node_t sls_node;	/* node in spa_sm_logs_by_txg */
56 	space_map_t *sls_sm;	/* space map pointer, if open */
57 } spa_log_sm_t;
58 
59 int spa_ld_log_spacemaps(spa_t *);
60 
61 void spa_generate_syncing_log_sm(spa_t *, dmu_tx_t *);
62 void spa_flush_metaslabs(spa_t *, dmu_tx_t *);
63 void spa_sync_close_syncing_log_sm(spa_t *);
64 
65 void spa_cleanup_old_sm_logs(spa_t *, dmu_tx_t *);
66 
67 uint64_t spa_log_sm_blocklimit(spa_t *);
68 void spa_log_sm_set_blocklimit(spa_t *);
69 uint64_t spa_log_sm_nblocks(spa_t *);
70 uint64_t spa_log_sm_memused(spa_t *);
71 
72 void spa_log_sm_decrement_mscount(spa_t *, uint64_t);
73 void spa_log_sm_increment_current_mscount(spa_t *);
74 
75 void spa_log_summary_add_flushed_metaslab(spa_t *, boolean_t);
76 void spa_log_summary_dirty_flushed_metaslab(spa_t *, uint64_t);
77 void spa_log_summary_decrement_mscount(spa_t *, uint64_t, boolean_t);
78 void spa_log_summary_decrement_blkcount(spa_t *, uint64_t);
79 
80 boolean_t spa_flush_all_logs_requested(spa_t *);
81 
82 extern int zfs_keep_log_spacemaps_at_export;
83 
84 #endif /* _SYS_SPA_LOG_SPACEMAP_H */
85