BPF List
 help / color / mirror / Atom feed
* [PATCH bpf v3 0/9] Fixes for LPM trie
@ 2024-12-06 11:06 Hou Tao
  2024-12-06 11:06 ` [PATCH bpf v3 1/9] bpf: Remove unnecessary check when updating " Hou Tao
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Hou Tao @ 2024-12-06 11:06 UTC (permalink / raw)
  To: bpf
  Cc: Martin KaFai Lau, Alexei Starovoitov, Andrii Nakryiko,
	Eduard Zingerman, Song Liu, Hao Luo, Yonghong Song,
	Daniel Borkmann, KP Singh, Stanislav Fomichev, Jiri Olsa,
	John Fastabend, Toke Høiland-Jørgensen,
	Sebastian Andrzej Siewior, Thomas Gleixner, Thomas Weißschuh,
	houtao1, xukuohai

From: Hou Tao <houtao1@huawei.com>

Hi,

This patch set fixes several issues for LPM trie. These issues were
found during adding new test cases or were reported by syzbot.

The patch set is structured as follows:

Patch #1~#2 are clean-ups for lpm_trie_update_elem().
Patch #3 handles BPF_EXIST and BPF_NOEXIST correctly for LPM trie.
Patch #4 fixes the accounting of n_entries when doing in-place update.
Patch #5 fixes the exact match condition in trie_get_next_key() and it
may skip keys when the passed key is not found in the map.
Patch #6~#7 switch from kmalloc() to bpf memory allocator for LPM trie
to fix several lock order warnings reported by syzbot. It also enables
raw_spinlock_t for LPM trie again. After these changes, the LPM trie will
be closer to being usable in any context (though the reentrance check of
trie->lock is still missing, but it is on my todo list).
Patch #8: move test_lpm_map to map_tests to make it run regularly.
Patch #9: add test cases for the issues fixed by patch #3~#5.

Please see individual patches for more details. Comments are always
welcome.

Change Log:
v3:
  * patch #2: remove the unnecessary NULL-init for im_node
  * patch #6: alloc the leaf node before disabling IRQ to low
    the possibility of -ENOMEM when leaf_size is large; Free
    these nodes outside the trie lock (Suggested by Alexei)
  * collect review and ack tags (Thanks for Toke & Daniel)

v2: https://lore.kernel.org/bpf/20241127004641.1118269-1-houtao@huaweicloud.com/
  * collect review tags (Thanks for Toke)
  * drop "Add bpf_mem_cache_is_mergeable() helper" patch
  * patch #3~#4: add fix tag
  * patch #4: rename the helper to trie_check_add_elem() and increase
    n_entries in it.
  * patch #6: use one bpf mem allocator and update commit message to
    clarify that using bpf mem allocator is more appropriate.
  * patch #7: update commit message to add the possible max running time
    for update operation.
  * patch #9: update commit message to specify the purpose of these test
    cases.

v1: https://lore.kernel.org/bpf/20241118010808.2243555-1-houtao@huaweicloud.com/

Hou Tao (9):
  bpf: Remove unnecessary check when updating LPM trie
  bpf: Remove unnecessary kfree(im_node) in lpm_trie_update_elem
  bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie
  bpf: Handle in-place update for full LPM trie correctly
  bpf: Fix exact match conditions in trie_get_next_key()
  bpf: Switch to bpf mem allocator for LPM trie
  bpf: Use raw_spinlock_t for LPM trie
  selftests/bpf: Move test_lpm_map.c to map_tests
  selftests/bpf: Add more test cases for LPM trie

 kernel/bpf/lpm_trie.c                         | 133 +++---
 tools/testing/selftests/bpf/.gitignore        |   1 -
 tools/testing/selftests/bpf/Makefile          |   2 +-
 .../lpm_trie_map_basic_ops.c}                 | 405 +++++++++++++++++-
 4 files changed, 484 insertions(+), 57 deletions(-)
 rename tools/testing/selftests/bpf/{test_lpm_map.c => map_tests/lpm_trie_map_basic_ops.c} (65%)

-- 
2.29.2


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-10-13 23:19 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 11:06 [PATCH bpf v3 0/9] Fixes for LPM trie Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 1/9] bpf: Remove unnecessary check when updating " Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 2/9] bpf: Remove unnecessary kfree(im_node) in lpm_trie_update_elem Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 3/9] bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 4/9] bpf: Handle in-place update for full LPM trie correctly Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 5/9] bpf: Fix exact match conditions in trie_get_next_key() Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 6/9] bpf: Switch to bpf mem allocator for LPM trie Hou Tao
2025-09-19 21:28   ` Andrii Nakryiko
2025-09-23  1:33     ` Hou Tao
2025-09-24 23:31       ` Andrii Nakryiko
2025-10-10 17:04         ` Andrii Nakryiko
2025-10-13  0:59           ` Hou Tao
2025-10-13 23:18             ` Andrii Nakryiko
2024-12-06 11:06 ` [PATCH bpf v3 7/9] bpf: Use raw_spinlock_t " Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 8/9] selftests/bpf: Move test_lpm_map.c to map_tests Hou Tao
2024-12-06 11:06 ` [PATCH bpf v3 9/9] selftests/bpf: Add more test cases for LPM trie Hou Tao
2024-12-06 17:40 ` [PATCH bpf v3 0/9] Fixes " patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox