From 60bad2f22d3e8bf21f5e437dd1a4cf7fb755857a Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 13 May 2024 12:00:59 +0200 Subject: [PATCH] lv_types: sort order of types Order is used for man page generation (although not completely). So place 'zero & error' to the end of list. Keep linear,striped,snapshot in front. For the rest use alphabetic order. --- tools/lv_types.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/lv_types.h b/tools/lv_types.h index fceda27d6..78dda0963 100644 --- a/tools/lv_types.h +++ b/tools/lv_types.h @@ -23,22 +23,22 @@ lvt(linear) lvt(striped) lvt(snapshot) /* lv_is_cow, lv_is_thick_snapshot */ -lvt(thin) -lvt(thinpool) lvt(cache) lvt(cachepool) -lvt(vdo) -lvt(vdopool) -lvt(vdopooldata) +lvt(integrity) lvt(mirror) lvt(raid) /* any raid type */ lvt(raid0) lvt(raid1) +lvt(raid10) lvt(raid4) lvt(raid5) lvt(raid6) -lvt(raid10) +lvt(thin) +lvt(thinpool) +lvt(vdo) +lvt(vdopool) +lvt(vdopooldata) lvt(writecache) -lvt(integrity) -lvt(error) lvt(zero) +lvt(error)