summaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'tip/perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git...Ingo Molnar2012-12-083-38/+83
|\
| * tracing: Show raw time stamp on stats per cpu using counter or tsc mode for t...Yoshihiro YUNOMAE2012-11-131-6/+17
| * tracing: Format non-nanosec times from tsc clock without a decimal point.David Sharp2012-11-133-32/+65
| * tracing,x86: Add a TSC trace_clockDavid Sharp2012-11-131-0/+1
* | Merge branch 'uprobes/core' of git://git.kernel.org/pub/scm/linux/kernel/git/...Ingo Molnar2012-12-083-16/+31
|\ \
| * | uprobes: Use percpu_rw_semaphore to fix register/unregister vs dup_mmap() raceOleg Nesterov2012-11-162-3/+25
| * | uprobes: Flush cache after xol writeRabin Vincent2012-11-141-0/+5
| * | uprobes: Kill arch_uprobe_enable/disable_step() hooksOleg Nesterov2012-11-031-10/+0
| * | uprobes/powerpc: Do not use arch_uprobe_*_step() helpersOleg Nesterov2012-11-031-2/+0
| * | uprobes: Fix misleading log entryJovi Zhang2012-10-251-1/+1
* | | Merge branch 'linus' into perf/coreIngo Molnar2012-12-0812-99/+116
|\ \ \ | |_|/ |/| |
| * | Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/l...Linus Torvalds2012-12-061-7/+7
| |\ \
| | * | MODSIGN: Don't use enum-type bitfields in module signature info blockDavid Howells2012-12-051-7/+7
| * | | Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2012-12-061-0/+3
| |\ \ \ | | |/ / | |/| |
| | * | watchdog: Fix CPU hotplug regressionThomas Gleixner2012-12-041-0/+3
| * | | Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/l...Linus Torvalds2012-12-041-2/+2
| |\ \ \
| | * | | modsign: add symbol prefix to certificate listJames Hogan2012-12-031-2/+2
| * | | | Merge branch 'for-3.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds2012-12-041-2/+2
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | workqueue: convert BUG_ON()s in __queue_delayed_work() to WARN_ON_ONCE()sTejun Heo2012-12-041-2/+2
| | |/ /
| * | | Revert "sched, autogroup: Stop going ahead if autogroup is disabled"Mike Galbraith2012-12-032-9/+0
| |/ /
| * | workqueue: mod_delayed_work_on() shouldn't queue timer on 0 delayTejun Heo2012-12-011-3/+11
| * | workqueue: exit rescuer_thread() as TASK_RUNNINGMike Galbraith2012-12-011-1/+3
| * | Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2012-12-011-5/+7
| |\ \
| | * | perf, powerpc: Fix hw breakpoints returning -ENOSPCMichael Neuling2012-10-301-5/+7
| * | | futex: avoid wake_futex() for a PI futex_qDarren Hart2012-11-261-1/+17
| * | | watchdog: using u64 in get_sample_period()Chuansheng Liu2012-11-261-2/+2
| * | | Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2012-11-121-19/+22
| |\ \ \
| | * | | futex: Handle futex_pi OWNER_DIED take over correctlyThomas Gleixner2012-11-011-19/+22
| | |/ /
| * | | module: fix out-by-one error in kallsymsRusty Russell2012-10-311-11/+16
| |/ /
| * | Merge branch 'akpm' (Andrew's fixes)Linus Torvalds2012-10-251-1/+11
| |\ \
| | * | pidns: limit the nesting depth of pid namespacesAndrew Vagin2012-10-251-1/+11
| * | | Makefile: Documentation for external tool should be correctH. Peter Anvin2012-10-251-4/+2
| |/ /
| * | Merge branch 'for-3.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds2012-10-241-31/+10
| |\ \
| | * | Revert "cgroup: Remove task_lock() from cgroup_post_fork()"Tejun Heo2012-10-191-12/+3
| | * | Revert "cgroup: Drop task_lock(parent) on cgroup_fork()"Tejun Heo2012-10-191-17/+6
| | * | cgroup: notify_on_release may not be triggered in some casesDaisuke Nishimura2012-10-161-2/+1
| * | | Merge branch 'for-3.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds2012-10-241-1/+1
| |\ \ \ | | |_|/ | |/| |
| | * | workqueue: cancel_delayed_work() should return %false if work item is idleDan Magenheimer2012-10-241-1/+1
| | |/
* | | tracing: Add trace_options kernel command line parameterSteven Rostedt2012-11-021-15/+39
* | | tracing: Use irq_work for wake ups and remove *_nowake_*() functionsSteven Rostedt2012-11-027-64/+76
* | | tracing: Remove deprecated tracing_enabled fileSteven Rostedt2012-11-021-3/+0
* | | tracing: Make tracing_enabled be equal to tracing_onSteven Rostedt2012-11-022-86/+5
* | | tracing: Remove unused function unregister_tracer()Steven Rostedt2012-11-022-27/+0
* | | tracing: Separate open function from set_event and available_eventsSteven Rostedt2012-11-021-19/+27
* | | ring-buffer: Change unsigned long type of ring_buffer_oldest_event_ts() to u64Yoshihiro YUNOMAE2012-11-021-2/+2
* | | tracing: Reset ring buffer when changing trace_clocksDavid Sharp2012-11-021-0/+8
* | | tracing: Cleanup unnecessary function declarationsVaibhav Nagarnaik2012-10-311-32/+29
* | | tracing: Trivial cleanupDavid Sharp2012-10-311-3/+3
* | | tracing: Cache comms only after an event occurredSteven Rostedt2012-10-314-11/+33
* | | tracing: Have tracing_sched_wakeup_trace() use standard unlock_commitSteven Rostedt2012-10-311-3/+1
OpenPOWER on IntegriCloud