aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorYafang Shao <laoar.shao@gmail.com>2022-08-10 15:18:26 +0000
committerAlexei Starovoitov <ast@kernel.org>2022-08-10 11:48:22 -0700
commit083818156d1e98f22b1ac612a3957bc553e7ba57 (patch)
tree77d7182c2acf37b884c4710abe8130ddd2ff2e22 /kernel
parentlibbpf: preserve errno across pr_warn/pr_info/pr_debug (diff)
downloadlinux-dev-083818156d1e98f22b1ac612a3957bc553e7ba57.tar.xz
linux-dev-083818156d1e98f22b1ac612a3957bc553e7ba57.zip
bpf: Remove unneeded memset in queue_stack_map creation
__GFP_ZERO will clear the memory, so we don't need to memset it. Signed-off-by: Yafang Shao <laoar.shao@gmail.com> Link: https://lore.kernel.org/r/20220810151840.16394-2-laoar.shao@gmail.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/bpf/queue_stack_maps.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/bpf/queue_stack_maps.c b/kernel/bpf/queue_stack_maps.c
index a1c0794ae49d..8a5e060de63b 100644
--- a/kernel/bpf/queue_stack_maps.c
+++ b/kernel/bpf/queue_stack_maps.c
@@ -78,8 +78,6 @@ static struct bpf_map *queue_stack_map_alloc(union bpf_attr *attr)
if (!qs)
return ERR_PTR(-ENOMEM);
- memset(qs, 0, sizeof(*qs));
-
bpf_map_init_from_attr(&qs->map, attr);
qs->size = size;