kprobes.c (b22364c8eec89e6b0c081a237f3b6348df87796f) kprobes.c (1eeb66a1bb973534dc3d064920a5ca683823372e)
1/*
2 * Kernel Probes (KProbes)
3 * arch/ia64/kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.

--- 15 unchanged lines hidden (view full) ---

24 */
25
26#include <linux/kprobes.h>
27#include <linux/ptrace.h>
28#include <linux/string.h>
29#include <linux/slab.h>
30#include <linux/preempt.h>
31#include <linux/moduleloader.h>
1/*
2 * Kernel Probes (KProbes)
3 * arch/ia64/kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.

--- 15 unchanged lines hidden (view full) ---

24 */
25
26#include <linux/kprobes.h>
27#include <linux/ptrace.h>
28#include <linux/string.h>
29#include <linux/slab.h>
30#include <linux/preempt.h>
31#include <linux/moduleloader.h>
32#include <linux/kdebug.h>
32
33#include <asm/pgtable.h>
33
34#include <asm/pgtable.h>
34#include <asm/kdebug.h>
35#include <asm/sections.h>
36#include <asm/uaccess.h>
37
38extern void jprobe_inst_return(void);
39
40DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
41DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
42

--- 981 unchanged lines hidden ---
35#include <asm/sections.h>
36#include <asm/uaccess.h>
37
38extern void jprobe_inst_return(void);
39
40DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
41DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
42

--- 981 unchanged lines hidden ---