mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
lvm2: upgrade from 2.02.97 to 2.02.125
Upgrade lvm2 to 2.02.125: * drop 3 backported patches * remove PR and INC_PR Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -4,15 +4,11 @@ DEPENDS = "udev"
|
||||
LICENSE = "GPLv2 & LGPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
||||
file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24"
|
||||
INC_PR = "r4"
|
||||
|
||||
|
||||
S = "${WORKDIR}/LVM2.${PV}"
|
||||
SRC_URI = "ftp://sources.redhat.com/pub/lvm2/old/LVM2.${PV}.tgz \
|
||||
file://0001-Replace-CPPFunction-with-rl_completion_func_t.patch \
|
||||
file://mlock-ignore-vectors-gate_vma.patch \
|
||||
file://lvm.conf \
|
||||
file://0001-snapshot-check-snapshot-exists.patch"
|
||||
"
|
||||
|
||||
PACKAGECONFIG ??= "readline"
|
||||
PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline"
|
||||
|
||||
-33
@@ -1,33 +0,0 @@
|
||||
From e2484e179c389b98366c8b66b451d9d2ba8f35e8 Mon Sep 17 00:00:00 2001
|
||||
From: Zhenhua Luo <zhenhua.luo@freescale.com>
|
||||
Date: Tue, 25 Mar 2014 17:39:43 +0800
|
||||
Subject: [PATCH] Replace CPPFunction with rl_completion_func_t
|
||||
|
||||
lvm2 depends on readline, CPPFunction has been replaced by rl_completion_func_t
|
||||
in recent readline,
|
||||
|
||||
Upstream-Status: Inappropriate [configuration]
|
||||
The change depends on the build environment, it is required by OpenEmbedded env
|
||||
due to readline upgrade.
|
||||
|
||||
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
|
||||
---
|
||||
tools/lvm.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/tools/lvm.c b/tools/lvm.c
|
||||
index e002a76..5fa35d2 100644
|
||||
--- a/tools/lvm.c
|
||||
+++ b/tools/lvm.c
|
||||
@@ -186,7 +186,7 @@ int lvm_shell(struct cmd_context *cmd, struct cmdline_context *cmdline)
|
||||
char *input = NULL, *args[MAX_ARGS], **argv;
|
||||
|
||||
rl_readline_name = "lvm";
|
||||
- rl_attempted_completion_function = (CPPFunction *) _completion;
|
||||
+ rl_attempted_completion_function = (rl_completion_func_t *) _completion;
|
||||
|
||||
_read_history(cmd);
|
||||
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
From c46d4a745dc8c5cb4cfc0c94863e555387e9af75 Mon Sep 17 00:00:00 2001
|
||||
From: Zdenek Kabelac <zkabelac@redhat.com>
|
||||
Date: Mon, 16 Jun 2014 12:41:30 +0200
|
||||
Subject: [PATCH] snapshot: check snapshot exists
|
||||
|
||||
Return 0 if the LV is not even snapshot.
|
||||
|
||||
Upstream-Status: backport
|
||||
Adapt the patch for backporting to an older version.
|
||||
Signed-off-by: Li Zhou <li.zhou@windriver.com>
|
||||
---
|
||||
lib/metadata/snapshot_manip.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: LVM2.2.02.97/lib/metadata/snapshot_manip.c
|
||||
===================================================================
|
||||
--- LVM2.2.02.97.orig/lib/metadata/snapshot_manip.c
|
||||
+++ LVM2.2.02.97/lib/metadata/snapshot_manip.c
|
||||
@@ -68,8 +68,9 @@ struct lv_segment *find_merging_cow(cons
|
||||
|
||||
int lv_is_merging_cow(const struct logical_volume *snapshot)
|
||||
{
|
||||
+ struct lv_segment *snap_seg = find_cow(snapshot);
|
||||
/* checks lv_segment's status to see if cow is merging */
|
||||
- return (find_cow(snapshot)->status & MERGING) ? 1 : 0;
|
||||
+ return (snap_seg && (snap_seg->status & MERGING)) ? 1 : 0;
|
||||
}
|
||||
|
||||
/* Given a cow LV, return the snapshot lv_segment that uses it */
|
||||
@@ -1,31 +0,0 @@
|
||||
Subject: [PATCH] fix: mlock ignore [vectors] gate_vma
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
linux kernel has a new commit f9d4861f for [vectors] vma on ARM
|
||||
"ARM: 7294/1: vectors: use gate_vma for vectors user mapping".
|
||||
|
||||
mlock()/munlock() on a gate_vma would cause NOMEM error, so add
|
||||
[vectors] to _ignore_maps[], as other gate_vmas [vdso]/[vsyscall]
|
||||
did.
|
||||
|
||||
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
|
||||
---
|
||||
lib/mm/memlock.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/lib/mm/memlock.c b/lib/mm/memlock.c
|
||||
index 8c631bf..a6b1955 100644
|
||||
--- a/lib/mm/memlock.c
|
||||
+++ b/lib/mm/memlock.c
|
||||
@@ -84,6 +84,7 @@ static int _default_priority;
|
||||
static const char * const _ignore_maps[] = {
|
||||
"[vdso]",
|
||||
"[vsyscall]",
|
||||
+ "[vectors]",
|
||||
};
|
||||
|
||||
/* default blacklist for maps */
|
||||
--
|
||||
1.7.9.5
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
require lvm2.inc
|
||||
|
||||
SRC_URI[md5sum] = "2d24ba982c8a85e8c837210f087a6a51"
|
||||
SRC_URI[sha256sum] = "0e6da28465752cc2db7e7e6fc7b012a0146a98d717ac5dea1c900d4bc32bedb1"
|
||||
@@ -1,6 +0,0 @@
|
||||
require lvm2.inc
|
||||
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI[md5sum] = "d18bd01334309db1c422b9bf6b181057"
|
||||
SRC_URI[sha256sum] = "edda82012e8a9e1f0b00ba5a331468d3e0201992be14c0dbea71bf564a51fc2b"
|
||||
Reference in New Issue
Block a user