diff options
author | David Teigland <teigland@redhat.com> | 2018-04-27 16:22:46 -0500 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2018-04-30 16:55:02 -0500 |
commit | c1cd18f21ef233fa19e948cf130e97c005a349ad (patch) | |
tree | dd257ff46f7214469c0f4bbca2c32cedc64387a0 /lib/striped | |
parent | 029a76b4f830750cc312c062d77cdaa4d1a1bba9 (diff) | |
download | lvm2-c1cd18f21ef233fa19e948cf130e97c005a349ad.tar.gz |
Remove lvm1 and pool disk formats
There are likely more bits of code that can be removed,
e.g. lvm1/pool-specific bits of code that were identified
using FMT flags.
The vgconvert command can likely be reduced further.
The lvm1-specific config settings should probably have
some other fields set for proper deprecation.
Diffstat (limited to 'lib/striped')
-rw-r--r-- | lib/striped/striped.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/striped/striped.c b/lib/striped/striped.c index e1de9c990..bca4c2cff 100644 --- a/lib/striped/striped.c +++ b/lib/striped/striped.c @@ -240,7 +240,7 @@ struct segment_type *init_striped_segtype(struct cmd_context *cmd) segtype->ops = &_striped_ops; segtype->name = SEG_TYPE_NAME_STRIPED; segtype->flags = SEG_STRIPED_TARGET | - SEG_CAN_SPLIT | SEG_AREAS_STRIPED | SEG_FORMAT1_SUPPORT; + SEG_CAN_SPLIT | SEG_AREAS_STRIPED; log_very_verbose("Initialised segtype: %s", segtype->name); |