From: Nikolay Borisov <nborisov@suse.com>
To: Johannes Thumshirn <jthumshirn@suse.de>, David Sterba <dsterba@suse.com>
Cc: Linux BTRFS Mailinglist <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH v2 08/11] btrfs-progs: add option for checksum type to mkfs
Date: Tue, 27 Aug 2019 16:03:01 +0300 [thread overview]
Message-ID: <674a511b-9b39-b6d0-cf0a-8dac6e5894ce@suse.com> (raw)
In-Reply-To: <20190826114853.14860-9-jthumshirn@suse.de>
On 26.08.19 г. 14:48 ч., Johannes Thumshirn wrote:
> Add an option to mkfs to specify which checksum algorithm will be used for
> the filesystem.
>
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
> ---
> convert/common.c | 2 +-
> mkfs/common.c | 2 +-
> mkfs/common.h | 2 ++
> mkfs/main.c | 21 ++++++++++++++++++++-
> 4 files changed, 24 insertions(+), 3 deletions(-)
>
> diff --git a/convert/common.c b/convert/common.c
> index 7936f8f10b29..8f5fdbf507a4 100644
> --- a/convert/common.c
> +++ b/convert/common.c
> @@ -135,7 +135,7 @@ static int setup_temp_super(int fd, struct btrfs_mkfs_config *cfg,
> super->__unused_leafsize = cpu_to_le32(cfg->nodesize);
> btrfs_set_super_nodesize(super, cfg->nodesize);
> btrfs_set_super_stripesize(super, cfg->stripesize);
> - btrfs_set_super_csum_type(super, BTRFS_CSUM_TYPE_CRC32);
> + btrfs_set_super_csum_type(super, cfg->csum_type);
> btrfs_set_super_chunk_root(super, chunk_bytenr);
> btrfs_set_super_cache_generation(super, -1);
> btrfs_set_super_incompat_flags(super, cfg->features);
> diff --git a/mkfs/common.c b/mkfs/common.c
> index 9762391a8d2b..4a417bd7a306 100644
> --- a/mkfs/common.c
> +++ b/mkfs/common.c
> @@ -202,7 +202,7 @@ int make_btrfs(int fd, struct btrfs_mkfs_config *cfg)
> super.__unused_leafsize = cpu_to_le32(cfg->nodesize);
> btrfs_set_super_nodesize(&super, cfg->nodesize);
> btrfs_set_super_stripesize(&super, cfg->stripesize);
> - btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
> + btrfs_set_super_csum_type(&super, cfg->csum_type);
> btrfs_set_super_chunk_root_generation(&super, 1);
> btrfs_set_super_cache_generation(&super, -1);
> btrfs_set_super_incompat_flags(&super, cfg->features);
> diff --git a/mkfs/common.h b/mkfs/common.h
> index 28912906d0a9..1ca71a4fcce5 100644
> --- a/mkfs/common.h
> +++ b/mkfs/common.h
> @@ -53,6 +53,8 @@ struct btrfs_mkfs_config {
> u64 features;
> /* Size of the filesystem in bytes */
> u64 num_bytes;
> + /* checksum algorithm to use */
> + enum btrfs_csum_type csum_type;
>
> /* Output fields, set during creation */
>
> diff --git a/mkfs/main.c b/mkfs/main.c
> index 8dbec0717b89..075e7e331ab4 100644
> --- a/mkfs/main.c
> +++ b/mkfs/main.c
> @@ -346,6 +346,7 @@ static void print_usage(int ret)
> printf("\t--shrink (with --rootdir) shrink the filled filesystem to minimal size\n");
> printf("\t-K|--nodiscard do not perform whole device TRIM\n");
> printf("\t-f|--force force overwrite of existing filesystem\n");
> + printf("\t-C|--checksum checksum algorithm to use (default: crc32c)\n");
> printf(" general:\n");
> printf("\t-q|--quiet no messages except errors\n");
> printf("\t-V|--version print the mkfs.btrfs version and exit\n");
> @@ -380,6 +381,18 @@ static u64 parse_profile(const char *s)
> return 0;
> }
>
> +static enum btrfs_csum_type parse_csum_type(const char *s)
> +{
> + if (strcasecmp(s, "crc32c") == 0) {
> + return BTRFS_CSUM_TYPE_CRC32;
> + } else {
> + error("unknown csum type %s", s);
> + exit(1);
> + }
> + /* not reached */
> + return 0;
> +}
> +
> static char *parse_label(const char *input)
> {
> int len = strlen(input);
> @@ -826,6 +839,7 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
> u64 features = BTRFS_MKFS_DEFAULT_FEATURES;
> struct mkfs_allocation allocation = { 0 };
> struct btrfs_mkfs_config mkfs_cfg;
> + enum btrfs_csum_type csum_type = BTRFS_CSUM_TYPE_CRC32;
>
> crc32c_optimization_init();
>
> @@ -835,6 +849,7 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
> static const struct option long_options[] = {
> { "alloc-start", required_argument, NULL, 'A'},
> { "byte-count", required_argument, NULL, 'b' },
> + { "checksum", required_argument, NULL, 'C' },
> { "force", no_argument, NULL, 'f' },
> { "leafsize", required_argument, NULL, 'l' },
> { "label", required_argument, NULL, 'L'},
> @@ -854,7 +869,7 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
> { NULL, 0, NULL, 0}
> };
>
> - c = getopt_long(argc, argv, "A:b:fl:n:s:m:d:L:O:r:U:VMKq",
> + c = getopt_long(argc, argv, "A:b:C:fl:n:s:m:d:L:O:r:U:VMKq",
> long_options, NULL);
> if (c < 0)
> break;
> @@ -932,6 +947,9 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
> case GETOPT_VAL_SHRINK:
> shrink_rootdir = true;
> break;
> + case 'C':
> + csum_type = parse_csum_type(optarg);
> + break;
> case GETOPT_VAL_HELP:
> default:
> print_usage(c != GETOPT_VAL_HELP);
> @@ -1170,6 +1188,7 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
> mkfs_cfg.sectorsize = sectorsize;
> mkfs_cfg.stripesize = stripesize;
> mkfs_cfg.features = features;
> + mkfs_cfg.csum_type = csum_type;
>
> ret = make_btrfs(fd, &mkfs_cfg);
> if (ret) {
>
next prev parent reply other threads:[~2019-08-27 13:03 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-26 11:48 [PATCH v2 00/11] btrfs-progs: support xxhash64 checksums Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 01/11] btrfs-progs: don't blindly assume crc32c in csum_tree_block_size() Johannes Thumshirn
2019-08-27 16:33 ` David Sterba
2019-08-27 16:36 ` David Sterba
2019-08-28 7:48 ` Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 02/11] btrfs-progs: cache csum_type in recover_control Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 03/11] btrfs-progs: add checksum type to checksumming functions Johannes Thumshirn
2019-08-27 12:51 ` Nikolay Borisov
2019-08-26 11:48 ` [PATCH v2 04/11] btrfs-progs: don't assume checksums are always 4 bytes Johannes Thumshirn
2019-08-27 12:52 ` Nikolay Borisov
2019-08-26 11:48 ` [PATCH v2 05/11] btrfs-progs: pass checksum type to btrfs_csum_data()/btrfs_csum_final() Johannes Thumshirn
2019-08-27 12:53 ` Nikolay Borisov
2019-08-26 11:48 ` [PATCH v2 06/11] btrfs-progs: simplify update_block_csum() in btrfs-sb-mod.c Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 07/11] btrfs-progs: update checksumming api Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 08/11] btrfs-progs: add option for checksum type to mkfs Johannes Thumshirn
2019-08-27 13:03 ` Nikolay Borisov [this message]
2019-08-26 11:48 ` [PATCH v2 09/11] btrfs-progs: add xxhash sources Johannes Thumshirn
2019-08-27 13:05 ` Nikolay Borisov
2019-08-27 16:20 ` David Sterba
2019-08-26 11:48 ` [PATCH v2 10/11] btrfs-progs: add xxhash64 as checksum algorithm Johannes Thumshirn
2019-08-27 14:16 ` Nikolay Borisov
2019-08-27 16:12 ` David Sterba
2019-08-30 9:33 ` Johannes Thumshirn
2019-08-26 11:48 ` [PATCH v2 11/11] btrfs-progs: add test-case for mkfs with xxhash64 Johannes Thumshirn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=674a511b-9b39-b6d0-cf0a-8dac6e5894ce@suse.com \
--to=nborisov@suse.com \
--cc=dsterba@suse.com \
--cc=jthumshirn@suse.de \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox