summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-05-11 10:35:13 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-13 13:41:29 +0100
commit6ab12ea4d1673d3dcfdc5940a9df0b809c3e2dd9 (patch)
tree70214fa2fe2fac02226e7b98be34bc8408be3039 /meta/recipes-extended
parentfaf16fd051e14942e658f678404578300fa12345 (diff)
downloadpoky-6ab12ea4d1673d3dcfdc5940a9df0b809c3e2dd9.tar.gz
mdadm: Fix gcc 6 warnings
(From OE-Core rev: aa20503a8f93a134db5124e5a6b1ac5fff08cc87) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch37
-rw-r--r--meta/recipes-extended/mdadm/mdadm_3.4.bb3
2 files changed, 39 insertions, 1 deletions
diff --git a/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch b/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch
new file mode 100644
index 0000000000..0b34b8491f
--- /dev/null
+++ b/meta/recipes-extended/mdadm/files/0001-raid6check-Fix-if-else-indentation.patch
@@ -0,0 +1,37 @@
1From 1b0aa1debf6fbe9923c9aac671d2894f76c32f9d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 20 Apr 2016 16:38:13 +0000
4Subject: [PATCH] raid6check: Fix if-else indentation
5
6gcc 6 warns about ambiguity due to this indentation
7| raid6check.c: In function 'manual_repair':
8| raid6check.c:267:4: error: this 'else' clause does not guard... [-Werror=misleading-indentation]
9| else
10| ^~~~
11| raid6check.c:269:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'else'
12| printf("Repairing D(%d) and P\n", failed_data);
13| ^~~~~~
14
15Signed-off-by: Khem Raj <raj.khem@gmail.com>
16---
17Upstream-Status: Submitted
18
19 raid6check.c | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/raid6check.c b/raid6check.c
23index ad7ffe7..409b1b6 100644
24--- a/raid6check.c
25+++ b/raid6check.c
26@@ -266,7 +266,7 @@ int manual_repair(int chunk_size, int syndrome_disks,
27 failed_data = failed_slot2;
28 else
29 failed_data = failed_slot1;
30- printf("Repairing D(%d) and P\n", failed_data);
31+ printf("Repairing D(%d) and P\n", failed_data);
32 raid6_datap_recov(syndrome_disks+2, chunk_size,
33 failed_data, (uint8_t**)blocks, 1);
34 } else {
35--
361.9.1
37
diff --git a/meta/recipes-extended/mdadm/mdadm_3.4.bb b/meta/recipes-extended/mdadm/mdadm_3.4.bb
index 142dfddbf2..0e55de4450 100644
--- a/meta/recipes-extended/mdadm/mdadm_3.4.bb
+++ b/meta/recipes-extended/mdadm/mdadm_3.4.bb
@@ -19,7 +19,8 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/raid/mdadm/${BPN}-${PV}.tar.xz \
19 file://0001-Fix-some-type-comparison-problems.patch \ 19 file://0001-Fix-some-type-comparison-problems.patch \
20 file://0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch \ 20 file://0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch \
21 file://run-ptest \ 21 file://run-ptest \
22 " 22 file://0001-raid6check-Fix-if-else-indentation.patch \
23 "
23SRC_URI[md5sum] = "04b8b21f637540350f8517c7e68d3c63" 24SRC_URI[md5sum] = "04b8b21f637540350f8517c7e68d3c63"
24SRC_URI[sha256sum] = "27d0be4627d38a12ddcd1c1c3721d649d4e89e1093914497e22b57245cda8808" 25SRC_URI[sha256sum] = "27d0be4627d38a12ddcd1c1c3721d649d4e89e1093914497e22b57245cda8808"
25 26