aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/bpf/bpf_local_storage.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2024-02-11bpf: Allow compiler to inline most of bpf_local_storage_lookup()Marco Elver1-39/+13
2023-09-06bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_allocMartin KaFai Lau1-1/+1
2023-09-06bpf: bpf_sk_storage: Fix invalid wait context lockdep reportMartin KaFai Lau1-33/+14
2023-06-19bpf: Centralize permissions checks for all BPF map typesAndrii Nakryiko1-3/+0
2023-04-12bpf: Handle NULL in bpf_local_storage_free.Alexei Starovoitov1-0/+3
2023-03-25bpf: Use bpf_mem_cache_alloc/free for bpf_local_storageMartin KaFai Lau1-15/+115
2023-03-25bpf: Use bpf_mem_cache_alloc/free in bpf_local_storage_elemMartin KaFai Lau1-9/+86
2023-03-10bpf: Add bpf_local_storage_free()Martin KaFai Lau1-9/+14
2023-03-10bpf: Add bpf_local_storage_rcu callbackMartin KaFai Lau1-6/+11
2023-03-10bpf: Add bpf_selem_free()Martin KaFai Lau1-7/+14
2023-03-10bpf: Add bpf_selem_free_rcu callbackMartin KaFai Lau1-4/+9
2023-03-10bpf: Remove bpf_selem_free_fields*_rcuMartin KaFai Lau1-62/+5
2023-03-10bpf: Repurpose use_trace_rcu to reuse_now in bpf_local_storageMartin KaFai Lau1-12/+12
2023-03-10bpf: Remember smap in bpf_local_storageMartin KaFai Lau1-0/+4
2023-03-10bpf: Remove the preceding __ from __bpf_selem_unlink_storageMartin KaFai Lau1-3/+3
2023-03-10bpf: Remove __bpf_local_storage_map_allocMartin KaFai Lau1-37/+26
2023-03-10bpf: Refactor codes into bpf_local_storage_destroyMartin KaFai Lau1-2/+6
2023-03-10bpf: Move a few bpf_local_storage functions to static scopeMartin KaFai Lau1-2/+2
2023-03-07bpf, net: bpf_local_storage memory usageYafang Shao1-0/+10
2023-03-03bpf: Use separate RCU callbacks for freeing selemKumar Kartikeya Dwivedi1-30/+49
2023-03-01bpf: Support kptrs in local storage mapsKumar Kartikeya Dwivedi1-4/+44
2023-02-22bpf: Annotate data races in bpf_local_storageKumar Kartikeya Dwivedi1-3/+13
2023-02-10bpf: use bpf_map_kvcalloc in bpf_local_storageYafang Shao1-2/+2
2022-12-21bpf: Reduce smap->elem_sizeMartin KaFai Lau1-2/+2
2022-11-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2022-11-21bpf: Do not copy spin lock field from user in bpf_selem_allocXu Kuohai1-1/+1
2022-11-03bpf: Consolidate spin_lock, timer management into btf_recordKumar Kartikeya Dwivedi1-1/+1
2022-10-25bpf: Refactor some inode/task/sk storage functions for reuseYonghong Song1-69/+121
2022-10-25bpf: Avoid taking spinlock in bpf_task_storage_get if potential deadlock is detectedMartin KaFai Lau1-0/+1
2022-10-18bpf: Use rcu_trace_implies_rcu_gp() in local storage mapHou Tao1-2/+11
2022-09-01bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busyHou Tao1-2/+2
2022-08-10bpf: Use bpf_map_area_alloc consistently on bpf map creationYafang Shao1-3/+3
2022-04-19bpf: Fix usage of trace RCU in local storage.KP Singh1-10/+19
2022-03-20bpf: Enable non-atomic allocations in local storageJoanne Koong1-21/+37
2022-02-23bpf: Cleanup commentsTom Rix1-1/+1
2021-12-29bpf: Allow bpf_local_storage to be used by sleepable programsKP Singh1-13/+37
2021-02-26bpf: Prevent deadlock from recursive bpf_task_storage_[get|delete]Song Liu1-1/+10
2021-02-26bpf: Enable task local storage for tracing programsSong Liu1-11/+17
2020-12-02bpf: Eliminate rlimit-based memory accounting for bpf local storage mapsRoman Gushchin1-10/+0
2020-12-02bpf: Memcg-based memory accounting for bpf local storage mapsRoman Gushchin1-4/+6
2020-09-19bpf: Use hlist_add_head_rcu when linking to local_storageMartin KaFai Lau1-1/+1
2020-08-25bpf: Split bpf_local_storage to bpf_sk_storageKP Singh1-0/+600