summaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Expand)AuthorAgeFilesLines
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2019-01-214-5/+24
|\
| * bpf: fix inner map masking to prevent oob under speculationDaniel Borkmann2019-01-191-2/+15
| * bpf: Annotate implicit fall through in cgroup_dev_func_protoMathieu Malaterre2019-01-171-0/+1
| * bpf: Make function btf_name_offset_valid staticMathieu Malaterre2019-01-171-1/+1
| * bpf: zero out build_id for BPF_STACK_BUILD_ID_IPStanislav Fomichev2019-01-171-0/+2
| * bpf: don't assume build-id length is always 20 bytesStanislav Fomichev2019-01-171-2/+5
* | Merge branch 'stable/for-linus-5.0' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2019-01-171-0/+2
|\ \
| * | swiotlb: clear io_tlb_start and io_tlb_end in swiotlb_exitChristoph Hellwig2019-01-161-0/+2
* | | seccomp: fix UAF in user-trap codeTycho Andersen2019-01-151-0/+4
| |/ |/|
* | Merge tag 'trace-v5.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/r...Linus Torvalds2019-01-151-3/+9
|\ \
| * | tracing/kprobes: Fix NULL pointer dereference in trace_kprobe_create()Andrea Righi2019-01-151-3/+9
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2019-01-155-22/+88
|\ \ \ | |_|/ |/| |
| * | umh: add exit routine for UMH processTaehee Yoo2019-01-122-2/+32
| * | bpf: fix bpffs bitfield pretty printYonghong Song2019-01-111-6/+6
| * | bpf: fix panic in stack_map_get_build_id() on i386 and arm32Song Liu2019-01-101-1/+2
| * | bpf: fix sanitation of alu op with pointer / scalar type from different pathsDaniel Borkmann2019-01-061-13/+48
* | | kernel/sys.c: Clarify that UNAME26 does not generate unique versions anymoreJonathan Neuschäfer2019-01-131-1/+2
* | | Merge branch 'akpm' (patches from Andrew)Linus Torvalds2019-01-091-0/+1
|\ \ \
| * | | fork, memcg: fix cached_stacks caseShakeel Butt2019-01-091-0/+1
| | |/ | |/|
* / | fork: record start_time lateDavid Herrmann2019-01-081-2/+11
|/ /
* | Merge tag 'kbuild-v4.21-3' of git://git.kernel.org/pub/scm/linux/kernel/git/m...Linus Torvalds2019-01-077-18/+18
|\ \
| * | kbuild: change filechk to surround the given command with { }Masahiro Yamada2019-01-061-1/+5
| * | jump_label: move 'asm goto' support test to KconfigMasahiro Yamada2019-01-066-17/+13Star
* | | Merge tag 'dma-mapping-4.21-1' of git://git.infradead.org/users/hch/dma-mappingLinus Torvalds2019-01-064-117/+11Star
|\ \ \ | |/ / |/| |
| * | dma-direct: fix DMA_ATTR_NO_KERNEL_MAPPING for remapped allocationsChristoph Hellwig2019-01-051-6/+7
| * | dma-mapping: remove a few unused exportsChristoph Hellwig2019-01-042-4/+0Star
| * | dma-mapping: remove dmam_{declare,release}_coherent_memoryChristoph Hellwig2019-01-041-55/+0Star
| * | dma-mapping: implement dmam_alloc_coherent using dmam_alloc_attrsChristoph Hellwig2019-01-041-39/+0Star
| * | dma-mapping: implement dma_map_single_attrs using dma_map_page_attrsChristoph Hellwig2019-01-041-13/+4Star
| |/
* | Merge branch 'akpm' (patches from Andrew)Linus Torvalds2019-01-0510-21/+52
|\ \
| * | kernel/sched/: remove caller signal_pending branch predictionsDavidlohr Bueso2019-01-043-3/+3
| * | kernel/locking/mutex.c: remove caller signal_pending branch predictionsDavidlohr Bueso2019-01-041-1/+1
| * | kernel/kcov.c: mark write_comp_data() as notraceAnders Roxell2019-01-041-1/+1
| * | kernel/sysctl: add panic_print into sysctlFeng Tang2019-01-043-1/+9
| * | panic: add options to print system info when panic happensFeng Tang2019-01-041-0/+28
| * | fork: fix some -Wmissing-prototypes warningsYi Wang2019-01-041-5/+0Star
| * | kernel/hung_task.c: break RCU locks based on jiffiesTetsuo Handa2019-01-041-4/+4
| * | kernel/hung_task.c: force console verbose before panicLiu, Chuansheng2019-01-041-7/+5Star
| * | proc/sysctl: fix return error for proc_doulongvec_minmax()Cheng Lin2019-01-041-0/+2
* | | make 'user_access_begin()' do 'access_ok()'Linus Torvalds2019-01-042-8/+4Star
| |/ |/|
* | Remove 'type' argument from access_ok() functionLinus Torvalds2019-01-0412-42/+47
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2019-01-032-78/+312
|\ \ | |/ |/|
| * bpf: prevent out of bounds speculation on pointer arithmeticDaniel Borkmann2019-01-031-6/+179
| * bpf: fix check_map_access smin_value test when pointer contains offsetDaniel Borkmann2019-01-031-1/+5
| * bpf: restrict unknown scalars of mixed signed bounds for unprivilegedDaniel Borkmann2019-01-031-1/+8
| * bpf: restrict stack pointer arithmetic for unprivilegedDaniel Borkmann2019-01-031-22/+41
| * bpf: restrict map value pointer arithmetic for unprivilegedDaniel Borkmann2019-01-031-0/+11
| * bpf: enable access to ax register also from verifier rewriteDaniel Borkmann2019-01-031-0/+20
| * bpf: move tmp variable into ax register in interpreterDaniel Borkmann2019-01-031-17/+17
| * bpf: move {prev_,}insn_idx into verifier envDaniel Borkmann2019-01-031-38/+38