From: wysochanski@sourceware.org <wysochanski@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/tools pvchange.c pvdisplay.c pvscan.c vgr ...
Date: 13 Jun 2007 22:04:46 -0000 [thread overview]
Message-ID: <20070613220446.10289.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: wysochanski at sourceware.org 2007-06-13 22:04:45
Modified files:
tools : pvchange.c pvdisplay.c pvscan.c vgreduce.c
vgsplit.c
Log message:
Convert pv->pe_alloc_count to get_pv_pe_alloc_count
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/pvchange.c.diff?cvsroot=lvm2&r1=1.45&r2=1.46
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/pvdisplay.c.diff?cvsroot=lvm2&r1=1.29&r2=1.30
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/pvscan.c.diff?cvsroot=lvm2&r1=1.30&r2=1.31
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/vgreduce.c.diff?cvsroot=lvm2&r1=1.59&r2=1.60
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/vgsplit.c.diff?cvsroot=lvm2&r1=1.26&r2=1.27
--- LVM2/tools/pvchange.c 2007/06/06 19:40:28 1.45
+++ LVM2/tools/pvchange.c 2007/06/13 22:04:45 1.46
@@ -182,7 +182,7 @@
log_verbose("Changing uuid of %s to %s.", pv_name, uuid);
if (*pv->vg_name) {
orig_vg_name = pv->vg_name;
- orig_pe_alloc_count = pv->pe_alloc_count;
+ orig_pe_alloc_count = get_pv_pe_alloc_count(pv);
pv->vg_name = ORPHAN;
pv->pe_alloc_count = 0;
if (!(pv_write(cmd, pv, NULL, INT64_C(-1)))) {
--- LVM2/tools/pvdisplay.c 2007/06/06 19:40:28 1.29
+++ LVM2/tools/pvdisplay.c 2007/06/13 22:04:45 1.30
@@ -59,7 +59,7 @@
if (!*pv->vg_name)
size = pv->size;
else
- size = (pv->pe_count - pv->pe_alloc_count) * pv->pe_size;
+ size = (pv->pe_count - get_pv_pe_alloc_count(pv)) * pv->pe_size;
if (arg_count(cmd, short_ARG)) {
log_print("Device \"%s\" has a capacity of %s", pv_name,
--- LVM2/tools/pvscan.c 2006/11/30 23:11:42 1.30
+++ LVM2/tools/pvscan.c 2007/06/13 22:04:45 1.31
@@ -91,7 +91,7 @@
pv->fmt ? pv->fmt->name : " ",
display_size(cmd, (uint64_t) pv->pe_count * pv->pe_size),
display_size(cmd,
- (uint64_t) (pv->pe_count - pv->pe_alloc_count) *
+ (uint64_t) (pv->pe_count - get_pv_pe_alloc_count(pv)) *
pv->pe_size));
return;
}
--- LVM2/tools/vgreduce.c 2007/06/06 19:40:28 1.59
+++ LVM2/tools/vgreduce.c 2007/06/13 22:04:45 1.60
@@ -397,7 +397,7 @@
}
vg->pv_count--;
- vg->free_count -= pv->pe_count - pv->pe_alloc_count;
+ vg->free_count -= pv->pe_count - get_pv_pe_alloc_count(pv);
vg->extent_count -= pv->pe_count;
if (!vg_write(vg) || !vg_commit(vg)) {
--- LVM2/tools/vgsplit.c 2007/06/06 19:40:28 1.26
+++ LVM2/tools/vgsplit.c 2007/06/13 22:04:45 1.27
@@ -38,8 +38,8 @@
vg_from->extent_count -= pv->pe_count;
vg_to->extent_count += pv->pe_count;
- vg_from->free_count -= pv->pe_count - pv->pe_alloc_count;
- vg_to->free_count += pv->pe_count - pv->pe_alloc_count;
+ vg_from->free_count -= pv->pe_count - get_pv_pe_alloc_count(pv);
+ vg_to->free_count += pv->pe_count - get_pv_pe_alloc_count(pv);
return 1;
}
reply other threads:[~2007-06-13 22:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070613220446.10289.qmail@sourceware.org \
--to=wysochanski@sourceware.org \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.