[lvm-devel] [PATCH] lvm2app: Possible implementation of missing pv resize (v3)

Tony Asleson tasleson at redhat.com
Wed Oct 17 19:25:51 UTC 2012


Patch correctly checks for update lock before allowing
resize to process and also requires lvm_vg_write to
make changes persistent.  As the API does not allow the
re-size of a orphaned pv this is accomplished through
the existing vg_write, vg_commit sequence which is done
in lvm_vg_write.  I would appreciate others who know
the code better to review and make suggestions.

Thanks,
Tony

Signed-off-by: Tony Asleson <tasleson at redhat.com>
---
 lib/metadata/metadata-exported.h |    8 ++++-
 lib/metadata/pv_manip.c          |   48 +++++++++++++++++++++++++++++++++++++-
 liblvm/lvm2app.h                 |    5 ++-
 liblvm/lvm_pv.c                  |   21 +++++++++++++---
 tools/pvresize.c                 |   26 +-------------------
 5 files changed, 74 insertions(+), 34 deletions(-)

diff --git a/lib/metadata/metadata-exported.h b/lib/metadata/metadata-exported.h
index d149f95..cf38d9e 100644
--- a/lib/metadata/metadata-exported.h
+++ b/lib/metadata/metadata-exported.h
@@ -482,8 +482,12 @@ struct physical_volume *pv_create(const struct cmd_context *cmd,
 				  unsigned pvmetadatacopies,
 				  uint64_t pvmetadatasize,
 				  unsigned metadataignore);
-int pv_resize(struct physical_volume *pv, struct volume_group *vg,
-	      uint64_t size);
+
+int pv_resize(struct cmd_context *cmd,
+				struct volume_group *vg,
+				struct physical_volume *pv,
+				const uint64_t new_size);
+
 int pv_analyze(struct cmd_context *cmd, const char *pv_name,
 	       uint64_t label_sector);
 
diff --git a/lib/metadata/pv_manip.c b/lib/metadata/pv_manip.c
index d04ecab..4d37a6b 100644
--- a/lib/metadata/pv_manip.c
+++ b/lib/metadata/pv_manip.c
@@ -19,6 +19,7 @@
 #include "toolcontext.h"
 #include "locking.h"
 #include "defaults.h"
+#include "archiver.h"
 
 static struct pv_segment *_alloc_pv_segment(struct dm_pool *mem,
 					    struct physical_volume *pv,
@@ -485,7 +486,7 @@ static int _extend_pv(struct physical_volume *pv, struct volume_group *vg,
  * Resize a PV in a VG, adding or removing segments as needed.
  * New size must fit within pv->size.
  */
-int pv_resize(struct physical_volume *pv,
+static int _pv_resize(struct physical_volume *pv,
 	      struct volume_group *vg,
 	      uint64_t size)
 {
@@ -543,3 +544,48 @@ int pv_resize(struct physical_volume *pv,
 
 	return 1;
 }
+
+/*
+ * You need to have acquired the correct locks for vg or pv (if orphan) before
+ * calling this function.  vg can be NULL which implies orphan pv.
+ * Code to write changes out must be called after this to make persistent.
+ */
+int pv_resize(struct cmd_context *cmd,
+				struct volume_group *vg,
+				struct physical_volume *pv,
+				const uint64_t new_size)
+{
+	uint64_t size = 0;
+	int rc = 0;
+	const char *pv_name = pv_dev_name(pv);
+
+	if (!(pv->fmt->features & FMT_RESIZE_PV)) {
+		log_error("Physical volume %s format does not support resizing.",
+					pv_name);
+	} else {
+
+		/* Get new size */
+		if (!dev_get_size(pv_dev(pv), &size)) {
+			log_error("%s: Couldn't get size.", pv_name);
+		} else {
+
+			if (new_size) {
+				if (new_size > size)
+					log_warn("WARNING: %s: Overriding real size. "
+							"You could lose data.", pv_name);
+
+				log_verbose("%s: Pretending size is %" PRIu64 " not %"
+							PRIu64 " sectors.", pv_name, new_size, pv_size(pv));
+				size = new_size;
+			}
+
+			log_verbose("Resizing volume \"%s\" to %" PRIu64 " sectors.",
+					pv_name, pv_size(pv));
+
+			if (_pv_resize(pv, vg, size))
+				rc = 1;
+		}
+	}
+
+	return rc;
+}
diff --git a/liblvm/lvm2app.h b/liblvm/lvm2app.h
index b758945..3a1fbf2 100644
--- a/liblvm/lvm2app.h
+++ b/liblvm/lvm2app.h
@@ -1603,9 +1603,10 @@ pv_t lvm_pv_from_uuid(vg_t vg, const char *uuid);
 /**
  * Resize physical volume to new_size bytes.
  *
- * \memberof pv_t
+ * Note: Make sure to do a lvm_vg_write on the containing vg to save the
+ * new size.
  *
- * NOTE: This function is currently not implemented.
+ * \memberof pv_t
  *
  * \param   pv
  * Physical volume handle.
diff --git a/liblvm/lvm_pv.c b/liblvm/lvm_pv.c
index 90edaed..c12adf1 100644
--- a/liblvm/lvm_pv.c
+++ b/liblvm/lvm_pv.c
@@ -120,10 +120,23 @@ pv_t lvm_pv_from_uuid(vg_t vg, const char *uuid)
 	return NULL;
 }
 
-
 int lvm_pv_resize(const pv_t pv, uint64_t new_size)
 {
-	/* FIXME: add pv resize code here */
-	log_error("NOT IMPLEMENTED YET");
-	return -1;
+	uint64_t size = new_size >> SECTOR_SHIFT;
+
+	if (new_size % SECTOR_SIZE) {
+		log_errno(EINVAL, "Size not a multiple of 512");
+		return -1;
+	}
+
+	if (!vg_check_write_mode(pv->vg)) {
+		return -1;
+	}
+
+	if (!pv_resize(pv->vg->cmd, pv->vg, pv, size)) {
+		log_error("PV re-size failed!");
+		return -1;
+	} else {
+		return 0;
+	}
 }
diff --git a/tools/pvresize.c b/tools/pvresize.c
index 2f0693a..abf8432 100644
--- a/tools/pvresize.c
+++ b/tools/pvresize.c
@@ -30,7 +30,6 @@ static int _pv_resize_single(struct cmd_context *cmd,
 			     const uint64_t new_size)
 {
 	struct pv_list *pvl;
-	uint64_t size = 0;
 	int r = 0;
 	const char *pv_name = pv_dev_name(pv);
 	const char *vg_name = pv_vg_name(pv);
@@ -70,33 +69,10 @@ static int _pv_resize_single(struct cmd_context *cmd,
 			goto out;
 	}
 
-	if (!(pv->fmt->features & FMT_RESIZE_PV)) {
-		log_error("Physical volume %s format does not support resizing.",
-			  pv_name);
-		goto out;
-	}
-
-	/* Get new size */
-	if (!dev_get_size(pv_dev(pv), &size)) {
-		log_error("%s: Couldn't get size.", pv_name);
+	if( !pv_resize(cmd, vg, pv, new_size)) {
 		goto out;
 	}
 
-	if (new_size) {
-		if (new_size > size)
-			log_warn("WARNING: %s: Overriding real size. "
-				  "You could lose data.", pv_name);
-		log_verbose("%s: Pretending size is %" PRIu64 " not %" PRIu64
-			    " sectors.", pv_name, new_size, pv_size(pv));
-		size = new_size;
-	}
-
-	log_verbose("Resizing volume \"%s\" to %" PRIu64 " sectors.",
-		    pv_name, pv_size(pv));
-
-	if (!pv_resize(pv, vg, size))
-		goto_out;
-
 	log_verbose("Updating physical volume \"%s\"", pv_name);
 
 	/* Write PV label only if this an orphan PV or it has 2nd mda. */
-- 
1.7.1




More information about the lvm-devel mailing list