summaryrefslogtreecommitdiffstats
path: root/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* bpf: Perform CFG walk for exception callbackKumar Kartikeya Dwivedi2023-09-161-2/+13
* bpf: Add support for custom exception callbacksKumar Kartikeya Dwivedi2023-09-162-16/+126
* bpf: Refactor check_btf_func and split into two phasesKumar Kartikeya Dwivedi2023-09-161-28/+100
* bpf: Implement BPF exceptionsKumar Kartikeya Dwivedi2023-09-163-15/+141
* bpf: Implement support for adding hidden subprogsKumar Kartikeya Dwivedi2023-09-163-10/+40
* arch/x86: Implement arch_bpf_stack_walkKumar Kartikeya Dwivedi2023-09-161-0/+9
* bpf: Allow to use kfunc XDP hints and frags togetherLarysa Zaremba2023-09-151-1/+8
* bpf: expose information about supported xdp metadata kfuncStanislav Fomichev2023-09-151-1/+1
* bpf: make it easier to add new metadata kfuncStanislav Fomichev2023-09-151-4/+5
* bpf: Charge modmem for struct_ops trampolineSong Liu2023-09-151-4/+22
* bpf, x64: Fix tailcall infinite loopLeon Hwang2023-09-122-2/+5
* bpf: task_group_seq_get_next: simplify the "next tid" logicOleg Nesterov2023-09-081-7/+4
* bpf: task_group_seq_get_next: kill next_taskOleg Nesterov2023-09-081-8/+6
* bpf: task_group_seq_get_next: fix the skip_if_dup_files checkOleg Nesterov2023-09-081-1/+1
* bpf: task_group_seq_get_next: cleanup the usage of get/put_task_structOleg Nesterov2023-09-081-10/+2
* bpf: task_group_seq_get_next: cleanup the usage of next_thread()Oleg Nesterov2023-09-081-7/+0
* bpf: Enable IRQ after irq_work_raise() completes in unit_free{_rcu}()Hou Tao2023-09-081-2/+7
* bpf: Enable IRQ after irq_work_raise() completes in unit_alloc()Hou Tao2023-09-081-1/+6
* bpf: Mark OBJ_RELEASE argument as MEM_RCU when possibleYonghong Song2023-09-081-0/+20
* bpf: Add bpf_this_cpu_ptr/bpf_per_cpu_ptr support for allocated percpu objYonghong Song2023-09-081-8/+51
* bpf: Add alloc/xchg/direct_access support for local percpu kptrYonghong Song2023-09-082-22/+106
* bpf: Add BPF_KPTR_PERCPU as a field typeYonghong Song2023-09-082-0/+9
* bpf: Add support for non-fix-size percpu mem allocationYonghong Song2023-09-082-11/+11
* Merge tag 'net-6.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netd...Linus Torvalds2023-09-084-38/+20
|\
| * bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_allocMartin KaFai Lau2023-09-061-1/+1
| * bpf: bpf_sk_storage: Fix invalid wait context lockdep reportMartin KaFai Lau2023-09-061-33/+14
| * bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check.Sebastian Andrzej Siewior2023-09-062-4/+2
| * bpf: Invoke __bpf_prog_exit_sleepable_recur() on recursion in kern_sys_bpf().Sebastian Andrzej Siewior2023-09-061-0/+1
| * netfilter: nf_tables: Audit log rule resetPhil Sutter2023-08-311-0/+1
| * netfilter: nf_tables: Audit log setelem resetPhil Sutter2023-08-311-0/+1
* | Merge tag 'kbuild-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/masa...Linus Torvalds2023-09-056-0/+9
|\ \
| * | kbuild: Show marked Kconfig fragments in "help"Kees Cook2023-09-036-0/+9
* | | Merge tag 'printk-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/p...Linus Torvalds2023-09-045-74/+156
|\ \ \
| * \ \ Merge branch 'rework/misc-cleanups' into for-linusPetr Mladek2023-09-044-73/+153
| |\ \ \
| | * | | printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic()John Ogness2023-07-202-7/+10
| | * | | printk: Add per-console suspended stateJohn Ogness2023-07-201-30/+44
| | * | | printk: Consolidate console deferred printingJohn Ogness2023-07-202-14/+30
| | * | | printk: Do not take console lock for console_flush_on_panic()John Ogness2023-07-201-9/+19
| | * | | printk: Keep non-panic-CPUs out of console lockJohn Ogness2023-07-201-19/+26
| | * | | printk: Reduce console_unblank() usage in unsafe scenariosJohn Ogness2023-07-201-0/+28
| | * | | kdb: Do not assume write() callback availableJohn Ogness2023-07-201-0/+2
| * | | | printk: export symbols for debug modulesEnlin Mu2023-08-161-0/+2
| * | | | printk: ringbuffer: Fix truncating buffer size min_t castKees Cook2023-08-141-1/+1
| |/ / /
* | | | Merge tag 'probes-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/trac...Linus Torvalds2023-09-0212-169/+585
|\ \ \ \
| * | | | tracing/fprobe-event: Assume fprobe is a return event by $retvalMasami Hiramatsu (Google)2023-08-231-14/+44
| * | | | tracing/probes: Add string type check with BTFMasami Hiramatsu (Google)2023-08-232-3/+89
| * | | | tracing/probes: Support BTF field access from $retvalMasami Hiramatsu (Google)2023-08-232-102/+86
| * | | | tracing/probes: Support BTF based data structure field accessMasami Hiramatsu (Google)2023-08-233-28/+216
| * | | | tracing/probes: Add a function to search a member of a struct/unionMasami Hiramatsu (Google)2023-08-232-0/+73
| * | | | tracing/probes: Move finding func-proto API and getting func-param API to tra...Masami Hiramatsu (Google)2023-08-234-40/+72