bpf_attr doesn't required to be declared with '= {}' as memset is used
in the code.
Fixes: 13d11ac5e63de ("libbpf: Add libbpf support to batch ops")
Reported-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Brian Vazquez <brianvv@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20200116045918.75597-1-brianvv@google.com
__u32 *count,
const struct bpf_map_batch_opts *opts)
{
- union bpf_attr attr = {};
+ union bpf_attr attr;
int ret;
if (!OPTS_VALID(opts, bpf_map_batch_opts))