summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/hashtab.c
AgeCommit message (Expand)AuthorLines
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 295Thomas Gleixner-9/+1
2019-05-14bpf, lru: avoid messing with eviction heuristics upon syscall lookupDaniel Borkmann-5/+18
2019-04-09bpf: add program side {rd, wr}only support for mapsDaniel Borkmann-3/+3
2019-02-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller-2/+2
2019-02-01bpf: introduce BPF_F_LOCK flagAlexei Starovoitov-3/+39
2019-02-01bpf: introduce bpf_spin_lockAlexei Starovoitov-11/+10
2019-01-31bpf: fix lockdep false positive in percpu_freelistAlexei Starovoitov-2/+2
2018-11-20bpf: allow zero-initializing hash map seedLorenz Bauer-2/+11
2018-08-30bpf: add bpffs pretty print for percpu arraymap/hash/lru_hashYonghong Song-0/+31
2018-08-23bpf: use per htab salt for bucket hashDaniel Borkmann-10/+13
2018-08-13bpf: decouple btf from seq bpf fs dump and enable more mapsDaniel Borkmann-19/+1
2018-08-10bpf: btf: add pretty print for hash/lru_hash mapsYonghong Song-0/+44
2018-07-03bpf: hash map: decrement counter on errorMauricio Vasquez B-5/+11
2018-06-03bpf: avoid retpoline for lookup/update/delete calls on mapsDaniel Borkmann-3/+9
2018-01-14bpf: add helper for copying attrs to struct bpf_mapJakub Kicinski-8/+1
2018-01-14bpf: hashtab: move checks out of alloc functionJakub Kicinski-16/+39
2018-01-14bpf: hashtab: move attribute validation before allocationJakub Kicinski-24/+23
2017-12-12bpf: add schedule points to map alloc/freeEric Dumazet-0/+2
2017-10-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller-4/+0
2017-10-20bpf: Add file mode configuration into bpf mapsChenbo Feng-2/+3
2017-10-19bpf: do not test for PCPU_MIN_UNIT_SIZE before percpu allocationsDaniel Borkmann-4/+0
2017-09-01bpf: Only set node->ref = 1 if it has not been setMartin KaFai Lau-1/+6
2017-09-01bpf: Inline LRU map lookupMartin KaFai Lau-0/+19
2017-08-22bpf: fix map value attribute for hash of mapsDaniel Borkmann-13/+17
2017-08-19bpf: inline map in map lookup functions for array and htabDaniel Borkmann-0/+17
2017-08-19bpf: Allow selecting numa node during map creationMartin KaFai Lau-4/+15
2017-06-29bpf: Add syscall lookup support for fd array and htabMartin KaFai Lau-0/+21
2017-04-25bpf: map_get_next_key to return first key on NULLTeng Qin-4/+5
2017-04-11bpf: remove struct bpf_map_type_listJohannes Berg-41/+5
2017-03-23Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller-73/+71
2017-03-22bpf: Add hash of maps supportMartin KaFai Lau-0/+121
2017-03-22bpf: fix hashmap extra_elems logicAlexei Starovoitov-73/+71
2017-03-16bpf: inline htab_map_lookup_elem()Alexei Starovoitov-1/+30
2017-03-09bpf: convert htab map to hlist_nullsAlexei Starovoitov-34/+60
2017-03-09bpf: fix struct htab_elem layoutAlexei Starovoitov-5/+20
2017-02-17bpf: mark all registered map/prog types as __ro_after_initDaniel Borkmann-4/+4
2017-01-18bpf: don't trigger OOM killer under pressure with map allocDaniel Borkmann-13/+9
2017-01-10bpf: do not use KMALLOC_SHIFT_MAXMichal Hocko-1/+1
2016-11-15bpf: Add BPF_MAP_TYPE_LRU_PERCPU_HASHMartin KaFai Lau-6/+123
2016-11-15bpf: Add BPF_MAP_TYPE_LRU_HASHMartin KaFai Lau-14/+252
2016-11-15bpf: Refactor codes handling percpu mapMartin KaFai Lau-26/+21
2016-11-07bpf: fix htab map destruction when extra reserve is in useDaniel Borkmann-1/+2
2016-08-06bpf: restore behavior of bpf_map_update_elemAlexei Starovoitov-11/+73
2016-03-08bpf: pre-allocate hash map elementsAlexei Starovoitov-73/+167
2016-02-19bpf: grab rcu read lock for bpf_percpu_hash_updateSasha Levin-1/+7
2016-02-06bpf: add lookup/update support for per-cpu hash and array mapsAlexei Starovoitov-9/+74
2016-02-06bpf: introduce BPF_MAP_TYPE_PERCPU_HASH mapAlexei Starovoitov-47/+228
2015-12-29bpf: hash: use per-bucket spinlocktom.leiming@gmail.com-18/+32
2015-12-29bpf: hash: move select_bucket() out of htab's spinlocktom.leiming@gmail.com-4/+2
2015-12-29bpf: hash: use atomic counttom.leiming@gmail.com-6/+6