summaryrefslogtreecommitdiffstats
path: root/kernel/events/uprobes.c
Commit message (Expand)AuthorAgeFilesLines
* uprobes: Introduce arch_uprobe_enable/disable_step()Sebastian Andrzej Siewior2012-09-151-2/+12
* uprobes: Teach find_active_uprobe() to clear MMF_HAS_UPROBESOleg Nesterov2012-09-151-0/+22
* uprobes: Introduce MMF_RECALC_UPROBESOleg Nesterov2012-09-151-4/+35
* uprobes: uprobes_treelock should not disable irqsOleg Nesterov2012-09-151-13/+8
* uprobes: Don't put NULL pointer in uprobe_register()Sebastian Andrzej Siewior2012-09-151-1/+2
* uprobes: Remove "verify" argument from set_orig_insn()Oleg Nesterov2012-08-281-11/+9
* uprobes: Fold uprobe_reset_state() into uprobe_dup_mmap()Oleg Nesterov2012-08-281-8/+2
* uprobes: Introduce MMF_HAS_UPROBESOleg Nesterov2012-08-281-1/+21
* uprobes: Do not use -EEXIST in install_breakpoint() pathsOleg Nesterov2012-08-281-11/+5
* uprobes: Change uprobe_mmap() to ignore the errors but check fatal_signal_pen...Oleg Nesterov2012-08-281-21/+6
* uprobes: Kill dup_mmap()->uprobe_mmap(), simplify uprobe_mmap/munmapOleg Nesterov2012-08-281-27/+3
* uprobes: Kill uprobes_state->countOleg Nesterov2012-08-281-36/+2
* uprobes: Remove check for uprobe variable in handle_swbp()Sebastian Andrzej Siewior2012-08-281-9/+7
* uprobes: Remove redundant lock_page/unlock_pageSrikar Dronamraju2012-08-281-2/+0
* uprobes: __replace_page() needs munlock_vma_page()Oleg Nesterov2012-07-301-2/+6
* uprobes: Rename vma_address() and make it return "unsigned long"Oleg Nesterov2012-07-301-10/+5
* uprobes: Fix register_for_each_vma()->vma_address() checkOleg Nesterov2012-07-301-4/+5
* uprobes: Introduce vaddr_to_offset(vma, vaddr)Oleg Nesterov2012-07-301-6/+8
* uprobes: Teach build_probe_list() to consider the rangeOleg Nesterov2012-07-301-53/+50
* uprobes: Fix overflow in vma_address()/find_active_uprobe()Oleg Nesterov2012-07-301-2/+2
* uprobes: Suppress uprobe_munmap() from mmput()Oleg Nesterov2012-07-301-0/+3
* uprobes: Uprobe_mmap/munmap needs list_for_each_entry_safe()Oleg Nesterov2012-07-301-4/+4
* uprobes: Clean up and document write_opcode()->lock_page(old_page)Oleg Nesterov2012-07-301-13/+14
* uprobes: Kill write_opcode()->lock_page(new_page)Oleg Nesterov2012-07-301-2/+0
* uprobes: __replace_page() should not use page_address_in_vma()Oleg Nesterov2012-07-301-7/+4
* uprobes: Don't recheck vma/f_mapping in write_opcode()Oleg Nesterov2012-07-301-18/+1
* uprobes: Remove the unnecessary initialization in add_utask()Oleg Nesterov2012-06-161-1/+0
* uprobes: __copy_insn() needs "loff_t offset"Oleg Nesterov2012-06-161-6/+6
* uprobes: Don't use loff_t for the valid virtual addressOleg Nesterov2012-06-161-17/+9
* uprobes: Simplify the usage of uprobe->pending_listOleg Nesterov2012-06-161-8/+4
* uprobes: Move BUG_ON(UPROBE_SWBP_INSN_SIZE) from write_opcode() to install_br...Oleg Nesterov2012-06-161-6/+5
* uprobes: No need to re-check vma_address() in write_opcode()Oleg Nesterov2012-06-161-5/+0
* uprobes: Copy_insn() should not return -ENOMEM if __copy_insn() failsOleg Nesterov2012-06-161-4/+4
* uprobes: Copy_insn() shouldn't depend on mm/vma/vaddrOleg Nesterov2012-06-161-9/+6
* uprobes: Document uprobe_register() vs uprobe_mmap() racePeter Zijlstra2012-06-161-3/+28
* uprobes: Change build_map_info() to try kmalloc(GFP_NOWAIT) firstOleg Nesterov2012-06-161-0/+10
* uprobes: Rework register_for_each_vma() to make it O(n)Oleg Nesterov2012-06-161-113/+86
* uprobes: Install_breakpoint() should fail if is_swbp_insn() == TOleg Nesterov2012-06-161-1/+1
* uprobes: Write_opcode()->__replace_page() can race with try_to_unmap()Oleg Nesterov2012-06-161-28/+13
* uprobes: __copy_insn() should ensure a_ops->readpage != NULLOleg Nesterov2012-06-161-0/+3
* uprobes: Valid_vma() should reject VM_HUGETLBOleg Nesterov2012-06-161-1/+2
* uprobes: Pass probed vaddr to arch_uprobe_analyze_insn()Ananth N Mavinakayanahalli2012-06-081-1/+1
* uprobes: Kill uprobes_srcu/uprobe_srcu_idOleg Nesterov2012-06-061-19/+3
* uprobes: Teach handle_swbp() to rely on "is_swbp" rather than uprobes_srcuOleg Nesterov2012-06-061-3/+15
* uprobes: Change register_for_each_vma() to take mm->mmap_sem for writingOleg Nesterov2012-06-061-4/+4
* uprobes: Teach find_active_uprobe() to provide the "is_swbp" infoOleg Nesterov2012-06-061-3/+8
* uprobes: Introduce find_active_uprobe() helperOleg Nesterov2012-06-061-19/+28
* uprobes: Change read_opcode() to use FOLL_FORCEOleg Nesterov2012-06-061-1/+1
* uprobes: Optimize is_swbp_at_addr() for current->mmOleg Nesterov2012-06-061-1/+11
* uprobes/core: Decrement uprobe count before the pages are unmappedSrikar Dronamraju2012-04-141-2/+2
OpenPOWER on IntegriCloud