lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 27 Feb 2022 21:22:08 +0800 From: Yang Li <yang.lee@...ux.alibaba.com> To: pshelar@....org Cc: davem@...emloft.net, kuba@...nel.org, netdev@...r.kernel.org, dev@...nvswitch.org, linux-kernel@...r.kernel.org, Yang Li <yang.lee@...ux.alibaba.com>, Abaci Robot <abaci@...ux.alibaba.com> Subject: [PATCH -next] net: openvswitch: remove unneeded semicolon Eliminate the following coccicheck warning: ./net/openvswitch/flow.c:379:2-3: Unneeded semicolon Reported-by: Abaci Robot <abaci@...ux.alibaba.com> Signed-off-by: Yang Li <yang.lee@...ux.alibaba.com> --- net/openvswitch/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 8df73d86b968..372bf54a0ca9 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -376,7 +376,7 @@ static void get_ipv6_ext_hdrs(struct sk_buff *skb, struct ipv6hdr *nh, break; next_type = hp->nexthdr; start += ipv6_optlen(hp); - }; + } } static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key) -- 2.20.1.7.g153144c
Powered by blists - more mailing lists