1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: reuse existing macro

Use existing macro to detect striped raid segment.
This commit is contained in:
Zdenek Kabelac 2017-11-27 10:20:24 +01:00
parent efa17cae24
commit 02e934c444

View File

@ -163,7 +163,7 @@ struct dev_manager;
((segtype_is_striped(segtype) || segtype_is_mirror(segtype) || \
segtype_is_cache(segtype) || segtype_is_cache_pool(segtype) || \
segtype_is_thin(segtype) || segtype_is_snapshot(segtype) || \
(segtype_is_raid(segtype) && !segtype_is_raid1(segtype))) ? 1 : 0)
(segtype_is_striped_raid(segtype))) ? 1 : 0)
#define seg_is_striped_target(seg) segtype_is_striped_target((seg)->segtype)
#define seg_is_cache(seg) segtype_is_cache((seg)->segtype)