diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-11-15 15:38:12 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-11-15 15:39:50 +0000 |
commit | abfbc911367cbd315ee0564a4756aa4197799c40 (patch) | |
tree | 92f53986a474b3404806692adfa9c4f31802c23b /main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch | |
parent | 73e5eb1a52eb7b0bfe192c3f0d59a58b43fc4731 (diff) | |
download | aports-abfbc911367cbd315ee0564a4756aa4197799c40.tar.bz2 aports-abfbc911367cbd315ee0564a4756aa4197799c40.tar.xz |
main/multipath-tools: upgrade to 0.4.9_git20120127
Upstream is lazy in making releases. Used the same git snapshot used in current Debian stable.
Diffstat (limited to 'main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch')
-rw-r--r-- | main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch b/main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch deleted file mode 100644 index 3f70fd70e4..0000000000 --- a/main/multipath-tools/multipath-tools-0.4.8-kparted-ext-partitions.patch +++ /dev/null @@ -1,28 +0,0 @@ -From c421c9282791696264d1333fb2552835140354c3 Mon Sep 17 00:00:00 2001 -From: Robin H. Johnson <robbat2@gentoo.org> -Date: Thu, 5 Nov 2009 03:44:12 +0000 -Subject: [PATCH] kpartx: Fix broken calculation of extended partitions that caused random devices to be used instead of the correct parent device. - -Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> ---- - kpartx/dos.c | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) - -diff --git a/kpartx/dos.c b/kpartx/dos.c -index 1691105..317fc56 100644 ---- a/kpartx/dos.c -+++ b/kpartx/dos.c -@@ -53,7 +53,9 @@ read_extended_partition(int fd, struct partition *ep, int en, - if (n < ns) { - sp[n].start = here + le32_to_cpu(p.start_sect); - sp[n].size = le32_to_cpu(p.nr_sects); -- sp[n].container = en + 1; -+ // This line seems to have no understandable -+ // purpose, and causes the wrong device to be used -+ //sp[n].container = en + 1; - n++; - } else { - fprintf(stderr, --- -1.6.4 - |