]> sourceware.org Git - lvm2.git/commitdiff
Change pvcreate_single to return pv_t and update function description.
authorDave Wysochanski <dwysocha@redhat.com>
Sun, 26 Jul 2009 01:53:57 +0000 (01:53 +0000)
committerDave Wysochanski <dwysocha@redhat.com>
Sun, 26 Jul 2009 01:53:57 +0000 (01:53 +0000)
Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>
Author: Dave Wysochanski <dwysocha@redhat.com>

lib/metadata/metadata-exported.h
lib/metadata/metadata.c

index 586db0674b98860e9ad2d0e0fb1a7a25f1c452c0..aa096ef942953be66da20bb5c5bab2220c268367 100644 (file)
@@ -354,7 +354,8 @@ struct pvcreate_params {
        unsigned yes;
 };
 
-int pvcreate_single(struct cmd_context *cmd, const char *pv_name, void *handle);
+pv_t * pvcreate_single(struct cmd_context *cmd, const char *pv_name,
+                      void *handle);
 
 /*
 * Utility functions
index b8debbeb3b7d3a621c7a50c772469eddba639280..aa25b3a4159cc01bfd70aaa1fea24a7bcf10a20a 100644 (file)
@@ -1107,7 +1107,19 @@ static void fill_default_pvcreate_params(struct pvcreate_params *pp)
        pp->yes = 0;
 }
 
-int pvcreate_single(struct cmd_context *cmd, const char *pv_name, void *handle)
+/*
+ * pvcreate_single() - initialize a device with PV label and metadata
+ *
+ * Parameters:
+ * - pv_name: device path to initialize
+ * - handle: options to pass to pv_create; NULL indicates use defaults
+ *
+ * Returns:
+ * NULL: error
+ * pv_t * (non-NULL): handle to physical volume created
+ */
+pv_t * pvcreate_single(struct cmd_context *cmd, const char *pv_name,
+                      void *handle)
 {
        struct pvcreate_params *pp;
        void *pv;
@@ -1126,13 +1138,13 @@ int pvcreate_single(struct cmd_context *cmd, const char *pv_name, void *handle)
                    (dev != dev_cache_get(pv_name, cmd->filter))) {
                        log_error("uuid %s already in use on \"%s\"",
                                  pp->idp->uuid, dev_name(dev));
-                       return 0;
+                       return NULL;
                }
        }
 
        if (!lock_vol(cmd, VG_ORPHANS, LCK_VG_WRITE)) {
                log_error("Can't get lock for orphan PVs");
-               return 0;
+               return NULL;
        }
 
        if (!pvcreate_check(cmd, pv_name, pp))
@@ -1192,11 +1204,11 @@ int pvcreate_single(struct cmd_context *cmd, const char *pv_name, void *handle)
        log_print("Physical volume \"%s\" successfully created", pv_name);
 
        unlock_vg(cmd, VG_ORPHANS);
-       return 1;
+       return pv;
 
       error:
        unlock_vg(cmd, VG_ORPHANS);
-       return 0;
+       return NULL;
 }
 
 static void _free_pv(struct dm_pool *mem, struct physical_volume *pv)
This page took 0.041711 seconds and 5 git commands to generate.