Message ID | YmOGBi4qH7ewXutg@963c369fde65 (mailing list archive) |
---|---|
State | Accepted, archived |
Commit | ce2d30fe1c76d2ae834b58ea536b2376b74b4952 |
Delegated to: | Matthieu Baerts |
Headers | show |
Series | mptcp: fix semicolon.cocci warnings | expand |
Hi lpk maintainers, On 23/04/2022 06:52, kernel test robot wrote: > From: kernel test robot <lkp@intel.com> > > net/mptcp/options.c:1254:3-4: Unneeded semicolon > > > Remove unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci Thank you for your patch! Now applied in our tree: - ce2d30fe1c76: "squashed" in "mptcp: never shrink offered window" - Results: ecf0abcd8f60..1442fba32185 (export) Builds and tests are now in progress: https://cirrus-ci.com/github/multipath-tcp/mptcp_net-next/export/20220423T074606 https://github.com/multipath-tcp/mptcp_net-next/actions/workflows/build-validation.yml?query=branch:export Cheers, Matt
--- a/net/mptcp/options.c +++ b/net/mptcp/options.c @@ -1251,7 +1251,7 @@ static void mptcp_set_rwin(struct tcp_so if (before64(rcv_wnd_new, rcv_wnd)) goto raise_win; rcv_wnd_old = rcv_wnd; - }; + } return; }