aboutsummaryrefslogtreecommitdiffstats
path: root/kernel (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-01-28Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller4-146/+207
2018-01-26bpf: fix kernel page fault in lpm map trie_get_next_keyYonghong Song1-15/+11
2018-01-26bpf: fix subprog verifier bypass by div/mod by 0 exceptionDaniel Borkmann2-16/+30
2018-01-26bpf: make unknown opcode handling more robustDaniel Borkmann2-105/+152
2018-01-26bpf: improve dead code sanitizingDaniel Borkmann1-5/+12
2018-01-25bpf: Use the IS_FD_ARRAY() macro in map_update_elem()Mickaël Salaün1-4/+1
2018-01-24Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller4-41/+84
2018-01-23tracing: Update stack trace skipping for ORC unwinderSteven Rostedt (VMware)3-29/+67
2018-01-23ftrace, orc, x86: Handle ftrace dynamically allocated trampolinesSteven Rostedt (VMware)1-12/+17
2018-01-23Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-6/+14
2018-01-23bpf: fix incorrect kmalloc usage in lpm_trie MAP_GET_NEXT_KEY rcu regionYonghong Song1-1/+1
2018-01-21Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-6/+14
2018-01-20Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller7-69/+298
2018-01-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller12-59/+205
2018-01-19bpf: add upper complexity limit to verifier logDaniel Borkmann1-1/+2
2018-01-19bpf: get rid of pure_initcall dependency to enable jitsDaniel Borkmann1-7/+12
2018-01-19bpf, verifier: detect misconfigured mem, size argument pairDaniel Borkmann1-24/+55
2018-01-19bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE mapYonghong Song1-2/+93
2018-01-19Merge tag 'trace-v4.15-rc4-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-traceLinus Torvalds2-3/+16
2018-01-19Merge branch 'for-4.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroupLinus Torvalds1-0/+1
2018-01-19Merge branch 'for-4.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-0/+13
2018-01-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2-13/+55
2018-01-18bpf: offload: report device information about offloaded mapsJakub Kicinski2-0/+61
2018-01-18bpf: offload: allow array map offloadJakub Kicinski1-1/+2
2018-01-18bpf: arraymap: use bpf_map_init_from_attr()Jakub Kicinski1-6/+1
2018-01-18bpf: arraymap: move checks out of alloc functionJakub Kicinski1-14/+28
2018-01-18bpf: allow socket_filter programs to use bpf_prog_test_runAlexei Starovoitov1-0/+2
2018-01-18tracing: Fix converting enum's from the map in trace_event_eval_update()Steven Rostedt (VMware)1-1/+15
2018-01-18ring-buffer: Fix duplicate results in mapping context to bits in recursive lockSteven Rostedt (VMware)1-2/+1
2018-01-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfDavid S. Miller2-13/+55
2018-01-18irq/matrix: Spread interrupts on allocationThomas Gleixner1-6/+14
2018-01-18bpf: change fake_ip for bpf_trace_printk helperYonghong Song1-1/+1
2018-01-18bpf: add new jited info fields in bpf_dev_offload and bpf_prog_infoJiong Wang2-13/+41
2018-01-17bpf: mark dst unknown on inconsistent {s, u}bounds adjustmentsDaniel Borkmann1-11/+16
2018-01-17Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds2-19/+29
2018-01-17Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds3-23/+90
2018-01-17Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-1/+1
2018-01-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller7-28/+70
2018-01-17bpf: annotate bpf_insn_print_t with __printfJakub Kicinski1-2/+2
2018-01-17bpf: offload: make bpf_offload_dev_match() reject host+host caseJakub Kicinski1-3/+1
2018-01-17bpf: cpumap: make some functions staticWei Yongjun1-11/+12
2018-01-16bpf: reject stores into ctx via st and xaddDaniel Borkmann1-0/+19
2018-01-16Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2-4/+21
2018-01-16Merge tag 'trace-v4.15-rc4-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-traceLinus Torvalds2-18/+46
2018-01-16delayacct: Account blkio completion on the correct taskJosh Snyder2-19/+29
2018-01-15tracing: Prevent PROFILE_ALL_BRANCHES when FORTIFY_SOURCE=yRandy Dunlap1-1/+1
2018-01-15ring-buffer: Bring back context level recursive checksSteven Rostedt (VMware)1-17/+45
2018-01-14bpf: offload: add map offload infrastructureJakub Kicinski3-13/+226
2018-01-14bpf: offload: factor out netdev checking at allocation timeJakub Kicinski1-8/+20
2018-01-14bpf: rename bpf_dev_offload -> bpf_prog_offloadJakub Kicinski1-5/+5