summaryrefslogtreecommitdiffstats
path: root/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski2022-11-1210-601/+783
|\
| * docs/bpf: Document BPF_MAP_TYPE_CPUMAP mapMaryam Tahhan2022-11-111-3/+6
| * bpf: aggressively forget precise markings during state checkpointingAndrii Nakryiko2022-11-041-0/+37
| * bpf: stop setting precise in current stateAndrii Nakryiko2022-11-041-12/+91
| * bpf: allow precision tracking for programs with subprogsAndrii Nakryiko2022-11-041-1/+61
| * bpf: propagate precision across all frames, not just the last oneAndrii Nakryiko2022-11-041-32/+39
| * bpf: propagate precision in ALU/ALU64 operationsAndrii Nakryiko2022-11-041-0/+5
| * bpf: Refactor map->off_arr handlingKumar Kartikeya Dwivedi2022-11-042-64/+64
| * bpf: Consolidate spin_lock, timer management into btf_recordKumar Kartikeya Dwivedi2022-11-049-320/+278
| * bpf: Refactor kptr_off_tab into btf_recordKumar Kartikeya Dwivedi2022-11-046-217/+250
| * bpf: Drop reg_type_may_be_refcounted_or_nullKumar Kartikeya Dwivedi2022-11-041-8/+1
| * bpf: Fix slot type check in check_stack_write_var_offKumar Kartikeya Dwivedi2022-11-041-8/+11
| * bpf: Clobber stack slot when writing over spilled PTR_TO_BTF_IDKumar Kartikeya Dwivedi2022-11-041-4/+5
| * bpf: Allow specifying volatile type modifier for kptrsKumar Kartikeya Dwivedi2022-11-041-0/+3
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-11-117-32/+44
|\ \ | |/ |/|
| * Merge tag 'net-6.1-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds2022-11-111-4/+13
| |\
| | * Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski2022-11-041-4/+13
| | |\
| | | * bpf: Fix wrong reg type conversion in release_reference()Youlin Li2022-11-041-2/+6
| | | * bpf, verifier: Fix memory leak in array reallocation for stack stateKees Cook2022-11-011-2/+7
| * | | Merge tag 'perf_urgent_for_v6.1_rc4' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2022-11-061-2/+2
| |\ \ \
| | * | | perf/hw_breakpoint: test: Skip the test if dependencies unmetDavid Gow2022-11-021-2/+2
| | |/ /
| * | | tracing: kprobe: Fix memory leak in test_gen_kprobe/kretprobe_cmd()Shang XiaoJing2022-11-041-11/+7
| * | | tracing/fprobe: Fix to check whether fprobe is registered correctlyMasami Hiramatsu (Google)2022-11-041-1/+2
| * | | fprobe: Check rethook_alloc() return in rethook initializationRafael Mendonca2022-11-041-0/+2
| * | | kprobe: reverse kp->flags when arm_kprobe failedLi Qiang2022-11-041-1/+4
| * | | ftrace: Fix use-after-free for dynamic ftrace_opsLi Huafei2022-11-031-13/+3
| * | | ring-buffer: Check for NULL cpu_buffer in ring_buffer_wake_waiters()Steven Rostedt (Google)2022-11-031-0/+11
| |/ /
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2022-11-032-1/+2
|\| |
| * | Merge tag 'perf_urgent_for_v6.1_rc3' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2022-10-301-0/+1
| |\ \
| | * | perf: Fix missing raw data on tracepoint eventsJames Clark2022-10-271-0/+1
| * | | Merge tag 'pm-6.1-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafae...Linus Torvalds2022-10-291-1/+1
| |\ \ \ | | |_|/ | |/| |
| | * | PM: hibernate: Allow hybrid sleep to work with s2idleMario Limonciello2022-10-251-1/+1
| | |/
* | | Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Jakub Kicinski2022-11-0215-220/+690
|\ \ \
| * | | bpf: Remove the obsolte u64_stats_fetch_*_irq() users.Thomas Gleixner2022-10-311-2/+2
| * | | bpf: check max_entries before allocating memoryFlorian Lehner2022-10-291-12/+8
| * | | bpf: Fix a typo in comment for DFS algorithmXu Kuohai2022-10-271-1/+1
| * | | bpf: Implement cgroup storage available to non-cgroup-attached bpf progsYonghong Song2022-10-267-3/+273
| * | | bpf: Refactor some inode/task/sk storage functions for reuseYonghong Song2022-10-263-139/+127
| * | | bpf: Make struct cgroup btf id globalYonghong Song2022-10-261-1/+1
| * | | bpf: Add new bpf_task_storage_delete proto with no deadlock detectionMartin KaFai Lau2022-10-262-1/+31
| * | | bpf: bpf_task_storage_delete_recur does lookup first before the deadlock checkMartin KaFai Lau2022-10-261-7/+11
| * | | bpf: Add new bpf_task_storage_get proto with no deadlock detectionMartin KaFai Lau2022-10-262-1/+32
| * | | bpf: Avoid taking spinlock in bpf_task_storage_get if potential deadlock is d...Martin KaFai Lau2022-10-262-7/+9
| * | | bpf: Refactor the core bpf_task_storage_get logic into a new functionMartin KaFai Lau2022-10-261-18/+26
| * | | bpf: Append _recur naming to the bpf_task_storage helper protoMartin KaFai Lau2022-10-262-8/+8
| * | | bpf: Remove prog->active check for bpf_lsm and bpf_iterMartin KaFai Lau2022-10-262-15/+70
| * | | bpf: Take module reference on kprobe_multi linkJiri Olsa2022-10-251-0/+92
| * | | bpf: Rename __bpf_kprobe_multi_cookie_cmp to bpf_kprobe_multi_addrs_cmpJiri Olsa2022-10-251-3/+3
| * | | ftrace: Add support to resolve module symbols in ftrace_lookup_symbolsJiri Olsa2022-10-251-5/+11
| * | | kallsyms: Make module_kallsyms_on_each_symbol generally availableJiri Olsa2022-10-251-2/+0