diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-12-30 14:16:13 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-03 12:10:49 +0000 |
commit | f01f6764a744fcb6c5c342ab06a52f97fe362f1a (patch) | |
tree | b37835ecae1343a3b2be25cc0db661fc92cf23af /meta/recipes-extended/mdadm/files | |
parent | 8eff4fea13317a741114f2a2e8e228d0155ba64c (diff) | |
download | openembedded-core-f01f6764a744fcb6c5c342ab06a52f97fe362f1a.tar.gz openembedded-core-f01f6764a744fcb6c5c342ab06a52f97fe362f1a.tar.bz2 openembedded-core-f01f6764a744fcb6c5c342ab06a52f97fe362f1a.tar.xz openembedded-core-f01f6764a744fcb6c5c342ab06a52f97fe362f1a.zip |
mdadm: upgrade to the latest version 3.2.3
deleted 1 patch since it's in new version now.
made LICENSE field more accurate.
updated chksum of COPYING: only working change; no actual license change.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/recipes-extended/mdadm/files')
-rw-r--r-- | meta/recipes-extended/mdadm/files/0001-mdadm-fix-build-failures-ppc64.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/meta/recipes-extended/mdadm/files/0001-mdadm-fix-build-failures-ppc64.patch b/meta/recipes-extended/mdadm/files/0001-mdadm-fix-build-failures-ppc64.patch deleted file mode 100644 index f573bbcef..000000000 --- a/meta/recipes-extended/mdadm/files/0001-mdadm-fix-build-failures-ppc64.patch +++ /dev/null @@ -1,52 +0,0 @@ -Upstream-Status: Pending - -From 19986c721c9ac4b353c8592998d70d0dc8860bfd Mon Sep 17 00:00:00 2001 -From: Milan Broz <mbroz@redhat.com> -Date: Thu, 14 Jul 2011 13:58:36 +1000 -Subject: [PATCH] mdadm: fix build failures (ppc64) - -This patch fixes these build issues: - -super-intel.c: In function 'getinfo_super_imsm_volume': -super-intel.c:2327:4: error: format '%llu' expects argument of type 'long long -unsigned int', but argument 3 has type '__u64' [-Werror=format] - -super-intel.c: In function 'imsm_reshape_super': -super-intel.c:8665:7: error: 'devnum' may be used uninitialized in this function [-Werror=uninitialized] - -Signed-off-by: Milan Broz <mbroz@redhat.com> -Signed-off-by: NeilBrown <neilb@suse.de> ---- - super-intel.c | 9 ++++++--- - 1 files changed, 6 insertions(+), 3 deletions(-) - -diff --git a/super-intel.c b/super-intel.c -index 5ea3b36..70cf993 100644 ---- a/super-intel.c -+++ b/super-intel.c -@@ -2326,7 +2326,9 @@ static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info, - - dprintf("IMSM: General Migration checkpoint : %llu " - "(%llu) -> read reshape progress : %llu\n", -- units, blocks_per_unit, info->reshape_progress); -+ (unsigned long long)units, -+ (unsigned long long)blocks_per_unit, -+ info->reshape_progress); - - used_disks = imsm_num_data_members(dev, 1); - if (used_disks > 0) { -@@ -8661,8 +8663,9 @@ static int imsm_reshape_super(struct supertype *st, long long size, int level, - dprintf("imsm: info: Volume operation\n"); - /* find requested device */ - while (dev) { -- imsm_find_array_minor_by_subdev(dev->index, st->container_dev, &devnum); -- if (devnum == geo.dev_id) -+ if (imsm_find_array_minor_by_subdev( -+ dev->index, st->container_dev, &devnum) == 0 -+ && devnum == geo.dev_id) - break; - dev = dev->next; - } --- -1.7.6.1 - |