* [dpdk-dev] [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast.
@ 2017-10-17 11:04 Ian Stokes
2017-10-17 11:54 ` De Lara Guarch, Pablo
0 siblings, 1 reply; 3+ messages in thread
From: Ian Stokes @ 2017-10-17 11:04 UTC (permalink / raw)
To: dev; +Cc: pablo.de.lara.guarch, Ian Stokes
When compiling with an application that includes rte_cryptodev.h with
Ofast, an error is reported regarding enumeration
RTE_CRYPTO_OP_TYPE_UNDEFINED not handled in switch case in function
__rte_crypto_op_reset().
Fix this by adding case for RTE_OP_TYPE_UNDEFINED.
Signed-off-by: Ian Stokes <ian.stokes@intel.com>
---
lib/librte_cryptodev/rte_crypto.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib/librte_cryptodev/rte_crypto.h b/lib/librte_cryptodev/rte_crypto.h
index 10fe080..3ef9e41 100644
--- a/lib/librte_cryptodev/rte_crypto.h
+++ b/lib/librte_cryptodev/rte_crypto.h
@@ -144,6 +144,7 @@ struct rte_crypto_op {
case RTE_CRYPTO_OP_TYPE_SYMMETRIC:
__rte_crypto_sym_op_reset(op->sym);
break;
+ case RTE_CRYPTO_OP_TYPE_UNDEFINED:
default:
break;
}
--
1.7.0.7
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast.
2017-10-17 11:04 [dpdk-dev] [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast Ian Stokes
@ 2017-10-17 11:54 ` De Lara Guarch, Pablo
2017-10-17 12:50 ` Stokes, Ian
0 siblings, 1 reply; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2017-10-17 11:54 UTC (permalink / raw)
To: Stokes, Ian, dev
Hi Ian,
> -----Original Message-----
> From: Stokes, Ian
> Sent: Tuesday, October 17, 2017 12:04 PM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Stokes, Ian
> <ian.stokes@intel.com>
> Subject: [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast.
>
> When compiling with an application that includes rte_cryptodev.h with
> Ofast, an error is reported regarding enumeration
> RTE_CRYPTO_OP_TYPE_UNDEFINED not handled in switch case in function
> __rte_crypto_op_reset().
>
> Fix this by adding case for RTE_OP_TYPE_UNDEFINED.
>
> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
Since this is a fix, you should add a fixes line with the commit id where the issue was introduced.
This case: Fixes: c0f87eb5252b ("cryptodev: change burst API to be crypto op oriented")
Also, the title should be: "cryptodev: fix build with Ofast"
Could you send a v2 with these changes?
Thanks,
Pablo
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast.
2017-10-17 11:54 ` De Lara Guarch, Pablo
@ 2017-10-17 12:50 ` Stokes, Ian
0 siblings, 0 replies; 3+ messages in thread
From: Stokes, Ian @ 2017-10-17 12:50 UTC (permalink / raw)
To: De Lara Guarch, Pablo, dev
.
>
> Hi Ian,
>
> > -----Original Message-----
> > From: Stokes, Ian
> > Sent: Tuesday, October 17, 2017 12:04 PM
> > To: dev@dpdk.org
> > Cc: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Stokes,
> > Ian <ian.stokes@intel.com>
> > Subject: [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast.
> >
> > When compiling with an application that includes rte_cryptodev.h with
> > Ofast, an error is reported regarding enumeration
> > RTE_CRYPTO_OP_TYPE_UNDEFINED not handled in switch case in function
> > __rte_crypto_op_reset().
> >
> > Fix this by adding case for RTE_OP_TYPE_UNDEFINED.
> >
> > Signed-off-by: Ian Stokes <ian.stokes@intel.com>
>
> Since this is a fix, you should add a fixes line with the commit id where
> the issue was introduced.
> This case: Fixes: c0f87eb5252b ("cryptodev: change burst API to be crypto
> op oriented")
>
> Also, the title should be: "cryptodev: fix build with Ofast"
>
> Could you send a v2 with these changes?
Thanks for the feedback Pablo, will send a v2.
Thanks
Ian
>
> Thanks,
> Pablo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-17 12:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-17 11:04 [dpdk-dev] [PATCH v1 1/1] rte_crypto.h: Fix compilation issue with Ofast Ian Stokes
2017-10-17 11:54 ` De Lara Guarch, Pablo
2017-10-17 12:50 ` Stokes, Ian
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).