summaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Expand)AuthorAgeFilesLines
* ring-buffer: Make ring_buffer_record_is_on() return boolSteven Rostedt (VMware)2018-08-011-1/+1
* tracing: Make tracer_tracing_is_on() return boolSteven Rostedt (VMware)2018-08-012-2/+2
* tracing: Do a WARN_ON() if start_thread() in hwlat is called when thread existsSteven Rostedt (VMware)2018-08-011-1/+1
* ftrace: Add missing check for existing hwlat threadErica Bugden2018-08-011-0/+3
* tracing: Do not call start/stop() functions when tracing_on does not changeSteven Rostedt (VMware)2018-08-011-1/+3
* tracing: Centralize preemptirq tracepoints and unify their usageJoel Fernandes (Google)2018-07-316-202/+162
* tracepoint: Make rcuidle tracepoint callers use SRCUJoel Fernandes (Google)2018-07-301-1/+15
* lockdep: Use this_cpu_ptr instead of get_cpu_var statsJoel Fernandes (Google)2018-07-301-9/+1
* selftest/ftrace: Move kprobe selftest function to separate compile unitFrancis Deslauriers2018-07-304-11/+23
* tracing: kprobes: Prohibit probing on notrace functionMasami Hiramatsu2018-07-302-9/+58
* tracing: preemptirq_delay_run() can be statickbuild test robot2018-07-271-1/+1
* tracing/kprobes: Simplify the logic of enable_trace_kprobe()Steven Rostedt (VMware)2018-07-271-18/+24
* tracing: Remove orphaned function ftrace_nr_registered_ops()Masami Hiramatsu2018-07-261-24/+0
* tracing: Remove orphaned function using_ftrace_ops_list_func().Masami Hiramatsu2018-07-262-6/+0
* tracing: Make unregister_trigger() staticSteven Rostedt (VMware)2018-07-262-6/+3
* lib: Add module for testing preemptoff/irqsoff latency tracersJoel Fernandes (Google)2018-07-263-0/+88
* tracing/irqsoff: Split reset into separate functionsJoel Fernandes (Google)2018-07-261-3/+19
* kthread, tracing: Don't expose half-written comm when creating kthreadsSnild Dolkow2018-07-261-1/+7
* tracing: Quiet gcc warning about maybe unused link variableSteven Rostedt (VMware)2018-07-251-2/+4
* tracing: Fix possible double free in event_enable_trigger_func()Steven Rostedt (VMware)2018-07-251-1/+5
* tracing/kprobes: Fix trace_probe flags on enable_trace_kprobe() failureArtem Savkov2018-07-251-2/+11
* ring_buffer: tracing: Inherit the tracing setting to next ring bufferMasami Hiramatsu2018-07-252-0/+22
* tracing: Fix double free of event_trigger_dataSteven Rostedt (VMware)2018-07-251-4/+8
* Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds2018-07-212-2/+15
|\
| * sched/deadline: Fix switched_from_dl() warningJuri Lelli2018-07-151-1/+10
| * stop_machine: Disable preemption when waking two stopper threadsIsaac J. Manjarres2018-07-151-1/+5
* | mm: make vm_area_alloc() initialize core fieldsLinus Torvalds2018-07-211-2/+8
* | mm: make vm_area_dup() actually copy the old vma dataLinus Torvalds2018-07-211-3/+7
* | mm: use helper functions for allocating and freeing vm_area structsLinus Torvalds2018-07-211-3/+18
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2018-07-186-42/+69
|\ \
| * | bpf: don't leave partial mangled prog in jit_subprogs error pathDaniel Borkmann2018-07-121-2/+9
| * | bpf: btf: Fix bitfield extraction for big endianOkash Khawaja2018-07-111-17/+13
| * | xdp: XDP_REDIRECT should check IFF_UP and MTUToshiaki Makita2018-07-071-1/+6
| * | bpf: sockmap, convert bpf_compute_data_pointers to bpf_*_sk_skbJohn Fastabend2018-07-071-2/+2
| * | bpf: sockmap, consume_skb in close pathJohn Fastabend2018-07-071-1/+4
| * | bpf: sockhash, disallow bpf_tcp_close and update in parallelJohn Fastabend2018-07-072-1/+18
| * | bpf: sockmap, hash table is RCU so readers do not need locksJohn Fastabend2018-07-071-2/+0
| * | bpf: sockmap, error path can not release psock in multi-map caseJohn Fastabend2018-07-071-11/+6
| * | bpf: hash map: decrement counter on errorMauricio Vasquez B2018-07-031-5/+11
* | | Mark HI and TASKLET softirq synchronousLinus Torvalds2018-07-171-4/+8
| |/ |/|
* | Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2018-07-131-2/+1
|\ \
| * | Revert "tick: Prefer a lower rating device only if it's CPU local device"Sudeep Holla2018-07-101-2/+1
* | | Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2018-07-131-16/+25
|\ \ \
| * | | rseq: uapi: Declare rseq_cs field as union, update includesMathieu Desnoyers2018-07-101-6/+9
| * | | rseq: uapi: Update uapi commentsMathieu Desnoyers2018-07-101-1/+1
| * | | rseq: Use get_user/put_user rather than __get_user/__put_userMathieu Desnoyers2018-07-101-7/+7
| * | | rseq: Use __u64 for rseq_cs fields, validate user inputsMathieu Desnoyers2018-07-101-4/+10
| |/ /
* | | Merge tag 'trace-v4.18-rc3-3' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2018-07-132-6/+7
|\ \ \
| * | | tracing: Reorder display of TGID to be after PIDJoel Fernandes (Google)2018-07-122-6/+7
* | | | Merge tag 'trace-v4.18-rc3-2' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2018-07-111-1/+5
|\| | | | |/ / |/| |