]> www.infradead.org Git - users/hch/misc.git/commitdiff
bpf: use rcu_read_lock_dont_migrate() for bpf_cgrp_storage_free()
authorMenglong Dong <menglong8.dong@gmail.com>
Thu, 21 Aug 2025 09:06:04 +0000 (17:06 +0800)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 26 Aug 2025 01:52:16 +0000 (18:52 -0700)
Use rcu_read_lock_dont_migrate() and rcu_read_unlock_migrate() in
bpf_cgrp_storage_free to obtain better performance when PREEMPT_RCU is
not enabled.

Signed-off-by: Menglong Dong <dongml2@chinatelecom.cn>
Link: https://lore.kernel.org/r/20250821090609.42508-3-dongml2@chinatelecom.cn
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
kernel/bpf/bpf_cgrp_storage.c

index 148da8f7ff368539bf954f25fcee6369ab31d426..0687a760974a425e1fa9ec8a8d9ce04571cc7548 100644 (file)
@@ -45,8 +45,7 @@ void bpf_cgrp_storage_free(struct cgroup *cgroup)
 {
        struct bpf_local_storage *local_storage;
 
-       migrate_disable();
-       rcu_read_lock();
+       rcu_read_lock_dont_migrate();
        local_storage = rcu_dereference(cgroup->bpf_cgrp_storage);
        if (!local_storage)
                goto out;
@@ -55,8 +54,7 @@ void bpf_cgrp_storage_free(struct cgroup *cgroup)
        bpf_local_storage_destroy(local_storage);
        bpf_cgrp_storage_unlock();
 out:
-       rcu_read_unlock();
-       migrate_enable();
+       rcu_read_unlock_migrate();
 }
 
 static struct bpf_local_storage_data *