summaryrefslogtreecommitdiffstats
path: root/liblvm
diff options
context:
space:
mode:
authorDave Wysochanski <dwysocha@redhat.com>2009-07-26 02:34:36 +0000
committerDave Wysochanski <dwysocha@redhat.com>2009-07-26 02:34:36 +0000
commit7a35a9f5d89c99b45c8feb05531dbf83a6dfc2ec (patch)
treea0801c934fc2005d1d83d686f85a2258bf1226b5 /liblvm
parent9963d0710e3677ec429b6d64208328128e6eb9f4 (diff)
downloadlvm2-7a35a9f5d89c99b45c8feb05531dbf83a6dfc2ec.tar.gz
lvm2-7a35a9f5d89c99b45c8feb05531dbf83a6dfc2ec.tar.xz
lvm2-7a35a9f5d89c99b45c8feb05531dbf83a6dfc2ec.zip
Add lvm_vg_create_lv_linear liblvm function.
Create a default linear logical volume from a volume group. Author: Dave Wysochanski <dwysocha@redhat.com>
Diffstat (limited to 'liblvm')
-rw-r--r--liblvm/.exported_symbols1
-rw-r--r--liblvm/lvm.h20
-rw-r--r--liblvm/lvm_lv.c52
3 files changed, 73 insertions, 0 deletions
diff --git a/liblvm/.exported_symbols b/liblvm/.exported_symbols
index 08d5a603..3d42cc76 100644
--- a/liblvm/.exported_symbols
+++ b/liblvm/.exported_symbols
@@ -21,3 +21,4 @@ lvm_vg_list_pvs
lvm_vg_list_lvs
lvm_list_vg_names
lvm_list_vg_ids
+lvm_vg_create_lv_linear
diff --git a/liblvm/lvm.h b/liblvm/lvm.h
index 48ec6376..f2080f71 100644
--- a/liblvm/lvm.h
+++ b/liblvm/lvm.h
@@ -97,6 +97,26 @@ void lvm_destroy(lvm_t libh);
int lvm_reload_config(lvm_t libh);
/**
+ * Create a linear logical volume.
+ * This API commits the change to disk and does _not_ require calling
+ * lvm_vg_write.
+ * FIXME: This API should probably not commit to disk but require calling
+ * lvm_vg_write. However, this appears to be non-trivial change until
+ * lv_create_single is refactored by segtype.
+ *
+ * \param vg
+ * VG handle obtained from lvm_vg_create or lvm_vg_open.
+ *
+ * \param name
+ * Name of logical volume to create.
+ *
+ * \param size
+ * Size of logical volume in extents.
+ *
+ */
+lv_t *lvm_vg_create_lv_linear(vg_t *vg, const char *name, uint64_t size);
+
+/**
* Return stored error no describing last LVM API error.
*
* Users of liblvm should use lvm_errno to determine success or failure
diff --git a/liblvm/lvm_lv.c b/liblvm/lvm_lv.c
index d5573500..e914d6c2 100644
--- a/liblvm/lvm_lv.c
+++ b/liblvm/lvm_lv.c
@@ -16,6 +16,9 @@
#include "lvm.h"
#include "metadata-exported.h"
#include "lvm-string.h"
+#include "defaults.h"
+#include "segtype.h"
+#include <string.h>
char *lvm_lv_get_uuid(const lv_t *lv)
{
@@ -38,3 +41,52 @@ char *lvm_lv_get_name(const lv_t *lv)
return name;
}
+/* Set defaults for non-segment specific LV parameters */
+static void _lv_set_default_params(struct lvcreate_params *lp,
+ vg_t *vg, const char *lvname,
+ uint64_t extents)
+{
+ lp->zero = 1;
+ lp->major = -1;
+ lp->minor = -1;
+ lp->vg_name = vg->name;
+ lp->lv_name = lvname; /* FIXME: check this for safety */
+ lp->pvh = &vg->pvs;
+
+ lp->extents = extents;
+ lp->permission = LVM_READ | LVM_WRITE;
+ lp->read_ahead = DM_READ_AHEAD_NONE;
+ lp->alloc = ALLOC_INHERIT;
+ lp->tag = NULL;
+}
+
+/* Set default for linear segment specific LV parameters */
+static void _lv_set_default_linear_params(struct cmd_context *cmd,
+ struct lvcreate_params *lp)
+{
+ lp->segtype = get_segtype_from_string(cmd, "striped");
+ lp->stripes = 1;
+ lp->stripe_size = DEFAULT_STRIPESIZE * 2;
+}
+
+lv_t *lvm_vg_create_lv_linear(vg_t *vg, const char *name, uint64_t size)
+{
+ struct lvcreate_params lp;
+ uint64_t extents;
+ struct lv_list *lvl;
+
+ /* FIXME: check for proper VG access */
+ if (vg_read_error(vg))
+ return NULL;
+ memset(&lp, 0, sizeof(lp));
+ extents = extents_from_size(vg->cmd, size, vg->extent_size);
+ _lv_set_default_params(&lp, vg, name, extents);
+ _lv_set_default_linear_params(vg->cmd, &lp);
+ if (!lv_create_single(vg, &lp))
+ return NULL;
+ lvl = find_lv_in_vg(vg, name);
+ if (!lvl)
+ return NULL;
+ return lvl->lv;
+}
+