lkml.org 
[lkml]   [2024]   [Apr]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH bpf-next v2 09/16] bpf: allow struct bpf_wq to be embedded in arraymaps and hashmaps
On Sat, Apr 20, 2024 at 2:09 AM Benjamin Tissoires <bentiss@kernel.org> wrote:
>
>
> -static void htab_map_free_timers(struct bpf_map *map)
> +static void htab_map_free_timers_and_wq(struct bpf_map *map)
> {
> struct bpf_htab *htab = container_of(map, struct bpf_htab, map);
>
> - /* We only free timer on uref dropping to zero */
> - if (!btf_record_has_field(htab->map.record, BPF_TIMER))
> - return;
> - if (!htab_is_prealloc(htab))
> - htab_free_malloced_timers(htab);
> - else
> - htab_free_prealloced_timers(htab);
> + /* We only free timer and workqueue on uref dropping to zero */
> + if (btf_record_has_field(htab->map.record, BPF_TIMER)) {
> + if (!htab_is_prealloc(htab))
> + htab_free_malloced_timers_or_wq(htab, true);
> + else
> + htab_free_prealloced_timers(htab);
> + }
> + if (btf_record_has_field(htab->map.record, BPF_WORKQUEUE)) {
> + if (!htab_is_prealloc(htab))
> + htab_free_malloced_timers_or_wq(htab, false);
> + else
> + htab_free_prealloced_wq(htab);
> + }

I missed this earlier, but pls follow up to improve this part.
Double walk of all elements once for timer and 2nd for wq
is inefficient. Better to handle it in one go in prealloc and malloced cases.
Until we have delayed_wq it's quite possible that somebody will
have both timers and wq in map elements.

\
 
 \ /
  Last update: 2024-05-27 17:59    [W:0.169 / U:0.244 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site