DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] drivers: fix ICC compilation issue with i686 for octeontx2
@ 2019-07-01 18:03 jerinj
  2019-07-04 14:46 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: jerinj @ 2019-07-01 18:03 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit, Amit Gupta

From: Amit Gupta <agupta3@marvell.com>

Fix the following ICC specific compilation issue with i686 build.

dpdk/drivers/common/octeontx2/otx2_mbox.c(47): error #2259:
non-pointer conversion from "unsigned long long" to "struct mbox_hdr *"
may lose significant bits
(struct mbox_hdr *)((uintptr_t)mdev->mbase + mbox->tx_start);

Fixes: 732377a6792e ("mempool/octeontx2: add build infra and device probe")
Fixes: 371d3212cbed ("common/octeontx2: add build infrastructure and HW definition")

Signed-off-by: Amit Gupta <agupta3@marvell.com>
---
 drivers/common/octeontx2/Makefile  | 3 +++
 drivers/mempool/octeontx2/Makefile | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/drivers/common/octeontx2/Makefile b/drivers/common/octeontx2/Makefile
index fabc32537..afe570817 100644
--- a/drivers/common/octeontx2/Makefile
+++ b/drivers/common/octeontx2/Makefile
@@ -17,6 +17,9 @@ CFLAGS += -I$(RTE_SDK)/drivers/bus/pci
 ifneq ($(CONFIG_RTE_ARCH_64),y)
 CFLAGS += -Wno-int-to-pointer-cast
 CFLAGS += -Wno-pointer-to-int-cast
+ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
+CFLAGS += -diag-disable 2259
+endif
 endif
 
 EXPORT_MAP := rte_common_octeontx2_version.map
diff --git a/drivers/mempool/octeontx2/Makefile b/drivers/mempool/octeontx2/Makefile
index b3568443e..87cce22c6 100644
--- a/drivers/mempool/octeontx2/Makefile
+++ b/drivers/mempool/octeontx2/Makefile
@@ -18,6 +18,9 @@ CFLAGS += -O3
 ifneq ($(CONFIG_RTE_ARCH_64),y)
 CFLAGS += -Wno-int-to-pointer-cast
 CFLAGS += -Wno-pointer-to-int-cast
+ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
+CFLAGS += -diag-disable 2259
+endif
 endif
 
 EXPORT_MAP := rte_mempool_octeontx2_version.map
-- 
2.21.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] drivers: fix ICC compilation issue with i686 for octeontx2
  2019-07-01 18:03 [dpdk-dev] [PATCH] drivers: fix ICC compilation issue with i686 for octeontx2 jerinj
@ 2019-07-04 14:46 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2019-07-04 14:46 UTC (permalink / raw)
  To: jerinj, Amit Gupta; +Cc: dev, ferruh.yigit

01/07/2019 20:03, jerinj@marvell.com:
> From: Amit Gupta <agupta3@marvell.com>
> 
> Fix the following ICC specific compilation issue with i686 build.
> 
> dpdk/drivers/common/octeontx2/otx2_mbox.c(47): error #2259:
> non-pointer conversion from "unsigned long long" to "struct mbox_hdr *"
> may lose significant bits
> (struct mbox_hdr *)((uintptr_t)mdev->mbase + mbox->tx_start);
> 
> Fixes: 732377a6792e ("mempool/octeontx2: add build infra and device probe")
> Fixes: 371d3212cbed ("common/octeontx2: add build infrastructure and HW definition")
> 
> Signed-off-by: Amit Gupta <agupta3@marvell.com>

Applied, thanks




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-04 14:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-01 18:03 [dpdk-dev] [PATCH] drivers: fix ICC compilation issue with i686 for octeontx2 jerinj
2019-07-04 14:46 ` Thomas Monjalon

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).