return 0;
        }
 
-       new = bpf_map_kmalloc_node(map, sizeof(struct bpf_storage_buffer) +
-                                  map->value_size,
+       new = bpf_map_kmalloc_node(map, struct_size(new, data, map->value_size),
                                   __GFP_ZERO | GFP_ATOMIC | __GFP_NOWARN,
                                   map->numa_node);
        if (!new)
 
 {
        int numa_node = bpf_map_attr_numa_node(attr);
        struct reuseport_array *array;
-       u64 array_size;
 
        if (!bpf_capable())
                return ERR_PTR(-EPERM);
 
-       array_size = sizeof(*array);
-       array_size += (u64)attr->max_entries * sizeof(struct sock *);
-
        /* allocate all map elements and zero-initialize them */
-       array = bpf_map_area_alloc(array_size, numa_node);
+       array = bpf_map_area_alloc(struct_size(array, ptrs, attr->max_entries), numa_node);
        if (!array)
                return ERR_PTR(-ENOMEM);