projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c0afc7
)
bpf: use rcu_read_lock_dont_migrate() for bpf_inode_storage_free()
author
Menglong Dong
<menglong8.dong@gmail.com>
Thu, 21 Aug 2025 09:06:05 +0000
(17:06 +0800)
committer
Alexei 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_inode_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-4-dongml2@chinatelecom.cn
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
kernel/bpf/bpf_inode_storage.c
patch
|
blob
|
history
diff --git
a/kernel/bpf/bpf_inode_storage.c
b/kernel/bpf/bpf_inode_storage.c
index
15a3eb9
..
e54cce2
100644
(file)
--- a/
kernel/bpf/bpf_inode_storage.c
+++ b/
kernel/bpf/bpf_inode_storage.c
@@
-62,8
+62,7
@@
void bpf_inode_storage_free(struct inode *inode)
if (!bsb)
return;
- migrate_disable();
- rcu_read_lock();
+ rcu_read_lock_dont_migrate();
local_storage = rcu_dereference(bsb->storage);
if (!local_storage)
@@
-71,8
+70,7
@@
void bpf_inode_storage_free(struct inode *inode)
bpf_local_storage_destroy(local_storage);
out:
- rcu_read_unlock();
- migrate_enable();
+ rcu_read_unlock_migrate();
}
static void *bpf_fd_inode_storage_lookup_elem(struct bpf_map *map, void *key)