DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/virtio-user: fix 32-bit build
@ 2016-06-23 20:53 Thomas Monjalon
  2016-06-23 20:56 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Monjalon @ 2016-06-23 20:53 UTC (permalink / raw)
  To: jianfeng.tan; +Cc: yuanhan.liu, dev

The compilation for 32-bit fails when CONFIG_RTE_VIRTIO_USER is enabled:

  drivers/net/virtio/virtio_user_ethdev.c:84:47:
    error: format ‘%llu’ expects argument of type ‘long long unsigned int’,
    but argument 5 has type ‘size_t {aka unsigned int}’

Fixes: e9efa4d93821 ("net/virtio-user: add new virtual PCI driver")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
 drivers/net/virtio/virtio_user_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c
index 9216182..5ab2471 100644
--- a/drivers/net/virtio/virtio_user_ethdev.c
+++ b/drivers/net/virtio/virtio_user_ethdev.c
@@ -81,7 +81,7 @@ virtio_user_write_dev_config(struct virtio_hw *hw, size_t offset,
 		for (i = 0; i < ETHER_ADDR_LEN; ++i)
 			dev->mac_addr[i] = ((const uint8_t *)src)[i];
 	else
-		PMD_DRV_LOG(ERR, "not supported offset=%" PRIu64 ", len=%d\n",
+		PMD_DRV_LOG(ERR, "not supported offset=%zu, len=%d\n",
 			    offset, length);
 }
 
-- 
2.7.0

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

* Re: [dpdk-dev] [PATCH] net/virtio-user: fix 32-bit build
  2016-06-23 20:53 [dpdk-dev] [PATCH] net/virtio-user: fix 32-bit build Thomas Monjalon
@ 2016-06-23 20:56 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2016-06-23 20:56 UTC (permalink / raw)
  To: jianfeng.tan; +Cc: yuanhan.liu, dev

2016-06-23 22:53, Thomas Monjalon:
> The compilation for 32-bit fails when CONFIG_RTE_VIRTIO_USER is enabled:
> 
>   drivers/net/virtio/virtio_user_ethdev.c:84:47:
>     error: format ‘%llu’ expects argument of type ‘long long unsigned int’,
>     but argument 5 has type ‘size_t {aka unsigned int}’
> 
> Fixes: e9efa4d93821 ("net/virtio-user: add new virtual PCI driver")
> 
> Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>

Applied

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

end of thread, other threads:[~2016-06-23 20:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-23 20:53 [dpdk-dev] [PATCH] net/virtio-user: fix 32-bit build Thomas Monjalon
2016-06-23 20:56 ` 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).