55 uint64_t scn_cur_max_txg;
56 uint64_t scn_start_time;
57 uint64_t scn_end_time;
58 uint64_t scn_to_examine; /* total bytes to be scanned */
59 uint64_t scn_examined; /* bytes scanned so far */
60 uint64_t scn_to_process;
61 uint64_t scn_processed;
62 uint64_t scn_errors; /* scan I/O error count */
63 uint64_t scn_ddt_class_max;
64 ddt_bookmark_t scn_ddt_bookmark;
65 zbookmark_t scn_bookmark;
66 uint64_t scn_flags; /* dsl_scan_flags_t */
67 } dsl_scan_phys_t;
68
69 #define SCAN_PHYS_NUMINTS (sizeof (dsl_scan_phys_t) / sizeof (uint64_t))
70
71 typedef enum dsl_scan_flags {
72 DSF_VISIT_DS_AGAIN = 1<<0,
73 } dsl_scan_flags_t;
74
75 typedef struct dsl_scan {
76 struct dsl_pool *scn_dp;
77
78 boolean_t scn_pausing;
79 uint64_t scn_restart_txg;
80 uint64_t scn_sync_start_time;
81 zio_t *scn_zio_root;
82
83 /* for freeing blocks */
84 boolean_t scn_is_bptree;
85 boolean_t scn_async_destroying;
86
87 /* for debugging / information */
88 uint64_t scn_visited_this_txg;
89
90 dsl_scan_phys_t scn_phys;
91 } dsl_scan_t;
92
93 int dsl_scan_init(struct dsl_pool *dp, uint64_t txg);
94 void dsl_scan_fini(struct dsl_pool *dp);
95 void dsl_scan_sync(struct dsl_pool *, dmu_tx_t *);
96 int dsl_scan_cancel(struct dsl_pool *);
97 int dsl_scan(struct dsl_pool *, pool_scan_func_t);
98 void dsl_resilver_restart(struct dsl_pool *, uint64_t txg);
99 boolean_t dsl_scan_resilvering(struct dsl_pool *dp);
|
55 uint64_t scn_cur_max_txg;
56 uint64_t scn_start_time;
57 uint64_t scn_end_time;
58 uint64_t scn_to_examine; /* total bytes to be scanned */
59 uint64_t scn_examined; /* bytes scanned so far */
60 uint64_t scn_to_process;
61 uint64_t scn_processed;
62 uint64_t scn_errors; /* scan I/O error count */
63 uint64_t scn_ddt_class_max;
64 ddt_bookmark_t scn_ddt_bookmark;
65 zbookmark_t scn_bookmark;
66 uint64_t scn_flags; /* dsl_scan_flags_t */
67 } dsl_scan_phys_t;
68
69 #define SCAN_PHYS_NUMINTS (sizeof (dsl_scan_phys_t) / sizeof (uint64_t))
70
71 typedef enum dsl_scan_flags {
72 DSF_VISIT_DS_AGAIN = 1<<0,
73 } dsl_scan_flags_t;
74
75 /*
76 * Every pool will have one dsl_scan_t and this structure will contain
77 * in-memory information about the scan and a pointer to the on-disk
78 * representation (i.e. dsl_scan_phys_t). Most of the state of the scan
79 * is contained on-disk to allow the scan to resume in the event of a reboot
80 * or panic. This structure maintains information about the behavior of a
81 * running scan, some caching information, and how it should traverse the pool.
82 *
83 * The following members of this structure direct the behavior of the scan:
84 *
85 * scn_pausing - a scan that cannot be completed in a single txg or
86 * has exceeded its allotted time will need to pause.
87 * When this flag is set the scanner will stop traversing
88 * the pool and write out the current state to disk.
89 *
90 * scn_restart_txg - directs the scanner to either restart or start a
91 * a scan at the specified txg value.
92 *
93 * scn_done_txg - when a scan completes its traversal it will set
94 * the completion txg to the next txg. This is necessary
95 * to ensure that any blocks that were freed during
96 * the scan but have not yet been processed (i.e deferred
97 * frees) are accounted for.
98 *
99 * This structure also maintains information about deferred frees which are
100 * a special kind of traversal. Deferred free can exist in either a bptree or
101 * a bpobj structure. The scn_is_bptree flag will indicate the type of
102 * deferred free that is in progress. If the deferred free is part of an
103 * asynchronous destroy then the scn_async_destroying flag will be set.
104 */
105 typedef struct dsl_scan {
106 struct dsl_pool *scn_dp;
107
108 boolean_t scn_pausing;
109 uint64_t scn_restart_txg;
110 uint64_t scn_done_txg;
111 uint64_t scn_sync_start_time;
112 zio_t *scn_zio_root;
113
114 /* for freeing blocks */
115 boolean_t scn_is_bptree;
116 boolean_t scn_async_destroying;
117
118 /* for debugging / information */
119 uint64_t scn_visited_this_txg;
120
121 dsl_scan_phys_t scn_phys;
122 } dsl_scan_t;
123
124 int dsl_scan_init(struct dsl_pool *dp, uint64_t txg);
125 void dsl_scan_fini(struct dsl_pool *dp);
126 void dsl_scan_sync(struct dsl_pool *, dmu_tx_t *);
127 int dsl_scan_cancel(struct dsl_pool *);
128 int dsl_scan(struct dsl_pool *, pool_scan_func_t);
129 void dsl_resilver_restart(struct dsl_pool *, uint64_t txg);
130 boolean_t dsl_scan_resilvering(struct dsl_pool *dp);
|