From: Greg Kurz Date: Fri, 24 Apr 2015 12:24:38 +0000 (+0200) Subject: tun: add tun_is_little_endian() helper X-Git-Tag: Ubuntu-5.10.0-12.13~14486^2~7 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=25bd55bbabd8957693c1ffc2fe1bf16cb4fdabd4;p=mirror_ubuntu-hirsute-kernel.git tun: add tun_is_little_endian() helper Signed-off-by: Greg Kurz Signed-off-by: Michael S. Tsirkin Acked-by: Cornelia Huck Reviewed-by: David Gibson --- diff --git a/drivers/net/tun.c b/drivers/net/tun.c index e470ae59d405..301e87c89a9f 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -206,14 +206,19 @@ struct tun_struct { u32 flow_count; }; +static inline bool tun_is_little_endian(struct tun_struct *tun) +{ + return tun->flags & TUN_VNET_LE; +} + static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val) { - return __virtio16_to_cpu(tun->flags & TUN_VNET_LE, val); + return __virtio16_to_cpu(tun_is_little_endian(tun), val); } static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val) { - return __cpu_to_virtio16(tun->flags & TUN_VNET_LE, val); + return __cpu_to_virtio16(tun_is_little_endian(tun), val); } static inline u32 tun_hashfn(u32 rxhash)