aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/events/uprobes.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2013-02-08uprobes: Introduce uprobe_apply()Oleg Nesterov1-4/+35
2013-02-08uprobes: Add exports for module useJosh Stone1-0/+3
2013-02-08uprobes: Kill the bogus IS_ERR_VALUE(xol_vaddr) checkOleg Nesterov1-2/+1
2013-02-08uprobes: Do not allocate current->utask unnecessaryOleg Nesterov1-10/+6
2013-02-08uprobes: Fix utask->xol_vaddr leak in pre_ssout()Oleg Nesterov1-1/+8
2013-02-08uprobes: Do not play with utask in xol_get_insn_slot()Oleg Nesterov1-16/+21
2013-02-08uprobes: Turn add_utask() into get_utask()Oleg Nesterov1-18/+9
2013-02-08uprobes: Fold xol_alloc_area() into get_xol_area()Oleg Nesterov1-22/+16
2013-02-08uprobes: Move alloc_page() from xol_add_vma() to xol_alloc_area()Oleg Nesterov1-19/+13
2013-02-08uprobes: Change handle_swbp() to expose bp_vaddr to handler_chain()Oleg Nesterov1-8/+7
2013-02-08uprobes: Teach handler_chain() to filter out the probed taskOleg Nesterov1-10/+48
2013-02-08uprobes: Reintroduce uprobe_consumer->filter()Oleg Nesterov1-7/+11
2013-02-08uprobes: Rationalize the usage of filter_chain()Oleg Nesterov1-23/+21
2013-02-08uprobes: Kill uprobes_mutex[], separate alloc_uprobe() and __uprobe_register()Oleg Nesterov1-36/+15
2013-02-08uprobes: Introduce uprobe_is_active()Oleg Nesterov1-0/+8
2013-02-08uprobes: Kill uprobe_events, use RB_EMPTY_ROOT() insteadOleg Nesterov1-12/+7
2013-02-08uprobes: Kill uprobe->copy_mutexOleg Nesterov1-4/+3
2013-02-08uprobes: Kill UPROBE_RUN_HANDLER flagOleg Nesterov1-18/+5
2013-02-08uprobes: Change filter_chain() to iterate ->consumers listOleg Nesterov1-8/+13
2013-02-08uprobes: Introduce uprobe->register_rwsemOleg Nesterov1-2/+8
2013-02-08uprobes: _register() should always do register_for_each_vma(true)Oleg Nesterov1-18/+13
2013-02-08uprobes: _unregister() should always do register_for_each_vma(false)Oleg Nesterov1-14/+14
2013-02-08uprobes: Introduce filter_chain()Oleg Nesterov1-5/+19
2013-02-08uprobes: Kill uprobe_consumer->filter()Oleg Nesterov1-4/+2
2013-02-08uprobes: Kill the pointless inode/uc checks in register/unregisterOleg Nesterov1-6/+1
2013-02-08uprobes: Move __set_bit(UPROBE_SKIP_SSTEP) into alloc_uprobe()Oleg Nesterov1-3/+2
2013-01-24uprobes: remove redundant checkSasha Levin1-2/+1
2012-11-16uprobes: Use percpu_rw_semaphore to fix register/unregister vs dup_mmap() raceOleg Nesterov1-3/+23
2012-11-14uprobes: Flush cache after xol writeRabin Vincent1-0/+5
2012-11-03uprobes: Kill arch_uprobe_enable/disable_step() hooksOleg Nesterov1-10/+0
2012-11-03uprobes/powerpc: Do not use arch_uprobe_*_step() helpersOleg Nesterov1-2/+0
2012-10-21Merge branch 'uprobes/core' of git://git.kernel.org/pub/scm/linux/kernel/git/oleg/misc into perf/urgentIngo Molnar1-183/+162
2012-10-09mm: wrap calls to set_pte_at_notify with invalidate_range_start and invalidate_range_endHaggai Eran1-0/+5
2012-10-09mm: replace vma prio_tree with an interval treeMichel Lespinasse1-2/+1
2012-10-07uprobes: Fix the racy uprobe->flags manipulationOleg Nesterov1-14/+14
2012-10-07uprobes: Fix prepare_uprobe() race with itselfOleg Nesterov1-0/+8
2012-10-07uprobes: Introduce prepare_uprobe()Oleg Nesterov1-19/+41
2012-10-07uprobes: Fix handle_swbp() vs unregister() + register() raceOleg Nesterov1-0/+9
2012-10-07uprobes: Do not delete uprobe if uprobe_unregister() failsOleg Nesterov1-6/+6
2012-10-07uprobes: Don't return success if alloc_uprobe() failsOleg Nesterov1-1/+3
2012-09-29uprobes: Simplify is_swbp_at_addr(), remove stale commentsOleg Nesterov1-49/+24
2012-09-29uprobes: Kill set_orig_insn()->is_swbp_at_addr()Oleg Nesterov1-9/+23
2012-09-29uprobes: Introduce copy_opcode(), kill read_opcode()Oleg Nesterov1-44/+19
2012-09-29uprobes: Kill set_swbp()->is_swbp_at_addr()Oleg Nesterov1-11/+0
2012-09-29uprobes: Restrict valid_vma(false) to skip VM_SHARED vmasOleg Nesterov1-9/+4
2012-09-29uprobes: Change valid_vma() to demand VM_MAYEXEC rather than VM_EXECOleg Nesterov1-2/+2
2012-09-29uprobes: Change write_opcode() to use FOLL_FORCEOleg Nesterov1-1/+1
2012-09-29uprobes: Move clear_thread_flag(TIF_UPROBE) to uprobe_notify_resume()Oleg Nesterov1-0/+2
2012-09-29uprobes: Kill UTASK_BP_HIT stateOleg Nesterov1-20/+9
2012-09-29uprobes: Fix UPROBE_SKIP_SSTEP checks in handle_swbp()Oleg Nesterov1-16/+15