aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
AgeCommit message (Expand)AuthorFilesLines
2019-08-20bpf: add BTF ids in procfs for file descriptors to BTF objectsQuentin Monnet1-0/+12
2019-08-20bpf: Use PTR_ERR_OR_ZERO in xsk_map_inc()YueHaibing1-1/+1
2019-08-20memremap: provide a not device managed memremap_pagesChristoph Hellwig1-32/+52
2019-08-20memremap: don't use a separate devm action for devmap_managed_enable_getChristoph Hellwig1-5/+10
2019-08-20memremap: remove the dev field in struct dev_pagemapChristoph Hellwig1-5/+1
2019-08-20resource: add a not device managed request_free_mem_region variantChristoph Hellwig1-14/+31
2019-08-20hmm: use mmu_notifier_get/put for 'struct hmm'Jason Gunthorpe1-1/+0
2019-08-19kexec: Allow kexec_file() with appropriate IMA policy when locked downMatthew Garrett1-1/+9
2019-08-19lockdown: Lock down perf when in confidentiality modeDavid Howells1-0/+7
2019-08-19bpf: Restrict bpf when kernel lockdown is in confidentiality modeDavid Howells1-0/+10
2019-08-19lockdown: Lock down tracing and perf kprobes when in confidentiality modeDavid Howells1-0/+5
2019-08-19lockdown: Lock down module params that specify hardware parameters (eg. ioport)David Howells1-5/+16
2019-08-19hibernate: Disable when the kernel is locked downJosh Boyer1-1/+2
2019-08-19kexec_file: Restrict at runtime if the kernel is locked downJiri Bohac1-1/+1
2019-08-19kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCEJiri Bohac1-9/+51
2019-08-19kexec_load: Disable at runtime if the kernel is locked downMatthew Garrett1-0/+8
2019-08-19lockdown: Enforce module signatures if the kernel is locked downDavid Howells1-7/+30
2019-08-19Merge branch 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespaceLinus Torvalds1-0/+5
2019-08-19genirq: Properly pair kobject_del() with kobject_add()Michael Kelley1-1/+14
2019-08-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netDavid S. Miller8-40/+39
2019-08-19genirq: Force interrupt threading on RTThomas Gleixner1-1/+1
2019-08-19signal: Allow cifs and drbd to receive their terminating signalsEric W. Biederman1-0/+5
2019-08-19livepatch: Nullify obj->mod in klp_module_coming()'s error pathMiroslav Benes1-0/+1
2019-08-19kprobes: Fix potential deadlock in kprobe_optimizer()Andrea Righi1-4/+4
2019-08-19sched/core: Schedule new worker even if PI-blockedSebastian Andrzej Siewior1-1/+4
2019-08-18Merge tag 'spdx-5.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdxLinus Torvalds1-15/+1
2019-08-17xsk: support BPF_EXIST and BPF_NOEXIST flags in XSKMAPBjörn Töpel1-2/+6
2019-08-17xsk: remove AF_XDP socket from map when the socket is releasedBjörn Töpel1-20/+105
2019-08-17bpf: export bpf_map_inc_not_zeroStanislav Fomichev1-3/+13
2019-08-16genirq: remove the is_affinity_mask_valid hookChristoph Hellwig1-14/+0
2019-08-16Merge tag 'pm-5.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pmLinus Torvalds1-4/+10
2019-08-16Merge branch 'pm-cpufreq'Rafael J. Wysocki1-4/+10
2019-08-16PM: sleep: Replace strncmp() with str_has_prefix()Chuhong Yuan1-1/+1
2019-08-16printk: Replace strncmp() with str_has_prefix()Chuhong Yuan2-10/+27
2019-08-15btf: fix return value check in btf_vmlinux_init()Wei Yongjun1-7/+2
2019-08-14Merge tag 'dma-mapping-5.3-4' of git://git.infradead.org/users/hch/dma-mappingLinus Torvalds3-7/+24
2019-08-13Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski5-55/+350
2019-08-13rcu: Allow rcu_do_batch() to dynamically adjust batch sizesEric Dumazet1-1/+19
2019-08-13rcu/nocb: Don't wake no-CBs GP kthread if timer posted under overloadPaul E. McKenney1-2/+5
2019-08-13rcu/nocb: Reduce __call_rcu_nocb_wake() leaf rcu_node ->lock contentionPaul E. McKenney1-3/+10
2019-08-13rcu/nocb: Reduce nocb_cb_wait() leaf rcu_node ->lock contentionPaul E. McKenney1-1/+4
2019-08-13rcu/nocb: Advance CBs after merge in rcutree_migrate_callbacks()Paul E. McKenney1-0/+1
2019-08-13rcu/nocb: Avoid synchronous wakeup in __call_rcu_nocb_wake()Paul E. McKenney1-14/+5
2019-08-13rcu/nocb: Print no-CBs diagnostics when rcutorture writer unduly delayedPaul E. McKenney4-1/+94
2019-08-13rcu/nocb: EXP Check use and usefulness of ->nocb_lock_contendedPaul E. McKenney1-1/+3
2019-08-13rcu/nocb: Add bypass callback queueingPaul E. McKenney5-41/+395
2019-08-13rcu/nocb: Atomic ->len field in rcu_segcblist structurePaul E. McKenney2-8/+90
2019-08-13rcu/nocb: Unconditionally advance and wake for excessive CBsPaul E. McKenney1-5/+11
2019-08-13rcu/nocb: Reduce ->nocb_lock contention with separate ->nocb_gp_lockPaul E. McKenney2-5/+7
2019-08-13rcu/nocb: Reduce contention at no-CBs invocation-done timePaul E. McKenney1-3/+4