Don't allow snapshot-of-snapshot Don't allow snapshot-of-snapshot because it would confuse the logic. Snapshots of snapshots will be allowed in further patch, with special support for them. Signed-off-by: Mikulas Patocka --- lib/metadata/lv_manip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: LVM2.2.02.60/lib/metadata/lv_manip.c =================================================================== --- LVM2.2.02.60.orig/lib/metadata/lv_manip.c 2010-02-08 20:15:40.000000000 +0100 +++ LVM2.2.02.60/lib/metadata/lv_manip.c 2010-02-08 20:18:30.000000000 +0100 @@ -2952,7 +2952,7 @@ again: "Use --virtualsize."); return 0; } - if (lv_is_cow(org)) { + if (lv_is_cow(org) || lv_is_multisnap_cow(org)) { log_error("Snapshots of snapshots are not " "supported yet."); return 0;