summaryrefslogtreecommitdiffstats
path: root/kernel/bpf/bpf_task_storage.c
AgeCommit message (Expand)AuthorLines
2024-11-21Merge tag 'bpf-next-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/bp...Linus Torvalds-2/+5
2024-10-24bpf: Add uptr support in the map_value of the task local storage.Martin KaFai Lau-1/+4
2024-10-24bpf: Add "bool swap_uptrs" arg to bpf_local_storage_update() and bpf_selem_al...Martin KaFai Lau-2/+2
2024-10-07remove pointless includes of <linux/fdtable.h>Al Viro-1/+0
2023-04-04bpf: Teach verifier that certain helpers accept NULL pointer.Alexei Starovoitov-4/+4
2023-03-25bpf: Use bpf_mem_cache_alloc/free in bpf_local_storage_elemMartin KaFai Lau-1/+1
2023-03-22bpf: return long from bpf_map_ops funcsJP Kobryn-3/+3
2023-03-10bpf: Repurpose use_trace_rcu to reuse_now in bpf_local_storageMartin KaFai Lau-1/+1
2023-03-10bpf: Refactor codes into bpf_local_storage_destroyMartin KaFai Lau-8/+1
2023-03-07bpf, net: bpf_local_storage memory usageYafang Shao-0/+1
2022-11-30bpf: Fix a compilation failure with clang lto buildYonghong Song-2/+2
2022-10-25bpf: Refactor some inode/task/sk storage functions for reuseYonghong Song-35/+3
2022-10-25bpf: Add new bpf_task_storage_delete proto with no deadlock detectionMartin KaFai Lau-0/+28
2022-10-25bpf: bpf_task_storage_delete_recur does lookup first before the deadlock checkMartin KaFai Lau-7/+11
2022-10-25bpf: Add new bpf_task_storage_get proto with no deadlock detectionMartin KaFai Lau-0/+28
2022-10-25bpf: Avoid taking spinlock in bpf_task_storage_get if potential deadlock is d...Martin KaFai Lau-7/+8
2022-10-25bpf: Refactor the core bpf_task_storage_get logic into a new functionMartin KaFai Lau-18/+26
2022-10-25bpf: Append _recur naming to the bpf_task_storage helper protoMartin KaFai Lau-6/+6
2022-09-01bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busyHou Tao-4/+4
2022-04-26bpf: Compute map_btf_id during build timeMenglong Dong-3/+2
2022-04-19bpf: Fix usage of trace RCU in local storage.KP Singh-2/+2
2022-03-20bpf: Enable non-atomic allocations in local storageJoanne Koong-4/+6
2021-12-29bpf: Allow bpf_local_storage to be used by sleepable programsKP Singh-1/+5
2021-11-12bpf: Introduce btf_tracing_idsSong Liu-2/+2
2021-08-25bpf: Consolidate task_struct BTF_ID declarationsDaniel Xu-4/+2
2021-03-16bpf: Make symbol 'bpf_task_storage_busy' staticWei Yongjun-1/+1
2021-02-26bpf: Prevent deadlock from recursive bpf_task_storage_[get|delete]Song Liu-8/+51
2021-02-26bpf: Enable task local storage for tracing programsSong Liu-32/+11
2021-01-12bpf: Local storage helpers should check nullness of owner ptr passedKP Singh-1/+4
2020-11-11bpf: Fix NULL dereference in bpf_task_storageMartin KaFai Lau-1/+1
2020-11-06bpf: Implement task local storageKP Singh-0/+315