[dpdk-dev] [PATCH] test: fix gcc 4.8 build issue

Jerin Jacob jerin.jacob at caviumnetworks.com
Wed May 9 11:31:01 CEST 2018


-----Original Message-----
> Date: Wed, 9 May 2018 10:10:17 +0100
> From: Radu Nicolau <radu.nicolau at intel.com>
> To: dev at dpdk.org
> CC: erik.g.carrillo at intel.com, Jerin.JacobKollanukkaran at cavium.com, Radu
>  Nicolau <radu.nicolau at intel.com>, stable at dpdk.org
> Subject: [PATCH] test: fix gcc 4.8 build issue
> X-Mailer: git-send-email 2.7.5
> 
> Fixes: d1f3385d0076 ("test: add event timer adapter auto-test")
> Cc: stable at dpdk.org

Similar patch already applied

http://dpdk.org/dev/patchwork/patch/39428/

> 
> Signed-off-by: Radu Nicolau <radu.nicolau at intel.com>
> ---
>  test/test/test_event_timer_adapter.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/test/test/test_event_timer_adapter.c b/test/test/test_event_timer_adapter.c
> index 93471db..7336a96 100644
> --- a/test/test/test_event_timer_adapter.c
> +++ b/test/test/test_event_timer_adapter.c
> @@ -22,6 +22,10 @@
>  
>  #include "test.h"
>  
> +#ifndef __INTEL_COMPILER
> +#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
> +#endif
> +
>  /* 4K timers corresponds to sw evdev max inflight events */
>  #define MAX_TIMERS  (4 * 1024)
>  #define BKT_TCK_NSEC
> -- 
> 2.7.5
> 


More information about the dev mailing list