summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/lpm_trie.c
Commit message (Expand)AuthorAgeFilesLines
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-06-221-4/+1Star
|\
| * Merge tag 'spdx-5.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gre...Linus Torvalds2019-06-211-4/+1Star
| |\
| | * treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 451Thomas Gleixner2019-06-191-4/+1Star
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2019-06-181-2/+7
|\| |
| * | bpf: lpm_trie: check left child of last leftmost node for NULLJonathan Lemon2019-06-111-2/+7
| |/
* | bpf: move memory size checks to bpf_map_charge_init()Roman Gushchin2019-06-011-6/+1Star
* | bpf: rework memlock-based memory accounting for mapsRoman Gushchin2019-06-011-3/+2Star
* | bpf: group memory related fields in struct bpf_map_memoryRoman Gushchin2019-06-011-2/+2
|/
* bpf: add program side {rd, wr}only support for mapsDaniel Borkmann2019-04-101-1/+2
* bpf, lpm: fix lookup bug in map_delete_elemAlban Crequy2019-02-221-0/+1
* bpf: pass struct btf pointer to the map_check_btf() callbackRoman Gushchin2018-12-131-0/+1
* bpf, lpm: make longest_prefix_match() fasterEric Dumazet2018-11-221-10/+49
* bpf: decouple btf from seq bpf fs dump and enable more mapsDaniel Borkmann2018-08-131-0/+12
* treewide: kmalloc() -> kmalloc_array()Kees Cook2018-06-131-2/+3
* bpf: fix rcu lockdep warning for lpm_trie map_free callbackYonghong Song2018-02-221-2/+1Star
* bpf: fix memory leak in lpm_trie map_free callback functionYonghong Song2018-02-141-4/+7
* bpf: fix kernel page fault in lpm map trie_get_next_keyYonghong Song2018-01-271-15/+11Star
* bpf: fix incorrect kmalloc usage in lpm_trie MAP_GET_NEXT_KEY rcu regionYonghong Song2018-01-231-1/+1
* bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE mapYonghong Song2018-01-191-2/+93
* bpf: add helper for copying attrs to struct bpf_mapJakub Kicinski2018-01-141-6/+1Star
* bpf: Add file mode configuration into bpf mapsChenbo Feng2017-10-201-1/+2
* bpf: Optimize lpm trie deleteCraig Gallek2017-09-251-28/+43
* bpf: Implement map_delete_elem for BPF_MAP_TYPE_LPM_TRIECraig Gallek2017-09-191-3/+77
* bpf: Allow selecting numa node during map creationMartin KaFai Lau2017-08-201-2/+7
* bpf: fix wrong exposure of map_flags into fdinfo for lpmDaniel Borkmann2017-05-251-0/+1
* bpf: remove struct bpf_map_type_listJohannes Berg2017-04-111-13/+1Star
* bpf: add get_next_key callback to LPM mapAlexei Starovoitov2017-03-061-0/+6
* bpf: mark all registered map/prog types as __ro_after_initDaniel Borkmann2017-02-171-1/+1
* bpf, lpm: fix overflows in trie_alloc checksDaniel Borkmann2017-02-081-9/+27
* bpf, lpm: fix kfree of im_node in trie_update_elemDaniel Borkmann2017-01-241-1/+1
* bpf: add a longest prefix match trie map implementationDaniel Mack2017-01-231-0/+503