[dpdk-dev] [PATCH v2] aesni_mb: strict-aliasing rule compilation fix

2016-02-24 Thread Thomas Monjalon
> > Fixes: 924e84f87306 ("aesni_mb: add driver for multi buffer based crypto") > > > > When compiling the AESNI_MB PMD with GCC 4.4.7 on Centos 6.7 a > > "dereferencing > > pointer ?obj_p? does break strict-aliasing rules" warning occurs in the > > get_session() function. > > > > Signed-off-by: D

[dpdk-dev] [PATCH v2] aesni_mb: strict-aliasing rule compilation fix

2016-02-16 Thread De Lara Guarch, Pablo
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Declan Doherty > Sent: Monday, February 15, 2016 5:06 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2] aesni_mb: strict-aliasing rule compilation fix > > Fixes: 924e84f87306 (

[dpdk-dev] [PATCH v2] aesni_mb: strict-aliasing rule compilation fix

2016-02-15 Thread Declan Doherty
Fixes: 924e84f87306 ("aesni_mb: add driver for multi buffer based crypto") When compiling the AESNI_MB PMD with GCC 4.4.7 on Centos 6.7 a "dereferencing pointer ?obj_p? does break strict-aliasing rules" warning occurs in the get_session() function. Signed-off-by: Declan Doherty --- Adding "Fixes