Re: [PATCH bpf-next] selftests/bpf: Add -Wuninitialized flag to bpf prog flags

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Mar 2, 2023 at 3:19 PM Dave Marchevsky <davemarchevsky@xxxxxx> wrote:
>
> --- a/tools/testing/selftests/bpf/progs/rbtree_fail.c
> +++ b/tools/testing/selftests/bpf/progs/rbtree_fail.c
> @@ -232,8 +232,9 @@ long rbtree_api_first_release_unlock_escape(void *ctx)
>
>         bpf_spin_lock(&glock);
>         res = bpf_rbtree_first(&groot);
> -       if (res)
> -               n = container_of(res, struct node_data, node);
> +       if (!res)
> +               return -1;

The verifier cannot be ok with this return... I hope...

> +       n = container_of(res, struct node_data, node);
>         bpf_spin_unlock(&glock);




[Index of Archives]     [Linux Samsung SoC]     [Linux Rockchip SoC]     [Linux Actions SoC]     [Linux for Synopsys ARC Processors]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]


  Powered by Linux