kprobes.c (635c17c2b2b4e5cd34f5dcba19d751b4e58533c2) | kprobes.c (bf5438fca2950b03c21ad868090cc1a8fcd49536) |
---|---|
1/* 2 * Kernel Probes (KProbes) 3 * 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. --- 33 unchanged lines hidden (view full) --- 42#include <linux/freezer.h> 43#include <linux/seq_file.h> 44#include <linux/debugfs.h> 45#include <linux/sysctl.h> 46#include <linux/kdebug.h> 47#include <linux/memory.h> 48#include <linux/ftrace.h> 49#include <linux/cpu.h> | 1/* 2 * Kernel Probes (KProbes) 3 * 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. --- 33 unchanged lines hidden (view full) --- 42#include <linux/freezer.h> 43#include <linux/seq_file.h> 44#include <linux/debugfs.h> 45#include <linux/sysctl.h> 46#include <linux/kdebug.h> 47#include <linux/memory.h> 48#include <linux/ftrace.h> 49#include <linux/cpu.h> |
50#include <linux/jump_label.h> |
|
50 51#include <asm-generic/sections.h> 52#include <asm/cacheflush.h> 53#include <asm/errno.h> 54#include <asm/uaccess.h> 55 56#define KPROBE_HASH_BITS 6 57#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS) --- 1978 unchanged lines hidden --- | 51 52#include <asm-generic/sections.h> 53#include <asm/cacheflush.h> 54#include <asm/errno.h> 55#include <asm/uaccess.h> 56 57#define KPROBE_HASH_BITS 6 58#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS) --- 1978 unchanged lines hidden --- |