diff options
| author | Christopher Díaz Riveros <chrisadr@gentoo.org> | 2018-01-17 16:10:28 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2018-01-18 16:25:01 -0500 |
| commit | 89290b831ec1a0b233fdc7aaad84acdf4ebbf6aa (patch) | |
| tree | 6186784b1a079a23dc4ef7b6502f1ade9a2841b8 /net/openvswitch | |
| parent | 4c5386bae994e0cf683c973ea8adc23e0d2ca3d3 (diff) | |
flow_netlink: Remove unneeded semicolons
Trivial fix removes unneeded semicolons after if blocks.
This issue was detected by using the Coccinelle software.
Signed-off-by: Christopher Díaz Riveros <chrisadr@gentoo.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
| -rw-r--r-- | net/openvswitch/flow_netlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c index f143908b651d..eb55f1b3d047 100644 --- a/net/openvswitch/flow_netlink.c +++ b/net/openvswitch/flow_netlink.c | |||
| @@ -2454,7 +2454,7 @@ static int validate_geneve_opts(struct sw_flow_key *key) | |||
| 2454 | 2454 | ||
| 2455 | option = (struct geneve_opt *)((u8 *)option + len); | 2455 | option = (struct geneve_opt *)((u8 *)option + len); |
| 2456 | opts_len -= len; | 2456 | opts_len -= len; |
| 2457 | }; | 2457 | } |
| 2458 | 2458 | ||
| 2459 | key->tun_key.tun_flags |= crit_opt ? TUNNEL_CRIT_OPT : 0; | 2459 | key->tun_key.tun_flags |= crit_opt ? TUNNEL_CRIT_OPT : 0; |
| 2460 | 2460 | ||
| @@ -2487,7 +2487,7 @@ static int validate_and_copy_set_tun(const struct nlattr *attr, | |||
| 2487 | case OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS: | 2487 | case OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS: |
| 2488 | break; | 2488 | break; |
| 2489 | } | 2489 | } |
| 2490 | }; | 2490 | } |
| 2491 | 2491 | ||
| 2492 | start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET, log); | 2492 | start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET, log); |
| 2493 | if (start < 0) | 2493 | if (start < 0) |
