This is the mail archive of the lvm2-cvs@sourceware.org mailing list for the LVM2 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

LVM2/tools pvresize.c


CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	wysochanski@sourceware.org	2007-06-13 22:16:27

Modified files:
	tools          : pvresize.c 

Log message:
	Convert pv->pe_start to get_pv_pe_start

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/pvresize.c.diff?cvsroot=lvm2&r1=1.4&r2=1.5

--- LVM2/tools/pvresize.c	2007/06/06 19:40:28	1.4
+++ LVM2/tools/pvresize.c	2007/06/13 22:16:27	1.5
@@ -125,9 +125,9 @@
 		return ECMD_FAILED;
 	}
 
-	if (size < pv->pe_start) {
+	if (size < get_pv_pe_start(pv)) {
 		log_error("%s: Size must exceed physical extent start of "
-			  "%" PRIu64 " sectors.", pv_name, pv->pe_start);
+			  "%" PRIu64 " sectors.", pv_name, get_pv_pe_start(pv));
 		unlock_vg(cmd, vg_name);
 		return ECMD_FAILED;
 	}
@@ -135,7 +135,7 @@
 	pv->size = size;
 
 	if (vg) {
-		pv->size -= pv->pe_start;
+		pv->size -= get_pv_pe_start(pv);
 		new_pe_count = pv->size / vg->extent_size;
 		
  		if (!new_pe_count) {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]