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  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Thu, 23 Feb 2017 23:57:10 +0800
From:   kbuild test robot <fengguang.wu@...el.com>
To:     Amir Vadai <amir@...ai.me>
Cc:     kbuild-all@...org, linux-kernel@...r.kernel.org,
        Or Gerlitz <ogerlitz@...lanox.com>
Subject: net/sched/act_pedit.c:261:2-3: Unneeded semicolon

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   bc49a7831b1137ce1c2dda1c57e3631655f5d2ae
commit: 71d0ed7079dffbc5cd0941d77d9b84e04109c9bb net/act_pedit: Support using offset relative to the conventional network headers
date:   13 days ago


coccinelle warnings: (new ones prefixed by >>)

>> net/sched/act_pedit.c:261:2-3: Unneeded semicolon

vim +261 net/sched/act_pedit.c

   245		case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
   246		case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
   247		case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
   248			*hoffset = skb_network_offset(skb);
   249			ret = 0;
   250			break;
   251		case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
   252		case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
   253			if (skb_transport_header_was_set(skb)) {
   254				*hoffset = skb_transport_offset(skb);
   255				ret = 0;
   256			}
   257			break;
   258		default:
   259			ret = -EINVAL;
   260			break;
 > 261		};
   262	
   263		return ret;
   264	}
   265	
   266	static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
   267			     struct tcf_result *res)
   268	{
   269		struct tcf_pedit *p = to_pedit(a);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ