* [dpdk-dev] [PATCH] crypto/dpaa2_sec: fix build with GCC 7
@ 2018-01-29 22:36 Thomas Monjalon
2018-01-29 23:18 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Monjalon @ 2018-01-29 22:36 UTC (permalink / raw)
To: hemant.agrawal; +Cc: dev
Seen with GCC 7.2.0, a switch fall through is detected and
cannot be fixed with a fall-through comment or attribute:
drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h:89:6: error:
this statement may fall through [-Werror=implicit-fallthrough=]
if (rta_sec_era < RTA_SEC_ERA_2)
^
The check is disabled in dpaa2_sec Makefile but not in dpaa_sec Makefile
which uses source code shared by dpaa2_sec.
The workaround is to disable the check at the beginning of the file.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h b/drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h
index dae4bdfa1..c4febcb2f 100644
--- a/drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h
+++ b/drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h
@@ -8,6 +8,8 @@
#ifndef __RTA_OPERATION_CMD_H__
#define __RTA_OPERATION_CMD_H__
+#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
+
extern enum rta_sec_era rta_sec_era;
static inline int
--
2.15.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] crypto/dpaa2_sec: fix build with GCC 7
2018-01-29 22:36 [dpdk-dev] [PATCH] crypto/dpaa2_sec: fix build with GCC 7 Thomas Monjalon
@ 2018-01-29 23:18 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2018-01-29 23:18 UTC (permalink / raw)
To: hemant.agrawal; +Cc: dev
29/01/2018 23:36, Thomas Monjalon:
> Seen with GCC 7.2.0, a switch fall through is detected and
> cannot be fixed with a fall-through comment or attribute:
>
> drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h:89:6: error:
> this statement may fall through [-Werror=implicit-fallthrough=]
> if (rta_sec_era < RTA_SEC_ERA_2)
> ^
>
> The check is disabled in dpaa2_sec Makefile but not in dpaa_sec Makefile
> which uses source code shared by dpaa2_sec.
>
> The workaround is to disable the check at the beginning of the file.
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-01-29 23:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-29 22:36 [dpdk-dev] [PATCH] crypto/dpaa2_sec: fix build with GCC 7 Thomas Monjalon
2018-01-29 23:18 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).