From: Chen Qun Date: Thu, 27 Aug 2020 11:03:07 +0000 (+0800) Subject: hw/net/virtio-net:Remove redundant statement in virtio_net_rsc_tcp_ctrl_check() X-Git-Tag: v5.2.0-rc0~146^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7ea580d0baad1227a341f2e1752e464319eb101;p=thirdparty%2Fqemu.git hw/net/virtio-net:Remove redundant statement in virtio_net_rsc_tcp_ctrl_check() Clang static code analyzer show warning: hw/net/virtio-net.c:2077:5: warning: Value stored to 'tcp_flag' is never read tcp_flag &= VIRTIO_NET_TCP_FLAG; ^ ~~~~~~~~~~~~~~~~~~~ The 'VIRTIO_NET_TCP_FLAG' is '0x3F'. The last ‘tcp_flag’ assignment statement is the same as that of the first two statements. Reported-by: Euler Robot Signed-off-by: Chen Qun Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Li Qiang Reviewed-by: Michael S. Tsirkin Message-Id: <20200827110311.164316-7-kuhn.chenqun@huawei.com> Signed-off-by: Laurent Vivier --- diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c index a1fe9e92853..cb0d27084c1 100644 --- a/hw/net/virtio-net.c +++ b/hw/net/virtio-net.c @@ -2075,7 +2075,6 @@ static int virtio_net_rsc_tcp_ctrl_check(VirtioNetRscChain *chain, tcp_flag = htons(tcp->th_offset_flags); tcp_hdr = (tcp_flag & VIRTIO_NET_TCP_HDR_LENGTH) >> 10; tcp_flag &= VIRTIO_NET_TCP_FLAG; - tcp_flag = htons(tcp->th_offset_flags) & 0x3F; if (tcp_flag & TH_SYN) { chain->stat.tcp_syn++; return RSC_BYPASS;