diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 14:55:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 15:02:26 +0200 |
commit | bc73a84398fa54b0a11a80c749bf78eb0a58dbe6 (patch) | |
tree | 3e7b6670989ceb4f31464bad632c0332121d96a0 /gnu/packages/patches/mdadm-gcc-4.9-fix.patch | |
parent | 12b6f6527e49c8c4191929a72b1692dbd9eb2440 (diff) | |
parent | 624d4e2e6ba402c374a340869306eec65a808a20 (diff) | |
download | guix-bc73a84398fa54b0a11a80c749bf78eb0a58dbe6.tar guix-bc73a84398fa54b0a11a80c749bf78eb0a58dbe6.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/patches/mdadm-gcc-4.9-fix.patch')
-rw-r--r-- | gnu/packages/patches/mdadm-gcc-4.9-fix.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/gnu/packages/patches/mdadm-gcc-4.9-fix.patch b/gnu/packages/patches/mdadm-gcc-4.9-fix.patch deleted file mode 100644 index 222fd0ea32..0000000000 --- a/gnu/packages/patches/mdadm-gcc-4.9-fix.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 68641cdb646eaa15099c1d6cfff1eaa5dd2ac841 Mon Sep 17 00:00:00 2001 -From: Jes Sorensen <Jes.Sorensen@redhat.com> -Date: Tue, 24 Feb 2015 16:00:40 -0500 -Subject: [PATCH] write_super_imsm_spares(): C statements are terminated by ; - -Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> -Signed-off-by: NeilBrown <neilb@suse.de> ---- - super-intel.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/super-intel.c b/super-intel.c -index 819e0da..7f75b53 100644 ---- a/super-intel.c -+++ b/super-intel.c -@@ -5115,13 +5115,13 @@ static int write_super_imsm_spares(struct intel_super *super, int doclose) - __u32 sum; - struct dl *d; - -- spare->mpb_size = __cpu_to_le32(sizeof(struct imsm_super)), -- spare->generation_num = __cpu_to_le32(1UL), -+ spare->mpb_size = __cpu_to_le32(sizeof(struct imsm_super)); -+ spare->generation_num = __cpu_to_le32(1UL); - spare->attributes = MPB_ATTRIB_CHECKSUM_VERIFY; -- spare->num_disks = 1, -- spare->num_raid_devs = 0, -- spare->cache_size = mpb->cache_size, -- spare->pwr_cycle_count = __cpu_to_le32(1), -+ spare->num_disks = 1; -+ spare->num_raid_devs = 0; -+ spare->cache_size = mpb->cache_size; -+ spare->pwr_cycle_count = __cpu_to_le32(1); - - snprintf((char *) spare->sig, MAX_SIGNATURE_LENGTH, - MPB_SIGNATURE MPB_VERSION_RAID0); --- -2.4.3 - |