From: "Dale J. Stephenson" <dalestephenson@mac.com>
To: linux-lvm <linux-lvm@sistina.com>
Subject: [linux-lvm] Snapshot resizing pe_allocated correction
Date: Mon Mar 3 12:43:02 2003 [thread overview]
Message-ID: <3E63CCA0.3000908@mac.com> (raw)
Another slight fix. When a snapshot is resized, the volume groups'
pe_allocated field is not updated. The following patch should fix this
problem:
--- linux/drivers/md/lvm.c.orig Mon Apr 29 08:50:41 2002
+++ linux/drivers/md/lvm.c Mon Apr 29 12:41:29 2002
@@ -2280,6 +2280,9 @@
return -ENOMEM;
}
+ vg_ptr->pe_allocated -= old_lv->lv_allocated_snapshot_le;
+ vg_ptr->pe_allocated += new_lv->lv_allocated_le;
+
return 0;
}
next reply other threads:[~2003-03-03 12:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-03 12:43 Dale J. Stephenson [this message]
2003-03-04 6:19 ` [linux-lvm] Snapshot resizing pe_allocated correction Heinz J . Mauelshagen
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=3E63CCA0.3000908@mac.com \
--to=dalestephenson@mac.com \
--cc=linux-lvm@sistina.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.