xen-netback: fix type mismatch warning
authorArnd Bergmann <arnd@arndb.de>
Wed, 12 Oct 2016 14:54:01 +0000 (16:54 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 13 Oct 2016 15:02:25 +0000 (11:02 -0400)
commitf112be65fd3964ec2d56ddd0d5e6061b0fd502da
tree37d2f1166601e98d8c51f3ef1f9df3fc99f3ec6c
parent7086605a6ab57a5a37eb613cfe214fc62d2bb87b
xen-netback: fix type mismatch warning

Wiht the latest rework of the xen-netback driver, we get a warning
on ARM about the types passed into min():

drivers/net/xen-netback/rx.c: In function 'xenvif_rx_next_chunk':
include/linux/kernel.h:739:16: error: comparison of distinct pointer types lacks a cast [-Werror]

The reason is that XEN_PAGE_SIZE is not size_t here. There
is no actual bug, and we can easily avoid the warning using the
min_t() macro instead of min().

Fixes: eb1723a29b9a ("xen-netback: refactor guest rx")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Paul Durrant <paul.durrant@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/xen-netback/rx.c