From 97d7e5aedb58daf91302ce8688f3dc5368db5191 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 7 Nov 2011 11:03:47 +0000 Subject: Thin supports snapshots Full support for thin snapshots. Create and remove is supported. TODO: lvconvert support is not yes available. --- tools/lvcreate.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'tools/lvcreate.c') diff --git a/tools/lvcreate.c b/tools/lvcreate.c index e0cca2e4..ec48ae6d 100644 --- a/tools/lvcreate.c +++ b/tools/lvcreate.c @@ -1013,13 +1013,6 @@ int lvcreate(struct cmd_context *cmd, int argc, char **argv) lp.pool, lp.vg_name, lp.snapshot ? " as snapshot of " : "", lp.snapshot ? lp.origin : "", lp.segtype->name); - /* FIXME Remove when thin snapshots are supported. */ - if (lp.thin && lp.snapshot) { - log_error("Thin snapshots are not yet supported."); - r = ECMD_FAILED; - goto_out; - } - if (!lv_create_single(vg, &lp)) { stack; r = ECMD_FAILED; -- cgit