Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1681049 > unrolled thread

Re: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP case

Started byDaniel Borkmann <daniel@iogearbox.net>
First post2017-07-04 17:30 +0200
Last post2017-07-04 20:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP  case Daniel Borkmann <daniel@iogearbox.net> - 2017-07-04 17:30 +0200
    Re: [PATCH][bpf-next] bpf: add missing break in for the  TCP_BPF_SNDCWND_CLAMP case Lawrence Brakmo <brakmo@fb.com> - 2017-07-04 20:30 +0200

#1681049 — Re: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP case

FromDaniel Borkmann <daniel@iogearbox.net>
Date2017-07-04 17:30 +0200
SubjectRe: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP case
Message-ID<tZxW2-1JA-15@gated-at.bofh.it>
[ +Lawrence ]

On 07/04/2017 05:21 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There appears to be a missing break in the TCP_BPF_SNDCWND_CLAMP case.
> Currently the non-error path where val is greater than zero falls through
> to the default case that sets the error return to -EINVAL. Add in
> the missing break.
>
> Detected by CoverityScan, CID#1449376 ("Missing break in switch")
>
> Fixes: 13bf96411ad2 ("bpf: Adds support for setting sndcwnd clamp")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Acked-by: Daniel Borkmann <daniel@iogearbox.net>

> ---
>   net/core/filter.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/net/core/filter.c b/net/core/filter.c
> index 94169572d002..c7f737058d89 100644
> --- a/net/core/filter.c
> +++ b/net/core/filter.c
> @@ -2867,6 +2867,7 @@ BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock,
>   					tp->snd_cwnd_clamp = val;
>   					tp->snd_ssthresh = val;
>   				}
> +				break;
>   			default:
>   				ret = -EINVAL;
>   			}
>

[toc] | [next] | [standalone]


#1681118 — Re: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP case

FromLawrence Brakmo <brakmo@fb.com>
Date2017-07-04 20:30 +0200
SubjectRe: [PATCH][bpf-next] bpf: add missing break in for the TCP_BPF_SNDCWND_CLAMP case
Message-ID<tZAKe-3xa-9@gated-at.bofh.it>
In reply to#1681049

On 7/4/17, 8:26 AM, "netdev-owner@vger.kernel.org on behalf of Daniel Borkmann" <netdev-owner@vger.kernel.org on behalf of daniel@iogearbox.net> wrote:

    [ +Lawrence ]
    
    On 07/04/2017 05:21 PM, Colin King wrote:
    > From: Colin Ian King <colin.king@canonical.com>
    >
    > There appears to be a missing break in the TCP_BPF_SNDCWND_CLAMP case.
    > Currently the non-error path where val is greater than zero falls through
    > to the default case that sets the error return to -EINVAL. Add in
    > the missing break.
    >
    > Detected by CoverityScan, CID#1449376 ("Missing break in switch")
    >
    > Fixes: 13bf96411ad2 ("bpf: Adds support for setting sndcwnd clamp")
    > Signed-off-by: Colin Ian King <colin.king@canonical.com>
    
    Acked-by: Daniel Borkmann daniel@iogearbox.net
Acked-by: Lawrence Brakmo <brakmo@fb.com>
    
    > ---
    >   net/core/filter.c | 1 +
    >   1 file changed, 1 insertion(+)
    >
    > diff --git a/net/core/filter.c b/net/core/filter.c
    > index 94169572d002..c7f737058d89 100644
    > --- a/net/core/filter.c
    > +++ b/net/core/filter.c
    > @@ -2867,6 +2867,7 @@ BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock,
    >   					tp->snd_cwnd_clamp = val;
    >   					tp->snd_ssthresh = val;
    >   				}
    > +				break;
    >   			default:
    >   				ret = -EINVAL;
    >   			}
    >
    
    

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web