Re: [dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-07-01 Thread Yongseok Koh
> On Jul 1, 2017, at 8:58 AM, Ferruh Yigit wrote: > > On 6/30/2017 7:25 PM, Yongseok Koh wrote: >> >>> On Jun 30, 2017, at 11:14 AM, Yongseok Koh wrote: >>> >>> On Jun 30, 2017, at 10:47 AM, Ferruh Yigit wrote: On 6/30/2017 6:19 PM, Adrien Mazarguil wrote: > This commit

Re: [dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-07-01 Thread Ferruh Yigit
On 6/30/2017 7:25 PM, Yongseok Koh wrote: > > Hi, > > > > Thanks, > Yongseok > >> On Jun 30, 2017, at 11:14 AM, Yongseok Koh wrote: >> >> >>> On Jun 30, 2017, at 10:47 AM, Ferruh Yigit wrote: >>> >>> On 6/30/2017 6:19 PM, Adrien Mazarguil wrote: This commit addresses a compilation issue

Re: [dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-06-30 Thread Yongseok Koh
Hi, Thanks, Yongseok > On Jun 30, 2017, at 11:14 AM, Yongseok Koh wrote: > > >> On Jun 30, 2017, at 10:47 AM, Ferruh Yigit wrote: >> >> On 6/30/2017 6:19 PM, Adrien Mazarguil wrote: >>> This commit addresses a compilation issue against Glibc >= 2.25, which >>> implements assert() through

Re: [dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-06-30 Thread Yongseok Koh
> On Jun 30, 2017, at 10:47 AM, Ferruh Yigit wrote: > > On 6/30/2017 6:19 PM, Adrien Mazarguil wrote: >> This commit addresses a compilation issue against Glibc >= 2.25, which >> implements assert() through a nonstandard ({ }) construct. Such constructs >> can normally not be used without __exte

Re: [dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-06-30 Thread Ferruh Yigit
On 6/30/2017 6:19 PM, Adrien Mazarguil wrote: > This commit addresses a compilation issue against Glibc >= 2.25, which > implements assert() through a nonstandard ({ }) construct. Such constructs > can normally not be used without __extension__ keyword when -pedantic is > enabled, as is the case wh

[dpdk-dev] [PATCH] net/mlx: update C compliance standard

2017-06-30 Thread Adrien Mazarguil
This commit addresses a compilation issue against Glibc >= 2.25, which implements assert() through a nonstandard ({ }) construct. Such constructs can normally not be used without __extension__ keyword when -pedantic is enabled, as is the case when compiling mlx4 and mlx5 PMDs in debug mode. While