[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150226101344.GB1824@zion.uk.xensource.com>
Date: Thu, 26 Feb 2015 10:13:44 +0000
From: Wei Liu <wei.liu2@...rix.com>
To: pedro <marzo.pedro@...il.com>
CC: Ian Campbell <ian.campbell@...rix.com>,
Wei Liu <wei.liu2@...rix.com>,
<xen-devel@...ts.xenproject.org>, <netdev@...r.kernel.org>
Subject: Re: [PATCH 1/1] xen-netback: remove compilation warning
On Thu, Feb 26, 2015 at 09:25:41AM +0100, pedro wrote:
> From: pmarzo <marzo.pedro@...il.com>
>
> offset and size are of type uint16_t so the %lu gives a warning
> A %u specifier, the same used in size makes gcc happy
> Not sure if a %x would be more correct
>
> Signed-off-by: Pedro Marzo Perez <marzo.pedro@...il.com>
Acked-by: Wei Liu <wei.liu2@...rix.com>
Thanks
> ---
> drivers/net/xen-netback/netback.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
> index f7a31d2..3888a2b 100644
> --- a/drivers/net/xen-netback/netback.c
> +++ b/drivers/net/xen-netback/netback.c
> @@ -1248,7 +1248,7 @@ static void xenvif_tx_build_gops(struct xenvif_queue *queue,
> /* No crossing a page as the payload mustn't fragment. */
> if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
> netdev_err(queue->vif->dev,
> - "txreq.offset: %x, size: %u, end: %lu\n",
> + "txreq.offset: %x, size: %u, end: %u\n",
> txreq.offset, txreq.size,
> (txreq.offset&~PAGE_MASK) + txreq.size);
> xenvif_fatal_tx_err(queue->vif);
> --
> 1.9.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists