[dpdk-dev] [PATCH v2] Fix two compile issues with i686 platform

2014-12-04 Thread Qiu, Michael
On 12/4/2014 5:05 PM, Thomas Monjalon wrote: > 2014-12-04 02:49, Qiu, Michael: >> On 12/3/2014 11:40 PM, Richardson, Bruce wrote: >>> On Wed, Dec 03, 2014 at 04:10:23PM +0800, Michael Qiu wrote: lib/librte_eal/linuxapp/eal/eal_memory.c:324:4: error: comparison is always false due to limit

[dpdk-dev] [PATCH v2] Fix two compile issues with i686 platform

2014-12-04 Thread Thomas Monjalon
2014-12-04 02:49, Qiu, Michael: > On 12/3/2014 11:40 PM, Richardson, Bruce wrote: > > On Wed, Dec 03, 2014 at 04:10:23PM +0800, Michael Qiu wrote: > >> lib/librte_eal/linuxapp/eal/eal_memory.c:324:4: error: comparison > >> is always false due to limited range of data type [-Werror=type-limits] > >>

[dpdk-dev] [PATCH v2] Fix two compile issues with i686 platform

2014-12-04 Thread Qiu, Michael
On 12/3/2014 11:40 PM, Richardson, Bruce wrote: > On Wed, Dec 03, 2014 at 04:10:23PM +0800, Michael Qiu wrote: >> lib/librte_eal/linuxapp/eal/eal_memory.c:324:4: error: comparison >> is always false due to limited range of data type [-Werror=type-limits] >> || (hugepage_sz == RTE_PGSIZE_16G)) {

[dpdk-dev] [PATCH v2] Fix two compile issues with i686 platform

2014-12-03 Thread Bruce Richardson
On Wed, Dec 03, 2014 at 04:10:23PM +0800, Michael Qiu wrote: > lib/librte_eal/linuxapp/eal/eal_memory.c:324:4: error: comparison > is always false due to limited range of data type [-Werror=type-limits] > || (hugepage_sz == RTE_PGSIZE_16G)) { > ^ > cc1: all warnings being treated as errors

[dpdk-dev] [PATCH v2] Fix two compile issues with i686 platform

2014-12-03 Thread Qiu, Michael
Hi all, Any comments on this patch? It is really a big issue in dpdk1.8-rc2 and blocked the testing on i686 platform. Thanks, Michael On 12/3/2014 4:11 PM, Michael Qiu wrote: > lib/librte_eal/linuxapp/eal/eal_memory.c:324:4: error: comparison > is always false due to limited range of data type [