From: Xose Vazquez Perez <xose@wanadoo.es>
To: linux-kernel <linux-kernel@vger.kernel.org>,
Tosatti <marcelo.tosatti@cyclades.com>
Subject: [PATCH] LVM-1.0.8 for 2.4.23-rc1
Date: Tue, 18 Nov 2003 03:10:22 +0100 [thread overview]
Message-ID: <3FB97F8E.7090906@wanadoo.es> (raw)
[-- Attachment #1: Type: text/plain, Size: 278 bytes --]
Changelog for 1.0.7 to 1.0.8
Driver
------
o fixed list handling in lvm_find_exception_table()
o corrected physical extent counters
user space utils and complete patch at:
ftp://ftp.sistina.com/pub/LVM/1.0/
-thanks-
--
Software is like sex, it's better when it's bug free.
[-- Attachment #2: lvm_1.0.8.diff --]
[-- Type: text/plain, Size: 2315 bytes --]
diff -Nuar old/drivers/md/lvm.c new/drivers/md/lvm.c
--- old/drivers/md/lvm.c 2003-11-18 02:45:25.000000000 +0100
+++ new/drivers/md/lvm.c 2003-11-18 02:40:24.000000000 +0100
@@ -2594,8 +2594,9 @@
new_lv->lv_block_exception[e].
rsector_org, new_lv);
- vg_ptr->pe_allocated -= old_lv->lv_allocated_le;
+ vg_ptr->pe_allocated -= old_lv->lv_allocated_snapshot_le;
vg_ptr->pe_allocated += new_lv->lv_allocated_le;
+ old_lv->lv_allocated_snapshot_le = new_lv->lv_allocated_le;
} else {
vfree(old_lv->lv_current_pe);
vfree(old_lv->lv_snapshot_hash_table);
diff -Nuar old/drivers/md/lvm-snap.c new/drivers/md/lvm-snap.c
--- old/drivers/md/lvm-snap.c 2003-11-18 02:45:25.000000000 +0100
+++ new/drivers/md/lvm-snap.c 2003-11-18 02:50:37.000000000 +0100
@@ -44,6 +44,7 @@
* 26/06/2002 - support for new list_move macro [patch@luckynet.dynu.com]
* 26/07/2002 - removed conditional list_move macro because we will
* discontinue LVM1 before 2.6 anyway
+ * 27/08/2003 - fixed unsafe list handling in lvm_find_exception_table() [HM]
*
*/
@@ -114,7 +115,7 @@
org_start,
lv_t * lv)
{
- struct list_head *hash_table = lv->lv_snapshot_hash_table, *next;
+ struct list_head *hash_table = lv->lv_snapshot_hash_table, *next, *n;
unsigned long mask = lv->lv_snapshot_hash_mask;
int chunk_size = lv->lv_chunk_size;
lv_block_exception_t *ret;
@@ -123,8 +124,9 @@
hash_table =
&hash_table[hashfn(org_dev, org_start, mask, chunk_size)];
ret = NULL;
- for (next = hash_table->next; next != hash_table;
- next = next->next) {
+
+ for (next = hash_table->next, n = next->next; next != hash_table;
+ next = n, n = next->next) {
lv_block_exception_t *exception;
exception = list_entry(next, lv_block_exception_t, hash);
diff -Nuar old/include/linux/lvm.h new/include/linux/lvm.h
--- old/include/linux/lvm.h 2003-11-18 02:45:19.000000000 +0100
+++ new/include/linux/lvm.h 2003-11-18 02:41:05.000000000 +0100
@@ -80,8 +80,8 @@
#ifndef _LVM_H_INCLUDE
#define _LVM_H_INCLUDE
-#define LVM_RELEASE_NAME "1.0.7"
-#define LVM_RELEASE_DATE "28/03/2003"
+#define LVM_RELEASE_NAME "1.0.8"
+#define LVM_RELEASE_DATE "17/11/2003"
#define _LVM_KERNEL_H_VERSION "LVM "LVM_RELEASE_NAME" ("LVM_RELEASE_DATE")"
reply other threads:[~2003-11-18 2:10 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=3FB97F8E.7090906@wanadoo.es \
--to=xose@wanadoo.es \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo.tosatti@cyclades.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox