]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/spa_log_spacemap.c
Clean up CSTYLEDs
[mirror_zfs.git] / module / zfs / spa_log_spacemap.c
index 341917a6d40211dac1f154ccc13737b6981600f3..110a4eab99f9bc9c2821a0e6831c61c0ef4c5370 100644 (file)
@@ -1284,39 +1284,39 @@ spa_ld_log_spacemaps(spa_t *spa)
 
 /* BEGIN CSTYLED */
 ZFS_MODULE_PARAM(zfs, zfs_, unflushed_max_mem_amt, ULONG, ZMOD_RW,
-    "Specific hard-limit in memory that ZFS allows to be used for "
-    "unflushed changes");
+       "Specific hard-limit in memory that ZFS allows to be used for "
+       "unflushed changes");
 
 ZFS_MODULE_PARAM(zfs, zfs_, unflushed_max_mem_ppm, ULONG, ZMOD_RW,
-    "Percentage of the overall system memory that ZFS allows to be "
-    "used for unflushed changes (value is calculated over 1000000 for "
-    "finer granularity)");
+       "Percentage of the overall system memory that ZFS allows to be "
+       "used for unflushed changes (value is calculated over 1000000 for "
+       "finer granularity)");
 
 ZFS_MODULE_PARAM(zfs, zfs_, unflushed_log_block_max, ULONG, ZMOD_RW,
-    "Hard limit (upper-bound) in the size of the space map log "
-    "in terms of blocks.");
+       "Hard limit (upper-bound) in the size of the space map log "
+       "in terms of blocks.");
 
 ZFS_MODULE_PARAM(zfs, zfs_, unflushed_log_block_min, ULONG, ZMOD_RW,
-    "Lower-bound limit for the maximum amount of blocks allowed in "
-    "log spacemap (see zfs_unflushed_log_block_max)");
+       "Lower-bound limit for the maximum amount of blocks allowed in "
+       "log spacemap (see zfs_unflushed_log_block_max)");
 
 ZFS_MODULE_PARAM(zfs, zfs_, unflushed_log_block_pct, ULONG, ZMOD_RW,
-    "Tunable used to determine the number of blocks that can be used for "
-    "the spacemap log, expressed as a percentage of the total number of "
-    "metaslabs in the pool (e.g. 400 means the number of log blocks is "
-    "capped at 4 times the number of metaslabs)");
+       "Tunable used to determine the number of blocks that can be used for "
+       "the spacemap log, expressed as a percentage of the total number of "
+       "metaslabs in the pool (e.g. 400 means the number of log blocks is "
+       "capped at 4 times the number of metaslabs)");
 
 ZFS_MODULE_PARAM(zfs, zfs_, max_log_walking, ULONG, ZMOD_RW,
-    "The number of past TXGs that the flushing algorithm of the log "
-    "spacemap feature uses to estimate incoming log blocks");
+       "The number of past TXGs that the flushing algorithm of the log "
+       "spacemap feature uses to estimate incoming log blocks");
+
+ZFS_MODULE_PARAM(zfs, zfs_, keep_log_spacemaps_at_export, INT, ZMOD_RW,
+       "Prevent the log spacemaps from being flushed and destroyed "
+       "during pool export/destroy");
+/* END CSTYLED */
 
 ZFS_MODULE_PARAM(zfs, zfs_, max_logsm_summary_length, ULONG, ZMOD_RW,
-    "Maximum number of rows allowed in the summary of the spacemap log");
+       "Maximum number of rows allowed in the summary of the spacemap log");
 
 ZFS_MODULE_PARAM(zfs, zfs_, min_metaslabs_to_flush, ULONG, ZMOD_RW,
-    "Minimum number of metaslabs to flush per dirty TXG");
-
-ZFS_MODULE_PARAM(zfs, zfs_, keep_log_spacemaps_at_export, INT, ZMOD_RW,
-    "Prevent the log spacemaps from being flushed and destroyed "
-    "during pool export/destroy");
-/* END CSTYLED */
+       "Minimum number of metaslabs to flush per dirty TXG");