summaryrefslogtreecommitdiff
path: root/2.6.32
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-12-16 11:35:45 -0500
committerAnthony G. Basile <blueness@gentoo.org>2012-12-16 11:35:45 -0500
commitb925a1e85b6f5bfcc33cdbfb2f8e8a14fef5096b (patch)
tree47c266b15b2ccc71b943c6693f211d28a26c6df8 /2.6.32
parent4425-tmpfs-user-namespace.patch: remove as its implemented in 4420 (diff)
downloadhardened-patchset-b925a1e85b6f5bfcc33cdbfb2f8e8a14fef5096b.tar.gz
hardened-patchset-b925a1e85b6f5bfcc33cdbfb2f8e8a14fef5096b.tar.bz2
hardened-patchset-b925a1e85b6f5bfcc33cdbfb2f8e8a14fef5096b.zip
Grsec/PaX: 2.9.1-{2.6.32.60,3.2.35,3.7.0}-20121215142220121215
Diffstat (limited to '2.6.32')
-rw-r--r--2.6.32/0000_README2
-rw-r--r--2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212151417.patch (renamed from 2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212071640.patch)5810
2 files changed, 3176 insertions, 2636 deletions
diff --git a/2.6.32/0000_README b/2.6.32/0000_README
index 1443d3a..118ed93 100644
--- a/2.6.32/0000_README
+++ b/2.6.32/0000_README
@@ -34,7 +34,7 @@ Patch: 1059_linux-2.6.32.60.patch
From: http://www.kernel.org
Desc: Linux 2.6.32.59
-Patch: 4420_grsecurity-2.9.1-2.6.32.60-201212071640.patch
+Patch: 4420_grsecurity-2.9.1-2.6.32.60-201212151417.patch
From: http://www.grsecurity.net
Desc: hardened-sources base patch from upstream grsecurity
diff --git a/2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212071640.patch b/2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212151417.patch
index 06f7fb7..182c7b6 100644
--- a/2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212071640.patch
+++ b/2.6.32/4420_grsecurity-2.9.1-2.6.32.60-201212151417.patch
@@ -12061,7 +12061,7 @@ index ba180d9..3bad351 100644
/* EISA */
extern void eisa_set_level_irq(unsigned int irq);
diff --git a/arch/x86/include/asm/i387.h b/arch/x86/include/asm/i387.h
-index 0b20bbb..fe899a7 100644
+index 0b20bbb..f06479b 100644
--- a/arch/x86/include/asm/i387.h
+++ b/arch/x86/include/asm/i387.h
@@ -56,10 +56,12 @@ static inline void tolerant_fwait(void)
@@ -12118,7 +12118,7 @@ index 0b20bbb..fe899a7 100644
-#define safe_address (kstat_cpu(0).cpustat.user)
-#endif
+ in L1 during context switch. */
-+#define safe_address (init_tss[smp_processor_id()].x86_tss.sp0)
++#define safe_address (init_tss[raw_smp_processor_id()].x86_tss.sp0)
/*
* These must be called with preempt disabled
@@ -12268,10 +12268,23 @@ index 08bc2ff..2e88d1f 100644
int kvm_mmu_module_init(void);
void kvm_mmu_module_exit(void);
diff --git a/arch/x86/include/asm/local.h b/arch/x86/include/asm/local.h
-index 47b9b6f..815aaa1 100644
+index 47b9b6f..17233f6 100644
--- a/arch/x86/include/asm/local.h
+++ b/arch/x86/include/asm/local.h
-@@ -18,26 +18,58 @@ typedef struct {
+@@ -11,33 +11,97 @@ typedef struct {
+ atomic_long_t a;
+ } local_t;
+
++typedef struct {
++ atomic_long_unchecked_t a;
++} local_unchecked_t;
++
+ #define LOCAL_INIT(i) { ATOMIC_LONG_INIT(i) }
+
+ #define local_read(l) atomic_long_read(&(l)->a)
++#define local_read_unchecked(l) atomic_long_read_unchecked(&(l)->a)
+ #define local_set(l, i) atomic_long_set(&(l)->a, (i))
++#define local_set_unchecked(l, i) atomic_long_set_unchecked(&(l)->a, (i))
static inline void local_inc(local_t *l)
{
@@ -12285,6 +12298,12 @@ index 47b9b6f..815aaa1 100644
+ _ASM_EXTABLE(0b, 0b)
+#endif
+
++ : "+m" (l->a.counter));
++}
++
++static inline void local_inc_unchecked(local_unchecked_t *l)
++{
++ asm volatile(_ASM_INC "%0\n"
: "+m" (l->a.counter));
}
@@ -12300,6 +12319,12 @@ index 47b9b6f..815aaa1 100644
+ _ASM_EXTABLE(0b, 0b)
+#endif
+
++ : "+m" (l->a.counter));
++}
++
++static inline void local_dec_unchecked(local_unchecked_t *l)
++{
++ asm volatile(_ASM_DEC "%0\n"
: "+m" (l->a.counter));
}
@@ -12315,6 +12340,13 @@ index 47b9b6f..815aaa1 100644
+ _ASM_EXTABLE(0b, 0b)
+#endif
+
++ : "+m" (l->a.counter)
++ : "ir" (i));
++}
++
++static inline void local_add_unchecked(long i, local_unchecked_t *l)
++{
++ asm volatile(_ASM_ADD "%1,%0\n"
: "+m" (l->a.counter)
: "ir" (i));
}
@@ -12331,10 +12363,17 @@ index 47b9b6f..815aaa1 100644
+ _ASM_EXTABLE(0b, 0b)
+#endif
+
++ : "+m" (l->a.counter)
++ : "ir" (i));
++}
++
++static inline void local_sub_unchecked(long i, local_unchecked_t *l)
++{
++ asm volatile(_ASM_SUB "%1,%0\n"
: "+m" (l->a.counter)
: "ir" (i));
}
-@@ -55,7 +87,16 @@ static inline int local_sub_and_test(long i, local_t *l)
+@@ -55,7 +119,16 @@ static inline int local_sub_and_test(long i, local_t *l)
{
unsigned char c;
@@ -12352,7 +12391,7 @@ index 47b9b6f..815aaa1 100644
: "+m" (l->a.counter), "=qm" (c)
: "ir" (i) : "memory");
return c;
-@@ -73,7 +114,16 @@ static inline int local_dec_and_test(local_t *l)
+@@ -73,7 +146,16 @@ static inline int local_dec_and_test(local_t *l)
{
unsigned char c;
@@ -12370,7 +12409,7 @@ index 47b9b6f..815aaa1 100644
: "+m" (l->a.counter), "=qm" (c)
: : "memory");
return c != 0;
-@@ -91,7 +141,16 @@ static inline int local_inc_and_test(local_t *l)
+@@ -91,7 +173,16 @@ static inline int local_inc_and_test(local_t *l)
{
unsigned char c;
@@ -12388,7 +12427,7 @@ index 47b9b6f..815aaa1 100644
: "+m" (l->a.counter), "=qm" (c)
: : "memory");
return c != 0;
-@@ -110,7 +169,16 @@ static inline int local_add_negative(long i, local_t *l)
+@@ -110,7 +201,16 @@ static inline int local_add_negative(long i, local_t *l)
{
unsigned char c;
@@ -12406,7 +12445,7 @@ index 47b9b6f..815aaa1 100644
: "+m" (l->a.counter), "=qm" (c)
: "ir" (i) : "memory");
return c;
-@@ -133,7 +201,15 @@ static inline long local_add_return(long i, local_t *l)
+@@ -133,7 +233,15 @@ static inline long local_add_return(long i, local_t *l)
#endif
/* Modern 486+ processor */
__i = i;
@@ -12423,6 +12462,54 @@ index 47b9b6f..815aaa1 100644
: "+r" (i), "+m" (l->a.counter)
: : "memory");
return i + __i;
+@@ -148,6 +256,38 @@ no_xadd: /* Legacy 386 processor */
+ #endif
+ }
+
++/**
++ * local_add_return_unchecked - add and return
++ * @i: integer value to add
++ * @l: pointer to type local_unchecked_t
++ *
++ * Atomically adds @i to @l and returns @i + @l
++ */
++static inline long local_add_return_unchecked(long i, local_unchecked_t *l)
++{
++ long __i;
++#ifdef CONFIG_M386
++ unsigned long flags;
++ if (unlikely(boot_cpu_data.x86 <= 3))
++ goto no_xadd;
++#endif
++ /* Modern 486+ processor */
++ __i = i;
++ asm volatile(_ASM_XADD "%0, %1\n"
++ : "+r" (i), "+m" (l->a.counter)
++ : : "memory");
++ return i + __i;
++
++#ifdef CONFIG_M386
++no_xadd: /* Legacy 386 processor */
++ local_irq_save(flags);
++ __i = local_read_unchecked(l);
++ local_set_unchecked(l, i + __i);
++ local_irq_restore(flags);
++ return i + __i;
++#endif
++}
++
+ static inline long local_sub_return(long i, local_t *l)
+ {
+ return local_add_return(-i, l);
+@@ -158,6 +298,8 @@ static inline long local_sub_return(long i, local_t *l)
+
+ #define local_cmpxchg(l, o, n) \
+ (cmpxchg_local(&((l)->a.counter), (o), (n)))
++#define local_cmpxchg_unchecked(l, o, n) \
++ (cmpxchg_local(&((l)->a.counter), (o), (n)))
+ /* Always has a lock prefix */
+ #define local_xchg(l, n) (xchg(&((l)->a.counter), (n)))
+
diff --git a/arch/x86/include/asm/microcode.h b/arch/x86/include/asm/microcode.h
index ef51b50..514ba37 100644
--- a/arch/x86/include/asm/microcode.h
@@ -18797,7 +18884,7 @@ index 34a56a9..7da97ae 100644
/*
* End of kprobes section
diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c
-index 9dbb527..7b3615a 100644
+index 9dbb527..9fe4f21 100644
--- a/arch/x86/kernel/ftrace.c
+++ b/arch/x86/kernel/ftrace.c
@@ -103,7 +103,7 @@ static void *mod_code_ip; /* holds the IP to write to */
@@ -18853,7 +18940,7 @@ index 9dbb527..7b3615a 100644
int ret;
- memcpy(old, &ftrace_call, MCOUNT_INSN_SIZE);
-+ memcpy(old, (void *)ktla_ktva((unsigned long)ftrace_call), MCOUNT_INSN_SIZE);
++ memcpy(old, ktla_ktva((void *)ftrace_call), MCOUNT_INSN_SIZE);
new = ftrace_call_replace(ip, (unsigned long)func);
ret = ftrace_modify_code(ip, old, new);
@@ -20030,10 +20117,33 @@ index e444357..e21e51e 100644
{
struct setup_data_node *node = file->private_data;
diff --git a/arch/x86/kernel/kgdb.c b/arch/x86/kernel/kgdb.c
-index 8d82a77..0baf312 100644
+index 8d82a77..47a7f0b 100644
--- a/arch/x86/kernel/kgdb.c
+++ b/arch/x86/kernel/kgdb.c
-@@ -390,13 +390,13 @@ int kgdb_arch_handle_exception(int e_vector, int signo, int err_code,
+@@ -42,6 +42,7 @@
+ #include <linux/init.h>
+ #include <linux/smp.h>
+ #include <linux/nmi.h>
++#include <linux/uaccess.h>
+
+ #include <asm/apicdef.h>
+ #include <asm/system.h>
+@@ -220,8 +221,12 @@ static void kgdb_correct_hw_break(void)
+ dr7 |= ((breakinfo[breakno].len << 2) |
+ breakinfo[breakno].type) <<
+ ((breakno << 2) + 16);
+- if (breakno >= 0 && breakno <= 3)
+- set_debugreg(breakinfo[breakno].addr, breakno);
++ if (breakno >= 0 && breakno <= 3) {
++ if (breakinfo[breakno].type == 0)
++ set_debugreg(ktla_ktva(breakinfo[breakno].addr), breakno);
++ else
++ set_debugreg(breakinfo[breakno].addr, breakno);
++ }
+
+ } else {
+ if ((dr7 & breakbit) && !breakinfo[breakno].enabled) {
+@@ -390,13 +395,13 @@ int kgdb_arch_handle_exception(int e_vector, int signo, int err_code,
/* clear the trace bit */
linux_regs->flags &= ~X86_EFLAGS_TF;
@@ -20049,7 +20159,7 @@ index 8d82a77..0baf312 100644
raw_smp_processor_id());
}
-@@ -476,7 +476,7 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd)
+@@ -476,7 +481,7 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd)
break;
case DIE_DEBUG:
@@ -20058,17 +20168,37 @@ index 8d82a77..0baf312 100644
raw_smp_processor_id()) {
if (user_mode(regs))
return single_step_cont(regs, args);
-@@ -573,7 +573,7 @@ unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs)
+@@ -573,7 +578,27 @@ unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs)
return instruction_pointer(regs);
}
-struct kgdb_arch arch_kgdb_ops = {
++int kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr)
++{
++ int err;
++
++ addr = ktla_ktva(addr);
++ err = probe_kernel_read(saved_instr, (char *)addr, BREAK_INSTR_SIZE);
++ if (err)
++ return err;
++
++ return probe_kernel_write((char *)addr, arch_kgdb_ops.gdb_bpt_instr,
++ BREAK_INSTR_SIZE);
++}
++
++int kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle)
++{
++ addr = ktla_ktva(addr);
++ return probe_kernel_write((char *)addr,
++ (char *)bundle, BREAK_INSTR_SIZE);
++}
++
+const struct kgdb_arch arch_kgdb_ops = {
/* Breakpoint instruction: */
.gdb_bpt_instr = { 0xcc },
.flags = KGDB_HW_BREAKPOINT,
diff --git a/arch/x86/kernel/kprobes.c b/arch/x86/kernel/kprobes.c
-index 7a67820..70ea187 100644
+index 7a67820..17c9752 100644
--- a/arch/x86/kernel/kprobes.c
+++ b/arch/x86/kernel/kprobes.c
@@ -168,9 +168,13 @@ static void __kprobes set_jmp_op(void *from, void *to)
@@ -20127,9 +20257,12 @@ index 7a67820..70ea187 100644
}
int __kprobes arch_prepare_kprobe(struct kprobe *p)
-@@ -434,7 +442,7 @@ static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
+@@ -432,9 +440,9 @@ static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
+ regs->flags &= ~X86_EFLAGS_IF;
+ /* single step inline if the instruction is an int3 */
if (p->opcode == BREAKPOINT_INSTRUCTION)
- regs->ip = (unsigned long)p->addr;
+- regs->ip = (unsigned long)p->addr;
++ regs->ip = ktla_ktva((unsigned long)p->addr);
else
- regs->ip = (unsigned long)p->ainsn.insn;
+ regs->ip = ktva_ktla((unsigned long)p->ainsn.insn);
@@ -27948,7 +28081,7 @@ index e1d1069..2251ff3 100644
struct split_state {
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
-index 6d44087..cf48aa6 100644
+index 6d44087..6609b55 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -259,16 +259,17 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
@@ -27979,7 +28112,7 @@ index 6d44087..cf48aa6 100644
+#endif
+
+#ifdef CONFIG_PAX_KERNEXEC
-+ if (within(pfn, __pa((unsigned long)&_text), __pa((unsigned long)&_sdata))) {
++ if (within(pfn, __pa(ktla_ktva((unsigned long)&_text)), __pa((unsigned long)&_sdata))) {
+ pgprot_val(forbidden) |= _PAGE_RW;
+ pgprot_val(forbidden) |= _PAGE_NX & __supported_pte_mask;
+ }
@@ -48269,7 +48402,7 @@ index 8d8c932..8104515 100644
return -EINVAL;
diff --git a/drivers/misc/kgdbts.c b/drivers/misc/kgdbts.c
-index e4ff50b..4cc3f04 100644
+index e4ff50b..80b88b4 100644
--- a/drivers/misc/kgdbts.c
+++ b/drivers/misc/kgdbts.c
@@ -118,7 +118,7 @@
@@ -48281,6 +48414,24 @@ index e4ff50b..4cc3f04 100644
static char get_buf[BUFMAX];
static int get_buf_cnt;
static char put_buf[BUFMAX];
+@@ -740,7 +740,7 @@ static void run_plant_and_detach_test(int is_early)
+ char before[BREAK_INSTR_SIZE];
+ char after[BREAK_INSTR_SIZE];
+
+- probe_kernel_read(before, (char *)kgdbts_break_test,
++ probe_kernel_read(before, ktla_ktva((char *)kgdbts_break_test),
+ BREAK_INSTR_SIZE);
+ init_simple_test();
+ ts.tst = plant_and_detach_test;
+@@ -748,7 +748,7 @@ static void run_plant_and_detach_test(int is_early)
+ /* Activate test with initial breakpoint */
+ if (!is_early)
+ kgdb_breakpoint();
+- probe_kernel_read(after, (char *)kgdbts_break_test,
++ probe_kernel_read(after, ktla_ktva((char *)kgdbts_break_test),
+ BREAK_INSTR_SIZE);
+ if (memcmp(before, after, BREAK_INSTR_SIZE)) {
+ printk(KERN_CRIT "kgdbts: ERROR kgdb corrupted memory\n");
@@ -1102,7 +1102,7 @@ static void kgdbts_post_exp_handler(void)
module_put(THIS_MODULE);
}
@@ -93957,7 +94108,7 @@ index 77ff547..181834f 100644
#define pud_none(pud) 0
#define pud_bad(pud) 0
diff --git a/include/asm-generic/atomic-long.h b/include/asm-generic/atomic-long.h
-index b7babf0..1df7140 100644
+index b7babf0..755fb22 100644
--- a/include/asm-generic/atomic-long.h
+++ b/include/asm-generic/atomic-long.h
@@ -22,6 +22,12 @@
@@ -94053,7 +94204,23 @@ index b7babf0..1df7140 100644
static inline void atomic_long_sub(long i, atomic_long_t *l)
{
atomic64_t *v = (atomic64_t *)l;
-@@ -115,6 +166,15 @@ static inline long atomic_long_inc_return(atomic_long_t *l)
+@@ -101,6 +152,15 @@ static inline long atomic_long_add_return(long i, atomic_long_t *l)
+ return (long)atomic64_add_return(i, v);
+ }
+
++#ifdef CONFIG_PAX_REFCOUNT
++static inline long atomic_long_add_return_unchecked(long i, atomic_long_unchecked_t *l)
++{
++ atomic64_unchecked_t *v = (atomic64_unchecked_t *)l;
++
++ return (long)atomic64_add_return_unchecked(i, v);
++}
++#endif
++
+ static inline long atomic_long_sub_return(long i, atomic_long_t *l)
+ {
+ atomic64_t *v = (atomic64_t *)l;
+@@ -115,6 +175,15 @@ static inline long atomic_long_inc_return(atomic_long_t *l)
return (long)atomic64_inc_return(v);
}
@@ -94069,7 +94236,7 @@ index b7babf0..1df7140 100644
static inline long atomic_long_dec_return(atomic_long_t *l)
{
atomic64_t *v = (atomic64_t *)l;
-@@ -140,6 +200,12 @@ static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u)
+@@ -140,6 +209,12 @@ static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u)
typedef atomic_t atomic_long_t;
@@ -94082,7 +94249,7 @@ index b7babf0..1df7140 100644
#define ATOMIC_LONG_INIT(i) ATOMIC_INIT(i)
static inline long atomic_long_read(atomic_long_t *l)
{
-@@ -148,6 +214,15 @@ static inline long atomic_long_read(atomic_long_t *l)
+@@ -148,6 +223,15 @@ static inline long atomic_long_read(atomic_long_t *l)
return (long)atomic_read(v);
}
@@ -94098,7 +94265,7 @@ index b7babf0..1df7140 100644
static inline void atomic_long_set(atomic_long_t *l, long i)
{
atomic_t *v = (atomic_t *)l;
-@@ -155,6 +230,15 @@ static inline void atomic_long_set(atomic_long_t *l, long i)
+@@ -155,6 +239,15 @@ static inline void atomic_long_set(atomic_long_t *l, long i)
atomic_set(v, i);
}
@@ -94114,7 +94281,7 @@ index b7babf0..1df7140 100644
static inline void atomic_long_inc(atomic_long_t *l)
{
atomic_t *v = (atomic_t *)l;
-@@ -162,6 +246,15 @@ static inline void atomic_long_inc(atomic_long_t *l)
+@@ -162,6 +255,15 @@ static inline void atomic_long_inc(atomic_long_t *l)
atomic_inc(v);
}
@@ -94130,7 +94297,7 @@ index b7babf0..1df7140 100644
static inline void atomic_long_dec(atomic_long_t *l)
{
atomic_t *v = (atomic_t *)l;
-@@ -169,6 +262,15 @@ static inline void atomic_long_dec(atomic_long_t *l)
+@@ -169,6 +271,15 @@ static inline void atomic_long_dec(atomic_long_t *l)
atomic_dec(v);
}
@@ -94146,7 +94313,7 @@ index b7babf0..1df7140 100644
static inline void atomic_long_add(long i, atomic_long_t *l)
{
atomic_t *v = (atomic_t *)l;
-@@ -176,6 +278,15 @@ static inline void atomic_long_add(long i, atomic_long_t *l)
+@@ -176,6 +287,15 @@ static inline void atomic_long_add(long i, atomic_long_t *l)
atomic_add(i, v);
}
@@ -94162,7 +94329,24 @@ index b7babf0..1df7140 100644
static inline void atomic_long_sub(long i, atomic_long_t *l)
{
atomic_t *v = (atomic_t *)l;
-@@ -232,6 +343,15 @@ static inline long atomic_long_inc_return(atomic_long_t *l)
+@@ -218,6 +338,16 @@ static inline long atomic_long_add_return(long i, atomic_long_t *l)
+ return (long)atomic_add_return(i, v);
+ }
+
++#ifdef CONFIG_PAX_REFCOUNT
++static inline long atomic_long_add_return_unchecked(long i, atomic_long_unchecked_t *l)
++{
++ atomic_unchecked_t *v = (atomic_unchecked_t *)l;
++
++ return (long)atomic_add_return_unchecked(i, v);
++}
++
++#endif
++
+ static inline long atomic_long_sub_return(long i, atomic_long_t *l)
+ {
+ atomic_t *v = (atomic_t *)l;
+@@ -232,6 +362,15 @@ static inline long atomic_long_inc_return(atomic_long_t *l)
return (long)atomic_inc_return(v);
}
@@ -94178,7 +94362,7 @@ index b7babf0..1df7140 100644
static inline long atomic_long_dec_return(atomic_long_t *l)
{
atomic_t *v = (atomic_t *)l;
-@@ -255,4 +375,53 @@ static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u)
+@@ -255,4 +394,55 @@ static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u)
#endif /* BITS_PER_LONG == 64 */
@@ -94205,6 +94389,7 @@ index b7babf0..1df7140 100644
+ atomic_long_set_unchecked((atomic_long_unchecked_t *)NULL, 0);
+ atomic_long_add_unchecked(0, (atomic_long_unchecked_t *)NULL);
+ atomic_long_inc_unchecked((atomic_long_unchecked_t *)NULL);
++ atomic_long_add_return_unchecked(0, (atomic_long_unchecked_t *)NULL);
+ atomic_long_inc_return_unchecked((atomic_long_unchecked_t *)NULL);
+ atomic_long_dec_unchecked((atomic_long_unchecked_t *)NULL);
+}
@@ -94227,6 +94412,7 @@ index b7babf0..1df7140 100644
+#define atomic_long_set_unchecked(v, i) atomic_long_set((v), (i))
+#define atomic_long_add_unchecked(i, v) atomic_long_add((i), (v))
+#define atomic_long_inc_unchecked(v) atomic_long_inc(v)
++#define atomic_long_add_return_unchecked(i, v) atomic_long_add_return((i), (v))
+#define atomic_long_inc_return_unchecked(v) atomic_long_inc_return(v)
+#define atomic_long_dec_unchecked(v) atomic_long_dec(v)
+#endif
@@ -94467,17 +94653,47 @@ index e5f234a..cdb16b3 100644
#undef KMAP_D
diff --git a/include/asm-generic/local.h b/include/asm-generic/local.h
-index fc21844..2ee9629 100644
+index fc21844..c2c4ea2 100644
--- a/include/asm-generic/local.h
+++ b/include/asm-generic/local.h
-@@ -39,6 +39,7 @@ typedef struct
+@@ -23,24 +23,37 @@ typedef struct
+ atomic_long_t a;
+ } local_t;
+
++typedef struct {
++ atomic_long_unchecked_t a;
++} local_unchecked_t;
++
+ #define LOCAL_INIT(i) { ATOMIC_LONG_INIT(i) }
+
+ #define local_read(l) atomic_long_read(&(l)->a)
++#define local_read_unchecked(l) atomic_long_read_unchecked(&(l)->a)
+ #define local_set(l,i) atomic_long_set((&(l)->a),(i))
++#define local_set_unchecked(l,i) atomic_long_set_unchecked((&(l)->a),(i))
+ #define local_inc(l) atomic_long_inc(&(l)->a)
++#define local_inc_unchecked(l) atomic_long_inc_unchecked(&(l)->a)
+ #define local_dec(l) atomic_long_dec(&(l)->a)
++#define local_dec_unchecked(l) atomic_long_dec_unchecked(&(l)->a)
+ #define local_add(i,l) atomic_long_add((i),(&(l)->a))
++#define local_add_unchecked(i,l) atomic_long_add_unchecked((i),(&(l)->a))
+ #define local_sub(i,l) atomic_long_sub((i),(&(l)->a))
++#define local_sub_unchecked(i,l) atomic_long_sub_unchecked((i),(&(l)->a))
+
+ #define local_sub_and_test(i, l) atomic_long_sub_and_test((i), (&(l)->a))
+ #define local_dec_and_test(l) atomic_long_dec_and_test(&(l)->a)
+ #define local_inc_and_test(l) atomic_long_inc_and_test(&(l)->a)
+ #define local_add_negative(i, l) atomic_long_add_negative((i), (&(l)->a))
#define local_add_return(i, l) atomic_long_add_return((i), (&(l)->a))
++#define local_add_return_unchecked(i, l) atomic_long_add_return_unchecked((i), (&(l)->a))
#define local_sub_return(i, l) atomic_long_sub_return((i), (&(l)->a))
#define local_inc_return(l) atomic_long_inc_return(&(l)->a)
+#define local_dec_return(l) atomic_long_dec_return(&(l)->a)
#define local_cmpxchg(l, o, n) atomic_long_cmpxchg((&(l)->a), (o), (n))
++#define local_cmpxchg_unchecked(l, o, n) atomic_long_cmpxchg((&(l)->a), (o), (n))
#define local_xchg(l, n) atomic_long_xchg((&(l)->a), (n))
+ #define local_add_unless(l, _a, u) atomic_long_add_unless((&(l)->a), (_a), (u))
+ #define local_inc_not_zero(l) atomic_long_inc_not_zero(&(l)->a)
diff --git a/include/asm-generic/pgtable-nopmd.h b/include/asm-generic/pgtable-nopmd.h
index 725612b..9cc513a 100644
--- a/include/asm-generic/pgtable-nopmd.h
@@ -106205,9 +106421,32 @@ index 4872937..c794d40 100644
/*
diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c
-index e749a05..19c6e94 100644
+index e749a05..029a15b 100644
--- a/kernel/trace/ring_buffer.c
+++ b/kernel/trace/ring_buffer.c
+@@ -325,9 +325,9 @@ struct buffer_data_page {
+ */
+ struct buffer_page {
+ struct list_head list; /* list of buffer pages */
+- local_t write; /* index for next write */
++ local_unchecked_t write; /* index for next write */
+ unsigned read; /* index for next read */
+- local_t entries; /* entries on this page */
++ local_unchecked_t entries; /* entries on this page */
+ struct buffer_data_page *page; /* Actual data page */
+ };
+
+@@ -427,8 +427,8 @@ struct ring_buffer_per_cpu {
+ struct buffer_page *tail_page; /* write to tail */
+ struct buffer_page *commit_page; /* committed pages */
+ struct buffer_page *reader_page;
+- local_t commit_overrun;
+- local_t overrun;
++ local_unchecked_t commit_overrun;
++ local_unchecked_t overrun;
+ local_t entries;
+ local_t committing;
+ local_t commits;
@@ -606,7 +606,7 @@ static struct list_head *rb_list_head(struct list_head *list)
* the reader page). But if the next page is a header page,
* its flags will be non zero.
@@ -106217,6 +106456,250 @@ index e749a05..19c6e94 100644
rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
struct buffer_page *page, struct list_head *list)
{
+@@ -820,8 +820,8 @@ static int rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
+ *
+ * We add a counter to the write field to denote this.
+ */
+- old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
+- old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
++ old_write = local_add_return_unchecked(RB_WRITE_INTCNT, &next_page->write);
++ old_entries = local_add_return_unchecked(RB_WRITE_INTCNT, &next_page->entries);
+
+ /*
+ * Just make sure we have seen our old_write and synchronize
+@@ -849,8 +849,8 @@ static int rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
+ * cmpxchg to only update if an interrupt did not already
+ * do it for us. If the cmpxchg fails, we don't care.
+ */
+- (void)local_cmpxchg(&next_page->write, old_write, val);
+- (void)local_cmpxchg(&next_page->entries, old_entries, eval);
++ (void)local_cmpxchg_unchecked(&next_page->write, old_write, val);
++ (void)local_cmpxchg_unchecked(&next_page->entries, old_entries, eval);
+
+ /*
+ * No need to worry about races with clearing out the commit.
+@@ -1397,7 +1397,7 @@ rb_iter_head_event(struct ring_buffer_iter *iter)
+
+ static inline unsigned long rb_page_write(struct buffer_page *bpage)
+ {
+- return local_read(&bpage->write) & RB_WRITE_MASK;
++ return local_read_unchecked(&bpage->write) & RB_WRITE_MASK;
+ }
+
+ static inline unsigned rb_page_commit(struct buffer_page *bpage)
+@@ -1407,7 +1407,7 @@ static inline unsigned rb_page_commit(struct buffer_page *bpage)
+
+ static inline unsigned long rb_page_entries(struct buffer_page *bpage)
+ {
+- return local_read(&bpage->entries) & RB_WRITE_MASK;
++ return local_read_unchecked(&bpage->entries) & RB_WRITE_MASK;
+ }
+
+ /* Size is determined by what has been commited */
+@@ -1603,7 +1603,7 @@ rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
+ * it is our responsibility to update
+ * the counters.
+ */
+- local_add(entries, &cpu_buffer->overrun);
++ local_add_unchecked(entries, &cpu_buffer->overrun);
+
+ /*
+ * The entries will be zeroed out when we move the
+@@ -1744,7 +1744,7 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
+ * must fill the old tail_page with padding.
+ */
+ if (tail >= BUF_PAGE_SIZE) {
+- local_sub(length, &tail_page->write);
++ local_sub_unchecked(length, &tail_page->write);
+ return;
+ }
+
+@@ -1769,7 +1769,7 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
+ rb_event_set_padding(event);
+
+ /* Set the write back to the previous setting */
+- local_sub(length, &tail_page->write);
++ local_sub_unchecked(length, &tail_page->write);
+ return;
+ }
+
+@@ -1781,7 +1781,7 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
+
+ /* Set write to end of buffer */
+ length = (tail + length) - BUF_PAGE_SIZE;
+- local_sub(length, &tail_page->write);
++ local_sub_unchecked(length, &tail_page->write);
+ }
+
+ static struct ring_buffer_event *
+@@ -1804,7 +1804,7 @@ rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
+ * about it.
+ */
+ if (unlikely(next_page == commit_page)) {
+- local_inc(&cpu_buffer->commit_overrun);
++ local_inc_unchecked(&cpu_buffer->commit_overrun);
+ goto out_reset;
+ }
+
+@@ -1858,7 +1858,7 @@ rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
+ cpu_buffer->tail_page) &&
+ (cpu_buffer->commit_page ==
+ cpu_buffer->reader_page))) {
+- local_inc(&cpu_buffer->commit_overrun);
++ local_inc_unchecked(&cpu_buffer->commit_overrun);
+ goto out_reset;
+ }
+ }
+@@ -1900,7 +1900,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
+ /* we just need to protect against interrupts */
+ barrier();
+ tail_page = cpu_buffer->tail_page;
+- write = local_add_return(length, &tail_page->write);
++ write = local_add_return_unchecked(length, &tail_page->write);
+
+ /* set write to only the index of the write */
+ write &= RB_WRITE_MASK;
+@@ -1919,7 +1919,7 @@ __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
+
+ /* The passed in type is zero for DATA */
+ if (likely(!type))
+- local_inc(&tail_page->entries);
++ local_inc_unchecked(&tail_page->entries);
+
+ /*
+ * If this is the first commit on the page, then update
+@@ -1949,7 +1949,7 @@ rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
+
+ if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
+ unsigned long write_mask =
+- local_read(&bpage->write) & ~RB_WRITE_MASK;
++ local_read_unchecked(&bpage->write) & ~RB_WRITE_MASK;
+ /*
+ * This is on the tail page. It is possible that
+ * a write could come in and move the tail page
+@@ -1958,7 +1958,7 @@ rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
+ */
+ old_index += write_mask;
+ new_index += write_mask;
+- index = local_cmpxchg(&bpage->write, old_index, new_index);
++ index = local_cmpxchg_unchecked(&bpage->write, old_index, new_index);
+ if (index == old_index)
+ return 1;
+ }
+@@ -2363,7 +2363,7 @@ rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
+
+ /* Do the likely case first */
+ if (likely(bpage->page == (void *)addr)) {
+- local_dec(&bpage->entries);
++ local_dec_unchecked(&bpage->entries);
+ return;
+ }
+
+@@ -2375,7 +2375,7 @@ rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
+ start = bpage;
+ do {
+ if (bpage->page == (void *)addr) {
+- local_dec(&bpage->entries);
++ local_dec_unchecked(&bpage->entries);
+ return;
+ }
+ rb_inc_page(cpu_buffer, &bpage);
+@@ -2610,7 +2610,7 @@ unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
+ return 0;
+
+ cpu_buffer = buffer->buffers[cpu];
+- ret = (local_read(&cpu_buffer->entries) - local_read(&cpu_buffer->overrun))
++ ret = (local_read(&cpu_buffer->entries) - local_read_unchecked(&cpu_buffer->overrun))
+ - cpu_buffer->read;
+
+ return ret;
+@@ -2631,7 +2631,7 @@ unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
+ return 0;
+
+ cpu_buffer = buffer->buffers[cpu];
+- ret = local_read(&cpu_buffer->overrun);
++ ret = local_read_unchecked(&cpu_buffer->overrun);
+
+ return ret;
+ }
+@@ -2652,7 +2652,7 @@ ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
+ return 0;
+
+ cpu_buffer = buffer->buffers[cpu];
+- ret = local_read(&cpu_buffer->commit_overrun);
++ ret = local_read_unchecked(&cpu_buffer->commit_overrun);
+
+ return ret;
+ }
+@@ -2675,7 +2675,7 @@ unsigned long ring_buffer_entries(struct ring_buffer *buffer)
+ for_each_buffer_cpu(buffer, cpu) {
+ cpu_buffer = buffer->buffers[cpu];
+ entries += (local_read(&cpu_buffer->entries) -
+- local_read(&cpu_buffer->overrun)) - cpu_buffer->read;
++ local_read_unchecked(&cpu_buffer->overrun)) - cpu_buffer->read;
+ }
+
+ return entries;
+@@ -2698,7 +2698,7 @@ unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
+ /* if you care about this being correct, lock the buffer */
+ for_each_buffer_cpu(buffer, cpu) {
+ cpu_buffer = buffer->buffers[cpu];
+- overruns += local_read(&cpu_buffer->overrun);
++ overruns += local_read_unchecked(&cpu_buffer->overrun);
+ }
+
+ return overruns;
+@@ -2867,8 +2867,8 @@ rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
+ /*
+ * Reset the reader page to size zero.
+ */
+- local_set(&cpu_buffer->reader_page->write, 0);
+- local_set(&cpu_buffer->reader_page->entries, 0);
++ local_set_unchecked(&cpu_buffer->reader_page->write, 0);
++ local_set_unchecked(&cpu_buffer->reader_page->entries, 0);
+ local_set(&cpu_buffer->reader_page->page->commit, 0);
+
+ spin:
+@@ -3360,8 +3360,8 @@ rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
+
+ cpu_buffer->head_page
+ = list_entry(cpu_buffer->pages, struct buffer_page, list);
+- local_set(&cpu_buffer->head_page->write, 0);
+- local_set(&cpu_buffer->head_page->entries, 0);
++ local_set_unchecked(&cpu_buffer->head_page->write, 0);
++ local_set_unchecked(&cpu_buffer->head_page->entries, 0);
+ local_set(&cpu_buffer->head_page->page->commit, 0);
+
+ cpu_buffer->head_page->read = 0;
+@@ -3370,13 +3370,13 @@ rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
+ cpu_buffer->commit_page = cpu_buffer->head_page;
+
+ INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
+- local_set(&cpu_buffer->reader_page->write, 0);
+- local_set(&cpu_buffer->reader_page->entries, 0);
++ local_set_unchecked(&cpu_buffer->reader_page->write, 0);
++ local_set_unchecked(&cpu_buffer->reader_page->entries, 0);
+ local_set(&cpu_buffer->reader_page->page->commit, 0);
+ cpu_buffer->reader_page->read = 0;
+
+- local_set(&cpu_buffer->commit_overrun, 0);
+- local_set(&cpu_buffer->overrun, 0);
++ local_set_unchecked(&cpu_buffer->commit_overrun, 0);
++ local_set_unchecked(&cpu_buffer->overrun, 0);
+ local_set(&cpu_buffer->entries, 0);
+ local_set(&cpu_buffer->committing, 0);
+ local_set(&cpu_buffer->commits, 0);
+@@ -3752,8 +3752,8 @@ int ring_buffer_read_page(struct ring_buffer *buffer,
+ rb_init_page(bpage);
+ bpage = reader->page;
+ reader->page = *data_page;
+- local_set(&reader->write, 0);
+- local_set(&reader->entries, 0);
++ local_set_unchecked(&reader->write, 0);
++ local_set_unchecked(&reader->entries, 0);
+ reader->read = 0;
+ *data_page = bpage;
+ }
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index a2a2d1f..7f32b09 100644
--- a/kernel/trace/trace.c
@@ -116118,7 +116601,7 @@ index d52f7a0..b66cdd9 100755
rm -f tags
xtags ctags
diff --git a/security/Kconfig b/security/Kconfig
-index fb363cd..0e9112e 100644
+index fb363cd..cce5e7f 100644
--- a/security/Kconfig
+++ b/security/Kconfig
@@ -4,6 +4,890 @@
@@ -116697,7 +117180,7 @@ index fb363cd..0e9112e 100644
+config PAX_KERNEXEC
+ bool "Enforce non-executable kernel pages"
+ default y if GRKERNSEC_CONFIG_AUTO && (GRKERNSEC_CONFIG_VIRT_NONE || (GRKERNSEC_CONFIG_VIRT_EPT && GRKERNSEC_CONFIG_VIRT_GUEST) || (GRKERNSEC_CONFIG_VIRT_EPT && GRKERNSEC_CONFIG_VIRT_KVM))
-+ depends on (PPC || X86) && (!X86_32 || X86_WP_WORKS_OK) && !XEN
++ depends on X86 && (!X86_32 || X86_WP_WORKS_OK) && !XEN
+ select PAX_PER_CPU_PGD if X86_64 || (X86_32 && X86_PAE)
+ select PAX_KERNEXEC_PLUGIN if X86_64
+ help
@@ -119064,7 +119547,7 @@ index 0000000..92ed719
+}
diff --git a/tools/gcc/generate_size_overflow_hash.sh b/tools/gcc/generate_size_overflow_hash.sh
new file mode 100644
-index 0000000..02c6bec
+index 0000000..e518932
--- /dev/null
+++ b/tools/gcc/generate_size_overflow_hash.sh
@@ -0,0 +1,94 @@
@@ -119101,14 +119584,14 @@ index 0000000..02c6bec
+done
+
+create_defines() {
-+ for i in `seq 1 32`
++ for i in `seq 0 31`
+ do
+ echo -e "#define PARAM"$i" (1U << "$i")" >> "$header1"
+ done
+ echo >> "$header1"
+}
+
-+create_structs () {
++create_structs() {
+ rm -f "$header1"
+
+ create_defines
@@ -119119,7 +119602,7 @@ index 0000000..02c6bec
+ struct_hash_name="${data_array[0]}"
+ funcn="${data_array[1]}"
+ params="${data_array[2]}"
-+ next="${data_array[5]}"
++ next="${data_array[4]}"
+
+ echo "const struct size_overflow_hash $struct_hash_name = {" >> "$header1"
+
@@ -119135,17 +119618,17 @@ index 0000000..02c6bec
+ done
+}
+
-+create_headers () {
++create_headers() {
+ echo "const struct size_overflow_hash * const size_overflow_hash[$n] = {" >> "$header1"
+}
+
-+create_array_elements () {
++create_array_elements() {
+ index=0
+ grep -v "nohasharray" $database | sort -n -k 4 | while read data
+ do
+ data_array=($data)
+ i="${data_array[3]}"
-+ hash="${data_array[4]}"
++ hash="${data_array[0]}"
+ while [[ $index -lt $i ]]
+ do
+ echo -e "\t["$index"]\t= NULL," >> "$header1"
@@ -120076,2577 +120559,2581 @@ index 0000000..b8008f7
+}
diff --git a/tools/gcc/size_overflow_hash.data b/tools/gcc/size_overflow_hash.data
new file mode 100644
-index 0000000..ab28d46
+index 0000000..7cfdcc5
--- /dev/null
+++ b/tools/gcc/size_overflow_hash.data
-@@ -0,0 +1,2561 @@
-+_000001_hash alloc_dr 2 65495 _000001_hash NULL
-+_000002_hash __copy_from_user 3 10918 _000002_hash NULL
-+_000003_hash __copy_from_user_inatomic 3 4365 _000003_hash NULL
-+_000004_hash __copy_from_user_inatomic_nocache 3 49921 _000004_hash NULL
-+_000005_hash __copy_from_user_nocache 3 39351 _000005_hash NULL
-+_000006_hash __copy_to_user_inatomic 3 19214 _000006_hash NULL
-+_000007_hash do_xip_mapping_read 5 60297 _000007_hash NULL
-+_000008_hash hugetlbfs_read 3 11268 _000008_hash NULL
-+_000009_hash __kmalloc 1 23231 _000009_hash NULL
-+_000010_hash kmalloc 1 60432 _002402_hash NULL nohasharray
-+_000011_hash kmalloc_slab 1 11917 _000011_hash NULL
-+_000012_hash kmemdup 2 64015 _000012_hash NULL
-+_000013_hash __krealloc 2 14857 _000657_hash NULL nohasharray
-+_000014_hash memdup_user 2 59590 _000014_hash NULL
-+_000015_hash read_default_ldt 2 14302 _000015_hash NULL
-+_000016_hash read_kcore 3 63488 _000016_hash NULL
-+_000017_hash read_ldt 2 47570 _000017_hash NULL
-+_000018_hash read_zero 3 19366 _000018_hash NULL
-+_000019_hash vmalloc 1 15464 _000019_hash NULL
-+_000020_hash __vmalloc 1 61168 _000020_hash NULL
-+_000021_hash vmalloc_32 1 1135 _000021_hash NULL
-+_000022_hash vmalloc_32_user 1 37519 _000022_hash NULL
-+_000023_hash vmalloc_exec 1 36132 _000023_hash NULL
-+_000024_hash vmalloc_node 1 58700 _000024_hash NULL
-+_000025_hash vmalloc_user 1 32308 _000025_hash NULL
-+_000026_hash vm_map_ram 2 23078 _001144_hash NULL nohasharray
-+_000027_hash acpi_os_allocate 1 14892 _000027_hash NULL
-+_000028_hash afs_alloc_flat_call 2-3 36399 _000028_hash NULL
-+_000030_hash afs_proc_cells_write 3 61139 _000030_hash NULL
-+_000031_hash afs_proc_rootcell_write 3 15822 _000031_hash NULL
-+_000032_hash agp_3_5_isochronous_node_enable 3 49465 _000032_hash NULL
-+_000033_hash agp_alloc_page_array 1 22554 _000033_hash NULL
-+_000034_hash ahash_setkey_unaligned 3 33521 _000034_hash NULL
-+_000035_hash aligned_kmalloc 1 3628 _000035_hash NULL
-+_000036_hash allocate_cnodes 1 5329 _000036_hash NULL
-+_000037_hash alloc_context 1 3194 _000037_hash NULL
-+_000038_hash alloc_ep_req 2 54860 _000038_hash NULL
-+_000039_hash alloc_fdmem 1 27083 _000039_hash NULL
-+_000040_hash alloc_large_system_hash 2 64490 _000040_hash NULL
-+_000041_hash alloc_ringbuf 1 31251 _000041_hash NULL
-+_000042_hash alloc_sglist 1-3-2 22960 _000042_hash NULL
-+_000043_hash alloc_upcall 2 62186 _000043_hash NULL
-+_000044_hash arm_read 5 46556 _000044_hash NULL
-+_000045_hash arm_write 6 29476 _000045_hash NULL
-+_000046_hash asix_read_cmd 5 13245 _000046_hash NULL
-+_000047_hash asix_write_cmd 5 58192 _000047_hash NULL
-+_000048_hash asn1_octets_decode 2 9991 _000048_hash NULL
-+_000049_hash asn1_oid_decode 2 4999 _000049_hash NULL
-+_000050_hash at76_set_card_command 4 4471 _000050_hash NULL
-+_000051_hash attach_hdlc_protocol 3 19986 _000051_hash NULL
-+_000052_hash audit_unpack_string 3 13748 _000052_hash NULL
-+_000053_hash av7110_ipack_init 2 46655 _000053_hash NULL
-+_000054_hash bdx_rxdb_create 1 46525 _000054_hash NULL
-+_000055_hash bdx_tx_db_init 2 41719 _000055_hash NULL
-+_000056_hash befs_nls2utf 3 17163 _000056_hash NULL
-+_000057_hash befs_utf2nls 3 25628 _000057_hash NULL
-+_000058_hash bio_alloc_map_data 1-2 50782 _000058_hash NULL
-+_000060_hash bio_kmalloc 2 54672 _000060_hash NULL
-+_000061_hash blkcipher_copy_iv 3 24075 _000061_hash NULL
-+_000062_hash blkcipher_next_slow 4-3 52733 _000062_hash NULL
-+_000063_hash bnx2_nvram_write 4-2 7790 _000063_hash NULL
-+_000064_hash btrfs_copy_from_user 3-1 9568 _000064_hash NULL
-+_000065_hash cachefiles_cook_key 2 33274 _000065_hash NULL
-+_000066_hash cachefiles_daemon_write 3 43535 _000066_hash NULL
-+_000067_hash cdrom_read_cdda_old 4 27664 _000067_hash NULL
-+_000068_hash cfi_read_pri 3 24366 _000068_hash NULL
-+_000069_hash cgroup_write_string 5 10900 _000069_hash NULL
-+_000070_hash change_xattr 5 61390 _000070_hash NULL
-+_000071_hash cifs_spnego_key_instantiate 3 23588 _000071_hash NULL
-+_000072_hash ci_ll_init 3 12930 _000072_hash NULL
-+_000073_hash cm_copy_private_data 2 3649 _000073_hash NULL
-+_000074_hash coda_psdev_write 3 1711 _000074_hash NULL
-+_000075_hash concat_writev 3 21451 _000075_hash NULL
-+_000076_hash copy_from_user 3 17559 _000076_hash NULL
-+_000077_hash copy_items 6 50140 _000077_hash NULL
-+_000078_hash copy_macs 4 45534 _000078_hash NULL
-+_000079_hash __copy_to_user 3 17551 _000079_hash NULL
-+_000080_hash cosa_write 3 1774 _000080_hash NULL
-+_000081_hash create_entry 2 33479 _000081_hash NULL
-+_000082_hash create_queues 2-3 9088 _000082_hash NULL
-+_000084_hash create_snapshot 4 51195 _000084_hash NULL
-+_000085_hash create_xattr 5 54106 _000085_hash NULL
-+_000086_hash create_xattr_datum 5 33356 _000086_hash NULL
-+_000087_hash csr1212_new_leaf 3 50112 _000087_hash NULL
-+_000088_hash csr1212_rom_cache_malloc 2 46339 _000088_hash NULL
-+_000089_hash ctrl_out 3 55321 _000089_hash NULL
-+_000090_hash cx24116_writeregN 4 41975 _000090_hash NULL
-+_000091_hash cxacru_cm_get_array 4 4412 _000091_hash NULL
-+_000092_hash cxgb3i_alloc_big_mem 1 18283 _000092_hash NULL
-+_000093_hash cxgb_alloc_mem 1 24007 _000093_hash NULL
-+_000094_hash cypress_buf_alloc 1 32417 _000094_hash NULL
-+_000095_hash dabusb_writemem 4 39764 _000095_hash NULL
-+_000096_hash dccp_feat_clone_sp_val 3 11942 _000096_hash NULL
-+_000097_hash dccp_setsockopt_ccid 4 30701 _000097_hash NULL
-+_000098_hash dccp_setsockopt_cscov 2 37766 _000098_hash NULL
-+_000099_hash dccp_setsockopt_service 4 65336 _000099_hash NULL
-+_000100_hash dev_config 3 8506 _000100_hash NULL
-+_000101_hash devm_kzalloc 2 4966 _000101_hash NULL
-+_000102_hash devres_alloc 2 551 _000102_hash NULL
-+_000103_hash dispatch_proc_write 3 44320 _000103_hash NULL
-+_000104_hash dispatch_write 3 17361 _000104_hash NULL
-+_000105_hash dlm_alloc_pagevec 1 54296 _000105_hash NULL
-+_000106_hash dlmfs_file_read 3 28385 _000106_hash NULL
-+_000107_hash dlmfs_file_write 3 6892 _000107_hash NULL
-+_000108_hash dm_read 3 15674 _000108_hash NULL
-+_000109_hash dm_vcalloc 1-2 16814 _000109_hash NULL
-+_000111_hash dm_write 3 2513 _000111_hash NULL
-+_000112_hash dns_resolver_instantiate 3 63314 _000112_hash NULL
-+_000113_hash dns_resolve_server_name_to_ip 1 51632 _000113_hash NULL
-+_000114_hash do_add_counters 3 3992 _000114_hash NULL
-+_000115_hash do_ip_setsockopt 5 41852 _000115_hash NULL
-+_000116_hash do_ipv6_setsockopt 5 18215 _000116_hash NULL
-+_000117_hash __do_replace 5 37227 _000117_hash NULL
-+_000118_hash do_tty_write 5 44896 _000118_hash NULL
-+_000119_hash drm_calloc_large 1-2 65421 _000119_hash NULL
-+_000121_hash drm_vblank_init 2 11362 _000121_hash NULL
-+_000122_hash drm_vmalloc_dma 1 14550 _000122_hash NULL
-+_000123_hash ds_ioctl 3 45954 _000123_hash NULL
-+_000124_hash dup_to_netobj 3 26363 _000124_hash NULL
-+_000125_hash dvb_dmxdev_set_buffer_size 2 55643 _000125_hash NULL
-+_000126_hash dvbdmx_write 3 19423 _000126_hash NULL
-+_000127_hash dvb_dvr_set_buffer_size 2 9840 _000127_hash NULL
-+_000128_hash econet_sendmsg 4 51430 _000128_hash NULL
-+_000129_hash ecryptfs_copy_filename 4 11868 _000129_hash NULL
-+_000130_hash ecryptfs_miscdev_write 3 26847 _000130_hash NULL
-+_000131_hash ecryptfs_send_miscdev 2 64816 _000131_hash NULL
-+_000132_hash edge_buf_alloc 1 36498 _000132_hash NULL
-+_000133_hash efx_tsoh_heap_alloc 2 58545 _000133_hash NULL
-+_000134_hash emi26_writememory 4 57908 _000134_hash NULL
-+_000135_hash emi62_writememory 4 29731 _000135_hash NULL
-+_000136_hash ep_read 3 58813 _000136_hash NULL
-+_000137_hash ep_write 3 59008 _000137_hash NULL
-+_000138_hash esp_alloc_tmp 2 55741 _000138_hash NULL
-+_000139_hash ezusb_writememory 4 45976 _000139_hash NULL
-+_000140_hash fast_shmem_read 5 2823 _000140_hash NULL
-+_000141_hash fast_shmem_write 5 8942 _000141_hash NULL
-+_000142_hash fast_user_write 5 20494 _000142_hash NULL
-+_000143_hash fb_alloc_cmap 2 6554 _000143_hash NULL
-+_000144_hash fb_read 3 33506 _000144_hash NULL
-+_000145_hash fb_write 3 46924 _000145_hash NULL
-+_000146_hash fcp_request 6 22315 _000146_hash NULL
-+_000147_hash file_read_actor 4 1401 _000147_hash NULL
-+_000148_hash fl_create 4 52248 _000148_hash NULL
-+_000149_hash ftdi_write 4 20710 _000149_hash NULL
-+_000150_hash fw_iso_buffer_init 3 54582 _001610_hash NULL nohasharray
-+_000151_hash garmin_write_bulk 3 58191 _000151_hash NULL
-+_000152_hash garp_attr_create 3 3883 _000152_hash NULL
-+_000153_hash getdqbuf 1 62908 _000153_hash NULL
-+_000154_hash get_fdb_entries 3 41916 _000154_hash NULL
-+_000155_hash get_indirect_ea 4 51869 _000155_hash NULL
-+_000156_hash get_registers 3 26187 _000156_hash NULL
-+_000157_hash get_scq 1 2177 _000157_hash NULL
-+_000158_hash gfs2_glock_nq_m 1 20347 _000158_hash NULL
-+_000159_hash gigaset_initcs 2 43753 _000159_hash NULL
-+_000160_hash gigaset_initdriver 2 1060 _000160_hash NULL
-+_000161_hash gigaset_write_cmd 3 5693 _000161_hash NULL
-+_000162_hash gs_alloc_req 2 58883 _000162_hash NULL
-+_000163_hash gs_buf_alloc 2 25067 _000163_hash NULL
-+_000164_hash gss_pipe_downcall 3 23182 _000164_hash NULL
-+_000165_hash hashtab_create 3 33769 _000165_hash NULL
-+_000166_hash hcd_buffer_alloc 2 27495 _000166_hash NULL
-+_000167_hash heap_init 2 49617 _000167_hash NULL
-+_000168_hash hid_parse_report 3 51737 _000168_hash NULL
-+_000169_hash hidraw_report_event 3 49578 _000773_hash NULL nohasharray
-+_000170_hash hidraw_write 3 31536 _000170_hash NULL
-+_000171_hash hpfs_translate_name 3 41497 _000171_hash NULL
-+_000172_hash hpsb_iso_common_init 4 45525 _000172_hash NULL
-+_000173_hash __i2400mu_send_barker 3 23652 _000173_hash NULL
-+_000174_hash i2cdev_read 3 1206 _000174_hash NULL
-+_000175_hash i2cdev_write 3 23310 _000175_hash NULL
-+_000176_hash i2o_parm_field_get 5 34477 _000176_hash NULL
-+_000177_hash i2o_parm_table_get 6 61635 _000177_hash NULL
-+_000178_hash ib_ucm_alloc_data 3 36885 _000178_hash NULL
-+_000179_hash ib_uverbs_unmarshall_recv 5 12251 _000179_hash NULL
-+_000180_hash ima_write_policy 3 40548 _000180_hash NULL
-+_000181_hash init_send_hfcd 1 34586 _000181_hash NULL
-+_000182_hash insert_dent 7 65034 _000182_hash NULL
-+_000183_hash iov_iter_copy_from_user 4 31942 _001151_hash NULL nohasharray
-+_000184_hash iov_iter_copy_from_user_atomic 4 56368 _000184_hash NULL
-+_000185_hash iowarrior_write 3 18604 _000185_hash NULL
-+_000186_hash ipc_alloc 1 1192 _000186_hash NULL
-+_000187_hash ipc_rcu_alloc 1 21208 _000566_hash NULL nohasharray
-+_000188_hash ip_vs_create_timeout_table 2 64478 _000188_hash NULL
-+_000189_hash ipw_queue_tx_init 3 49161 _000189_hash NULL
-+_000190_hash irias_new_octseq_value 2 13596 _002230_hash NULL nohasharray
-+_000191_hash isdn_add_channels 3 40905 _000191_hash NULL
-+_000192_hash isdn_ppp_fill_rq 2 41428 _000192_hash NULL
-+_000193_hash isdn_read 3 50021 _000193_hash NULL
-+_000194_hash isdn_v110_open 3 2418 _000194_hash NULL
-+_000195_hash islpci_mgt_transmit 5 34133 _000195_hash NULL
-+_000196_hash it821x_firmware_command 3 8628 _000196_hash NULL
-+_000197_hash iwch_alloc_fastreg_pbl 2 40153 _000197_hash NULL
-+_000198_hash jbd2_journal_init_revoke_table 1 36336 _000198_hash NULL
-+_000199_hash jffs2_alloc_full_dirent 1 60179 _000804_hash NULL nohasharray
-+_000200_hash journal_init_revoke_table 1 56331 _000200_hash NULL
-+_000201_hash kcalloc 1-2 27770 _000201_hash NULL
-+_000203_hash keyctl_instantiate_key 3 41855 _000203_hash NULL
-+_000204_hash keyctl_update_key 3 26061 _000204_hash NULL
-+_000205_hash kfifo_alloc 1 65242 _000205_hash NULL
-+_000206_hash kmalloc_node 1 50163 _002227_hash NULL nohasharray
-+_000207_hash kmem_alloc 1 31920 _000207_hash NULL
-+_000208_hash kmsg_write 3 26398 _000208_hash NULL
-+_000209_hash kobj_map 2-3 9566 _000209_hash NULL
-+_000211_hash krealloc 2 14908 _000211_hash NULL
-+_000212_hash kvm_read_guest_atomic 4 10765 _000212_hash NULL
-+_000213_hash kzalloc 1 54740 _000213_hash NULL
-+_000214_hash lane2_associate_req 4 45398 _000214_hash NULL
-+_000215_hash lbs_debugfs_write 3 48413 _000215_hash NULL
-+_000216_hash ldm_frag_add 2 5611 _000216_hash NULL
-+_000217_hash libipw_alloc_txb 1-3-2 27579 _000217_hash NULL
-+_000218_hash listxattr 3 12769 _000218_hash NULL
-+_000219_hash load_module 2 60056 _000219_hash NULL
-+_000220_hash load_msg 2 95 _000220_hash NULL
-+_000221_hash mb_cache_create 4-5 35903 _000221_hash NULL
-+_000223_hash mcs7830_get_reg 3 33308 _000223_hash NULL
-+_000224_hash mcs7830_set_reg 3 31413 _000224_hash NULL
-+_000225_hash mempool_kmalloc 2 53831 _000225_hash NULL
-+_000226_hash mempool_resize 2 47983 _000226_hash NULL
-+_000227_hash mlx4_en_create_rx_ring 3 62498 _000227_hash NULL
-+_000228_hash mlx4_en_create_tx_ring 3 64756 _000228_hash NULL
-+_000229_hash mlx4_ib_alloc_fast_reg_page_list 2 46119 _000229_hash NULL
-+_000230_hash mmc_send_cxd_data 5 38655 _000230_hash NULL
-+_000231_hash mptctl_getiocinfo 2 28545 _000231_hash NULL
-+_000232_hash msnd_fifo_alloc 2 23179 _000232_hash NULL
-+_000233_hash mtd_do_readoob 3 30654 _000233_hash NULL
-+_000234_hash mtd_do_writeoob 4 36373 _000234_hash NULL
-+_000235_hash mtd_read 3 48289 _000235_hash NULL
-+_000236_hash mtd_write 3 34207 _000236_hash NULL
-+_000237_hash ncp__vol2io 5 4804 _000237_hash NULL
-+_000238_hash nfs4_acl_new 1 49806 _000238_hash NULL
-+_000239_hash nfs4_write_cached_acl 3 44402 _000239_hash NULL
-+_000240_hash nfsd_cache_update 3 59574 _000240_hash NULL
-+_000241_hash nfsd_symlink 6 63442 _000241_hash NULL
-+_000242_hash ntfs_copy_from_user 3-5 15072 _000242_hash NULL
-+_000244_hash __ntfs_copy_from_user_iovec_inatomic 3-4 38153 _000244_hash NULL
-+_000246_hash __ntfs_malloc 1 34022 _000246_hash NULL
-+_000247_hash ntfs_ucstonls 3-5 23097 _000247_hash NULL
-+_000248_hash o2net_send_message_vec 4 879 _000248_hash NULL
-+_000249_hash opticon_write 4 60775 _000249_hash NULL
-+_000250_hash oti6858_buf_alloc 1 47086 _001795_hash NULL nohasharray
-+_000251_hash pcbit_writecmd 2 12332 _000251_hash NULL
-+_000252_hash pcmcia_replace_cis 3 57066 _000252_hash NULL
-+_000253_hash pidlist_allocate 1 64404 _000253_hash NULL
-+_000254_hash pidlist_resize 2 496 _000254_hash NULL
-+_000255_hash pipe_iov_copy_from_user 3 23102 _000255_hash NULL
-+_000256_hash pipe_iov_copy_to_user 3 3447 _000256_hash NULL
-+_000257_hash pkt_add 3 39897 _000257_hash NULL
-+_000258_hash pl2303_buf_alloc 1 35251 _000258_hash NULL
-+_000259_hash platform_device_add_data 3 310 _000259_hash NULL
-+_000260_hash platform_device_add_resources 3 13289 _000260_hash NULL
-+_000261_hash pool_allocate 3 42012 _000261_hash NULL
-+_000262_hash posix_acl_alloc 1 48063 _000262_hash NULL
-+_000263_hash ppp_cp_parse_cr 4 5214 _000263_hash NULL
-+_000264_hash pp_read 3 33210 _000264_hash NULL
-+_000265_hash pp_write 3 39554 _000265_hash NULL
-+_000266_hash printer_req_alloc 2 62687 _001413_hash NULL nohasharray
-+_000267_hash prism2_set_genericelement 3 29277 _000267_hash NULL
-+_000268_hash probe_kernel_read 3 49437 _000268_hash NULL
-+_000269_hash pvr2_ioread_set_sync_key 3 59882 _000269_hash NULL
-+_000270_hash pvr2_stream_buffer_count 2 33719 _000270_hash NULL
-+_000271_hash pwc_rvmalloc 1 12325 _000271_hash NULL
-+_000272_hash qdisc_class_hash_alloc 1 18262 _000272_hash NULL
-+_000273_hash ql_dump_hw_cb 2 3518 _000273_hash NULL
-+_000274_hash r3964_write 4 57662 _000274_hash NULL
-+_000275_hash raw_setsockopt 5 45800 _000275_hash NULL
-+_000276_hash rdma_set_ib_paths 3 45592 _000276_hash NULL
-+_000277_hash read 3 9397 _000277_hash NULL
-+_000278_hash read_buf 2 20469 _000278_hash NULL
-+_000279_hash read_cis_cache 4 17069 _000279_hash NULL
-+_000280_hash realloc_buffer 2 25816 _000280_hash NULL
-+_000281_hash recv_control_msg 5 4476 _000281_hash NULL
-+_000282_hash regset_tls_set 4 18459 _000282_hash NULL
-+_000283_hash reg_w_buf 3 27724 _000283_hash NULL
-+_000284_hash reg_w_ixbuf 4 34736 _000284_hash NULL
-+_000285_hash reiserfs_allocate_list_bitmaps 3 21732 _000285_hash NULL
-+_000286_hash reiserfs_resize 2 34377 _000286_hash NULL
-+_000287_hash relay_alloc_page_array 1 52735 _000287_hash NULL
-+_000288_hash request_key_auth_new 3 38092 _000288_hash NULL
-+_000289_hash restore_i387_fxsave 2 17528 _000289_hash NULL
-+_000290_hash rndis_add_response 2 58544 _000290_hash NULL
-+_000291_hash rndis_set_oid 4 6547 _000291_hash NULL
-+_000292_hash rngapi_reset 3 34366 _002129_hash NULL nohasharray
-+_000293_hash rpc_malloc 2 43573 _000293_hash NULL
-+_000294_hash rvmalloc 1 46873 _000294_hash NULL
-+_000295_hash rw_copy_check_uvector 3 45748 _000295_hash NULL
-+_000296_hash rxrpc_request_key 3 27235 _000296_hash NULL
-+_000297_hash rxrpc_server_keyring 3 16431 _000297_hash NULL
-+_000298_hash saa7146_vmalloc_build_pgtable 2 19780 _000298_hash NULL
-+_000299_hash savemem 3 58129 _000299_hash NULL
-+_000300_hash scsi_mode_select 6 37330 _000300_hash NULL
-+_000301_hash sctp_auth_create_key 1 51641 _000301_hash NULL
-+_000302_hash sctp_getsockopt_local_addrs 2 25178 _000302_hash NULL
-+_000303_hash sctp_make_abort_user 3 29654 _000303_hash NULL
-+_000304_hash sctp_setsockopt_auth_key 3 3793 _000304_hash NULL
-+_000305_hash sctp_setsockopt_bindx 3 49870 _000305_hash NULL
-+_000306_hash __sctp_setsockopt_connectx 3 46949 _000306_hash NULL
-+_000307_hash sctp_setsockopt_hmac_ident 3 11687 _000307_hash NULL
-+_000308_hash security_context_to_sid_core 2 29248 _000308_hash NULL
-+_000309_hash sel_write_load 3 63830 _000309_hash NULL
-+_000310_hash send_bulk_static_data 3 61932 _000310_hash NULL
-+_000311_hash _send_control_msg 6 46598 _000311_hash NULL
-+_000312_hash send_control_msg 6 48498 _000312_hash NULL
-+_000313_hash setkey_unaligned 3 39474 _000313_hash NULL
-+_000314_hash set_registers 3 53582 _001277_hash NULL nohasharray
-+_000315_hash setup_req 3 5848 _000315_hash NULL
-+_000316_hash setup_window 7-5-4-2 59178 _000316_hash NULL
-+_000317_hash setxattr 4 37006 _000317_hash NULL
-+_000318_hash sg_kmalloc 1 50240 _000318_hash NULL
-+_000319_hash sgl_map_user_pages 2 30610 _000319_hash NULL
-+_000320_hash shash_setkey_unaligned 3 8620 _000320_hash NULL
-+_000321_hash sierra_setup_urb 5 46029 _000321_hash NULL
-+_000322_hash sl_alloc_bufs 2 50380 _000322_hash NULL
-+_000323_hash slow_kernel_write 6 15362 _000323_hash NULL
-+_000324_hash sl_realloc_bufs 2 64086 _000324_hash NULL
-+_000325_hash smb_do_alloc_request 2 43708 _000325_hash NULL
-+_000326_hash snd_ctl_elem_user_tlv 3 11695 _000326_hash NULL
-+_000327_hash snd_emu10k1_fx8010_read 5-6 9605 _002373_hash NULL nohasharray
-+_000329_hash snd_midi_channel_init_set 1 30092 _000329_hash NULL
-+_000330_hash snd_midi_event_new 1 9893 _000465_hash NULL nohasharray
-+_000331_hash snd_opl4_mem_proc_read 5-6 63774 _000331_hash NULL
-+_000333_hash snd_opl4_mem_proc_write 5-6 9670 _000333_hash NULL
-+_000335_hash snd_pcm_aio_read 3 13900 _000335_hash NULL
-+_000336_hash snd_pcm_aio_write 3 28738 _000336_hash NULL
-+_000337_hash snd_pcm_alloc_vmalloc_buffer 2 44595 _000337_hash NULL
-+_000338_hash snd_sb_csp_load_user 3 45190 _000338_hash NULL
-+_000339_hash snd_usb_ctl_msg 8 26092 _000339_hash NULL
-+_000340_hash sock_kmalloc 2 62205 _000340_hash NULL
-+_000341_hash spi_register_board_info 2 35651 _000341_hash NULL
-+_000342_hash st5481_setup_isocpipes 6-4 61340 _000342_hash NULL
-+_000343_hash swap_cgroup_swapon 2 13614 _000343_hash NULL
-+_000344_hash sys_add_key 4 61288 _000344_hash NULL
-+_000345_hash sys_modify_ldt 3 18824 _000345_hash NULL
-+_000346_hash sys_semtimedop 3 4486 _000346_hash NULL
-+_000347_hash tda10048_writeregbulk 4 11050 _000347_hash NULL
-+_000348_hash tipc_log_resize 1 34803 _000348_hash NULL
-+_000349_hash tty_buffer_alloc 2 45437 _000349_hash NULL
-+_000350_hash ubi_dbg_dump_flash 4 3870 _000350_hash NULL
-+_000351_hash ubi_resize_volume 2 50172 _000351_hash NULL
-+_000352_hash udf_alloc_i_data 2 35786 _000352_hash NULL
-+_000353_hash uea_idma_write 3 64139 _000353_hash NULL
-+_000354_hash uea_request 4 47613 _000354_hash NULL
-+_000355_hash uea_send_modem_cmd 3 3888 _000355_hash NULL
-+_000356_hash us122l_ctl_msg 8 13330 _000356_hash NULL
-+_000357_hash usb_alloc_urb 1 43436 _000357_hash NULL
-+_000358_hash usblp_new_writeurb 2 22894 _000358_hash NULL
-+_000359_hash usb_serial_multi_urb_write 4 22718 _000359_hash NULL
-+_000360_hash user_instantiate 3 26131 _000360_hash NULL
-+_000361_hash user_update 3 41332 _000361_hash NULL
-+_000362_hash uvc_alloc_buffers 2-3 9656 _000362_hash NULL
-+_000363_hash uvc_simplify_fraction 3 31303 _000363_hash NULL
-+_000364_hash uwb_rc_cmd_done 4 35892 _000364_hash NULL
-+_000365_hash uwb_rc_neh_grok_event 3 55799 _000365_hash NULL
-+_000366_hash vc_do_resize 3-4 48842 _000366_hash NULL
-+_000368_hash vdma_mem_alloc 1 6171 _000368_hash NULL
-+_000369_hash vga_arb_write 3 36112 _000369_hash NULL
-+_000370_hash videobuf_dma_init_kernel 3 6963 _000370_hash NULL
-+_000371_hash videobuf_pages_to_sg 2 53849 _000371_hash NULL
-+_000372_hash videobuf_vmalloc_to_sg 2 4548 _000372_hash NULL
-+_000373_hash visor_write 4 37975 _000373_hash NULL
-+_000374_hash vlsi_alloc_ring 3-4 57003 _000374_hash NULL
-+_000376_hash vp_request_msix_vectors 2 28849 _000376_hash NULL
-+_000377_hash vring_add_indirect 3-4 4224 _000377_hash NULL
-+_000379_hash vring_new_virtqueue 1 36374 _000379_hash NULL
-+_000380_hash vstusb_read 3 23774 _000380_hash NULL
-+_000381_hash vstusb_write 3 45021 _000734_hash NULL nohasharray
-+_000382_hash vxge_os_dma_malloc 2 46184 _000382_hash NULL
-+_000383_hash vxge_os_dma_malloc_async 3 56348 _000383_hash NULL
-+_000384_hash wdm_write 3 53735 _000384_hash NULL
-+_000385_hash wm8400_i2c_write 3 49251 _000385_hash NULL
-+_000386_hash write 3 62671 _000386_hash NULL
-+_000387_hash x25_asy_change_mtu 2 26928 _000387_hash NULL
-+_000388_hash xfrm_dst_alloc_copy 3 3034 _000388_hash NULL
-+_000389_hash xfrm_hash_alloc 1 10997 _000389_hash NULL
-+_000390_hash xfrm_user_policy 4 62573 _000390_hash NULL
-+_000391_hash xfs_attrmulti_attr_set 4 59346 _000391_hash NULL
-+_000392_hash __xip_file_write 3-4 2733 _000392_hash NULL
-+_000393_hash xprt_rdma_allocate 2 31372 _000393_hash NULL
-+_000394_hash xt_alloc_table_info 1 57903 _000394_hash NULL
-+_000395_hash zd_ioread32v_locked 4 19953 _000395_hash NULL
-+_000396_hash _zd_iowrite32v_locked 3 44725 _000396_hash NULL
-+_000397_hash zd_usb_ioread16v 4 17715 _000397_hash NULL
-+_000398_hash zd_usb_iowrite16v 3 49744 _000398_hash NULL
-+_000399_hash zd_usb_read_fw 4 22049 _000399_hash NULL
-+_000400_hash zd_usb_rfwrite 3 42300 _000400_hash NULL
-+_000401_hash zoran_write 3 22404 _000401_hash NULL
-+_000402_hash acpi_battery_write_alarm 3 1240 _000402_hash NULL
-+_000403_hash acpi_ex_allocate_name_string 2-1 7685 _002079_hash NULL nohasharray
-+_000404_hash acpi_fan_write_state 3 39818 _000404_hash NULL
-+_000405_hash acpi_os_allocate_zeroed 1 37422 _000405_hash NULL
-+_000406_hash acpi_processor_write_limit 3 23201 _000406_hash NULL
-+_000407_hash acpi_processor_write_throttling 3 16712 _000407_hash NULL
-+_000408_hash acpi_system_debug_proc_write 3 43231 _000408_hash NULL
-+_000409_hash acpi_system_write_sleep 3 57456 _000409_hash NULL
-+_000410_hash acpi_system_write_wakeup_device 3 34853 _000410_hash NULL
-+_000411_hash acpi_thermal_write_cooling_mode 3 31053 _000411_hash NULL
-+_000412_hash acpi_thermal_write_polling 3 45660 _000412_hash NULL
-+_000413_hash acpi_ut_initialize_buffer 2 47143 _001854_hash NULL nohasharray
-+_000414_hash acpi_video_bus_write_DOS 3 2064 _000414_hash NULL
-+_000415_hash acpi_video_bus_write_POST 3 30039 _000415_hash NULL
-+_000416_hash acpi_video_device_write_brightness 3 43565 _000416_hash NULL
-+_000417_hash acpi_video_device_write_state 3 61342 _000417_hash NULL
-+_000418_hash addtgt 3 54703 _000418_hash NULL
-+_000419_hash adu_write 3 30487 _000419_hash NULL
-+_000420_hash aem_read_sensor 5 21770 _000420_hash NULL
-+_000421_hash aer_inject_write 3 52399 _000421_hash NULL
-+_000422_hash agp_create_memory 1 1075 _000422_hash NULL
-+_000423_hash agp_create_user_memory 1 62955 _000423_hash NULL
-+_000424_hash alloc_arch_preferred_bootmem 2 27097 _000424_hash NULL
-+_000425_hash alloc_async 1 14208 _000425_hash NULL
-+_000426_hash alloc_chunk 1 49575 _000426_hash NULL
-+_000427_hash alloc_context 1 41283 _000427_hash NULL
-+_000428_hash alloc_ctrl_packet 1 44667 _000428_hash NULL
-+_000429_hash alloc_data_packet 1 46698 _000429_hash NULL
-+_000430_hash alloc_dca_provider 2 59670 _000430_hash NULL
-+_000431_hash alloc_ep 1 17269 _000431_hash NULL
-+_000432_hash alloc_group_attrs 2 9194 _000432_hash NULL
-+_000433_hash alloc_netdev_mq 1-4 24028 _000433_hash NULL
-+_000435_hash __alloc_percpu 1 9764 _000435_hash NULL
-+_000436_hash alloc_ring 2-4 39151 _000436_hash NULL
-+_000440_hash alloc_smp_req 1 51337 _000440_hash NULL
-+_000441_hash alloc_smp_resp 1 3566 _000441_hash NULL
-+_000442_hash alloc_targets 2 8074 _000442_hash NULL
-+_000443_hash alloc_ts_config 1 45775 _000443_hash NULL
-+_000444_hash amd_create_gatt_pages 1 20537 _000444_hash NULL
-+_000445_hash aoedev_flush 2 44398 _000445_hash NULL
-+_000446_hash append_to_buffer 3 63550 _000446_hash NULL
-+_000447_hash arcfb_write 3 8702 _000447_hash NULL
-+_000448_hash asd_store_update_bios 4 10165 _000448_hash NULL
-+_000449_hash ata_host_alloc 2 46094 _000449_hash NULL
-+_000450_hash ath_descdma_setup 5 22128 _000450_hash NULL
-+_000451_hash ati_create_gatt_pages 1 4722 _002368_hash NULL nohasharray
-+_000452_hash au0828_init_isoc 2-3 61917 _000452_hash NULL
-+_000454_hash audio_write 4 54261 _001280_hash NULL nohasharray
-+_000455_hash audit_init_entry 1 38644 _000455_hash NULL
-+_000456_hash av7110_vbi_write 3 34384 _000456_hash NULL
-+_000457_hash ax25_setsockopt 5 42740 _000457_hash NULL
-+_000458_hash b43_debugfs_write 3 34838 _000458_hash NULL
-+_000459_hash b43legacy_debugfs_write 3 28556 _000459_hash NULL
-+_000460_hash bio_copy_user_iov 4 37660 _000460_hash NULL
-+_000461_hash __bio_map_kern 2-3 47379 _000461_hash NULL
-+_000463_hash blk_register_region 1-2 51424 _000463_hash NULL
-+_000465_hash bm_register_write 3 9893 _000465_hash &_000330_hash
-+_000466_hash broadsheetfb_write 3 39976 _000466_hash NULL
-+_000467_hash btmrvl_gpiogap_write 3 35053 _000467_hash NULL
-+_000468_hash btmrvl_hscfgcmd_write 3 27143 _000468_hash NULL
-+_000469_hash btmrvl_hscmd_write 3 27089 _000469_hash NULL
-+_000470_hash btmrvl_hsmode_write 3 42252 _000470_hash NULL
-+_000471_hash btmrvl_pscmd_write 3 29504 _000471_hash NULL
-+_000472_hash btmrvl_psmode_write 3 3703 _000472_hash NULL
-+_000473_hash btrfs_mksubvol 3 150 _000473_hash NULL
-+_000474_hash cache_do_downcall 3 6926 _000474_hash NULL
-+_000475_hash cciss_proc_write 3 10259 _000475_hash NULL
-+_000476_hash cdev_add 2-3 38176 _000476_hash NULL
-+_000478_hash cdrom_read_cdda 4 50478 _000478_hash NULL
-+_000479_hash cfg80211_connect_result 4-6 56515 _000479_hash NULL
-+_000481_hash cfg80211_disconnected 4 57 _000481_hash NULL
-+_000482_hash cfg80211_inform_bss 8 19332 _000482_hash NULL
-+_000483_hash cfg80211_inform_bss_frame 4 41078 _000483_hash NULL
-+_000484_hash cfg80211_roamed 4-6 28061 _000484_hash NULL
-+_000486_hash cgroup_write_X64 5 54514 _000486_hash NULL
-+_000487_hash cifs_security_flags_proc_write 3 5484 _000487_hash NULL
-+_000488_hash CIFSSMBWrite 4 33131 _000488_hash NULL
-+_000489_hash ci_ll_write 4 3740 _000489_hash NULL
-+_000490_hash clear_refs_write 3 61904 _000490_hash NULL
-+_000491_hash clusterip_proc_write 3 44729 _000491_hash NULL
-+_000492_hash cm4040_write 3 58079 _000492_hash NULL
-+_000493_hash cmm_write 3 2896 _000493_hash NULL
-+_000494_hash cnic_alloc_dma 3 34641 _000494_hash NULL
-+_000495_hash command_file_write 3 31318 _000495_hash NULL
-+_000496_hash command_write 3 58841 _000496_hash NULL
-+_000497_hash construct_key 3 11329 _000497_hash NULL
-+_000498_hash copy_from_user_toio 3 31966 _000498_hash NULL
-+_000499_hash copy_to_user 3 57835 _000499_hash NULL
-+_000500_hash copy_vm86_regs_from_user 3 45340 _000500_hash NULL
-+_000501_hash create_attr_set 1 22861 _000501_hash NULL
-+_000502_hash cryptd_alloc_instance 2-3 18048 _000502_hash NULL
-+_000504_hash crypto_ahash_setkey 3 55134 _000504_hash NULL
-+_000505_hash crypto_alloc_instance2 3 25277 _000505_hash NULL
-+_000506_hash crypto_shash_setkey 3 60483 _000506_hash NULL
-+_000507_hash csr1212_new_descriptor_leaf 4 57117 _000507_hash NULL
-+_000508_hash csum_partial_copy_fromiovecend 3-4 9957 _000508_hash NULL
-+_000510_hash cx231xx_init_isoc 2-3 56453 _000510_hash NULL
-+_000512_hash cx231xx_init_vbi_isoc 2-3 28053 _000512_hash NULL
-+_000514_hash cxgb3i_ddp_make_gl 1 34150 _000514_hash NULL
-+_000515_hash __cxio_init_resource_fifo 3 16295 _000515_hash NULL
-+_000516_hash dac960_user_command_proc_write 3 3071 _000516_hash NULL
-+_000517_hash ddebug_proc_write 3 18055 _000517_hash NULL
-+_000518_hash decode_asn1_bitstring 4 198 _000518_hash NULL
-+_000519_hash device_write 3 45156 _000519_hash NULL
-+_000520_hash dev_set_alias 3 50084 _000520_hash NULL
-+_000521_hash dlm_allocate_rsb 2 56941 _000521_hash NULL
-+_000522_hash dn_def_dev_strategy 5 51973 _000522_hash NULL
-+_000523_hash __dn_setsockopt 5 13060 _000523_hash NULL
-+_000524_hash do_dccp_setsockopt 5 54377 _000524_hash NULL
-+_000525_hash do_ip_vs_set_ctl 4 48641 _000525_hash NULL
-+_000526_hash do_jffs2_setxattr 5 25910 _000526_hash NULL
-+_000527_hash do_kimage_alloc 3 64827 _000527_hash NULL
-+_000528_hash do_msgsnd 4 1387 _000528_hash NULL
-+_000529_hash do_readv_writev 4 51849 _000529_hash NULL
-+_000530_hash do_sync 1 9604 _000530_hash NULL
-+_000531_hash drm_fb_helper_init_crtc_count 2-3 32666 _000531_hash NULL
-+_000533_hash drm_mode_crtc_set_gamma_size 2 54742 _000533_hash NULL
-+_000534_hash drm_property_create 4 51239 _000534_hash NULL
-+_000535_hash drm_property_create_blob 2 7414 _000535_hash NULL
-+_000536_hash drm_sman_init 2 21710 _000536_hash NULL
-+_000537_hash dsp_write 2 46218 _000537_hash NULL
-+_000538_hash dv1394_write 3 18547 _000538_hash NULL
-+_000539_hash dvb_aplay 3 56296 _000539_hash NULL
-+_000540_hash dvb_ca_en50221_init 4 45718 _000540_hash NULL
-+_000541_hash dvb_ca_en50221_io_write 3 43533 _000541_hash NULL
-+_000542_hash dvb_demux_do_ioctl 4 38811 _000542_hash NULL
-+_000543_hash dvb_dvr_do_ioctl 4 46839 _000543_hash NULL
-+_000544_hash dvb_play 3 50814 _000544_hash NULL
-+_000545_hash ecryptfs_decode_and_decrypt_filename 5 10379 _000545_hash NULL
-+_000546_hash ecryptfs_encrypt_and_encode_filename 6 2109 _000546_hash NULL
-+_000547_hash ecryptfs_send_message_locked 2 31801 _000547_hash NULL
-+_000548_hash edac_device_alloc_ctl_info 1 5941 _000548_hash NULL
-+_000549_hash edac_mc_alloc 1 54846 _000549_hash NULL
-+_000550_hash edac_pci_alloc_ctl_info 1 63388 _000550_hash NULL
-+_000551_hash efivar_create_sysfs_entry 1 56882 _000551_hash NULL
-+_000552_hash em28xx_init_isoc 2-3 8755 _000552_hash NULL
-+_000554_hash enclosure_register 3 57412 _000554_hash NULL
-+_000555_hash ep0_write 3 14536 _001001_hash NULL nohasharray
-+_000556_hash extend_mmcfg 1 14282 _000556_hash NULL
-+_000557_hash fallback_on_nodma_alloc 2 35332 _000557_hash NULL
-+_000558_hash f_audio_buffer_alloc 1 41110 _000558_hash NULL
-+_000559_hash fb_sys_write 3 33130 _000559_hash NULL
-+_000560_hash fd_copyin 3 56247 _000560_hash NULL
-+_000561_hash __feat_register_sp 6 64712 _000561_hash NULL
-+_000562_hash fib_hash_alloc 1 63412 _000562_hash NULL
-+_000563_hash fillonedir 3 41746 _000563_hash NULL
-+_000564_hash fill_write_buffer 3 3142 _000564_hash NULL
-+_000565_hash flexcop_device_kmalloc 1 54793 _000565_hash NULL
-+_000566_hash frame_alloc 2 21208 _000566_hash &_000187_hash
-+_000567_hash framebuffer_alloc 1 59145 _000567_hash NULL
-+_000568_hash ftdi_elan_write 3 57309 _000568_hash NULL
-+_000569_hash fuse_conn_limit_write 3 30777 _000569_hash NULL
-+_000570_hash fw_node_create 2 9559 _000570_hash NULL
-+_000571_hash fz_hash_alloc 1 50580 _000571_hash NULL
-+_000572_hash garmin_read_process 3 27509 _000572_hash NULL
-+_000573_hash garp_request_join 4 7471 _000573_hash NULL
-+_000574_hash get_arg 3 5694 _000574_hash NULL
-+_000575_hash get_entry 4 16003 _002030_hash NULL nohasharray
-+_000576_hash get_free_de 2 33714 _000576_hash NULL
-+_000577_hash get_new_cssid 2 51665 _000577_hash NULL
-+_000578_hash get_ucode_user 3 38202 _000578_hash NULL
-+_000579_hash get_user_cpu_mask 2 14861 _000579_hash NULL
-+_000580_hash getxattr 4 24398 _000580_hash NULL
-+_000581_hash gspca_dev_probe 4 2570 _000581_hash NULL
-+_000582_hash hcd_alloc_coherent 5 55862 _000582_hash NULL
-+_000583_hash hci_sock_setsockopt 5 28993 _000583_hash NULL
-+_000584_hash hecubafb_write 3 26942 _000584_hash NULL
-+_000585_hash hid_register_field 2-3 4874 _000585_hash NULL
-+_000587_hash hid_report_raw_event 4 7024 _000587_hash NULL
-+_000588_hash hpsb_alloc_host 2 3562 _000588_hash NULL
-+_000589_hash hpsb_create_hostinfo 3 49717 _000589_hash NULL
-+_000590_hash hpsb_iso_recv_init 3 31535 _000590_hash NULL
-+_000591_hash hpsb_iso_xmit_init 3 19277 _000591_hash NULL
-+_000592_hash hugetlbfs_read_actor 2-5-4 34547 _000592_hash NULL
-+_000595_hash hvc_alloc 4 12579 _000595_hash NULL
-+_000596_hash __hwahc_dev_set_key 5 46328 _000596_hash NULL
-+_000597_hash hysdn_conf_write 3 52145 _000597_hash NULL
-+_000598_hash hysdn_log_write 3 48694 _000598_hash NULL
-+_000599_hash i2400m_queue_work 5 41051 _000599_hash NULL
-+_000600_hash ib_alloc_device 1 26483 _000600_hash NULL
-+_000601_hash ib_copy_from_udata 3 59502 _000601_hash NULL
-+_000602_hash ib_create_send_mad 5 1196 _000602_hash NULL
-+_000603_hash ibmasm_new_command 2 25714 _000603_hash NULL
-+_000604_hash ib_send_cm_drep 3 50186 _000604_hash NULL
-+_000605_hash ib_send_cm_mra 4 60202 _000605_hash NULL
-+_000606_hash ib_send_cm_rtu 3 63138 _000606_hash NULL
-+_000607_hash ib_umad_write 3 47993 _000607_hash NULL
-+_000608_hash icn_writecmd 2 38629 _000608_hash NULL
-+_000609_hash ide_driver_proc_write 3 32493 _000609_hash NULL
-+_000610_hash ide_settings_proc_write 3 35110 _000610_hash NULL
-+_000611_hash idetape_chrdev_write 3 53976 _000611_hash NULL
-+_000612_hash idmap_pipe_downcall 3 14591 _000612_hash NULL
-+_000613_hash ieee80211_key_alloc 3 11373 _000613_hash NULL
-+_000614_hash ilo_write 3 64378 _000614_hash NULL
-+_000615_hash init_exception_table 2 34132 _000615_hash NULL
-+_000616_hash init_q 4 132 _000616_hash NULL
-+_000617_hash init_state 2 60165 _000617_hash NULL
-+_000618_hash init_tag_map 3 57515 _000618_hash NULL
-+_000619_hash init_tid_tabs 2-4-3 13252 _000619_hash NULL
-+_000622_hash input_ff_create 2 21240 _000622_hash NULL
-+_000623_hash ioat2_alloc_ring 2 11172 _000623_hash NULL
-+_000624_hash ioctl_private_iw_point 7 1273 _000624_hash NULL
-+_000625_hash ip_options_get_from_user 4 64958 _000625_hash NULL
-+_000626_hash ipr_alloc_ucode_buffer 1 40199 _000626_hash NULL
-+_000627_hash ipv6_flowlabel_opt 3 58135 _000813_hash NULL nohasharray
-+_000628_hash ipv6_renew_option 3 38813 _000628_hash NULL
-+_000629_hash irda_setsockopt 5 19824 _000629_hash NULL
-+_000630_hash irias_add_octseq_attrib 4 29983 _000630_hash NULL
-+_000631_hash irnet_ctrl_write 3 24139 _000631_hash NULL
-+_000632_hash iscsi_alloc_session 3 49390 _000632_hash NULL
-+_000633_hash iscsi_create_conn 2 50425 _000633_hash NULL
-+_000634_hash iscsi_create_endpoint 1 15193 _000634_hash NULL
-+_000635_hash iscsi_pool_init 2-4 54913 _000635_hash NULL
-+_000637_hash isdn_ppp_write 4 29109 _000637_hash NULL
-+_000638_hash isdn_writebuf_stub 4 52383 _000638_hash NULL
-+_000639_hash islpci_mgt_transaction 5 23610 _000639_hash NULL
-+_000640_hash iso_callback 3 43208 _000640_hash NULL
-+_000641_hash iso_sched_alloc 1 13377 _001681_hash NULL nohasharray
-+_000642_hash ivtv_buf_copy_from_user 4 25502 _000642_hash NULL
-+_000643_hash ivtvfb_write 3 40023 _000643_hash NULL
-+_000644_hash iwl_calib_set 3 10944 _000644_hash NULL
-+_000645_hash iwl_tx_queue_init 3 4807 _000645_hash NULL
-+_000646_hash iwm_notif_send 6 12295 _000646_hash NULL
-+_000647_hash iwm_ntf_calib_res 3 11686 _000647_hash NULL
-+_000648_hash iwm_umac_set_config_var 4 17320 _000648_hash NULL
-+_000649_hash jbd2_journal_init_revoke 2 51088 _000649_hash NULL
-+_000650_hash jffs2_write_dirent 5 37311 _000650_hash NULL
-+_000651_hash journal_init_revoke 2 56933 _000651_hash NULL
-+_000652_hash kmem_realloc 2 37489 _000652_hash NULL
-+_000653_hash kmem_zalloc 1 11510 _000653_hash NULL
-+_000654_hash kvm_read_guest_page 5 18074 _000654_hash NULL
-+_000655_hash l2cap_sock_setsockopt 5 50207 _000655_hash NULL
-+_000656_hash l2cap_sock_setsockopt_old 4 29346 _000656_hash NULL
-+_000657_hash lcd_write 3 14857 _000657_hash &_000013_hash
-+_000658_hash leaf_dealloc 3 24706 _000658_hash NULL
-+_000659_hash __lgread 4 31668 _000659_hash NULL
-+_000660_hash linear_conf 2 23485 _002341_hash NULL nohasharray
-+_000661_hash LoadBitmap 2 19658 _000661_hash NULL
-+_000662_hash lpfc_sli4_queue_alloc 3 62646 _000662_hash NULL
-+_000663_hash lp_write 3 9511 _000663_hash NULL
-+_000664_hash mce_write 3 26201 _000664_hash NULL
-+_000665_hash memcpy_fromiovec 3 55247 _000665_hash NULL
-+_000666_hash memcpy_fromiovecend 3-4 2707 _000666_hash NULL
-+_000668_hash memstick_alloc_host 1 142 _000668_hash NULL
-+_000669_hash mesh_table_alloc 1 22305 _000669_hash NULL
-+_000670_hash metronomefb_write 3 8823 _000670_hash NULL
-+_000671_hash mmc_alloc_host 1 48097 _000671_hash NULL
-+_000672_hash move_addr_to_kernel 2 32673 _000672_hash NULL
-+_000673_hash mtd_concat_create 2 14416 _000673_hash NULL
-+_000674_hash mtrr_write 3 59622 _000674_hash NULL
-+_000675_hash __mwl8k_cmd_mac_multicast_adr 2 57427 _000675_hash NULL
-+_000676_hash ncp_file_write 3 3813 _000676_hash NULL
-+_000677_hash neigh_hash_alloc 1 52619 _000677_hash NULL
-+_000678_hash net_assign_generic 2 59217 _000678_hash NULL
-+_000679_hash netxen_alloc_sds_rings 2 13417 _000679_hash NULL
-+_000680_hash new_lockspace 2 29674 _000680_hash NULL
-+_000681_hash new_tape_buffer 2 32866 _000681_hash NULL
-+_000682_hash nfs4_init_slot_table 2 33152 _000682_hash NULL
-+_000683_hash nfs_readdata_alloc 1 9990 _000683_hash NULL
-+_000684_hash nfs_writedata_alloc 1 62868 _000684_hash NULL
-+_000685_hash nl_pid_hash_zalloc 1 23314 _000685_hash NULL
-+_000686_hash nsm_create_handle 4 38060 _000686_hash NULL
-+_000687_hash ntfs_copy_from_user_iovec 3-6 49829 _000687_hash NULL
-+_000689_hash ntfs_file_buffered_write 4-6 41442 _000689_hash NULL
-+_000691_hash ntfs_malloc_nofs 1 49572 _000691_hash NULL
-+_000692_hash ntfs_malloc_nofs_nofail 1 63631 _000692_hash NULL
-+_000693_hash nvram_write 3 3894 _000693_hash NULL
-+_000694_hash ocfs2_acl_from_xattr 2 21604 _000694_hash NULL
-+_000695_hash ocfs2_control_cfu 2 37750 _000695_hash NULL
-+_000696_hash oom_adjust_write 3 41116 _000696_hash NULL
-+_000697_hash oprofilefs_ulong_from_user 3 57251 _000697_hash NULL
-+_000698_hash orinoco_set_key 5-7 17878 _000698_hash NULL
-+_000700_hash _osd_realloc_seg 3 54352 _000700_hash NULL
-+_000701_hash osst_execute 7-6 17607 _000701_hash NULL
-+_000702_hash otp_read 2-5-4 10594 _000702_hash NULL
-+_000705_hash packet_setsockopt 5 17662 _000705_hash NULL
-+_000706_hash parse_arg 2 5657 _000706_hash NULL
-+_000707_hash parse_command 2 37079 _000707_hash NULL
-+_000708_hash pccard_store_cis 5 10094 _000708_hash NULL
-+_000709_hash pci_add_cap_save_buffer 3 3426 _000709_hash NULL
-+_000710_hash pcnet32_realloc_rx_ring 3 36598 _000710_hash NULL
-+_000711_hash pcnet32_realloc_tx_ring 3 38428 _000711_hash NULL
-+_000712_hash pcpu_get_vm_areas 3 26522 _000712_hash NULL
-+_000713_hash pdu_write_u 3 1710 _000713_hash NULL
-+_000714_hash perf_mmap_data_alloc 2 43335 _000714_hash NULL
-+_000715_hash pgctrl_write 3 50453 _000715_hash NULL
-+_000716_hash pg_write 3 40766 _000716_hash NULL
-+_000717_hash pkt_bio_alloc 1 48284 _000717_hash NULL
-+_000718_hash pktgen_if_write 3 55628 _000718_hash NULL
-+_000719_hash platform_device_register_data 5 16660 _000719_hash NULL
-+_000720_hash platform_device_register_simple 4 61290 _000720_hash NULL
-+_000721_hash pmcraid_alloc_sglist 1 9864 _000721_hash NULL
-+_000722_hash pnp_alloc 1 24869 _000722_hash NULL
-+_000723_hash ppp_write 3 34034 _000723_hash NULL
-+_000724_hash printer_write 3 60276 _000724_hash NULL
-+_000725_hash proc_coredump_filter_write 3 25625 _000725_hash NULL
-+_000726_hash _proc_do_string 2 6376 _000726_hash NULL
-+_000727_hash proc_loginuid_write 3 63648 _000727_hash NULL
-+_000728_hash proc_pid_attr_write 3 63845 _000728_hash NULL
-+_000729_hash proc_scsi_devinfo_write 3 32064 _000729_hash NULL
-+_000730_hash proc_scsi_write 3 29142 _000730_hash NULL
-+_000731_hash proc_scsi_write_proc 3 267 _000731_hash NULL
-+_000732_hash proc_write 3 51003 _000732_hash NULL
-+_000733_hash proc_write_node 3 15624 _000733_hash NULL
-+_000734_hash ptrace_writedata 4 45021 _000734_hash &_000381_hash
-+_000735_hash pt_write 3 40159 _000735_hash NULL
-+_000736_hash qc_capture 3 19298 _000736_hash NULL
-+_000737_hash qla2x00_get_ctx_sp 3 13912 _000737_hash NULL
-+_000738_hash queue_received_packet 5 9657 _000738_hash NULL
-+_000739_hash raw_seticmpfilter 3 6888 _000739_hash NULL
-+_000740_hash rawv6_seticmpfilter 5 12137 _000740_hash NULL
-+_000741_hash rds_message_alloc 1 10517 _000741_hash NULL
-+_000742_hash rds_page_copy_user 4 35691 _000742_hash NULL
-+_000743_hash recent_mt_proc_write 3 8206 _000743_hash NULL
-+_000744_hash recent_old_proc_write 3 43473 _000744_hash NULL
-+_000745_hash remote_settings_file_write 3 22987 _000745_hash NULL
-+_000746_hash reshape_ring 2 29147 _000746_hash NULL
-+_000747_hash resize_stripes 2 61650 _000747_hash NULL
-+_000748_hash revalidate 2 19043 _000748_hash NULL
-+_000749_hash rfcomm_sock_setsockopt 5 18254 _000749_hash NULL
-+_000750_hash rt2x00debug_write_bbp 3 8212 _000750_hash NULL
-+_000751_hash rt2x00debug_write_csr 3 64753 _000751_hash NULL
-+_000752_hash rt2x00debug_write_eeprom 3 23091 _000752_hash NULL
-+_000753_hash rt2x00debug_write_rf 3 38195 _000753_hash NULL
-+_000754_hash rxrpc_setsockopt 5 50286 _000754_hash NULL
-+_000755_hash saa_write 3 45625 _000755_hash NULL
-+_000756_hash sb16_copy_from_user 10-7-6 55836 _000756_hash NULL
-+_000759_hash sched_feat_write 3 55202 _000759_hash NULL
-+_000760_hash scsi_host_alloc 2 63041 _000760_hash NULL
-+_000761_hash scsi_tgt_copy_sense 3 26933 _000761_hash NULL
-+_000762_hash sctp_getsockopt_delayed_ack 2 9232 _000762_hash NULL
-+_000763_hash sctp_sendmsg 4 61919 _000763_hash NULL
-+_000764_hash sctp_setsockopt 5 44788 _000764_hash NULL
-+_000765_hash sctp_setsockopt_active_key 3 43755 _000765_hash NULL
-+_000766_hash sctp_setsockopt_adaptation_layer 3 26935 _001509_hash NULL nohasharray
-+_000767_hash sctp_setsockopt_associnfo 3 51684 _000767_hash NULL
-+_000768_hash sctp_setsockopt_auth_chunk 3 30843 _000768_hash NULL
-+_000769_hash sctp_setsockopt_autoclose 3 5775 _000769_hash NULL
-+_000770_hash sctp_setsockopt_connectx 3 6073 _000799_hash NULL nohasharray
-+_000771_hash sctp_setsockopt_connectx_old 3 22631 _000771_hash NULL
-+_000772_hash sctp_setsockopt_context 3 31091 _000772_hash NULL
-+_000773_hash sctp_setsockopt_default_send_param 3 49578 _000773_hash &_000169_hash
-+_000774_hash sctp_setsockopt_delayed_ack 3 40129 _000774_hash NULL
-+_000775_hash sctp_setsockopt_del_key 3 42304 _001822_hash NULL nohasharray
-+_000776_hash sctp_setsockopt_events 3 18862 _000776_hash NULL
-+_000777_hash sctp_setsockopt_initmsg 3 1383 _000777_hash NULL
-+_000778_hash sctp_setsockopt_maxburst 3 28041 _000778_hash NULL
-+_000779_hash sctp_setsockopt_maxseg 3 11829 _000779_hash NULL
-+_000780_hash sctp_setsockopt_peer_addr_params 3 734 _000780_hash NULL
-+_000781_hash sctp_setsockopt_peer_primary_addr 3 13440 _000781_hash NULL
-+_000782_hash sctp_setsockopt_rtoinfo 3 30941 _000782_hash NULL
-+_000783_hash sctp_tsnmap_init 2 36446 _000783_hash NULL
-+_000784_hash security_context_to_sid 2 19839 _000784_hash NULL
-+_000785_hash security_context_to_sid_default 2 3492 _002278_hash NULL nohasharray
-+_000786_hash security_context_to_sid_force 2 20724 _000786_hash NULL
-+_000787_hash sel_commit_bools_write 3 46077 _000787_hash NULL
-+_000788_hash sel_write_access 3 51704 _000788_hash NULL
-+_000789_hash sel_write_avc_cache_threshold 3 2256 _000789_hash NULL
-+_000790_hash sel_write_bool 3 46996 _000790_hash NULL
-+_000791_hash sel_write_checkreqprot 3 60774 _000791_hash NULL
-+_000792_hash sel_write_create 3 11353 _000792_hash NULL
-+_000793_hash sel_write_disable 3 10511 _000793_hash NULL
-+_000794_hash sel_write_enforce 3 48998 _000794_hash NULL
-+_000795_hash sel_write_member 3 28800 _000795_hash NULL
-+_000796_hash sel_write_relabel 3 55195 _000796_hash NULL
-+_000797_hash sel_write_user 3 45060 _000797_hash NULL
-+_000798_hash send_control_msg 5 62261 _000798_hash NULL
-+_000799_hash send_video_command 4 6073 _000799_hash &_000770_hash
-+_000800_hash __seq_open_private 3 40715 _000800_hash NULL
-+_000801_hash serverworks_create_gatt_pages 1 46582 _000801_hash NULL
-+_000802_hash set_aoe_iflist 2 42737 _000802_hash NULL
-+_000803_hash setkey 3 14987 _000803_hash NULL
-+_000804_hash sg_build_sgat 3 60179 _000804_hash &_000199_hash
-+_000805_hash sg_proc_write_adio 3 45704 _000805_hash NULL
-+_000806_hash sg_proc_write_dressz 3 46316 _000806_hash NULL
-+_000807_hash sg_read_oxfer 3 51724 _000807_hash NULL
-+_000808_hash simple_transaction_get 3 50633 _000808_hash NULL
-+_000809_hash sisusb_send_bulk_msg 3 17864 _000809_hash NULL
-+_000810_hash skb_add_data 3 48363 _000810_hash NULL
-+_000811_hash skb_copy_to_page 6 8071 _000811_hash NULL
-+_000812_hash sl_change_mtu 2 7396 _000812_hash NULL
-+_000813_hash slhc_init 1-2 58135 _000813_hash &_000627_hash
-+_000815_hash sm501_create_subdev 3-4 48668 _002601_hash NULL nohasharray
-+_000817_hash smb_alloc_request 2 46798 _000817_hash NULL
-+_000818_hash smk_write_ambient 3 45691 _000818_hash NULL
-+_000819_hash smk_write_cipso 3 17989 _000819_hash NULL
-+_000820_hash smk_write_direct 3 46363 _000820_hash NULL
-+_000821_hash smk_write_doi 3 49621 _000821_hash NULL
-+_000822_hash smk_write_load 3 26829 _000822_hash NULL
-+_000823_hash smk_write_logging 3 2618 _000823_hash NULL
-+_000824_hash smk_write_netlbladdr 3 42525 _000824_hash NULL
-+_000825_hash smk_write_onlycap 3 14400 _000825_hash NULL
-+_000826_hash snd_ac97_pcm_assign 2 30218 _000826_hash NULL
-+_000827_hash snd_card_create 4 64418 _001084_hash NULL nohasharray
-+_000828_hash snd_emu10k1_synth_copy_from_user 3-5 9061 _000828_hash NULL
-+_000830_hash snd_emux_create_port 3 42533 _000830_hash NULL
-+_000831_hash snd_gus_dram_poke 4 18525 _000831_hash NULL
-+_000832_hash snd_hdspm_playback_copy 5 52405 _000832_hash NULL
-+_000833_hash snd_hdsp_playback_copy 5 20676 _000833_hash NULL
-+_000834_hash snd_info_entry_write 3 63474 _000834_hash NULL
-+_000835_hash snd_korg1212_copy_from 6 36169 _000835_hash NULL
-+_000836_hash snd_mem_proc_write 3 9786 _000836_hash NULL
-+_000837_hash snd_midi_channel_alloc_set 1 28153 _000837_hash NULL
-+_000838_hash snd_pcm_oss_write1 3 10872 _000838_hash NULL
-+_000839_hash snd_pcm_oss_write2 3 27332 _000839_hash NULL
-+_000840_hash snd_pcm_plugin_build 5 25505 _000840_hash NULL
-+_000841_hash snd_rawmidi_kernel_write1 4 56847 _000841_hash NULL
-+_000842_hash snd_rme9652_playback_copy 5 20970 _000842_hash NULL
-+_000843_hash snd_seq_device_new 4 31753 _000843_hash NULL
-+_000844_hash snd_seq_oss_readq_new 2 14283 _000844_hash NULL
-+_000845_hash snd_vx_create 4 40948 _000845_hash NULL
-+_000846_hash sock_bindtodevice 3 50942 _000846_hash NULL
-+_000847_hash spi_alloc_master 2 45223 _000847_hash NULL
-+_000848_hash spidev_message 3 5518 _000848_hash NULL
-+_000849_hash spidev_write 3 44510 _000849_hash NULL
-+_000850_hash squashfs_cache_init 2 41656 _000850_hash NULL
-+_000851_hash squashfs_read_table 4 29235 _002237_hash NULL nohasharray
-+_000852_hash srp_alloc_iu 2 44227 _000852_hash NULL
-+_000853_hash srp_iu_pool_alloc 2 17920 _000853_hash NULL
-+_000854_hash srp_ring_alloc 2 26760 _000854_hash NULL
-+_000856_hash start_isoc_chain 2 565 _000856_hash NULL
-+_000857_hash stk_prepare_sio_buffers 2 57168 _000857_hash NULL
-+_000858_hash svc_pool_map_alloc_arrays 2 47181 _000858_hash NULL
-+_000859_hash svc_setsockopt 5 36876 _000859_hash NULL
-+_000860_hash symtab_init 2 61050 _000860_hash NULL
-+_000861_hash sysctl_data 5 55157 _000861_hash NULL
-+_000862_hash sysctl_ipc_data 5 3903 _000862_hash NULL
-+_000863_hash sysctl_string 5 13937 _000863_hash NULL
-+_000864_hash sys_flistxattr 3 41407 _000864_hash NULL
-+_000865_hash sys_fsetxattr 4 49736 _000865_hash NULL
-+_000866_hash sys_init_module 2 36047 _000866_hash NULL
-+_000867_hash sys_ipc 3 4889 _000867_hash NULL
-+_000868_hash sys_keyctl 4 33708 _001107_hash NULL nohasharray
-+_000869_hash sys_listxattr 3 27833 _000869_hash NULL
-+_000870_hash sys_llistxattr 3 4532 _000870_hash NULL
-+_000871_hash sys_lsetxattr 4 61177 _000871_hash NULL
-+_000872_hash sys_mq_timedsend 3 57661 _000872_hash NULL
-+_000873_hash sys_semop 3 39457 _000873_hash NULL
-+_000874_hash sys_setdomainname 2 4373 _000874_hash NULL
-+_000875_hash sys_sethostname 2 42962 _000875_hash NULL
-+_000876_hash sys_setxattr 4 37880 _000876_hash NULL
-+_000877_hash t3_init_l2t 1 8261 _000877_hash NULL
-+_000878_hash tcf_hash_create 4 54360 _000878_hash NULL
-+_000879_hash tifm_alloc_adapter 1 10903 _000879_hash NULL
-+_000880_hash tipc_subseq_alloc 1 5957 _000880_hash NULL
-+_000881_hash tomoyo_alloc 1 37728 _000881_hash NULL
-+_000882_hash tower_write 3 8580 _000882_hash NULL
-+_000883_hash tpm_write 3 50798 _000883_hash NULL
-+_000884_hash ttm_bo_fbdev_io 4 9805 _000884_hash NULL
-+_000885_hash ttm_bo_io 5 47000 _000885_hash NULL
-+_000886_hash tty_write 3 5494 _000886_hash NULL
-+_000887_hash ubifs_setxattr 4 59650 _001042_hash NULL nohasharray
-+_000888_hash ubi_io_write 5 15870 _000888_hash NULL
-+_000889_hash ubi_more_leb_change_data 4 63534 _000889_hash NULL
-+_000890_hash ubi_more_update_data 4 39189 _000890_hash NULL
-+_000891_hash udf_sb_alloc_partition_maps 2 62313 _000891_hash NULL
-+_000892_hash uio_write 3 43202 _000892_hash NULL
-+_000893_hash usb_buffer_alloc 2 36276 _000893_hash NULL
-+_000894_hash usblp_write 3 23178 _000894_hash NULL
-+_000895_hash usbtmc_write 3 64340 _000895_hash NULL
-+_000896_hash usbvideo_register 2 59982 _000896_hash NULL
-+_000897_hash vc_resize 2-3 3585 _000897_hash NULL
-+_000899_hash vcs_write 3 3910 _000899_hash NULL
-+_000900_hash venus_create 4 20555 _000900_hash NULL
-+_000901_hash venus_link 5 32165 _000901_hash NULL
-+_000902_hash venus_lookup 4 8121 _000902_hash NULL
-+_000903_hash venus_mkdir 4 8967 _000903_hash NULL
-+_000904_hash venus_remove 4 59781 _000904_hash NULL
-+_000905_hash venus_rename 4-5 17707 _000905_hash NULL
-+_000907_hash venus_rmdir 4 45564 _000907_hash NULL
-+_000908_hash venus_symlink 4-6 23570 _000908_hash NULL
-+_000910_hash vhci_get_user 3 45039 _000910_hash NULL
-+_000911_hash viafb_dfph_proc_write 3 49288 _000911_hash NULL
-+_000912_hash viafb_dfpl_proc_write 3 627 _000912_hash NULL
-+_000913_hash viafb_dvp0_proc_write 3 23023 _000913_hash NULL
-+_000914_hash viafb_dvp1_proc_write 3 48864 _000914_hash NULL
-+_000915_hash viafb_vt1636_proc_write 3 16018 _000915_hash NULL
-+_000916_hash __videobuf_alloc 1 11253 _000916_hash NULL
-+_000917_hash vmalloc_to_sg 2 58354 _000917_hash NULL
-+_000918_hash vol_cdev_direct_write 3 20751 _000918_hash NULL
-+_000919_hash vring_add_buf 3-4 36348 _000919_hash NULL
-+_000921_hash vxge_device_register 4 7752 _000921_hash NULL
-+_000922_hash __vxge_hw_channel_allocate 3 55462 _000922_hash NULL
-+_000923_hash wa_nep_queue 2 8858 _000923_hash NULL
-+_000924_hash __wa_xfer_setup_segs 2 56725 _000924_hash NULL
-+_000925_hash wiphy_new 2 2482 _000925_hash NULL
-+_000926_hash wpan_phy_alloc 1 48056 _000926_hash NULL
-+_000927_hash write_essid 3 42840 _000927_hash NULL
-+_000928_hash write_flush 3 50803 _000928_hash NULL
-+_000929_hash write_int 3 38453 _000929_hash NULL
-+_000930_hash write_mem 3 17114 _000930_hash NULL
-+_000931_hash write_rio 3 54837 _000931_hash NULL
-+_000932_hash wusb_ccm_mac 7 32199 _000932_hash NULL
-+_000933_hash _xfs_buf_get_pages 2 59472 _000933_hash NULL
-+_000934_hash xfs_da_buf_make 1 25303 _000934_hash NULL
-+_000935_hash xfs_dir_cilookup_result 3 64288 _002349_hash NULL nohasharray
-+_000936_hash xfs_handle_to_dentry 3 12135 _000936_hash NULL
-+_000937_hash xfs_iext_add_indirect_multi 3 32400 _000937_hash NULL
-+_000938_hash xfs_iext_inline_to_direct 2 12384 _000938_hash NULL
-+_000939_hash xfs_iroot_realloc 2 46826 _000939_hash NULL
-+_000940_hash xlog_recover_add_to_trans 3 48614 _000940_hash NULL
-+_000941_hash zd_ioread16v_locked 4 7082 _000941_hash NULL
-+_000942_hash zd_ioread32v 4 26545 _000942_hash NULL
-+_000943_hash zd_rfwrite_locked 3 17381 _000943_hash NULL
-+_000944_hash acpi_ds_build_internal_package_obj 3 58271 _000944_hash NULL
-+_000945_hash acpi_system_read_event 3 55362 _000945_hash NULL
-+_000946_hash acpi_ut_create_buffer_object 1 42030 _000946_hash NULL
-+_000947_hash acpi_ut_create_package_object 1 17594 _000947_hash NULL
-+_000948_hash acpi_ut_create_string_object 1 15360 _000948_hash NULL
-+_000949_hash adu_read 3 24177 _000949_hash NULL
-+_000950_hash agp_generic_alloc_user 1 9470 _000950_hash NULL
-+_000951_hash alloc_agpphysmem_i8xx 1 39427 _000951_hash NULL
-+_000952_hash alloc_candev 1 22356 _000952_hash NULL
-+_000953_hash ____alloc_ei_netdev 1 51475 _000953_hash NULL
-+_000954_hash alloc_etherdev_mq 1-2 56698 _000954_hash NULL
-+_000956_hash alloc_fcdev 1 18780 _000956_hash NULL
-+_000957_hash alloc_fddidev 1 15382 _000957_hash NULL
-+_000958_hash alloc_hippi_dev 1 51320 _000958_hash NULL
-+_000959_hash alloc_irdadev 1 19140 _000959_hash NULL
-+_000960_hash alloc_ltalkdev 1 38071 _000960_hash NULL
-+_000961_hash alloc_orinocodev 1 21371 _000961_hash NULL
-+_000963_hash alloc_trdev 1 16399 _000963_hash NULL
-+_000964_hash aoechr_write 3 62883 _000964_hash NULL
-+_000965_hash async_setkey 3 35521 _000965_hash NULL
-+_000966_hash ata_host_alloc_pinfo 3 17325 _000966_hash NULL
-+_000967_hash atalk_sendmsg 4 21677 _000967_hash NULL
-+_000968_hash ath_rx_init 2 43564 _000968_hash NULL
-+_000969_hash ath_tx_init 2 60515 _000969_hash NULL
-+_000970_hash atm_get_addr 3 31221 _000970_hash NULL
-+_000971_hash ax25_sendmsg 4 62770 _000971_hash NULL
-+_000972_hash bio_map_kern 3 64751 _000972_hash NULL
-+_000973_hash bits_to_user 3-2 47733 _000973_hash NULL
-+_000974_hash __blk_queue_init_tags 2 9778 _000974_hash NULL
-+_000975_hash blk_queue_resize_tags 2 28670 _000975_hash NULL
-+_000976_hash blk_rq_map_user_iov 5 16772 _000976_hash NULL
-+_000977_hash bm_entry_write 3 28338 _000977_hash NULL
-+_000978_hash bm_init 2 13529 _000978_hash NULL
-+_000979_hash bm_status_write 3 12964 _000979_hash NULL
-+_000980_hash cache_downcall 3 13666 _000980_hash NULL
-+_000981_hash cache_read 3 24790 _000981_hash NULL
-+_000982_hash cache_slow_downcall 2 8570 _000982_hash NULL
-+_000983_hash cafe_deliver_buffer 3 1755 _000983_hash NULL
-+_000984_hash cifs_user_write 3 29424 _000984_hash NULL
-+_000985_hash cifs_write 3 9687 _000985_hash NULL
-+_000986_hash coda_psdev_read 3 35029 _000986_hash NULL
-+_000987_hash configfs_write_file 3 61621 _000987_hash NULL
-+_000988_hash construct_key_and_link 4 8321 _000988_hash NULL
-+_000989_hash copy_entries_to_user 1 52367 _000989_hash NULL
-+_000990_hash copy_from_buf 4-2 27308 _000990_hash NULL
-+_000991_hash copy_oldmem_page 3-1 26164 _000991_hash NULL
-+_000992_hash copy_to_user_fromio 3 57432 _000992_hash NULL
-+_000993_hash create_rsb 3 42744 _000993_hash NULL
-+_000994_hash cryptd_hash_setkey 3 42781 _000994_hash NULL
-+_000995_hash crypto_authenc_setkey 3 80 _002298_hash NULL nohasharray
-+_000996_hash cx18_copy_buf_to_user 4 50990 _000996_hash NULL
-+_000997_hash cxio_init_resource_fifo 3 25429 _000997_hash NULL
-+_000998_hash cxio_init_resource_fifo_random 3 43814 _000998_hash NULL
-+_000999_hash dabusb_read 3 58873 _000999_hash NULL
-+_001000_hash dataflash_read_fact_otp 3-2 33204 _001000_hash NULL
-+_001001_hash dataflash_read_user_otp 3-2 14536 _001001_hash &_000555_hash
-+_001002_hash dccp_feat_register_sp 5 17914 _001002_hash NULL
-+_001003_hash dccp_sendmsg 4 56058 _001003_hash NULL
-+_001004_hash depth_write 3 3021 _001004_hash NULL
-+_001005_hash dev_irnet_write 3 11398 _001005_hash NULL
-+_001006_hash dev_read 3 56369 _001006_hash NULL
-+_001007_hash dev_write 3 7708 _001007_hash NULL
-+_001008_hash dgram_sendmsg 4 45679 _001008_hash NULL
-+_001009_hash dlm_dir_lookup 4 56662 _001009_hash NULL
-+_001010_hash dlm_new_lockspace 2 16688 _001010_hash NULL
-+_001011_hash dn_sendmsg 4 38390 _001011_hash NULL
-+_001012_hash do_proc_readlink 3 14096 _001012_hash NULL
-+_001013_hash do_raw_setsockopt 5 55215 _001013_hash NULL
-+_001014_hash do_readlink 2 43518 _001014_hash NULL
-+_001015_hash do_sigpending 2 9766 _001015_hash NULL
-+_001016_hash do_sysctl_strategy 6 11541 _001016_hash NULL
-+_001017_hash drm_mode_create_tv_properties 2 23122 _001017_hash NULL
-+_001018_hash dv1394_read 3 21920 _001018_hash NULL
-+_001019_hash dvb_audio_write 3 51275 _001019_hash NULL
-+_001020_hash dvb_ringbuffer_pkt_read_user 3-5-2 4303 _001020_hash NULL
-+_001022_hash dvb_ringbuffer_read_user 3 56702 _001022_hash NULL
-+_001023_hash dvb_video_write 3 754 _001023_hash NULL
-+_001024_hash ecryptfs_filldir 3 6622 _001024_hash NULL
-+_001025_hash ecryptfs_readlink 3 40775 _001025_hash NULL
-+_001026_hash ecryptfs_send_message 2 18322 _001026_hash NULL
-+_001027_hash enable_write 3 30456 _001027_hash NULL
-+_001028_hash et61x251_read 3 25420 _001028_hash NULL
-+_001029_hash fat_ioctl_filldir 3 36621 _001029_hash NULL
-+_001030_hash fb_sys_read 3 13778 _001030_hash NULL
-+_001031_hash fd_copyout 3 59323 _001031_hash NULL
-+_001032_hash filldir 3 55137 _001032_hash NULL
-+_001033_hash filldir64 3 46469 _001033_hash NULL
-+_001034_hash from_buffer 3 18625 _001034_hash NULL
-+_001035_hash fsm_init 2 16134 _001035_hash NULL
-+_001036_hash gfs2_readlink 3 10958 _001036_hash NULL
-+_001037_hash handle_received_packet 3 22457 _001037_hash NULL
-+_001038_hash hci_sock_sendmsg 4 37420 _001038_hash NULL
-+_001039_hash hdlcdrv_register 2 6792 _001039_hash NULL
-+_001040_hash hdpvr_read 3 9273 _001040_hash NULL
-+_001041_hash hid_input_report 4 32458 _001041_hash NULL
-+_001042_hash hidraw_read 3 59650 _001042_hash &_000887_hash
-+_001043_hash HiSax_readstatus 2 15752 _001043_hash NULL
-+_001045_hash __hwahc_op_set_gtk 4 42038 _001045_hash NULL
-+_001046_hash __hwahc_op_set_ptk 5 36510 _001046_hash NULL
-+_001047_hash ib_copy_to_udata 3 27525 _001047_hash NULL
-+_001048_hash idetape_chrdev_read 3 2097 _001048_hash NULL
-+_001049_hash ieee80211_alloc_hw 1 43829 _001049_hash NULL
-+_001050_hash ieee80211_bss_info_update 4 13991 _001050_hash NULL
-+_001051_hash if_writecmd 2 815 _001051_hash NULL
-+_001052_hash ilo_read 3 32531 _001052_hash NULL
-+_001054_hash interfaces 2 38859 _001054_hash NULL
-+_001055_hash iowarrior_read 3 53483 _001055_hash NULL
-+_001056_hash ip_generic_getfrag 3-4 12187 _001056_hash NULL
-+_001058_hash ipv6_getsockopt_sticky 5 56711 _001058_hash NULL
-+_001059_hash ipv6_renew_options 5 28867 _001059_hash NULL
-+_001060_hash ipwireless_send_packet 4 8328 _001060_hash NULL
-+_001061_hash ipxrtr_route_packet 4 54036 _001061_hash NULL
-+_001062_hash irda_sendmsg 4 4388 _001062_hash NULL
-+_001063_hash irda_sendmsg_dgram 4 38563 _001063_hash NULL
-+_001064_hash irda_sendmsg_ultra 4 42047 _001064_hash NULL
-+_001065_hash iscsi_conn_setup 2 35159 _001065_hash NULL
-+_001066_hash iscsi_create_session 3 51647 _001066_hash NULL
-+_001067_hash iscsi_host_alloc 2 36671 _001067_hash NULL
-+_001068_hash iscsi_session_setup 4-5 196 _001068_hash NULL
-+_001070_hash isdn_ppp_read 4 50356 _001070_hash NULL
-+_001071_hash isdn_write 3 45863 _001071_hash NULL
-+_001072_hash iso_alloc_urb 4 57061 _001072_hash NULL
-+_001073_hash ivtv_copy_buf_to_user 4 6159 _001073_hash NULL
-+_001074_hash ivtv_v4l2_write 3 39226 _001074_hash NULL
-+_001075_hash iwm_rx_handle 3 24899 _001075_hash NULL
-+_001076_hash iwm_wdev_alloc 1 38415 _001076_hash NULL
-+_001077_hash jffs2_do_create 6 25404 _001077_hash NULL
-+_001078_hash jffs2_do_link 6 42048 _001078_hash NULL
-+_001079_hash jffs2_do_unlink 4 62020 _001079_hash NULL
-+_001080_hash jffs2_security_setxattr 4 20253 _001080_hash NULL
-+_001081_hash jffs2_trusted_setxattr 4 65310 _001081_hash NULL
-+_001082_hash jffs2_user_setxattr 4 39488 _001082_hash NULL
-+_001083_hash keyctl_describe_key 3 36853 _001083_hash NULL
-+_001084_hash keyctl_get_security 3 64418 _001084_hash &_000827_hash
-+_001085_hash keyring_read 3 13438 _001085_hash NULL
-+_001086_hash kimage_crash_alloc 3 3233 _001086_hash NULL
-+_001087_hash kimage_normal_alloc 3 31140 _001087_hash NULL
-+_001088_hash kmem_zalloc_greedy 2-3 45507 _001088_hash NULL
-+_001090_hash kmp_init 2 41373 _001090_hash NULL
-+_001091_hash kvm_write_guest_page 5 63555 _001091_hash NULL
-+_001092_hash l2cap_skbuff_fromiovec 3-4 35003 _001092_hash NULL
-+_001094_hash __lgwrite 4 57669 _001094_hash NULL
-+_001095_hash libfc_host_alloc 2 7917 _001095_hash NULL
-+_001096_hash llc_ui_sendmsg 4 24987 _001096_hash NULL
-+_001097_hash mdc800_device_read 3 22896 _001097_hash NULL
-+_001098_hash memcpy_toiovec 3 54166 _001098_hash NULL
-+_001099_hash memcpy_toiovecend 3-4 19736 _001099_hash NULL
-+_001101_hash mgt_set_varlen 4 60916 _001101_hash NULL
-+_001102_hash mISDN_sock_sendmsg 4 41035 _001102_hash NULL
-+_001103_hash mon_bin_get_event 4 52863 _001103_hash NULL
-+_001104_hash mousedev_read 3 47123 _001104_hash NULL
-+_001105_hash move_addr_to_user 2 2868 _001105_hash NULL
-+_001106_hash neigh_hash_grow 2 1324 _001106_hash NULL
-+_001107_hash netlink_sendmsg 4 33708 _001107_hash &_000868_hash
-+_001108_hash nfsctl_transaction_write 3 64800 _001108_hash NULL
-+_001109_hash nfs_flush_one 3 23329 _001109_hash NULL
-+_001110_hash nfs_pagein_one 3 58502 _001110_hash NULL
-+_001111_hash nr_sendmsg 4 53656 _001111_hash NULL
-+_001112_hash nsm_get_handle 4 52089 _001112_hash NULL
-+_001113_hash ocfs2_control_message 3 19564 _001113_hash NULL
-+_001114_hash orinoco_add_extscan_result 3 18207 _001114_hash NULL
-+_001115_hash OSDSetBlock 2-4 38986 _001115_hash NULL
-+_001117_hash osst_write 3 31581 _001117_hash NULL
-+_001119_hash packet_sendmsg_spkt 4 28885 _001119_hash NULL
-+_001120_hash packet_snd 3 13634 _001120_hash NULL
-+_001121_hash pcbit_stat 2 27364 _001121_hash NULL
-+_001122_hash pep_sendmsg 4 62524 _001122_hash NULL
-+_001123_hash pfkey_sendmsg 4 47394 _001123_hash NULL
-+_001124_hash pg_read 3 17276 _001124_hash NULL
-+_001125_hash pkt_alloc_packet_data 1 37928 _001125_hash NULL
-+_001126_hash play_iframe 3 8219 _001126_hash NULL
-+_001127_hash pmcraid_build_passthrough_ioadls 2 62034 _001127_hash NULL
-+_001128_hash pms_capture 4 27142 _001128_hash NULL
-+_001129_hash pn_sendmsg 4 12640 _001129_hash NULL
-+_001130_hash pppoe_sendmsg 4 48039 _001130_hash NULL
-+_001131_hash pppol2tp_sendmsg 4 56420 _001131_hash NULL
-+_001132_hash printer_read 3 54851 _001132_hash NULL
-+_001133_hash __proc_file_read 3 54978 _001133_hash NULL
-+_001134_hash proc_write_brn 3 3084 _001134_hash NULL
-+_001135_hash proc_write_disp 3 16184 _001135_hash NULL
-+_001136_hash proc_write_lcd 3 30077 _001136_hash NULL
-+_001137_hash proc_write_ledd 3 48644 _001137_hash NULL
-+_001138_hash pt_read 3 49136 _001138_hash NULL
-+_001139_hash put_cmsg 4 36589 _001139_hash NULL
-+_001140_hash pvr2_ioread_read 3 10720 _001186_hash NULL nohasharray
-+_001141_hash pwc_video_read 3 51735 _001141_hash NULL
-+_001142_hash qcam_read 3 13977 _001142_hash NULL
-+_001143_hash raw_send_hdrinc 3 7937 _001143_hash NULL
-+_001144_hash raw_sendmsg 4 23078 _001144_hash &_000026_hash
-+_001145_hash rawv6_send_hdrinc 3 55480 _001145_hash NULL
-+_001146_hash rds_ib_inc_copy_to_user 3 55007 _001146_hash NULL
-+_001147_hash rds_iw_inc_copy_to_user 3 29214 _001147_hash NULL
-+_001148_hash rds_message_copy_from_user 2 41682 _001148_hash NULL
-+_001149_hash rds_message_inc_copy_to_user 3 26540 _001149_hash NULL
-+_001150_hash read_flush 3 43851 _001150_hash NULL
-+_001151_hash read_mem 3 31942 _001151_hash &_000183_hash
-+_001152_hash read_profile 3 27859 _001152_hash NULL
-+_001153_hash read_vmcore 3 26501 _001153_hash NULL
-+_001154_hash recv_msg 4 48709 _001154_hash NULL
-+_001155_hash recv_stream 4 30138 _001155_hash NULL
-+_001156_hash redirected_tty_write 3 65297 _001156_hash NULL
-+_001157_hash __register_chrdev 2-3 54223 _001157_hash NULL
-+_001159_hash request_key_auth_read 3 24109 _001159_hash NULL
-+_001160_hash rfcomm_sock_sendmsg 4 37661 _001160_hash NULL
-+_001161_hash rfkill_fop_read 3 54711 _001161_hash NULL
-+_001162_hash rose_sendmsg 4 20249 _001162_hash NULL
-+_001163_hash rxrpc_send_data 5 21553 _001163_hash NULL
-+_001165_hash sco_send_frame 3 41815 _001165_hash NULL
-+_001166_hash scsi_register 2 49094 _001166_hash NULL
-+_001167_hash scsi_tgt_kspace_exec 8 9522 _001167_hash NULL
-+_001168_hash sctp_getsockopt_maxburst 2 42941 _001168_hash NULL
-+_001169_hash sctp_getsockopt_maxseg 2 10737 _001169_hash NULL
-+_001170_hash sctp_user_addto_chunk 2-3 62047 _001170_hash NULL
-+_001172_hash sdhci_alloc_host 2 7509 _001172_hash NULL
-+_001173_hash se401_read 3 58074 _001173_hash NULL
-+_001174_hash selinux_inode_post_setxattr 4 26037 _001174_hash NULL
-+_001175_hash selinux_inode_setsecurity 4 18148 _001175_hash NULL
-+_001176_hash selinux_inode_setxattr 4 10708 _001176_hash NULL
-+_001177_hash selinux_secctx_to_secid 2 63744 _001177_hash NULL
-+_001178_hash selinux_setprocattr 4 55611 _001178_hash NULL
-+_001179_hash selinux_transaction_write 3 59038 _001179_hash NULL
-+_001180_hash sel_write_context 3 25726 _001876_hash NULL nohasharray
-+_001181_hash seq_copy_in_user 3 18543 _001181_hash NULL
-+_001182_hash seq_open_net 4 8968 _001274_hash NULL nohasharray
-+_001183_hash seq_open_private 3 61589 _001183_hash NULL
-+_001184_hash set_arg 3 42824 _001184_hash NULL
-+_001185_hash sg_read 3 25799 _001185_hash NULL
-+_001186_hash shash_async_setkey 3 10720 _001186_hash &_001140_hash
-+_001187_hash shash_compat_setkey 3 12267 _001187_hash NULL
-+_001188_hash simple_alloc_urb 3 60420 _001188_hash NULL
-+_001189_hash simple_read_from_buffer 2-5 55957 _001189_hash NULL
-+_001191_hash sisusb_send_bridge_packet 2 11649 _001191_hash NULL
-+_001192_hash sisusb_send_packet 2 20891 _001192_hash NULL
-+_001193_hash skb_copy_datagram_from_iovec 2-5-4 52014 _001193_hash NULL
-+_001196_hash sn9c102_read 3 29305 _001196_hash NULL
-+_001197_hash snd_es1938_capture_copy 5 25930 _001197_hash NULL
-+_001198_hash snd_gus_dram_peek 4 9062 _001198_hash NULL
-+_001199_hash snd_gus_dram_write 4 38784 _001199_hash NULL
-+_001200_hash snd_hdsp_capture_copy 5 4011 _001200_hash NULL
-+_001201_hash snd_hdspm_capture_copy 5 48113 _001201_hash NULL
-+_001202_hash snd_korg1212_copy_to 6 92 _001202_hash NULL
-+_001203_hash snd_pcm_oss_read1 3 63771 _001203_hash NULL
-+_001204_hash snd_pcm_oss_sync1 2 45298 _001204_hash NULL
-+_001205_hash snd_pcm_oss_write 3 38108 _001205_hash NULL
-+_001206_hash snd_rawmidi_kernel_read1 4 36740 _001206_hash NULL
-+_001207_hash snd_rawmidi_kernel_write 3 25106 _001207_hash NULL
-+_001208_hash snd_rawmidi_write 3 28008 _001208_hash NULL
-+_001209_hash snd_rme32_playback_copy 5 43732 _001209_hash NULL
-+_001210_hash snd_rme9652_capture_copy 5 10287 _001210_hash NULL
-+_001211_hash snd_rme96_playback_copy 5 13111 _001211_hash NULL
-+_001212_hash snmp_mib_init 2 10526 _001212_hash NULL
-+_001213_hash sock_setsockopt 5 50088 _001213_hash NULL
-+_001214_hash sound_write 3 5102 _001214_hash NULL
-+_001215_hash srp_target_alloc 3 37288 _001215_hash NULL
-+_001216_hash stk_allocate_buffers 2 16291 _001216_hash NULL
-+_001217_hash store_cpufv 4 215 _001217_hash NULL
-+_001218_hash store_cpufv_disabled 4 43809 _001218_hash NULL
-+_001219_hash store_disp 4 52952 _001219_hash NULL
-+_001220_hash store_ifalias 4 35088 _001220_hash NULL
-+_001221_hash store_ledd 4 43312 _001221_hash NULL
-+_001222_hash store_lslvl 4 15059 _001222_hash NULL
-+_001223_hash store_lssw 4 43035 _001678_hash NULL nohasharray
-+_001224_hash store_msg 3 56417 _001224_hash NULL
-+_001225_hash store_status 2 7088 _001225_hash NULL
-+_001226_hash store_sys_acpi 3 14503 _001226_hash NULL
-+_001227_hash store_sys_hwmon 3 26225 _001227_hash NULL
-+_001228_hash strategy_allowed_congestion_control 5 63497 _001228_hash NULL
-+_001229_hash str_to_user 2 11411 _001229_hash NULL
-+_001230_hash stv680_read 3 31473 _001230_hash NULL
-+_001231_hash st_write 3 16874 _001231_hash NULL
-+_001232_hash subbuf_read_actor 3 2071 _001232_hash NULL
-+_001233_hash sys_bind 3 10799 _001233_hash NULL
-+_001234_hash sys_connect 3 15291 _002287_hash NULL nohasharray
-+_001235_hash sysctl_ipc_registered_data 5 36266 _001235_hash NULL
-+_001236_hash sysctl_tcp_congestion_control 5 27564 _001236_hash NULL
-+_001237_hash sysctl_uts_string 5 17797 _001237_hash NULL
-+_001238_hash sys_fgetxattr 4 25166 _001238_hash NULL
-+_001239_hash sysfs_write_file 3 57116 _001239_hash NULL
-+_001240_hash sys_gethostname 2 49698 _001240_hash NULL
-+_001241_hash sys_getxattr 4 37418 _001241_hash NULL
-+_001242_hash sys_lgetxattr 4 45531 _001242_hash NULL
-+_001243_hash sys_msgsnd 3 44537 _001243_hash NULL
-+_001244_hash sys_sched_getaffinity 2 60033 _001244_hash NULL
-+_001245_hash sys_sched_setaffinity 2 32046 _001245_hash NULL
-+_001246_hash sys_sendto 6 20809 _001246_hash NULL
-+_001247_hash timeout_write 3 50991 _001247_hash NULL
-+_001248_hash tomoyo_read_control 3 21682 _001248_hash NULL
-+_001249_hash tpm_read 3 50344 _001249_hash NULL
-+_001250_hash ubi_io_write_data 5 40305 _001250_hash NULL
-+_001251_hash udplite_getfrag 3-4 14479 _001251_hash NULL
-+_001253_hash uio_read 3 49300 _001253_hash NULL
-+_001254_hash ulong_write_file 3 26485 _001254_hash NULL
-+_001255_hash unix_dgram_sendmsg 4 45699 _001255_hash NULL
-+_001256_hash unix_stream_sendmsg 4 61455 _001256_hash NULL
-+_001257_hash usb_allocate_stream_buffers 3 8964 _001257_hash NULL
-+_001258_hash usbdev_read 3 45114 _001258_hash NULL
-+_001259_hash usblp_read 3 57342 _002236_hash NULL nohasharray
-+_001260_hash usbtmc_read 3 32377 _001260_hash NULL
-+_001261_hash usbvideo_v4l_read 3 48274 _001261_hash NULL
-+_001262_hash usbvision_v4l2_read 3 34386 _001262_hash NULL
-+_001263_hash user_read 3 51881 _001263_hash NULL
-+_001264_hash uvc_alloc_urb_buffers 3-2 63922 _001264_hash NULL
-+_001265_hash v4l_stk_read 3 39672 _001265_hash NULL
-+_001266_hash vcs_read 3 8017 _001266_hash NULL
-+_001267_hash vfs_readlink 3 54368 _001267_hash NULL
-+_001268_hash vfs_readv 3 38011 _001268_hash NULL
-+_001269_hash vfs_writev 3 25278 _001269_hash NULL
-+_001270_hash vga_arb_read 3 4886 _001270_hash NULL
-+_001271_hash vhci_put_user 4 12604 _001271_hash NULL
-+_001272_hash vicam_read 3 2904 _001272_hash NULL
-+_001273_hash __videobuf_copy_to_user 3 1454 _001273_hash NULL
-+_001274_hash vol_cdev_read 3 8968 _001274_hash &_001182_hash
-+_001275_hash vol_cdev_write 3 40915 _001275_hash NULL
-+_001276_hash w9966_v4l_read 3 31148 _001276_hash NULL
-+_001277_hash w9968cf_read 3 53582 _001277_hash &_000314_hash
-+_001278_hash wdm_read 3 6549 _001278_hash NULL
-+_001279_hash write_led 2 23517 _001279_hash NULL
-+_001280_hash wusb_prf 7 54261 _001280_hash &_000454_hash
-+_001281_hash x25_sendmsg 4 12487 _001281_hash NULL
-+_001282_hash xfs_buf_get_noaddr 1 52736 _001282_hash NULL
-+_001283_hash xfs_efd_init 3 5463 _001283_hash NULL
-+_001284_hash xfs_efi_init 2 5476 _001284_hash NULL
-+_001285_hash xfs_iext_realloc_direct 2 20521 _001285_hash NULL
-+_001286_hash xfs_iext_realloc_indirect 2 59211 _001286_hash NULL
-+_001287_hash xfs_inumbers_fmt 3 12817 _001287_hash NULL
-+_001288_hash xlog_recover_add_to_cont_trans 3 58583 _001288_hash NULL
-+_001289_hash zc0301_read 3 53524 _001289_hash NULL
-+_001290_hash zd_rfwritev_locked 4 35812 _001290_hash NULL
-+_001291_hash acpi_system_read_dsdt 3 19261 _001291_hash NULL
-+_001292_hash acpi_system_read_fadt 3 3876 _001292_hash NULL
-+_001293_hash aes_decrypt_fail_read 3 54815 _001293_hash NULL
-+_001294_hash aes_decrypt_interrupt_read 3 19910 _001294_hash NULL
-+_001295_hash aes_decrypt_packets_read 3 10155 _001295_hash NULL
-+_001296_hash aes_encrypt_fail_read 3 32562 _001296_hash NULL
-+_001297_hash aes_encrypt_interrupt_read 3 39919 _001297_hash NULL
-+_001298_hash aes_encrypt_packets_read 3 48666 _001298_hash NULL
-+_001299_hash agp_allocate_memory 2 58761 _001299_hash NULL
-+_001300_hash __alloc_ei_netdev 1 29338 _001300_hash NULL
-+_001301_hash __alloc_eip_netdev 1 51549 _001301_hash NULL
-+_001302_hash alloc_ieee80211 1 20063 _001302_hash NULL
-+_001303_hash alloc_sja1000dev 1 17868 _001303_hash NULL
-+_001304_hash ar9170_alloc 1 4355 _001304_hash NULL
-+_001305_hash b43_debugfs_read 3 24425 _001305_hash NULL
-+_001306_hash b43legacy_debugfs_read 3 2473 _001306_hash NULL
-+_001307_hash bcm_recvmsg 4 43992 _001307_hash NULL
-+_001308_hash blk_init_tags 1 30592 _001308_hash NULL
-+_001309_hash blk_queue_init_tags 2 44355 _001309_hash NULL
-+_001310_hash blk_rq_map_kern 4 47004 _001310_hash NULL
-+_001311_hash bm_entry_read 3 10976 _001311_hash NULL
-+_001312_hash bm_status_read 3 19583 _001312_hash NULL
-+_001313_hash btmrvl_curpsmode_read 3 46939 _001313_hash NULL
-+_001314_hash btmrvl_gpiogap_read 3 4718 _001314_hash NULL
-+_001315_hash btmrvl_hscfgcmd_read 3 56303 _001315_hash NULL
-+_001316_hash btmrvl_hscmd_read 3 1614 _001316_hash NULL
-+_001317_hash btmrvl_hsmode_read 3 1647 _001317_hash NULL
-+_001318_hash btmrvl_hsstate_read 3 920 _001318_hash NULL
-+_001319_hash btmrvl_pscmd_read 3 24308 _001319_hash NULL
-+_001320_hash btmrvl_psmode_read 3 22395 _001320_hash NULL
-+_001321_hash btmrvl_psstate_read 3 50683 _001321_hash NULL
-+_001322_hash btmrvl_txdnldready_read 3 413 _001322_hash NULL
-+_001323_hash cache_write 3 13589 _001323_hash NULL
-+_001324_hash cafe_v4l_read 3 52766 _001324_hash NULL
-+_001325_hash cgroup_read_s64 5 19570 _001325_hash NULL
-+_001326_hash cgroup_read_u64 5 45532 _001326_hash NULL
-+_001327_hash cifs_partialpagewrite 2-3 60612 _001327_hash NULL
-+_001329_hash cifs_write_end 5 1643 _001329_hash NULL
-+_001330_hash codec_reg_read_file 3 36280 _001330_hash NULL
-+_001331_hash configfs_read_file 3 1683 _001331_hash NULL
-+_001332_hash cpuset_common_file_read 5 8800 _001332_hash NULL
-+_001333_hash cx18_read 3 23699 _001333_hash NULL
-+_001334_hash cxio_hal_init_resource 2-7-6 29771 _001334_hash NULL
-+_001337_hash cxio_hal_init_rhdl_resource 1 25104 _001337_hash NULL
-+_001338_hash dapm_widget_power_read_file 3 59950 _001338_hash NULL
-+_001341_hash debug_buffer_read 3 24220 _001341_hash NULL
-+_001342_hash debug_output 3 18575 _001342_hash NULL
-+_001343_hash dma_memcpy_pg_to_iovec 6 1725 _001343_hash NULL
-+_001344_hash dma_memcpy_to_iovec 5 12173 _001344_hash NULL
-+_001345_hash dma_rx_errors_read 3 52045 _001345_hash NULL
-+_001346_hash dma_rx_requested_read 3 65354 _001346_hash NULL
-+_001347_hash dma_tx_errors_read 3 46060 _001347_hash NULL
-+_001348_hash dma_tx_requested_read 3 16110 _001391_hash NULL nohasharray
-+_001349_hash dn_recvmsg 4 17213 _001349_hash NULL
-+_001350_hash do_msgrcv 4 5590 _001350_hash NULL
-+_001351_hash dump_midi 3 51040 _001351_hash NULL
-+_001352_hash dvb_dmxdev_buffer_read 4 20682 _001352_hash NULL
-+_001353_hash econet_recvmsg 4 40978 _001353_hash NULL
-+_001354_hash event_calibration_read 3 21083 _001354_hash NULL
-+_001355_hash event_heart_beat_read 3 48961 _001355_hash NULL
-+_001356_hash event_oom_late_read 3 61175 _001356_hash NULL
-+_001357_hash event_phy_transmit_error_read 3 10471 _001357_hash NULL
-+_001358_hash event_rx_mem_empty_read 3 40363 _001358_hash NULL
-+_001359_hash event_rx_mismatch_read 3 38518 _001359_hash NULL
-+_001360_hash event_rx_pool_read 3 25792 _001360_hash NULL
-+_001361_hash event_tx_stuck_read 3 19305 _001361_hash NULL
-+_001362_hash excessive_retries_read 3 60425 _001362_hash NULL
-+_001363_hash filter_read 3 61692 _001363_hash NULL
-+_001364_hash find_rsb 3 39650 _001364_hash NULL
-+_001365_hash format_devstat_counter 3 32550 _001365_hash NULL
-+_001366_hash fragmentation_threshold_read 3 61718 _001366_hash NULL
-+_001367_hash frequency_read 3 64031 _001367_hash NULL
-+_001368_hash fuse_conn_limit_read 3 20084 _001368_hash NULL
-+_001369_hash fuse_conn_waiting_read 3 49762 _001369_hash NULL
-+_001370_hash generic_readlink 3 32654 _001370_hash NULL
-+_001371_hash ht40allow_map_read 3 55209 _002056_hash NULL nohasharray
-+_001372_hash hysdn_conf_read 3 42324 _002388_hash NULL nohasharray
-+_001373_hash i2400m_rx_stats_read 3 57706 _001373_hash NULL
-+_001374_hash i2400m_tx_stats_read 3 28527 _001374_hash NULL
-+_001375_hash idmouse_read 3 63374 _001375_hash NULL
-+_001376_hash ieee80211_if_read 3 6785 _001376_hash NULL
-+_001377_hash ieee80211_rx_bss_info 3 61630 _001377_hash NULL
-+_001378_hash ikconfig_read_current 3 1658 _001378_hash NULL
-+_001379_hash ima_show_htable_value 2 57136 _001379_hash NULL
-+_001380_hash ipw_write 3 59807 _001380_hash NULL
-+_001381_hash ipx_sendmsg 4 1362 _001381_hash NULL
-+_001382_hash irda_recvmsg_stream 4 35280 _001382_hash NULL
-+_001383_hash iscsi_tcp_conn_setup 2 16376 _001383_hash NULL
-+_001384_hash isr_cmd_cmplt_read 3 53439 _001384_hash NULL
-+_001385_hash isr_commands_read 3 41398 _001385_hash NULL
-+_001386_hash isr_decrypt_done_read 3 49490 _001386_hash NULL
-+_001387_hash isr_dma0_done_read 3 8574 _001387_hash NULL
-+_001388_hash isr_dma1_done_read 3 48159 _001388_hash NULL
-+_001389_hash isr_fiqs_read 3 34687 _001389_hash NULL
-+_001390_hash isr_host_acknowledges_read 3 54136 _001390_hash NULL
-+_001391_hash isr_hw_pm_mode_changes_read 3 16110 _001391_hash &_001348_hash
-+_001392_hash isr_irqs_read 3 9181 _001392_hash NULL
-+_001393_hash isr_low_rssi_read 3 64789 _001393_hash NULL
-+_001394_hash isr_pci_pm_read 3 30271 _001394_hash NULL
-+_001395_hash isr_rx_headers_read 3 38325 _001395_hash NULL
-+_001396_hash isr_rx_mem_overflow_read 3 43025 _001396_hash NULL
-+_001397_hash isr_rx_procs_read 3 31804 _001397_hash NULL
-+_001398_hash isr_rx_rdys_read 3 35283 _001398_hash NULL
-+_001399_hash isr_tx_exch_complete_read 3 16103 _001399_hash NULL
-+_001400_hash isr_tx_procs_read 3 23084 _001400_hash NULL
-+_001401_hash isr_wakeups_read 3 49607 _001401_hash NULL
-+_001402_hash ivtv_read 3 57796 _001402_hash NULL
-+_001403_hash iwl3945_sta_dbgfs_stats_table_read 3 28882 _001403_hash NULL
-+_001404_hash iwl_dbgfs_chain_noise_read 3 46355 _001404_hash NULL
-+_001405_hash iwl_dbgfs_channels_read 3 6784 _001405_hash NULL
-+_001406_hash iwl_dbgfs_current_sleep_command_read 3 2081 _001406_hash NULL
-+_001407_hash iwl_dbgfs_disable_ht40_read 3 35761 _001407_hash NULL
-+_001408_hash iwl_dbgfs_interrupt_read 3 23574 _001408_hash NULL
-+_001409_hash iwl_dbgfs_led_read 3 45896 _001409_hash NULL
-+_001410_hash iwl_dbgfs_nvm_read 3 23845 _001410_hash NULL
-+_001411_hash iwl_dbgfs_qos_read 3 11753 _001411_hash NULL
-+_001412_hash iwl_dbgfs_rx_queue_read 3 19943 _001412_hash NULL
-+_001413_hash iwl_dbgfs_rx_statistics_read 3 62687 _001413_hash &_000266_hash
-+_001414_hash iwl_dbgfs_sensitivity_read 3 63116 _001414_hash NULL
-+_001415_hash iwl_dbgfs_sleep_level_override_read 3 3038 _001415_hash NULL
-+_001416_hash iwl_dbgfs_sram_read 3 44505 _001416_hash NULL
-+_001417_hash iwl_dbgfs_stations_read 3 9309 _001417_hash NULL
-+_001418_hash iwl_dbgfs_status_read 3 5171 _001418_hash NULL
-+_001419_hash iwl_dbgfs_thermal_throttling_read 3 38779 _001419_hash NULL
-+_001420_hash iwl_dbgfs_traffic_log_read 3 58870 _001420_hash NULL
-+_001421_hash iwl_dbgfs_tx_power_read 3 14285 _001421_hash NULL
-+_001422_hash iwl_dbgfs_tx_queue_read 3 4635 _001422_hash NULL
-+_001423_hash iwl_dbgfs_tx_statistics_read 3 314 _002448_hash NULL nohasharray
-+_001424_hash iwl_dbgfs_ucode_general_stats_read 3 49199 _001424_hash NULL
-+_001425_hash iwl_dbgfs_ucode_rx_stats_read 3 58023 _001425_hash NULL
-+_001426_hash iwl_dbgfs_ucode_tx_stats_read 3 31611 _001426_hash NULL
-+_001427_hash iwm_if_alloc 1 17027 _001427_hash NULL
-+_001428_hash kernel_readv 3 35617 _001428_hash NULL
-+_001429_hash kernel_setsockopt 5 35913 _001429_hash NULL
-+_001430_hash key_algorithm_read 3 57946 _001430_hash NULL
-+_001431_hash key_conf_hw_key_idx_read 3 25003 _001431_hash NULL
-+_001432_hash key_conf_keyidx_read 3 42443 _001432_hash NULL
-+_001433_hash key_conf_keylen_read 3 49758 _001433_hash NULL
-+_001434_hash key_flags_read 3 25931 _001434_hash NULL
-+_001435_hash key_icverrors_read 3 20895 _001435_hash NULL
-+_001436_hash key_ifindex_read 3 31411 _001436_hash NULL
-+_001437_hash key_key_read 3 3241 _001437_hash NULL
-+_001438_hash key_replays_read 3 62746 _001438_hash NULL
-+_001439_hash key_rx_spec_read 3 12736 _001439_hash NULL
-+_001440_hash key_tx_rx_count_read 3 44742 _001440_hash NULL
-+_001441_hash key_tx_spec_read 3 4862 _001441_hash NULL
-+_001442_hash kvm_clear_guest_page 4 2308 _001442_hash NULL
-+_001443_hash l2cap_create_basic_pdu 3 54508 _001443_hash NULL
-+_001444_hash l2cap_create_connless_pdu 3 9222 _001444_hash NULL
-+_001445_hash l2cap_create_iframe_pdu 3 51801 _001445_hash NULL
-+_001446_hash lbs_debugfs_read 3 30721 _001446_hash NULL
-+_001447_hash lbs_dev_info 3 51023 _001447_hash NULL
-+_001448_hash lbs_getscantable 3 24955 _001448_hash NULL
-+_001449_hash lbs_rdbbp_read 3 45805 _001449_hash NULL
-+_001450_hash lbs_rdmac_read 3 418 _001450_hash NULL
-+_001451_hash lbs_rdrf_read 3 41431 _001451_hash NULL
-+_001452_hash lbs_sleepparams_read 3 10840 _001452_hash NULL
-+_001453_hash lbs_threshold_read 5 21046 _001453_hash NULL
-+_001454_hash long_retry_limit_read 3 59766 _001454_hash NULL
-+_001455_hash lpfc_debugfs_read 3 16566 _001455_hash NULL
-+_001456_hash mic_calc_failure_read 3 59700 _001456_hash NULL
-+_001457_hash mic_rx_pkts_read 3 27972 _001457_hash NULL
-+_001458_hash mmc_ext_csd_read 3 13205 _001458_hash NULL
-+_001459_hash mon_bin_read 3 6841 _001459_hash NULL
-+_001460_hash mon_stat_read 3 25238 _001460_hash NULL
-+_001461_hash mqueue_read_file 3 6228 _001461_hash NULL
-+_001462_hash nfsd_vfs_read 6 62605 _002206_hash NULL nohasharray
-+_001463_hash nfsd_vfs_write 6 54577 _001463_hash NULL
-+_001464_hash noack_read 3 63419 _001464_hash NULL
-+_001465_hash o2hb_debug_read 3 37851 _001465_hash NULL
-+_001466_hash ocfs2_control_read 3 56405 _001466_hash NULL
-+_001467_hash ocfs2_control_write 3 54737 _001467_hash NULL
-+_001468_hash ocfs2_debug_read 3 14507 _001468_hash NULL
-+_001469_hash ocfs2_readlink 3 50656 _001469_hash NULL
-+_001470_hash oom_adjust_read 3 25127 _001470_hash NULL
-+_001471_hash oprofilefs_str_to_user 3 42182 _001471_hash NULL
-+_001472_hash oprofilefs_ulong_to_user 3 11582 _001472_hash NULL
-+_001473_hash _osd_req_list_objects 6 4204 _001473_hash NULL
-+_001474_hash osd_req_read_kern 5 59990 _001474_hash NULL
-+_001475_hash osd_req_write_kern 5 53486 _001475_hash NULL
-+_001476_hash p54_init_common 1 23850 _001476_hash NULL
-+_001477_hash packet_sendmsg 4 24954 _001477_hash NULL
-+_001478_hash page_readlink 3 23346 _001478_hash NULL
-+_001479_hash parse_table 6 59430 _001479_hash NULL
-+_001480_hash pms_read 3 53873 _001480_hash NULL
-+_001481_hash proc_coredump_filter_read 3 39153 _001481_hash NULL
-+_001482_hash proc_fdinfo_read 3 62043 _001482_hash NULL
-+_001483_hash proc_file_read 3 53905 _001483_hash NULL
-+_001484_hash proc_info_read 3 63344 _001484_hash NULL
-+_001485_hash proc_loginuid_read 3 15631 _001485_hash NULL
-+_001486_hash proc_pid_attr_read 3 10173 _001486_hash NULL
-+_001487_hash proc_pid_readlink 3 52186 _001487_hash NULL
-+_001488_hash proc_read 3 43614 _001488_hash NULL
-+_001489_hash proc_self_readlink 3 38094 _001489_hash NULL
-+_001490_hash proc_sessionid_read 3 6911 _001490_hash NULL
-+_001491_hash proc_write_bluetooth 3 34589 _001491_hash NULL
-+_001492_hash proc_write_mled 3 51169 _001492_hash NULL
-+_001493_hash proc_write_tled 3 3947 _001493_hash NULL
-+_001494_hash proc_write_wled 3 592 _001494_hash NULL
-+_001495_hash ps_pspoll_max_apturn_read 3 6699 _001495_hash NULL
-+_001496_hash ps_pspoll_timeouts_read 3 11776 _001496_hash NULL
-+_001497_hash ps_pspoll_utilization_read 3 5361 _001497_hash NULL
-+_001498_hash ps_upsd_max_apturn_read 3 19918 _001498_hash NULL
-+_001499_hash ps_upsd_max_sptime_read 3 63362 _001499_hash NULL
-+_001500_hash ps_upsd_timeouts_read 3 28924 _001500_hash NULL
-+_001501_hash ps_upsd_utilization_read 3 51669 _001501_hash NULL
-+_001502_hash pvr2_v4l2_read 3 18006 _001502_hash NULL
-+_001503_hash pwr_disable_ps_read 3 13176 _001503_hash NULL
-+_001504_hash pwr_elp_enter_read 3 5324 _001504_hash NULL
-+_001505_hash pwr_enable_ps_read 3 17686 _001505_hash NULL
-+_001506_hash pwr_fix_tsf_ps_read 3 26627 _001506_hash NULL
-+_001507_hash pwr_missing_bcns_read 3 25824 _001507_hash NULL
-+_001508_hash pwr_power_save_off_read 3 18355 _001508_hash NULL
-+_001509_hash pwr_ps_enter_read 3 26935 _001509_hash &_000766_hash
-+_001510_hash pwr_rcvd_awake_beacons_read 3 50505 _001510_hash NULL
-+_001511_hash pwr_rcvd_beacons_read 3 52836 _001511_hash NULL
-+_001512_hash pwr_tx_without_ps_read 3 48423 _001512_hash NULL
-+_001513_hash pwr_tx_with_ps_read 3 60851 _001513_hash NULL
-+_001514_hash pwr_wake_on_host_read 3 26321 _001514_hash NULL
-+_001515_hash pwr_wake_on_timer_exp_read 3 22640 _001515_hash NULL
-+_001516_hash queues_read 3 24877 _001516_hash NULL
-+_001517_hash raw_recvmsg 4 17277 _001517_hash NULL
-+_001518_hash rawv6_sendmsg 4 20080 _001518_hash NULL
-+_001519_hash rcname_read 3 25919 _001519_hash NULL
-+_001520_hash rds_sendmsg 4 40976 _001520_hash NULL
-+_001521_hash read_enabled_file_bool 3 37744 _001521_hash NULL
-+_001522_hash read_file_beacon 3 32595 _001522_hash NULL
-+_001523_hash read_file_blob 3 57406 _001523_hash NULL
-+_001524_hash read_file_bool 3 4180 _001524_hash NULL
-+_001525_hash read_file_debug 3 58256 _001525_hash NULL
-+_001526_hash read_file_dma 3 9530 _001526_hash NULL
-+_001527_hash read_file_interrupt 3 61742 _001527_hash NULL
-+_001528_hash read_file_rcstat 3 22854 _001528_hash NULL
-+_001529_hash read_file_wiphy 3 51103 _001529_hash NULL
-+_001530_hash read_file_xmit 3 21487 _001530_hash NULL
-+_001531_hash read_from_oldmem 2 3337 _001531_hash NULL
-+_001532_hash read_oldmem 3 55658 _001532_hash NULL
-+_001533_hash recover_peb 6-7 29238 _001533_hash NULL
-+_001535_hash request_key_and_link 4 42693 _001535_hash NULL
-+_001536_hash res_counter_read 4 33499 _001536_hash NULL
-+_001537_hash retry_count_read 3 52129 _001537_hash NULL
-+_001538_hash rfcomm_sock_recvmsg 4 22227 _001538_hash NULL
-+_001539_hash rs_sta_dbgfs_rate_scale_data_read 3 47165 _001539_hash NULL
-+_001540_hash rs_sta_dbgfs_scale_table_read 3 40262 _001540_hash NULL
-+_001541_hash rs_sta_dbgfs_stats_table_read 3 56573 _001541_hash NULL
-+_001542_hash rts_threshold_read 3 44384 _001542_hash NULL
-+_001543_hash rx_dropped_read 3 44799 _001543_hash NULL
-+_001544_hash rx_fcs_err_read 3 62844 _001544_hash NULL
-+_001545_hash rx_hdr_overflow_read 3 64407 _001545_hash NULL
-+_001546_hash rx_hw_stuck_read 3 57179 _001546_hash NULL
-+_001547_hash rx_out_of_mem_read 3 10157 _001547_hash NULL
-+_001548_hash rx_path_reset_read 3 23801 _001548_hash NULL
-+_001549_hash rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read 3 55106 _001549_hash NULL
-+_001550_hash rxpipe_descr_host_int_trig_rx_data_read 3 22001 _001550_hash NULL
-+_001551_hash rxpipe_missed_beacon_host_int_trig_rx_data_read 3 63405 _001551_hash NULL
-+_001552_hash rxpipe_rx_prep_beacon_drop_read 3 2403 _001552_hash NULL
-+_001553_hash rxpipe_tx_xfr_host_int_trig_rx_data_read 3 35538 _001553_hash NULL
-+_001554_hash rx_reset_counter_read 3 58001 _001554_hash NULL
-+_001555_hash rx_xfr_hint_trig_read 3 40283 _001555_hash NULL
-+_001556_hash sco_sock_sendmsg 4 62542 _001556_hash NULL
-+_001557_hash scsi_adjust_queue_depth 3 12802 _001557_hash NULL
-+_001558_hash selinux_inode_notifysecctx 3 36896 _001558_hash NULL
-+_001559_hash sel_read_avc_cache_threshold 3 33942 _001559_hash NULL
-+_001560_hash sel_read_avc_hash_stats 3 1984 _001560_hash NULL
-+_001561_hash sel_read_bool 3 24236 _001561_hash NULL
-+_001562_hash sel_read_checkreqprot 3 33068 _001562_hash NULL
-+_001563_hash sel_read_class 3 12669 _001563_hash NULL
-+_001564_hash sel_read_enforce 3 2828 _001564_hash NULL
-+_001565_hash sel_read_handle_unknown 3 57933 _001565_hash NULL
-+_001566_hash sel_read_initcon 3 32362 _001566_hash NULL
-+_001567_hash sel_read_mls 3 25369 _001567_hash NULL
-+_001568_hash sel_read_perm 3 42302 _001568_hash NULL
-+_001569_hash sel_read_policycap 3 28544 _001569_hash NULL
-+_001570_hash sel_read_policyvers 3 55 _002421_hash NULL nohasharray
-+_001571_hash short_retry_limit_read 3 4687 _001571_hash NULL
-+_001572_hash simple_attr_read 3 24738 _001572_hash NULL
-+_001573_hash simple_transaction_read 3 17076 _001573_hash NULL
-+_001574_hash skb_copy_datagram_const_iovec 2-5-4 48102 _001574_hash NULL
-+_001578_hash skb_copy_datagram_iovec 2-4 5806 _001578_hash NULL
-+_001580_hash smk_read_ambient 3 61220 _001580_hash NULL
-+_001581_hash smk_read_direct 3 15803 _001581_hash NULL
-+_001582_hash smk_read_doi 3 30813 _001582_hash NULL
-+_001583_hash smk_read_logging 3 37804 _001583_hash NULL
-+_001584_hash smk_read_onlycap 3 3855 _001584_hash NULL
-+_001585_hash snd_cs4281_BA0_read 5-6 6847 _001585_hash NULL
-+_001587_hash snd_cs4281_BA1_read 5-6 20323 _001587_hash NULL
-+_001589_hash snd_cs46xx_io_read 5-6 45734 _001589_hash NULL
-+_001591_hash snd_gus_dram_read 4 56686 _001591_hash NULL
-+_001592_hash snd_pcm_oss_read 3 28317 _001592_hash NULL
-+_001593_hash snd_rme32_capture_copy 5 39653 _001593_hash NULL
-+_001594_hash snd_rme96_capture_copy 5 58484 _001594_hash NULL
-+_001595_hash sta_agg_status_read 3 14058 _001595_hash NULL
-+_001596_hash sta_dev_read 3 14782 _001596_hash NULL
-+_001597_hash sta_flags_read 3 56710 _001597_hash NULL
-+_001598_hash sta_inactive_ms_read 3 25690 _001598_hash NULL
-+_001599_hash sta_last_noise_read 3 62466 _001599_hash NULL
-+_001600_hash sta_last_qual_read 3 62297 _001600_hash NULL
-+_001601_hash sta_last_seq_ctrl_read 3 19106 _001601_hash NULL
-+_001602_hash sta_last_signal_read 3 31818 _001602_hash NULL
-+_001603_hash sta_num_ps_buf_frames_read 3 1488 _001603_hash NULL
-+_001604_hash sta_rx_bytes_read 3 46037 _001604_hash NULL
-+_001605_hash sta_rx_dropped_read 3 27830 _001605_hash NULL
-+_001606_hash sta_rx_duplicates_read 3 47633 _001606_hash NULL
-+_001607_hash sta_rx_fragments_read 3 44835 _001607_hash NULL
-+_001608_hash sta_rx_packets_read 3 22788 _001608_hash NULL
-+_001609_hash stats_failed_count_read 3 9244 _001609_hash NULL
-+_001610_hash stats_frame_duplicate_count_read 3 54582 _001610_hash &_000150_hash
-+_001611_hash stats_multicast_received_frame_count_read 3 24083 _001611_hash NULL
-+_001612_hash stats_multicast_transmitted_frame_count_read 3 54788 _001612_hash NULL
-+_001613_hash stats_multiple_retry_count_read 3 60334 _001613_hash NULL
-+_001614_hash stats_received_fragment_count_read 3 59643 _001614_hash NULL
-+_001615_hash stats_retry_count_read 3 21177 _001615_hash NULL
-+_001616_hash stats_rx_expand_skb_head2_read 3 59439 _001616_hash NULL
-+_001617_hash stats_rx_expand_skb_head_read 3 47467 _001617_hash NULL
-+_001618_hash stats_rx_handlers_drop_defrag_read 3 56448 _001618_hash NULL
-+_001619_hash stats_rx_handlers_drop_nullfunc_read 3 39294 _001619_hash NULL
-+_001620_hash stats_rx_handlers_drop_passive_scan_read 3 52160 _001620_hash NULL
-+_001621_hash stats_rx_handlers_drop_read 3 3284 _001621_hash NULL
-+_001622_hash stats_rx_handlers_drop_short_read 3 45391 _001622_hash NULL
-+_001623_hash stats_rx_handlers_fragments_read 3 10356 _001623_hash NULL
-+_001624_hash stats_rx_handlers_queued_read 3 5922 _002145_hash NULL nohasharray
-+_001625_hash stats_transmitted_fragment_count_read 3 28770 _001625_hash NULL
-+_001626_hash stats_transmitted_frame_count_read 3 33861 _001626_hash NULL
-+_001627_hash stats_tx_expand_skb_head_cloned_read 3 11107 _001627_hash NULL
-+_001628_hash stats_tx_expand_skb_head_read 3 53188 _001628_hash NULL
-+_001629_hash stats_tx_handlers_drop_fragment_read 3 45464 _001629_hash NULL
-+_001630_hash stats_tx_handlers_drop_not_assoc_read 3 28015 _001630_hash NULL
-+_001631_hash stats_tx_handlers_drop_read 3 44654 _001631_hash NULL
-+_001632_hash stats_tx_handlers_drop_unauth_port_read 3 16139 _001632_hash NULL
-+_001633_hash stats_tx_handlers_drop_unencrypted_read 3 46898 _001633_hash NULL
-+_001634_hash stats_tx_handlers_drop_wep_read 3 47944 _001634_hash NULL
-+_001635_hash stats_tx_handlers_queued_read 3 35325 _001635_hash NULL
-+_001636_hash stats_tx_status_drop_read 3 10279 _001636_hash NULL
-+_001637_hash sta_tx_bytes_read 3 55197 _001637_hash NULL
-+_001638_hash sta_tx_filtered_read 3 6973 _001638_hash NULL
-+_001639_hash sta_tx_fragments_read 3 49841 _001639_hash NULL
-+_001640_hash sta_tx_packets_read 3 50955 _001640_hash NULL
-+_001641_hash sta_tx_retry_count_read 3 59021 _001641_hash NULL
-+_001642_hash sta_tx_retry_failed_read 3 10381 _001642_hash NULL
-+_001643_hash sta_wep_weak_iv_count_read 3 64069 _001643_hash NULL
-+_001644_hash store_bluetooth 4 21320 _001644_hash NULL
-+_001645_hash store_camera 4 14751 _001645_hash NULL
-+_001646_hash store_cardr 4 2997 _001646_hash NULL
-+_001647_hash store_fan1_input 4 35793 _001647_hash NULL
-+_001648_hash store_gps 4 42118 _001648_hash NULL
-+_001649_hash store_pwm1 4 62529 _001649_hash NULL
-+_001650_hash store_pwm1_enable 4 2577 _001650_hash NULL
-+_001651_hash store_wlan 4 38040 _001651_hash NULL
-+_001652_hash st_read 3 51251 _001652_hash NULL
-+_001653_hash sysfs_read_file 3 42113 _001653_hash NULL
-+_001654_hash sys_kexec_load 2 14222 _001654_hash NULL
-+_001655_hash sys_preadv 3 17100 _001655_hash NULL
-+_001656_hash sys_pwritev 3 41722 _001656_hash NULL
-+_001657_hash sys_readv 3 50664 _001657_hash NULL
-+_001658_hash sys_rt_sigpending 2 24961 _001658_hash NULL
-+_001659_hash sys_setsockopt 5 35320 _001659_hash NULL
-+_001660_hash sys_writev 3 28384 _001660_hash NULL
-+_001661_hash tomoyo_read 3 43089 _001661_hash NULL
-+_001662_hash total_ps_buffered_read 3 16365 _001662_hash NULL
-+_001663_hash tsf_read 3 58892 _001663_hash NULL
-+_001664_hash tun_get_user 3 33178 _001664_hash NULL
-+_001665_hash tx_internal_desc_overflow_read 3 47300 _001665_hash NULL
-+_001666_hash tx_queue_len_read 3 1463 _001666_hash NULL
-+_001667_hash ubi_eba_atomic_leb_change 5 13041 _001667_hash NULL
-+_001668_hash ubi_eba_write_leb 6-5 19826 _001668_hash NULL
-+_001669_hash ubi_eba_write_leb_st 5 27896 _001669_hash NULL
-+_001670_hash uhci_debug_read 3 5911 _001670_hash NULL
-+_001671_hash unix_seqpacket_sendmsg 4 27893 _001671_hash NULL
-+_001672_hash unix_stream_recvmsg 4 35210 _001672_hash NULL
-+_001673_hash unlink1 3 63059 _001673_hash NULL
-+_001674_hash __videobuf_copy_stream 3 20490 _001674_hash NULL
-+_001675_hash waiters_read 3 40902 _001675_hash NULL
-+_001676_hash wep_addr_key_count_read 3 20174 _001676_hash NULL
-+_001677_hash wep_decrypt_fail_read 3 58567 _001677_hash NULL
-+_001678_hash wep_default_key_count_read 3 43035 _001678_hash &_001223_hash
-+_001679_hash wep_interrupt_read 3 41492 _001679_hash NULL
-+_001680_hash wep_iv_read 3 54744 _001680_hash NULL
-+_001681_hash wep_key_not_found_read 3 13377 _001681_hash &_000641_hash
-+_001682_hash wep_packets_read 3 18751 _001682_hash NULL
-+_001683_hash wusb_prf_256 7 29203 _001683_hash NULL
-+_001684_hash wusb_prf_64 7 51065 _001684_hash NULL
-+_001685_hash xfs_iext_add 3 41422 _001685_hash NULL
-+_001686_hash xfs_iext_remove_direct 3 40744 _001686_hash NULL
-+_001687_hash xfs_trans_get_efd 3 51148 _001687_hash NULL
-+_001688_hash xfs_trans_get_efi 2 7898 _001688_hash NULL
-+_001689_hash xlog_get_bp 2 23229 _001689_hash NULL
-+_001690_hash aac_change_queue_depth 2 51753 _001690_hash NULL
-+_001691_hash add_sctp_bind_addr 3 12269 _001691_hash NULL
-+_001692_hash agp_allocate_memory_wrap 1 16576 _002200_hash NULL nohasharray
-+_001693_hash arcmsr_adjust_disk_queue_depth 2 34916 _001693_hash NULL
-+_001694_hash atalk_recvmsg 4 22053 _001694_hash NULL
-+_001695_hash atomic_read_file 3 16227 _001695_hash NULL
-+_001696_hash ax25_recvmsg 4 64441 _001696_hash NULL
-+_001697_hash bt_sock_recvmsg 4 12316 _001697_hash NULL
-+_001698_hash cpu_type_read 3 36540 _001698_hash NULL
-+_001699_hash cx18_read_pos 3 4683 _001699_hash NULL
-+_001701_hash dccp_recvmsg 4 16056 _001701_hash NULL
-+_001702_hash depth_read 3 31112 _001702_hash NULL
-+_001703_hash dgram_recvmsg 4 23104 _001703_hash NULL
-+_001704_hash dma_skb_copy_datagram_iovec 3-5 21516 _001704_hash NULL
-+_001706_hash do_sysctl 6 28306 _001706_hash NULL
-+_001707_hash drm_agp_allocate_memory 2 15738 _001707_hash NULL
-+_001708_hash enable_read 3 2117 _001708_hash NULL
-+_001709_hash fc_change_queue_depth 2 18169 _001709_hash NULL
-+_001710_hash get_alua_req 3 4166 _001710_hash NULL
-+_001711_hash get_rdac_req 3 45882 _001711_hash NULL
-+_001712_hash hci_sock_recvmsg 4 7072 _001712_hash NULL
-+_001713_hash hptiop_adjust_disk_queue_depth 2 34698 _001713_hash NULL
-+_001714_hash ide_queue_pc_tail 5 11673 _001714_hash NULL
-+_001715_hash ide_raw_taskfile 4 42355 _001715_hash NULL
-+_001716_hash idetape_queue_rw_tail 3 29562 _001716_hash NULL
-+_001717_hash ieee80211_if_read_aid 3 9705 _001717_hash NULL
-+_001718_hash ieee80211_if_read_auto_open_plinks 3 38268 _002486_hash NULL nohasharray
-+_001719_hash ieee80211_if_read_bssid 3 35161 _001719_hash NULL
-+_001720_hash ieee80211_if_read_capab 3 55294 _001720_hash NULL
-+_001721_hash ieee80211_if_read_dot11MeshConfirmTimeout 3 60670 _001721_hash NULL
-+_001722_hash ieee80211_if_read_dot11MeshHoldingTimeout 3 47356 _001722_hash NULL
-+_001723_hash ieee80211_if_read_dot11MeshHWMPactivePathTimeout 3 7368 _001723_hash NULL
-+_001724_hash ieee80211_if_read_dot11MeshHWMPmaxPREQretries 3 59829 _001724_hash NULL
-+_001725_hash ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime 3 1589 _001725_hash NULL
-+_001726_hash ieee80211_if_read_dot11MeshHWMPpreqMinInterval 3 24208 _001726_hash NULL
-+_001727_hash ieee80211_if_read_dot11MeshMaxPeerLinks 3 23878 _001727_hash NULL
-+_001728_hash ieee80211_if_read_dot11MeshMaxRetries 3 12756 _001728_hash NULL
-+_001729_hash ieee80211_if_read_dot11MeshRetryTimeout 3 52168 _001729_hash NULL
-+_001730_hash ieee80211_if_read_dot11MeshTTL 3 58307 _001730_hash NULL
-+_001731_hash ieee80211_if_read_dropped_frames_no_route 3 33383 _001731_hash NULL
-+_001732_hash ieee80211_if_read_dropped_frames_ttl 3 44500 _001732_hash NULL
-+_001733_hash ieee80211_if_read_drop_unencrypted 3 37053 _001733_hash NULL
-+_001734_hash ieee80211_if_read_dtim_count 3 38419 _001734_hash NULL
-+_001735_hash ieee80211_if_read_estab_plinks 3 32533 _001735_hash NULL
-+_001736_hash ieee80211_if_read_force_unicast_rateidx 3 32147 _001736_hash NULL
-+_001737_hash ieee80211_if_read_fwded_frames 3 36520 _001737_hash NULL
-+_001738_hash ieee80211_if_read_fwded_mcast 3 39571 _001738_hash NULL
-+_001739_hash ieee80211_if_read_fwded_unicast 3 59740 _002083_hash NULL nohasharray
-+_001740_hash ieee80211_if_read_max_ratectrl_rateidx 3 64369 _001740_hash NULL
-+_001741_hash ieee80211_if_read_min_discovery_timeout 3 13946 _001741_hash NULL
-+_001742_hash ieee80211_if_read_num_buffered_multicast 3 12716 _001742_hash NULL
-+_001743_hash ieee80211_if_read_num_sta_ps 3 34722 _001743_hash NULL
-+_001744_hash ieee80211_if_read_path_refresh_time 3 25545 _001744_hash NULL
-+_001745_hash ieee80211_if_read_peer 3 45233 _001745_hash NULL
-+_001746_hash ieee80211_rx_mgmt_beacon 3 24430 _001746_hash NULL
-+_001747_hash ieee80211_rx_mgmt_probe_resp 3 6918 _001747_hash NULL
-+_001748_hash ieee80211_rx_mgmt_probe_resp 4 12634 _001748_hash NULL
-+_001749_hash ima_show_htable_violations 3 10619 _001749_hash NULL
-+_001750_hash ima_show_measurements_count 3 23536 _001750_hash NULL
-+_001751_hash ipr_change_queue_depth 2 53263 _001751_hash NULL
-+_001752_hash ip_recv_error 3 23109 _001752_hash NULL
-+_001753_hash ipv6_recv_error 3 56347 _001753_hash NULL
-+_001754_hash ipx_recvmsg 4 44366 _001754_hash NULL
-+_001755_hash irda_recvmsg_dgram 4 32631 _001755_hash NULL
-+_001756_hash iscsi_change_queue_depth 2 37480 _001756_hash NULL
-+_001757_hash ivtv_read_pos 3 34400 _001757_hash NULL
-+_001758_hash l2cap_sar_segment_sdu 3 27701 _001758_hash NULL
-+_001759_hash l2cap_sock_sendmsg 4 63427 _001759_hash NULL
-+_001760_hash lbs_bcnmiss_read 3 8678 _001760_hash NULL
-+_001761_hash lbs_failcount_read 3 31063 _001761_hash NULL
-+_001762_hash lbs_highrssi_read 3 64089 _001762_hash NULL
-+_001763_hash lbs_highsnr_read 3 5931 _001763_hash NULL
-+_001764_hash lbs_lowrssi_read 3 32242 _001764_hash NULL
-+_001765_hash lbs_lowsnr_read 3 29571 _001765_hash NULL
-+_001766_hash llc_ui_recvmsg 4 3826 _001766_hash NULL
-+_001767_hash megaraid_change_queue_depth 2 13375 _001767_hash NULL
-+_001768_hash mptscsih_change_queue_depth 2 44196 _001768_hash NULL
-+_001769_hash NCR_700_change_queue_depth 2 45806 _001769_hash NULL
-+_001770_hash netlink_recvmsg 4 61600 _001770_hash NULL
-+_001771_hash nfsctl_transaction_read 3 48250 _001771_hash NULL
-+_001772_hash nr_recvmsg 4 12649 _001772_hash NULL
-+_001773_hash osd_req_list_collection_objects 5 36664 _001773_hash NULL
-+_001774_hash osd_req_list_partition_objects 5 56464 _001774_hash NULL
-+_001776_hash packet_recvmsg 4 47700 _001776_hash NULL
-+_001777_hash pep_recvmsg 4 19402 _001777_hash NULL
-+_001778_hash pfkey_recvmsg 4 53604 _001778_hash NULL
-+_001779_hash pmcraid_change_queue_depth 2 60044 _001779_hash NULL
-+_001780_hash pn_recvmsg 4 30887 _001780_hash NULL
-+_001781_hash pointer_size_read 3 51863 _001781_hash NULL
-+_001782_hash pppoe_recvmsg 4 15073 _001782_hash NULL
-+_001783_hash pppol2tp_recvmsg 4 57742 _002724_hash NULL nohasharray
-+_001784_hash qla2x00_change_queue_depth 2 43446 _001784_hash NULL
-+_001785_hash raw_recvmsg 4 52529 _001785_hash NULL
-+_001786_hash rawv6_recvmsg 4 30265 _001786_hash NULL
-+_001787_hash _req_append_segment 2 41031 _001787_hash NULL
-+_001788_hash request_key_async 4 6990 _001788_hash NULL
-+_001789_hash request_key_async_with_auxdata 4 46624 _001789_hash NULL
-+_001790_hash request_key_with_auxdata 4 24515 _001790_hash NULL
-+_001791_hash request_lock 4 35670 _001791_hash NULL
-+_001792_hash rose_recvmsg 4 2368 _001792_hash NULL
-+_001793_hash rxrpc_recvmsg 4 26233 _001793_hash NULL
-+_001794_hash scsi_activate_tcq 2 42640 _001794_hash NULL
-+_001795_hash scsi_deactivate_tcq 2 47086 _001795_hash &_000250_hash
-+_001796_hash scsi_execute 5 33596 _001796_hash NULL
-+_001797_hash _scsih_change_queue_depth 2 44902 _001797_hash NULL
-+_001798_hash scsi_init_shared_tag_map 2 59812 _001798_hash NULL
-+_001799_hash scsi_track_queue_full 2 44239 _001799_hash NULL
-+_001800_hash sctp_recvmsg 4 23265 _001800_hash NULL
-+_001801_hash skb_copy_and_csum_datagram_iovec 2 24466 _001801_hash NULL
-+_001803_hash snd_gf1_mem_proc_dump 5-6 16926 _001803_hash NULL
-+_001805_hash stats_dot11ACKFailureCount_read 3 45558 _001805_hash NULL
-+_001806_hash stats_dot11FCSErrorCount_read 3 28154 _001806_hash NULL
-+_001807_hash stats_dot11RTSFailureCount_read 3 43948 _001807_hash NULL
-+_001808_hash stats_dot11RTSSuccessCount_read 3 33065 _001808_hash NULL
-+_001809_hash sys_msgrcv 3 959 _001809_hash NULL
-+_001810_hash tcp_copy_to_iovec 3 28344 _001810_hash NULL
-+_001811_hash tcp_recvmsg 4 31238 _001811_hash NULL
-+_001812_hash timeout_read 3 47915 _001812_hash NULL
-+_001813_hash ttm_agp_populate 2 11718 _001813_hash NULL
-+_001814_hash tun_put_user 4 59849 _001814_hash NULL
-+_001815_hash twa_change_queue_depth 2 30648 _001815_hash NULL
-+_001816_hash tw_change_queue_depth 2 57980 _001816_hash NULL
-+_001818_hash ubi_leb_change 4 14899 _001818_hash NULL
-+_001819_hash ubi_leb_write 5-4 41691 _001819_hash NULL
-+_001820_hash udp_recvmsg 4 42558 _001820_hash NULL
-+_001821_hash udpv6_recvmsg 4 9813 _001821_hash NULL
-+_001822_hash ulong_read_file 3 42304 _001822_hash &_000775_hash
-+_001823_hash unix_dgram_recvmsg 4 14952 _001823_hash NULL
-+_001824_hash unlink_simple 3 47506 _001824_hash NULL
-+_001825_hash vcc_recvmsg 4 37198 _001825_hash NULL
-+_001826_hash write_leb 5 36957 _001826_hash NULL
-+_001827_hash x25_recvmsg 4 42777 _001827_hash NULL
-+_001828_hash xfs_iext_insert 3 53815 _001828_hash NULL
-+_001829_hash xfs_iext_remove 3 39040 _001829_hash NULL
-+_001830_hash xlog_find_verify_log_record 2 18870 _001830_hash NULL
-+_001831_hash dbg_leb_change 4 19969 _001831_hash NULL
-+_001832_hash dbg_leb_write 5-4 20478 _001832_hash NULL
-+_001833_hash dlm_lock 6 19858 _001833_hash NULL
-+_001834_hash dlm_user_request 6 8131 _001834_hash NULL
-+_001835_hash drm_agp_bind_pages 3 56748 _001835_hash NULL
-+_001836_hash drm_alloc_agp 2 48031 _001836_hash NULL
-+_001837_hash l2cap_sock_recvmsg 4 59886 _001837_hash NULL
-+_001838_hash osd_req_list_dev_partitions 4 60027 _001838_hash NULL
-+_001839_hash osd_req_list_partition_collections 5 38223 _001839_hash NULL
-+_001840_hash osst_do_scsi 4 44410 _001840_hash NULL
-+_001841_hash scsi_execute_req 5 42088 _001841_hash NULL
-+_001842_hash spi_execute 5 28736 _001842_hash NULL
-+_001843_hash submit_inquiry 3 42108 _001843_hash NULL
-+_001844_hash tcp_dma_try_early_copy 3 37651 _001844_hash NULL
-+_001846_hash ubi_write 5-4 30809 _001846_hash NULL
-+_001847_hash unix_seqpacket_recvmsg 4 23062 _002507_hash NULL nohasharray
-+_001848_hash ch_do_scsi 4 31171 _001848_hash NULL
-+_001850_hash gluebi_write 3 27905 _001850_hash NULL
-+_001851_hash recover_head 3 17904 _001851_hash NULL
-+_001852_hash scsi_mode_sense 5 16835 _001852_hash NULL
-+_001853_hash scsi_vpd_inquiry 4 30040 _001853_hash NULL
-+_001854_hash ses_recv_diag 4 47143 _001854_hash &_000413_hash
-+_001855_hash ses_send_diag 4 64527 _001855_hash NULL
-+_001856_hash spi_dv_device_echo_buffer 2-3 39846 _001856_hash NULL
-+_001858_hash ubifs_leb_change 4 22399 _001858_hash NULL
-+_001859_hash ubifs_leb_write 5-4 61226 _001859_hash NULL
-+_001861_hash user_dlm_lock 6 56667 _001861_hash NULL
-+_001862_hash sd_do_mode_sense 5 11507 _001862_hash NULL
-+_001864_hash ubifs_write_node 5-3 15088 _001864_hash NULL
-+_001865_hash add_numbered_child 5 14273 _001865_hash NULL
-+_001866_hash alloc_ebda_hpc 1-2 50046 _001866_hash NULL
-+_001868_hash do_pages_stat 2 4437 _001868_hash NULL
-+_001869_hash hdpvr_i2c_read 4 26347 _001869_hash NULL
-+_001870_hash hdpvr_i2c_write 4 61816 _001870_hash NULL
-+_001871_hash kzalloc_node 1 24352 _001871_hash NULL
-+_001872_hash mempool_create_node 1 44715 _001872_hash NULL
-+_001873_hash newpart 6 47485 _001873_hash NULL
-+_001874_hash pcpu_mem_alloc 1 3987 _001874_hash NULL
-+_001875_hash add_child 4 45201 _001875_hash NULL
-+_001876_hash __alloc_bootmem_low_node 2 25726 _001876_hash &_001180_hash
-+_001877_hash __alloc_bootmem_node 2 1992 _001877_hash NULL
-+_001878_hash __alloc_bootmem_node_nopanic 2 6432 _001878_hash NULL
-+_001879_hash disk_expand_part_tbl 2 30561 _001879_hash NULL
-+_001880_hash init_kstat_irqs 3 18740 _001880_hash NULL
-+_001881_hash mempool_create 1 29437 _001881_hash NULL
-+_001882_hash pcpu_extend_area_map 2 12589 _001882_hash NULL
-+_001883_hash sys_move_pages 2 42626 _001883_hash NULL
-+_001884_hash add_partition 2 15515 _001884_hash NULL
-+_001885_hash init_copy_kstat_irqs 4 34985 _001885_hash NULL
-+_001886_hash mempool_create_kmalloc_pool 1 41650 _001886_hash NULL
-+_001887_hash mempool_create_page_pool 1 30189 _001887_hash NULL
-+_001888_hash mempool_create_slab_pool 1 62907 _001888_hash NULL
-+_001889_hash pcpu_alloc_bootmem 2 62074 _001889_hash NULL
-+_001890_hash bioset_create 1 5580 _001890_hash NULL
-+_001891_hash bioset_integrity_create 2 62708 _001891_hash NULL
-+_001892_hash biovec_create_pools 2 9575 _001892_hash NULL
-+_001893_hash i2o_pool_alloc 4 55485 _001893_hash NULL
-+_001894_hash pcpu_fc_alloc 2 11818 _001894_hash NULL
-+_001895_hash nfsd_read 6 20406 _001895_hash NULL
-+_001896_hash atomic_counters_read 3 48827 _001896_hash NULL
-+_001897_hash atomic_stats_read 3 36228 _001897_hash NULL
-+_001898_hash compat_do_arpt_set_ctl 4 12184 _001898_hash NULL
-+_001899_hash compat_do_ip6t_set_ctl 4 3184 _001899_hash NULL
-+_001900_hash compat_do_ipt_set_ctl 4 58466 _001900_hash NULL
-+_001901_hash compat_do_readv_writev 4 49102 _001901_hash NULL
-+_001902_hash compat_filldir 3 32999 _001902_hash NULL
-+_001903_hash compat_filldir64 3 35354 _001903_hash NULL
-+_001904_hash compat_fillonedir 3 15620 _001904_hash NULL
-+_001905_hash compat_sock_setsockopt 5 23 _001905_hash NULL
-+_001906_hash compat_sys_kexec_load 2 35674 _001906_hash NULL
-+_001907_hash compat_sys_mq_timedsend 3 31060 _001907_hash NULL
-+_001908_hash compat_sys_msgrcv 2 7482 _001908_hash NULL
-+_001909_hash compat_sys_msgsnd 2 10738 _001909_hash NULL
-+_001910_hash compat_sys_semtimedop 3 3606 _001910_hash NULL
-+_001911_hash __copy_in_user 3 34790 _001911_hash NULL
-+_001912_hash copy_in_user 3 57502 _001912_hash NULL
-+_001913_hash cpia_write_proc 3 20268 _001913_hash NULL
-+_001914_hash do_arpt_set_ctl 4 51053 _001914_hash NULL
-+_001915_hash do_ip6t_set_ctl 4 60040 _001915_hash NULL
-+_001916_hash do_ipt_set_ctl 4 56238 _001916_hash NULL
-+_001917_hash __earlyonly_bootmem_alloc 2 23824 _001917_hash NULL
-+_001918_hash fat_compat_ioctl_filldir 3 36328 _001918_hash NULL
-+_001919_hash flash_read 3 57843 _001919_hash NULL
-+_001920_hash flash_write 3 62354 _001920_hash NULL
-+_001921_hash init_cdev 1 8274 _001921_hash NULL
-+_001922_hash ipath_create_cq 2 45586 _001922_hash NULL
-+_001923_hash ipath_get_base_info 3 7043 _001923_hash NULL
-+_001924_hash ipath_init_qp_table 2 25167 _001924_hash NULL
-+_001925_hash ipath_resize_cq 2 712 _001925_hash NULL
-+_001926_hash put_cmsg_compat 4 35937 _001926_hash NULL
-+_001927_hash stats_read_ul 3 32751 _001927_hash NULL
-+_001928_hash sys32_ipc 3 7238 _001928_hash NULL
-+_001929_hash sys32_rt_sigpending 2 25814 _001929_hash NULL
-+_001930_hash compat_readv 3 30273 _001930_hash NULL
-+_001931_hash compat_sys_setsockopt 5 3326 _001931_hash NULL
-+_001932_hash compat_writev 3 60063 _001932_hash NULL
-+_001933_hash ipath_cdev_init 1 37752 _001933_hash NULL
-+_001934_hash compat_sys_preadv 3 583 _001934_hash NULL
-+_001935_hash compat_sys_pwritev 3 17886 _001935_hash NULL
-+_001936_hash compat_sys_readv 3 20911 _001936_hash NULL
-+_001937_hash compat_sys_writev 3 5784 _001937_hash NULL
-+_001938_hash compat_sys_move_pages 2 5861 _001938_hash NULL
-+_001939_hash gru_alloc_gts 2-3 37453 _001939_hash NULL
-+_001941_hash options_write 3 47243 _001941_hash NULL
-+_001942_hash sd_alloc_ctl_entry 1 29708 _001942_hash NULL
-+_001943_hash uv_ptc_proc_write 3 19394 _001943_hash NULL
-+_001944_hash vmemmap_alloc_block 1 43245 _001944_hash NULL
-+_001945_hash xpc_kmalloc_cacheline_aligned 1 42895 _001945_hash NULL
-+_001946_hash xpc_kzalloc_cacheline_aligned 1 65433 _001946_hash NULL
-+_001947_hash alloc_fdtable 1 17389 _001947_hash NULL
-+_001948_hash alloc_ldt 2 21972 _001948_hash NULL
-+_001949_hash __alloc_skb 1 23940 _001949_hash NULL
-+_001950_hash ata_scsi_change_queue_depth 2 37702 _001950_hash NULL
-+_001951_hash ccid3_hc_rx_getsockopt 3 62331 _001951_hash NULL
-+_001952_hash ccid3_hc_tx_getsockopt 3 16314 _001952_hash NULL
-+_001953_hash cistpl_vers_1 4 15023 _001953_hash NULL
-+_001954_hash cmm_read 3 57520 _001954_hash NULL
-+_001955_hash cosa_read 3 25966 _001955_hash NULL
-+_001956_hash csr1212_append_new_cache 2 32202 _001956_hash NULL
-+_001957_hash dma_region_alloc 2 56079 _001957_hash NULL
-+_001958_hash dm_table_create 3 35687 _001958_hash NULL
-+_001959_hash do_write_orph_node 2 64343 _001959_hash NULL
-+_001961_hash ep0_read 3 38095 _001961_hash NULL
-+_001962_hash event_buffer_read 3 48772 _001962_hash NULL
-+_001963_hash extract_entropy_user 3 26952 _001963_hash NULL
-+_001964_hash get_fd_set 1 3866 _001964_hash NULL
-+_001965_hash __get_vm_area_node 1 55305 _001965_hash NULL
-+_001966_hash hpsb_alloc_packet 1 49798 _001966_hash NULL
-+_001967_hash joydev_handle_JSIOCSAXMAP 3 48898 _002061_hash NULL nohasharray
-+_001968_hash joydev_handle_JSIOCSBTNMAP 3 15643 _001968_hash NULL
-+_001969_hash minstrel_stats_read 3 17290 _001969_hash NULL
-+_001970_hash ntfs_rl_realloc 3 56831 _001970_hash NULL
-+_001971_hash ntfs_rl_realloc_nofail 3 32173 _001971_hash NULL
-+_001972_hash reqsk_queue_alloc 2 40272 _001972_hash NULL
-+_001973_hash resize_info_buffer 2 62889 _001973_hash NULL
-+_001974_hash rfkill_fop_write 3 64808 _001974_hash NULL
-+_001975_hash sctp_getsockopt_active_key 2 45483 _001975_hash NULL
-+_001976_hash sctp_getsockopt_adaptation_layer 2 45375 _001976_hash NULL
-+_001977_hash sctp_getsockopt_associnfo 2 58169 _001977_hash NULL
-+_001978_hash sctp_getsockopt_assoc_number 2 6384 _001978_hash NULL
-+_001979_hash sctp_getsockopt_context 2 52490 _001979_hash NULL
-+_001980_hash sctp_getsockopt_default_send_param 2 63056 _001980_hash NULL
-+_001981_hash sctp_getsockopt_disable_fragments 2 12330 _001981_hash NULL
-+_001982_hash sctp_getsockopt_events 2 3607 _001982_hash NULL
-+_001983_hash sctp_getsockopt_fragment_interleave 2 51215 _001983_hash NULL
-+_001984_hash sctp_getsockopt_initmsg 2 26042 _001984_hash NULL
-+_001985_hash sctp_getsockopt_local_addrs_old 2 4220 _001985_hash NULL
-+_001986_hash sctp_getsockopt_mappedv4 2 20044 _001986_hash NULL
-+_001987_hash sctp_getsockopt_nodelay 2 9560 _001987_hash NULL
-+_001988_hash sctp_getsockopt_partial_delivery_point 2 60952 _001988_hash NULL
-+_001989_hash sctp_getsockopt_peeloff 2 59190 _001989_hash NULL
-+_001990_hash sctp_getsockopt_peer_addr_info 2 6024 _001990_hash NULL
-+_001991_hash sctp_getsockopt_peer_addr_params 2 53645 _001991_hash NULL
-+_001992_hash sctp_getsockopt_peer_addrs_old 2 11565 _002138_hash NULL nohasharray
-+_001993_hash sctp_getsockopt_primary_addr 2 24639 _001993_hash NULL
-+_001994_hash sctp_getsockopt_rtoinfo 2 62027 _001994_hash NULL
-+_001995_hash sctp_getsockopt_sctp_status 2 56540 _001995_hash NULL
-+_001996_hash snd_mixart_BA0_read 5-6 45069 _001996_hash NULL
-+_001997_hash snd_mixart_BA1_read 5-6 5082 _001997_hash NULL
-+_001998_hash snd_pcm_oss_read2 3 54387 _001998_hash NULL
-+_001999_hash tty_buffer_find 2 2443 _001999_hash NULL
-+_002000_hash unix_bind 3 15668 _002000_hash NULL
-+_002001_hash usbvideo_rvmalloc 1 17758 _002001_hash NULL
-+_002002_hash usbvision_rvmalloc 1 19655 _002002_hash NULL
-+_002003_hash alloc_skb 1 55439 _002003_hash NULL
-+_002004_hash alloc_skb_fclone 1 3467 _002004_hash NULL
-+_002005_hash core_sys_select 1 47494 _002005_hash NULL
-+_002006_hash create_reply_packet 3 6789 _002006_hash NULL
-+_002007_hash expand_fdtable 2 39273 _002007_hash NULL
-+_002008_hash get_vm_area 1 18080 _002008_hash NULL
-+_002009_hash __get_vm_area 1 61599 _002009_hash NULL
-+_002010_hash get_vm_area_caller 1 10527 _002010_hash NULL
-+_002011_hash __get_vm_area_caller 1 56416 _002233_hash NULL nohasharray
-+_002012_hash get_vm_area_node 1 44507 _002012_hash NULL
-+_002013_hash hpsb_make_readpacket 4 34181 _002013_hash NULL
-+_002014_hash hpsb_make_streampacket 3 21071 _002014_hash NULL
-+_002015_hash hpsb_make_writepacket 5 61656 _002015_hash NULL
-+_002016_hash inet_csk_listen_start 2 38233 _002016_hash NULL
-+_002017_hash __netdev_alloc_skb 2 18595 _002017_hash NULL
-+_002018_hash ntfs_rl_append 2-4 6037 _002018_hash NULL
-+_002020_hash ntfs_rl_insert 2-4 4931 _002020_hash NULL
-+_002022_hash ntfs_rl_replace 2-4 14136 _002022_hash NULL
-+_002024_hash ntfs_rl_split 2-4 52328 _002024_hash NULL
-+_002026_hash random_read 3 13815 _002026_hash NULL
-+_002027_hash tty_buffer_request_room 2 23228 _002027_hash NULL
-+_002028_hash urandom_read 3 30462 _002028_hash NULL
-+_002029_hash alloc_tx 2 32143 _002029_hash NULL
-+_002030_hash alloc_vm_area 1 16003 _002030_hash &_000575_hash
-+_002031_hash atm_alloc_charge 2 19517 _002100_hash NULL nohasharray
-+_002032_hash ax25_output 2 22736 _002032_hash NULL
-+_002033_hash bcsp_prepare_pkt 3 12961 _002033_hash NULL
-+_002034_hash bt_skb_alloc 1 6404 _002034_hash NULL
-+_002035_hash cxgb3_get_cpl_reply_skb 2 10620 _002035_hash NULL
-+_002036_hash dccp_listen_start 2 35918 _002036_hash NULL
-+_002037_hash __dev_alloc_skb 1 28681 _002037_hash NULL
-+_002038_hash dn_alloc_skb 2 6631 _002038_hash NULL
-+_002039_hash do_pselect 1 62061 _002039_hash NULL
-+_002040_hash edge_tty_recv 4 18667 _002040_hash NULL
-+_002041_hash expand_files 2 17080 _002041_hash NULL
-+_002042_hash find_skb 2 20431 _002042_hash NULL
-+_002043_hash gem_alloc_skb 1 59411 _002043_hash NULL
-+_002044_hash get_packet 3 41914 _002044_hash NULL
-+_002045_hash get_packet 3 5747 _002045_hash NULL
-+_002046_hash get_packet_pg 4 28023 _002046_hash NULL
-+_002047_hash get_skb 2 63008 _002047_hash NULL
-+_002048_hash hidp_queue_report 3 1881 _002048_hash NULL
-+_002049_hash __hidp_send_ctrl_message 4 28303 _002049_hash NULL
-+_002050_hash hpsb_read 6 29049 _002578_hash NULL nohasharray
-+_002051_hash hpsb_write 6 49217 _002051_hash NULL
-+_002052_hash i2400m_net_rx 5 27170 _002052_hash NULL
-+_002053_hash igmpv3_newpack 2 35912 _002053_hash NULL
-+_002054_hash inet_listen 2 14723 _002054_hash NULL
-+_002055_hash __ioremap_caller 2-1 21800 _002055_hash NULL
-+_002056_hash isdn_net_ciscohdlck_alloc_skb 2 55209 _002056_hash &_001371_hash
-+_002057_hash isdn_ppp_ccp_xmit_reset 6 63297 _002057_hash NULL
-+_002058_hash _l2_alloc_skb 1 11883 _002058_hash NULL
-+_002059_hash l3_alloc_skb 1 32289 _002059_hash NULL
-+_002060_hash llc_alloc_frame 4 64366 _002060_hash NULL
-+_002061_hash mac_drv_rx_init 2 48898 _002061_hash &_001967_hash
-+_002062_hash mI_alloc_skb 1 24770 _002062_hash NULL
-+_002063_hash module_alloc 1 63630 _002063_hash NULL
-+_002064_hash netdev_alloc_skb 2 62437 _002064_hash NULL
-+_002065_hash new_skb 1 21148 _002065_hash NULL
-+_002066_hash nfulnl_alloc_skb 2 65207 _002066_hash NULL
-+_002067_hash ni65_alloc_mem 3 10664 _002067_hash NULL
-+_002068_hash pep_reply 5 50582 _002068_hash NULL
-+_002069_hash pn_raw_send 2 54330 _002069_hash NULL
-+_002070_hash refill_pool 2 19477 _002070_hash NULL
-+_002071_hash rfcomm_wmalloc 2 58090 _002071_hash NULL
-+_002072_hash rtl8169_alloc_rx_skb 4-5 25392 _002072_hash NULL
-+_002074_hash rx 4 57944 _002074_hash NULL
-+_002075_hash sbp2util_node_write_no_wait 4 7510 _002075_hash NULL
-+_002076_hash sctp_ulpevent_new 1 33377 _002076_hash NULL
-+_002077_hash send_command 4 10832 _002077_hash NULL
-+_002078_hash send_to_tty 3 45141 _002078_hash NULL
-+_002079_hash skb_copy_expand 2-3 7685 _002079_hash &_000403_hash
-+_002081_hash sk_stream_alloc_skb 2 57622 _002081_hash NULL
-+_002082_hash sock_alloc_send_pskb 2 21246 _002082_hash NULL
-+_002083_hash sock_rmalloc 2 59740 _002083_hash &_001739_hash
-+_002084_hash sock_wmalloc 2 16472 _002084_hash NULL
-+_002085_hash solos_param_store 4 34755 _002085_hash NULL
-+_002086_hash sys_select 1 38827 _002086_hash NULL
-+_002087_hash tcp_collapse 5-6 63294 _002087_hash NULL
-+_002089_hash tipc_cfg_reply_alloc 1 27606 _002089_hash NULL
-+_002090_hash ti_recv 4 22027 _002090_hash NULL
-+_002091_hash tty_prepare_flip_string 3 39955 _002091_hash NULL
-+_002092_hash tty_prepare_flip_string_flags 4 59240 _002092_hash NULL
-+_002093_hash ulog_alloc_skb 1 23427 _002093_hash NULL
-+_002094_hash vmap 2 15025 _002094_hash NULL
-+_002095_hash alloc_fd 1 37637 _002095_hash NULL
-+_002096_hash _alloc_mISDN_skb 3 52232 _002096_hash NULL
-+_002097_hash ath_rxbuf_alloc 2 24745 _002097_hash NULL
-+_002098_hash ax25_send_frame 2 19964 _002098_hash NULL
-+_002099_hash console_store 4 36007 _002099_hash NULL
-+_002100_hash dev_alloc_skb 1 19517 _002100_hash &_002031_hash
-+_002101_hash dn_nsp_do_disc 2-6 49474 _002101_hash NULL
-+_002103_hash dsp_cmx_send_member 2 15625 _002103_hash NULL
-+_002104_hash enic_rq_alloc_skb 2 17220 _002104_hash NULL
-+_002105_hash hci_send_cmd 3 43810 _002105_hash NULL
-+_002106_hash hci_si_event 3 1404 _002106_hash NULL
-+_002107_hash hfcpci_empty_bfifo 4 62323 _002107_hash NULL
-+_002108_hash hidp_send_ctrl_message 4 43702 _002108_hash NULL
-+_002109_hash hpsb_node_read 4 53963 _002109_hash NULL
-+_002110_hash hpsb_node_write 4 52928 _002110_hash NULL
-+_002111_hash inet_dccp_listen 2 28565 _002111_hash NULL
-+_002112_hash ioremap_cache 2-1 47189 _002112_hash NULL
-+_002113_hash ioremap_default 2-1 64667 _002113_hash NULL
-+_002114_hash ioremap_nocache 2-1 2439 _002114_hash NULL
-+_002115_hash ioremap_prot 2-1 51764 _002115_hash NULL
-+_002116_hash ioremap_wc 2-1 62695 _002116_hash NULL
-+_002117_hash ip6_append_data 4-5 60501 _002117_hash NULL
-+_002118_hash ip_append_data 4-5 41234 _002118_hash NULL
-+_002119_hash l1oip_socket_recv 6 56537 _002119_hash NULL
-+_002120_hash l2cap_build_cmd 4 48676 _002120_hash NULL
-+_002121_hash l2down_create 4 21755 _002121_hash NULL
-+_002122_hash l2up_create 3 6430 _002122_hash NULL
-+_002125_hash lro_gen_skb 6 2644 _002125_hash NULL
-+_002126_hash module_alloc_update_bounds 1 47205 _002126_hash NULL
-+_002127_hash netpoll_send_udp 3 58955 _002127_hash NULL
-+_002128_hash nfqnl_mangle 2 14583 _002128_hash NULL
-+_002129_hash p54_alloc_skb 3 34366 _002129_hash &_000292_hash
-+_002130_hash process_rcvd_data 3 6679 _002130_hash NULL
-+_002131_hash receive_copy 3 12216 _002131_hash NULL
-+_002132_hash rfcomm_tty_write 3 51603 _002132_hash NULL
-+_002133_hash rtl8169_try_rx_copy 3 55465 _002133_hash NULL
-+_002134_hash send_mpa_reject 3 7135 _002134_hash NULL
-+_002135_hash send_mpa_reply 3 32372 _002135_hash NULL
-+_002136_hash sge_rx 3 50594 _002136_hash NULL
-+_002137_hash sis190_try_rx_copy 3 57069 _002137_hash NULL
-+_002138_hash skb_cow_data 2 11565 _002138_hash &_001992_hash
-+_002139_hash skge_rx_get 3 40598 _002139_hash NULL
-+_002140_hash sock_alloc_send_skb 2 23720 _002140_hash NULL
-+_002141_hash sys_dup3 2 33421 _002141_hash NULL
-+_002142_hash sys_pselect6 1 57449 _002142_hash NULL
-+_002143_hash tcp_fragment 3 20436 _002143_hash NULL
-+_002144_hash teiup_create 3 43201 _002144_hash NULL
-+_002145_hash ttm_bo_kmap_ttm 3 5922 _002145_hash &_001624_hash
-+_002146_hash tun_alloc_skb 2-4-3 41216 _002146_hash NULL
-+_002148_hash use_pool 2 64607 _002148_hash NULL
-+_002149_hash velocity_rx_copy 2 34583 _002149_hash NULL
-+_002150_hash vxge_rx_alloc 3 52024 _002150_hash NULL
-+_002151_hash add_rx_skb 3 8257 _002151_hash NULL
-+_002152_hash ar9170_rx_copy_data 2 35787 _002152_hash NULL
-+_002153_hash arlan_rx_interrupt 4 10184 _002153_hash NULL
-+_002154_hash br_send_bpdu 3 29669 _002154_hash NULL
-+_002155_hash bt_skb_send_alloc 2 6581 _002155_hash NULL
-+_002156_hash cosa_net_setup_rx 2 38594 _002156_hash NULL
-+_002157_hash deliver_packet 3 767 _002157_hash NULL
-+_002158_hash devm_ioremap_nocache 3-2 2036 _002158_hash NULL
-+_002159_hash dn_alloc_send_pskb 2 4465 _002159_hash NULL
-+_002160_hash dn_nsp_return_disc 2 60296 _002160_hash NULL
-+_002161_hash dn_nsp_send_disc 2 23469 _002161_hash NULL
-+_002162_hash do_fcntl 3 31468 _002162_hash NULL
-+_002163_hash dsp_tone_hw_message 3 17678 _002163_hash NULL
-+_002164_hash dvb_net_sec 3 37884 _002164_hash NULL
-+_002165_hash ether1394_data_handler 5 2481 _002165_hash NULL
-+_002166_hash fast_rx_path 3 59214 _002166_hash NULL
-+_002167_hash __fc_frame_alloc 1 23432 _002167_hash NULL
-+_002168_hash fwnet_incoming_packet 3 40380 _002168_hash NULL
-+_002169_hash fwnet_pd_new 4 39947 _002169_hash NULL
-+_002170_hash got_frame 2 16028 _002170_hash NULL
-+_002171_hash hdlcdev_rx 3 997 _002171_hash NULL
-+_002172_hash HDLC_Encode 2-3 7186 _002172_hash NULL
-+_002174_hash hfc_empty_fifo 2 57972 _002174_hash NULL
-+_002175_hash hfcpci_empty_fifo 4 2427 _002175_hash NULL
-+_002176_hash hysdn_rx_netpkt 3 16136 _002176_hash NULL
-+_002177_hash ieee80211_fragment 4 33112 _002177_hash NULL
-+_002178_hash ieee80211_send_auth 5 60865 _002178_hash NULL
-+_002179_hash ieee80211_send_probe_req 6 49265 _002179_hash NULL
-+_002180_hash ioremap 2-1 23172 _002180_hash NULL
-+_002181_hash ip6_ufo_append_data 5-7-6 40301 _002181_hash NULL
-+_002184_hash ip_send_reply 4 46635 _002184_hash NULL
-+_002185_hash ip_ufo_append_data 5-7-6 27187 _002185_hash NULL
-+_002188_hash ipw_packet_received_skb 2 1230 _002188_hash NULL
-+_002189_hash iraw_encode 2-3 18099 _002189_hash NULL
-+_002191_hash iwch_reject_cr 3 23901 _002191_hash NULL
-+_002192_hash iwm_rx_packet_alloc 3 9898 _002192_hash NULL
-+_002193_hash l1oip_socket_parse 4 4507 _002193_hash NULL
-+_002194_hash l2cap_send_cmd 4 3678 _002194_hash NULL
-+_002196_hash mcs_unwrap_fir 3 25733 _002196_hash NULL
-+_002197_hash mcs_unwrap_mir 3 9455 _002197_hash NULL
-+_002198_hash mga_ioremap 2-1 8571 _002198_hash NULL
-+_002199_hash mld_newpack 2 50950 _002199_hash NULL
-+_002200_hash new_partial_datagram 4 16576 _002200_hash &_001692_hash
-+_002201_hash node_read 4 45634 _002201_hash NULL
-+_002202_hash node_write 4 29878 _002202_hash NULL
-+_002203_hash p54_download_eeprom 4 43842 _002203_hash NULL
-+_002204_hash pci_iomap 3 47575 _002204_hash NULL
-+_002205_hash ppp_tx_cp 5 62044 _002205_hash NULL
-+_002206_hash prism2_send_mgmt 4 62605 _002206_hash &_001462_hash
-+_002207_hash prism2_sta_send_mgmt 5 43916 _002207_hash NULL
-+_002208_hash _queue_data 4 54983 _002208_hash NULL
-+_002209_hash read_fifo 3 826 _002209_hash NULL
-+_002210_hash rx_data 4 60442 _002210_hash NULL
-+_002211_hash sbp2util_notify_fetch_agent 4 40494 _002211_hash NULL
-+_002212_hash set_rxd_buffer_pointer 8 9950 _002212_hash NULL
-+_002213_hash sky2_receive 2 13407 _002213_hash NULL
-+_002214_hash smctr_process_rx_packet 2 13270 _002214_hash NULL
-+_002215_hash sys_dup2 2 25284 _002215_hash NULL
-+_002216_hash tcp_mark_head_lost 2 50087 _002216_hash NULL
-+_002217_hash tcp_match_skb_to_sack 3-4 23568 _002217_hash NULL
-+_002219_hash tso_fragment 3 12539 _002219_hash NULL
-+_002220_hash ttm_bo_ioremap 4-3-2 40854 _002220_hash NULL
-+_002221_hash ttm_bo_kmap 3 60118 _002221_hash NULL
-+_002222_hash udp_sendmsg 4 4492 _002222_hash NULL
-+_002223_hash udpv6_sendmsg 4 22316 _002223_hash NULL
-+_002224_hash wl1271_rx_handle_data 2 47827 _002224_hash NULL
-+_002225_hash wv_packet_read 3 39140 _002225_hash NULL
-+_002226_hash zd_mac_rx 3 38296 _002226_hash NULL
-+_002227_hash aac_nark_ioremap 2 50163 _002227_hash &_000206_hash
-+_002228_hash aac_rkt_ioremap 2 3333 _002228_hash NULL
-+_002229_hash aac_rx_ioremap 2 52410 _002229_hash NULL
-+_002230_hash aac_sa_ioremap 2 13596 _002230_hash &_000190_hash
-+_002231_hash acpi_os_map_memory 2-1 11161 _002231_hash NULL
-+_002232_hash acpi_os_read_memory 3-1 54186 _002232_hash NULL
-+_002233_hash acpi_os_write_memory 3-1 56416 _002233_hash &_002011_hash
-+_002234_hash ar9170_handle_mpdu 3 37956 _002234_hash NULL
-+_002235_hash check586 2 29914 _002235_hash NULL
-+_002236_hash check_mirror 2-1 57342 _002236_hash &_001259_hash
-+_002237_hash devm_ioremap 3-2 29235 _002237_hash &_000851_hash
-+_002238_hash dma_declare_coherent_memory 4-2 14244 _002238_hash NULL
-+_002239_hash dvb_net_sec_callback 2 28786 _002239_hash NULL
-+_002240_hash ether1394_write 6 6180 _002240_hash NULL
-+_002241_hash _fc_frame_alloc 2 28865 _002241_hash NULL
-+_002242_hash fc_frame_alloc_fill 2 59394 _002242_hash NULL
-+_002243_hash fwnet_receive_packet 10 46054 _002243_hash NULL
-+_002244_hash handle_rx_packet 3 58993 _002244_hash NULL
-+_002245_hash hysdn_sched_rx 3 60533 _002245_hash NULL
-+_002250_hash ipwireless_network_packet_received 4 51277 _002250_hash NULL
-+_002251_hash isp1760_register 2-1 14408 _002251_hash NULL
-+_002252_hash iwm_ntf_rx_packet 3 60452 _002252_hash NULL
-+_002253_hash mthca_map_reg 3-2 5664 _002253_hash NULL
-+_002254_hash pcim_iomap 3 58334 _002254_hash NULL
-+_002255_hash ppp_cp_event 6 2965 _002255_hash NULL
-+_002256_hash register_device 3-2 60015 _002256_hash NULL
-+_002257_hash remap_pci_mem 1-2 15966 _002257_hash NULL
-+_002259_hash sfi_map_memory 2-1 5183 _002259_hash NULL
-+_002260_hash sriov_enable_migration 2 14889 _002260_hash NULL
-+_002261_hash sys_fcntl 3 19267 _002261_hash NULL
-+_002262_hash sys_fcntl64 3 29031 _002262_hash NULL
-+_002263_hash tcp_sacktag_walk 5-6 26339 _002263_hash NULL
-+_002265_hash tcp_update_scoreboard 2 21639 _002265_hash NULL
-+_002266_hash tcp_write_xmit 2 39755 _002266_hash NULL
-+_002267_hash tpm_tis_init 3-2 15304 _002267_hash NULL
-+_002268_hash acpi_ex_system_memory_space_handler 2 31192 _002268_hash NULL
-+_002269_hash dmam_declare_coherent_memory 4-2 43679 _002269_hash NULL
-+_002270_hash fc_frame_alloc 2 1596 _002270_hash NULL
-+_002271_hash sriov_enable 2 59689 _002271_hash NULL
-+_002272_hash tcp_push_one 2 48816 _002272_hash NULL
-+_002273_hash __tcp_push_pending_frames 2 48148 _002273_hash NULL
-+_002274_hash pci_enable_sriov 2 35745 _002274_hash NULL
-+_002275_hash tcp_push 3 10680 _002275_hash NULL
-+_002276_hash msix_map_region 3 3411 _002276_hash NULL
-+_002277_hash compat_sys_fcntl64 3 60256 _002277_hash NULL
-+_002278_hash efi_ioremap 2-1 3492 _002278_hash &_000785_hash
-+_002279_hash snd_nm256_capture_copy 5 28622 _002279_hash NULL
-+_002280_hash snd_nm256_playback_copy 5 38567 _002280_hash NULL
-+_002281_hash compat_sys_fcntl 3 15654 _002281_hash NULL
-+_002287_hash xlate_dev_mem_ptr 1 15291 _002287_hash &_001234_hash
-+_002288_hash a4t_cs_init 3 27734 _002288_hash NULL
-+_002292_hash atyfb_setup_generic 3 49151 _002292_hash NULL
-+_002293_hash c101_run 2 37279 _002293_hash NULL
-+_002295_hash cru_detect 1 11272 _002295_hash NULL
-+_002296_hash cs553x_init_one 3 58886 _002296_hash NULL
-+_002297_hash cycx_setup 4 47562 _002297_hash NULL
-+_002298_hash DepcaSignature 2 80 _002298_hash &_000995_hash
-+_002301_hash doc_probe 1 23285 _002301_hash NULL
-+_002302_hash DoC_Probe 1 57534 _002302_hash NULL
-+_002303_hash gdth_init_isa 1 28091 _002303_hash NULL
-+_002304_hash gdth_search_isa 1 58595 _002304_hash NULL
-+_002307_hash n2_run 3 53459 _002307_hash NULL
-+_002308_hash probe_bios 1 17467 _002308_hash NULL
-+_002311_hash ssb_bus_scan 2 36578 _002311_hash NULL
-+_002312_hash ssb_ioremap 2 5228 _002312_hash NULL
-+_002313_hash acpi_tb_check_xsdt 1 21862 _002313_hash NULL
-+_002314_hash acpi_tb_install_table 1 12988 _002314_hash NULL
-+_002315_hash acpi_tb_parse_root_table 1 53455 _002315_hash NULL
-+_002316_hash com90xx_found 3 13974 _002316_hash NULL
-+_002318_hash gdth_isa_probe_one 1 48925 _002318_hash NULL
-+_002319_hash sfi_map_table 1 5462 _002319_hash NULL
-+_002320_hash ssb_bus_register 3 65183 _002320_hash NULL
-+_002321_hash sfi_check_table 1 6772 _002321_hash NULL
-+_002322_hash ssb_bus_pcmciabus_register 3 56020 _002322_hash NULL
-+_002323_hash ssb_bus_ssbbus_register 2 2217 _002323_hash NULL
-+_002326_hash iommu_map_mmio_space 1 30919 _002326_hash NULL
-+_002327_hash allocate_probes 1 40204 _002327_hash NULL
-+_002328_hash b1_alloc_card 1 36155 _002328_hash NULL
-+_002329_hash blk_dropped_read 3 4168 _002329_hash NULL
-+_002330_hash blk_msg_write 3 13655 _002330_hash NULL
-+_002331_hash capinc_tty_write 3 28539 _002331_hash NULL
-+_002332_hash capi_write 3 35104 _002332_hash NULL
-+_002333_hash cmtp_add_msgpart 4 9252 _002333_hash NULL
-+_002334_hash cmtp_send_interopmsg 7 376 _002334_hash NULL
-+_002335_hash dccpprobe_read 3 52549 _002335_hash NULL
-+_002336_hash __devres_alloc 2 25598 _002336_hash NULL
-+_002337_hash diva_os_alloc_message_buffer 1 64568 _002337_hash NULL
-+_002338_hash diva_os_copy_from_user 4 7792 _002338_hash NULL
-+_002339_hash diva_os_copy_to_user 4 48508 _002339_hash NULL
-+_002340_hash diva_os_malloc 2 16406 _002340_hash NULL
-+_002341_hash divasa_remap_pci_bar 3-4 23485 _002341_hash &_000660_hash
-+_002343_hash do_test 1 15766 _002343_hash NULL
-+_002344_hash event_enable_read 3 7074 _002344_hash NULL
-+_002345_hash event_enable_write 3 45238 _002345_hash NULL
-+_002346_hash event_filter_read 3 23494 _002346_hash NULL
-+_002347_hash event_filter_write 3 56609 _002347_hash NULL
-+_002348_hash event_format_read 3 54674 _002348_hash NULL
-+_002349_hash event_id_read 3 64288 _002349_hash &_000935_hash
-+_002350_hash ftrace_pid_read 3 14970 _002350_hash NULL
-+_002351_hash ftrace_pid_write 3 39710 _002351_hash NULL
-+_002352_hash ftrace_profile_read 3 21327 _002352_hash NULL
-+_002353_hash ftrace_profile_write 3 53327 _002353_hash NULL
-+_002354_hash hycapi_rx_capipkt 3 11602 _002354_hash NULL
-+_002355_hash io_mapping_create_wc 1-2 1354 _002355_hash NULL
-+_002357_hash kgdb_hex2mem 3 24755 _002357_hash NULL
-+_002358_hash kgdb_mem2hex 3 1578 _002358_hash NULL
-+_002359_hash __module_alloc 1 50004 _002359_hash NULL
-+_002360_hash module_alloc_update_bounds_rw 1 63233 _002360_hash NULL
-+_002361_hash module_alloc_update_bounds_rx 1 58634 _002361_hash NULL
-+_002362_hash p9_client_read 5 19750 _002362_hash NULL
-+_002363_hash pmcraid_copy_sglist 3 38431 _002363_hash NULL
-+_002364_hash proc_fault_inject_read 3 36802 _002364_hash NULL
-+_002365_hash proc_fault_inject_write 3 21058 _002365_hash NULL
-+_002366_hash rb_simple_read 3 45972 _002366_hash NULL
-+_002367_hash rb_simple_write 3 20890 _002367_hash NULL
-+_002368_hash show_header 3 4722 _002368_hash &_000451_hash
-+_002369_hash stack_max_size_read 3 1445 _002369_hash NULL
-+_002370_hash stack_max_size_write 3 36068 _002370_hash NULL
-+_002371_hash subsystem_filter_read 3 62310 _002371_hash NULL
-+_002372_hash subsystem_filter_write 3 13022 _002372_hash NULL
-+_002373_hash sysprof_sample_read 3 9605 _002373_hash &_000327_hash
-+_002374_hash sysprof_sample_write 3 62489 _002374_hash NULL
-+_002375_hash system_enable_read 3 25815 _002375_hash NULL
-+_002376_hash system_enable_write 3 61396 _002376_hash NULL
-+_002377_hash trace_options_core_read 3 47390 _002377_hash NULL
-+_002378_hash trace_options_core_write 3 61551 _002378_hash NULL
-+_002379_hash trace_options_read 3 11419 _002379_hash NULL
-+_002380_hash trace_options_write 3 48275 _002380_hash NULL
-+_002381_hash trace_parser_get_init 2 31379 _002381_hash NULL
-+_002382_hash trace_seq_to_user 3 65398 _002382_hash NULL
-+_002383_hash tracing_buffers_read 3 11124 _002383_hash NULL
-+_002384_hash tracing_clock_read 3 39975 _002384_hash NULL
-+_002385_hash tracing_clock_write 3 27961 _002385_hash NULL
-+_002386_hash tracing_cpumask_read 3 7010 _002386_hash NULL
-+_002387_hash tracing_ctrl_read 3 46922 _002387_hash NULL
-+_002388_hash tracing_ctrl_write 3 42324 _002388_hash &_001372_hash
-+_002389_hash tracing_entries_read 3 8345 _002389_hash NULL
-+_002390_hash tracing_entries_write 3 60563 _002390_hash NULL
-+_002391_hash tracing_mark_write 3 62143 _002391_hash NULL
-+_002392_hash tracing_max_lat_read 3 8890 _002392_hash NULL
-+_002393_hash tracing_max_lat_write 3 8728 _002393_hash NULL
-+_002394_hash tracing_read_dyn_info 3 45468 _002394_hash NULL
-+_002395_hash tracing_readme_read 3 16493 _002395_hash NULL
-+_002396_hash tracing_saved_cmdlines_read 3 21434 _002396_hash NULL
-+_002397_hash tracing_set_trace_read 3 44122 _002397_hash NULL
-+_002398_hash tracing_set_trace_write 3 57096 _002398_hash NULL
-+_002399_hash tracing_stats_read 3 34537 _002399_hash NULL
-+_002400_hash tracing_trace_options_read 3 51405 _002400_hash NULL
-+_002401_hash tracing_trace_options_write 3 153 _002401_hash NULL
-+_002402_hash tstats_write 3 60432 _002402_hash &_000010_hash
-+_002403_hash um_idi_write 3 18293 _002403_hash NULL
-+_002404_hash __vmalloc_node 1 39308 _002404_hash NULL
-+_002405_hash xdi_copy_from_user 4 8395 _002405_hash NULL
-+_002406_hash xdi_copy_to_user 4 48900 _002406_hash NULL
-+_002407_hash c4_add_card 3 54968 _002407_hash NULL
-+_002408_hash mmio_read 4 40348 _002408_hash NULL
-+_002409_hash tracing_read_pipe 3 35312 _002409_hash NULL
-+_002410_hash v9fs_file_read 3 40858 _002410_hash NULL
-+_002411_hash v9fs_file_readn 4 36353 _002411_hash NULL
-+_002412_hash create_table 2 16213 _002412_hash NULL
-+_002413_hash acl_alloc 1 35979 _002413_hash NULL
-+_002414_hash acl_alloc_stack_init 1 60630 _002414_hash NULL
-+_002415_hash acl_alloc_num 1-2 60778 _002415_hash NULL
-+_002416_hash alloc_etherdev_mq_compat 1 2247 _002416_hash NULL
-+_002417_hash __netdev_alloc_skb_ip_align 2 55067 _002417_hash NULL
-+_002418_hash sysctl_string_modpriv 5 32895 _002418_hash NULL
-+_002419_hash netdev_alloc_skb_ip_align 2 40811 _002419_hash NULL
-+_002421_hash padzero 1 55 _002421_hash &_001570_hash
-+_002422_hash mpt_lan_receive_post_turbo 2 13592 _002422_hash NULL
-+_002423_hash agp_remap 2 30665 _002423_hash NULL
-+_002424_hash allocate_buffers 2 4113 _002424_hash NULL
-+_002425_hash ___alloc_bootmem_node 2 18882 _002425_hash NULL
-+_002426_hash ___alloc_bootmem_nopanic 1 53626 _002426_hash NULL
-+_002427_hash _alloc_get_attr_desc 2 470 _002427_hash NULL
-+_002428_hash _alloc_set_attr_list 4 48991 _002428_hash NULL
-+_002432_hash btmrvl_sdio_host_to_card 3 12152 _002432_hash NULL
-+_002434_hash buf_acquire 1 3736 _002434_hash NULL
-+_002435_hash cache_read_pipefs 3 47615 _002435_hash NULL
-+_002436_hash cache_read_procfs 3 52882 _002436_hash NULL
-+_002437_hash cache_write_pipefs 3 48270 _002437_hash NULL
-+_002438_hash cache_write_procfs 3 22491 _002438_hash NULL
-+_002439_hash cgroup_file_read 3 28804 _002439_hash NULL
-+_002440_hash cgroup_file_write 3 52417 _002440_hash NULL
-+_002441_hash cnic_init_id_tbl 2 21872 _002441_hash NULL
-+_002443_hash cp210x_get_config 4 56229 _002443_hash NULL
-+_002444_hash cp210x_set_config 4 46447 _002444_hash NULL
-+_002445_hash cx18_v4l2_read 3 21196 _002445_hash NULL
-+_002446_hash dccp_setsockopt 5 60367 _002446_hash NULL
-+_002447_hash dispatch_ioctl 2 32357 _002447_hash NULL
-+_002448_hash dn_setsockopt 5 314 _002448_hash &_001423_hash
-+_002449_hash drm_ioctl 3 65206 _002449_hash NULL
-+_002450_hash dvb_ca_write 3 41171 _002450_hash NULL
-+_002451_hash dvb_demux_read 3 13981 _002451_hash NULL
-+_002452_hash dvb_dmxdev_read_sec 4 7892 _002452_hash NULL
-+_002453_hash dvb_dvr_read 3 17073 _002453_hash NULL
-+_002454_hash dvb_usercopy 3 16640 _002454_hash NULL
-+_002455_hash evdev_do_ioctl 2 24459 _002455_hash NULL
-+_002456_hash fbcon_do_set_font 2-3 4079 _002456_hash NULL
-+_002458_hash fc_host_post_vendor_event 3 30903 _002458_hash NULL
-+_002459_hash fix_unclean_leb 3 23188 _002459_hash NULL
-+_002460_hash fuse_conn_congestion_threshold_read 3 51028 _002460_hash NULL
-+_002461_hash fuse_conn_congestion_threshold_write 3 43736 _002461_hash NULL
-+_002462_hash fuse_conn_max_background_read 3 10855 _002462_hash NULL
-+_002463_hash fuse_conn_max_background_write 3 50061 _002463_hash NULL
-+_002464_hash fuse_fill_write_pages 4 53682 _002464_hash NULL
-+_002465_hash generic_perform_write 3 54832 _002465_hash NULL
-+_002466_hash gen_pool_add 3 21776 _002466_hash NULL
-+_002467_hash groups_alloc 1 7614 _002467_hash NULL
-+_002468_hash handle_eviocgbit 2 4991 _002468_hash NULL
-+_002469_hash hiddev_ioctl 2 36816 _002469_hash NULL
-+_002470_hash hidraw_ioctl 2 63658 _002470_hash NULL
-+_002471_hash if_spi_host_to_card 4 62890 _002471_hash NULL
-+_002472_hash intel_i810_alloc_by_type 1 31226 _002472_hash NULL
-+_002473_hash intel_i830_alloc_by_type 1 40921 _002473_hash NULL
-+_002474_hash ip_options_get_alloc 1 7448 _002474_hash NULL
-+_002475_hash ip_setsockopt 5 33487 _002475_hash NULL
-+_002476_hash ipv6_setsockopt 5 29871 _002476_hash NULL
-+_002477_hash iscsi_if_send_reply 7 52219 _002477_hash NULL
-+_002478_hash iscsi_offload_mesg 5 58425 _002478_hash NULL
-+_002479_hash iscsi_recv_pdu 4 16755 _002479_hash NULL
-+_002480_hash ivtv_v4l2_read 3 1964 _002480_hash NULL
-+_002481_hash joydev_ioctl_common 2 49359 _002481_hash NULL
-+_002482_hash mlx4_init_icm_table 4-5 2151 _002482_hash NULL
-+_002484_hash mon_bin_ioctl 4 21336 _002484_hash NULL
-+_002485_hash __mptctl_ioctl 2 15875 _002485_hash NULL
-+_002486_hash mthca_alloc_icm_table 3-4 38268 _002486_hash &_001718_hash
-+_002488_hash mthca_alloc_init 2 21754 _002488_hash NULL
-+_002489_hash mthca_array_init 2 39987 _002489_hash NULL
-+_002490_hash mthca_buf_alloc 2 35861 _002490_hash NULL
-+_002491_hash mthca_setup_cmd_doorbells 2 53954 _002491_hash NULL
-+_002492_hash mwl8k_prepare_multicast 2 42499 _002492_hash NULL
-+_002493_hash __netlink_change_ngroups 2 46156 _002493_hash NULL
-+_002494_hash netlink_kernel_create 3 18110 _002494_hash NULL
-+_002495_hash nfsd_write 6 54809 _002495_hash NULL
-+_002497_hash osst_read 3 40237 _002497_hash NULL
-+_002498_hash pagemap_read 3 26441 _002498_hash NULL
-+_002499_hash prism2_info_hostscanresults 3 39657 _002499_hash NULL
-+_002500_hash prism2_info_scanresults 3 59729 _002500_hash NULL
-+_002501_hash pskb_expand_head 2-3 42881 _002501_hash NULL
-+_002503_hash rawv6_setsockopt 5 56165 _002503_hash NULL
-+_002504_hash read_flush_pipefs 3 20171 _002504_hash NULL
-+_002505_hash read_flush_procfs 3 27642 _002505_hash NULL
-+_002506_hash receive_packet 2 12367 _002506_hash NULL
-+_002507_hash reiserfs_add_entry 4 23062 _002507_hash &_001847_hash
-+_002508_hash rsc_mgr_init 3 16299 _002508_hash NULL
-+_002509_hash rxrpc_client_sendmsg 5 23236 _002509_hash NULL
-+_002510_hash rxrpc_kernel_send_data 3 60083 _002510_hash NULL
-+_002511_hash rxrpc_server_sendmsg 4 37331 _002511_hash NULL
-+_002512_hash scsi_nl_send_vendor_msg 5 16394 _002512_hash NULL
-+_002513_hash sctp_datamsg_from_user 4 55342 _002513_hash NULL
-+_002514_hash sctp_make_chunk 4 12986 _002514_hash NULL
-+_002515_hash sctp_tsnmap_grow 2 32784 _002515_hash NULL
-+_002516_hash set_fd_set 1 35249 _002516_hash NULL
-+_002520_hash sisusbcon_do_font_op 9 52271 _002520_hash NULL
-+_002521_hash sisusb_write_mem_bulk 4 29678 _002521_hash NULL
-+_002524_hash snd_pcm_plugin_alloc 2 12580 _002524_hash NULL
-+_002525_hash snd_rawmidi_kernel_read 3 4328 _002525_hash NULL
-+_002526_hash snd_rawmidi_read 3 56337 _002526_hash NULL
-+_002527_hash spidev_ioctl 2 12846 _002527_hash NULL
-+_002528_hash squashfs_read_fragment_index_table 3 61137 _002651_hash NULL nohasharray
-+_002529_hash squashfs_read_id_index_table 3 5394 _002529_hash NULL
-+_002530_hash squashfs_read_inode_lookup_table 3 7160 _002530_hash NULL
-+_002531_hash ubifs_wbuf_write_nolock 3 64946 _002531_hash NULL
-+_002533_hash usblp_ioctl 2 30203 _002533_hash NULL
-+_002534_hash usb_serial_generic_write 4 53927 _002534_hash NULL
-+_002537_hash vgacon_adjust_height 2 28124 _002537_hash NULL
-+_002538_hash vhci_read 3 47878 _002538_hash NULL
-+_002539_hash vhci_write 3 2224 _002539_hash NULL
-+_002540_hash __vxge_hw_blockpool_malloc 2 5786 _002540_hash NULL
-+_002541_hash wl1251_cmd_template_set 4 6172 _002541_hash NULL
-+_002542_hash write_flush_pipefs 3 2021 _002542_hash NULL
-+_002543_hash write_flush_procfs 3 44011 _002543_hash NULL
-+_002544_hash xfs_buf_associate_memory 3 17915 _002544_hash NULL
-+_002545_hash xfs_dir2_leaf_getdents 3 23841 _002545_hash NULL
-+_002546_hash xfs_idata_realloc 2 26199 _002546_hash NULL
-+_002547_hash xfs_iformat_local 4 49472 _002547_hash NULL
-+_002548_hash xip_file_read 3 58592 _002548_hash NULL
-+_002549_hash afs_send_simple_reply 3 63940 _002549_hash NULL
-+_002550_hash ___alloc_bootmem 1 11410 _002550_hash NULL
-+_002551_hash __alloc_bootmem_nopanic 1 65397 _002551_hash NULL
-+_002552_hash audit_expand 2 2098 _002552_hash NULL
-+_002553_hash bnx2i_send_nl_mesg 4 48562 _002553_hash NULL
-+_002554_hash dvb_ca_en50221_io_ioctl 3 16113 _002554_hash NULL
-+_002555_hash dvb_demux_ioctl 3 65382 _002555_hash NULL
-+_002556_hash dvb_dvr_ioctl 3 39317 _002556_hash NULL
-+_002557_hash dvb_generic_ioctl 3 3257 _002557_hash NULL
-+_002558_hash dvb_net_ioctl 3 43516 _002558_hash NULL
-+_002559_hash enlarge_skb 2 44248 _002559_hash NULL
-+_002560_hash evdev_ioctl_handler 2 21705 _002560_hash NULL
-+_002561_hash fuse_perform_write 4 18457 _002561_hash NULL
-+_002562_hash fw_device_op_ioctl 2 11595 _002562_hash NULL
-+_002563_hash generic_file_buffered_write 4 25464 _002563_hash NULL
-+_002564_hash ieee80211_skb_resize 3 50211 _002564_hash NULL
-+_002565_hash ip_options_get 4 56538 _002565_hash NULL
-+_002566_hash ip_vs_skb_replace 4-6 3083 _002566_hash NULL
-+_002568_hash __iscsi_complete_pdu 4 10726 _002568_hash NULL
-+_002569_hash iscsi_nop_out_rsp 4 51117 _002569_hash NULL
-+_002570_hash joydev_ioctl 2 33343 _002570_hash NULL
-+_002571_hash mlx4_init_cmpt_table 3 11569 _002571_hash NULL
-+_002572_hash mptctl_ioctl 2 12355 _002572_hash NULL
-+_002573_hash mthca_alloc_cq_buf 3 46512 _002573_hash NULL
-+_002574_hash named_prepare_buf 2 24532 _002574_hash NULL
-+_002575_hash netlink_change_ngroups 2 16457 _002575_hash NULL
-+_002576_hash osd_req_add_get_attr_list 3 49278 _002576_hash NULL
-+_002577_hash __pskb_pull_tail 2 60287 _002577_hash NULL
-+_002578_hash rxrpc_sendmsg 4 29049 _002578_hash &_002050_hash
-+_002579_hash sctp_make_abort 3 34459 _002579_hash NULL
-+_002580_hash sctp_make_asconf 3 4078 _002580_hash NULL
-+_002581_hash sctp_make_asconf_ack 3 31726 _002581_hash NULL
-+_002582_hash sctp_make_datafrag_empty 3 34737 _002582_hash NULL
-+_002583_hash sctp_make_fwdtsn 3 53265 _002583_hash NULL
-+_002584_hash sctp_make_heartbeat 4 958 _002584_hash NULL
-+_002585_hash sctp_make_heartbeat_ack 4 34411 _002585_hash NULL
-+_002586_hash sctp_make_init 4 58401 _002586_hash NULL
-+_002587_hash sctp_make_init_ack 4 3335 _002587_hash NULL
-+_002588_hash sctp_make_op_error_space 3 5528 _002588_hash NULL
-+_002589_hash sctp_tsnmap_mark 2 13527 _002589_hash NULL
-+_002592_hash sisusb_clear_vram 2-3 57466 _002592_hash NULL
-+_002594_hash sisusb_copy_memory 4 35016 _002594_hash NULL
-+_002595_hash sisusb_write 3 44834 _002595_hash NULL
-+_002596_hash __skb_cow 2 39254 _002596_hash NULL
-+_002597_hash skb_pad 2 17302 _002597_hash NULL
-+_002598_hash skb_realloc_headroom 2 19516 _002598_hash NULL
-+_002599_hash snd_pcm_plug_alloc 2 42339 _002599_hash NULL
-+_002600_hash strip_change_mtu 2 33968 _002600_hash NULL
-+_002601_hash sys_setgroups 1 48668 _002601_hash &_000815_hash
-+_002602_hash sys_setgroups16 1 48882 _002602_hash NULL
-+_002603_hash tipc_cltr_prepare_routing_msg 1 56052 _002603_hash NULL
-+_002604_hash ubifs_recover_leb 3 60639 _002604_hash NULL
-+_002605_hash udp_setsockopt 5 25985 _002605_hash NULL
-+_002606_hash udpv6_setsockopt 5 18487 _002606_hash NULL
-+_002607_hash wl1251_build_probe_req 3 10318 _002607_hash NULL
-+_002608_hash write_head 4 30481 _002608_hash NULL
-+_002609_hash write_node 4 33121 _002609_hash NULL
-+_002610_hash xfs_dir2_block_to_sf 3 37868 _002610_hash NULL
-+_002611_hash xfs_dir2_sf_addname_hard 3 54254 _002611_hash NULL
-+_002612_hash xfs_readdir 3 41200 _002612_hash NULL
-+_002613_hash xlog_do_recovery_pass 3 21618 _002613_hash NULL
-+_002614_hash __alloc_bootmem 1 31498 _002614_hash NULL
-+_002615_hash __alloc_bootmem_low 1 43423 _002615_hash NULL
-+_002616_hash audit_log_n_hex 3 45617 _002616_hash NULL
-+_002617_hash audit_log_n_string 3 31705 _002617_hash NULL
-+_002618_hash beiscsi_process_async_pdu 7 39834 _002618_hash NULL
-+_002619_hash evdev_ioctl 2 22371 _002619_hash NULL
-+_002620_hash fuse_file_aio_write 4 46399 _002620_hash NULL
-+_002621_hash iscsi_complete_pdu 4 48372 _002621_hash NULL
-+_002622_hash isdn_ppp_skb_push 2 5236 _002622_hash NULL
-+_002623_hash mthca_alloc_resize_buf 3 60394 _002623_hash NULL
-+_002624_hash mthca_init_cq 2 60011 _002624_hash NULL
-+_002625_hash nf_nat_mangle_tcp_packet 5-7 8643 _002625_hash NULL
-+_002627_hash nf_nat_mangle_udp_packet 5-7 13321 _002627_hash NULL
-+_002629_hash pskb_may_pull 2 22546 _002629_hash NULL
-+_002630_hash __pskb_pull 2 42602 _002630_hash NULL
-+_002631_hash replay_bud 3 56605 _002631_hash NULL
-+_002632_hash sctp_abort_pkt_new 5 55218 _002632_hash NULL
-+_002633_hash sctp_make_abort_violation 4 27959 _002633_hash NULL
-+_002634_hash sctp_make_op_error 5 25941 _002634_hash NULL
-+_002636_hash sisusbcon_bmove 5-7-6 21873 _002636_hash NULL
-+_002639_hash sisusbcon_clear 3-5-4 64329 _002639_hash NULL
-+_002642_hash sisusbcon_putcs 3 57630 _002642_hash NULL
-+_002643_hash sisusbcon_scroll 5-3-2 31315 _002643_hash NULL
-+_002644_hash sisusbcon_scroll_area 3-4 25899 _002644_hash NULL
-+_002646_hash skb_cow 2 26138 _002646_hash NULL
-+_002647_hash skb_cow_head 2 52495 _002647_hash NULL
-+_002648_hash skb_make_writable 2 24783 _002648_hash NULL
-+_002649_hash skb_padto 2 50759 _002649_hash NULL
-+_002650_hash ubifs_recover_log_leb 3 12079 _002650_hash NULL
-+_002651_hash wl1251_hw_scan 3 61137 _002651_hash &_002528_hash
-+_002652_hash xlog_do_log_recovery 3 17550 _002652_hash NULL
-+_002653_hash audit_log_n_untrustedstring 3 9548 _002653_hash NULL
-+_002654_hash dccp_manip_pkt 2 30229 _002654_hash NULL
-+_002655_hash gre_manip_pkt 2 38785 _002655_hash NULL
-+_002656_hash handle_response 5 55951 _002656_hash NULL
-+_002657_hash handle_response_icmp 7 39574 _002657_hash NULL
-+_002658_hash help 4 14971 _002658_hash NULL
-+_002659_hash icmp_manip_pkt 2 48801 _002659_hash NULL
-+_002660_hash ip4ip6_err 5 36772 _002660_hash NULL
-+_002661_hash ip6ip6_err 5 18308 _002661_hash NULL
-+_002662_hash ip_vs_icmp_xmit 4 57701 _002662_hash NULL
-+_002663_hash ip_vs_icmp_xmit_v6 4 18045 _002663_hash NULL
-+_002664_hash iscsi_iser_recv 4 41948 _002664_hash NULL
-+_002665_hash mangle_eprt_packet 5 16882 _002665_hash NULL
-+_002666_hash mangle_epsv_packet 5 36571 _002666_hash NULL
-+_002667_hash mangle_packet 5-7 47567 _002667_hash NULL
-+_002669_hash mangle_rfc959_packet 5 21197 _002669_hash NULL
-+_002670_hash manip_pkt 3 7741 _002670_hash NULL
-+_002671_hash pskb_pull 2 65005 _002671_hash NULL
-+_002672_hash replay_log_leb 3 18704 _002672_hash NULL
-+_002673_hash sctp_manip_pkt 2 40620 _002673_hash NULL
-+_002674_hash sctp_sf_abort_violation 6 38380 _002674_hash NULL
-+_002679_hash skb_gro_header_slow 2 34958 _002679_hash NULL
-+_002680_hash tcp_manip_pkt 2 14202 _002680_hash NULL
-+_002681_hash tty_audit_log 8 47280 _002681_hash NULL
-+_002682_hash udplite_manip_pkt 2 62433 _002682_hash NULL
-+_002683_hash udp_manip_pkt 2 50770 _002683_hash NULL
-+_002684_hash xlog_do_recover 3 59789 _002684_hash NULL
-+_002685_hash afs_extract_data 5 50261 _002685_hash NULL
-+_002686_hash ip_nat_sdp_port 5 17763 _002686_hash NULL
-+_002687_hash ip_nat_sip_expect 6 57732 _002687_hash NULL
-+_002688_hash iser_rcv_completion 2 63364 _002688_hash NULL
-+_002689_hash mangle_sdp_packet 8 30986 _002689_hash NULL
-+_002690_hash map_addr 5 48373 _002690_hash NULL
-+_002691_hash ip_nat_sdp_media 7 60740 _002691_hash NULL
-+_002692_hash copy_nodes_to_user 2 63807 _002692_hash NULL
-+_002693_hash get_nodes 3 39012 _002693_hash NULL
-+_002694_hash ioapic_setup_resources 1 35255 _002694_hash NULL
-+_002695_hash pcpu_alloc_alloc_info 1-2 45813 _002695_hash NULL
-+_002696_hash pcpu_build_alloc_info 3 41443 _002696_hash NULL
-+_002697_hash sys_get_mempolicy 3 30379 _002697_hash NULL
-+_002698_hash sys_mbind 5 7990 _002698_hash NULL
-+_002699_hash sys_migrate_pages 2 39825 _002699_hash NULL
-+_002700_hash sys_set_mempolicy 3 32608 _002700_hash NULL
-+_002701_hash pcpu_embed_first_chunk 3 24224 _002701_hash NULL
-+_002702_hash alloc_mr 1 45935 _002702_hash NULL
-+_002703_hash compat_core_sys_select 1 65285 _002703_hash NULL
-+_002704_hash compat_dccp_setsockopt 5 51263 _002704_hash NULL
-+_002705_hash compat_ip_setsockopt 5 13870 _002705_hash NULL
-+_002706_hash compat_ipv6_setsockopt 5 20468 _002706_hash NULL
-+_002707_hash compat_mpctl_ioctl 2 45671 _002707_hash NULL
-+_002708_hash compat_raw_setsockopt 5 30634 _002708_hash NULL
-+_002709_hash compat_rawv6_setsockopt 5 4967 _002709_hash NULL
-+_002710_hash evdev_ioctl_compat 2 13851 _002710_hash NULL
-+_002711_hash fw_device_op_compat_ioctl 2 42804 _002711_hash NULL
-+_002712_hash hiddev_compat_ioctl 2 41255 _002712_hash NULL
-+_002713_hash joydev_compat_ioctl 2 8765 _002713_hash NULL
-+_002714_hash mon_bin_compat_ioctl 3 50234 _002714_hash NULL
-+_002715_hash compat_sys_select 1 16131 _002715_hash NULL
-+_002716_hash compat_udp_setsockopt 5 38840 _002716_hash NULL
-+_002717_hash compat_udpv6_setsockopt 5 42981 _002717_hash NULL
-+_002718_hash do_compat_pselect 1 10398 _002718_hash NULL
-+_002719_hash ipath_reg_phys_mr 3 23918 _002719_hash NULL
-+_002720_hash compat_sys_pselect6 1 14105 _002720_hash NULL
-+_002721_hash compat_sys_get_mempolicy 3 31109 _002721_hash NULL
-+_002722_hash compat_sys_mbind 5 36256 _002722_hash NULL
-+_002723_hash compat_sys_migrate_pages 2 3157 _002723_hash NULL
-+_002724_hash compat_sys_set_mempolicy 3 57742 _002724_hash &_001783_hash
-+_002725_hash early_node_mem 4 52200 _002725_hash NULL
-+_002726_hash aun_incoming 3 10814 _002726_hash NULL
-+_002727_hash diva_alloc_dma_map 2 23798 _002727_hash NULL
-+_002728_hash diva_xdi_write 4 63975 _002728_hash NULL
-+_002729_hash drm_compat_ioctl 2 51717 _002729_hash NULL
-+_002730_hash get_info 3 55681 _002730_hash NULL
-+_002731_hash i915_compat_ioctl 2 3656 _002731_hash NULL
-+_002732_hash mga_compat_ioctl 2 52170 _002732_hash NULL
-+_002733_hash r128_compat_ioctl 2 39250 _002733_hash NULL
-+_002734_hash radeon_compat_ioctl 2 59150 _002734_hash NULL
-+_002735_hash radeon_kms_compat_ioctl 2 51371 _002735_hash NULL
-+_002736_hash rds_message_map_pages 2 31487 _002736_hash NULL
-+_002737_hash rds_tcp_data_recv 3 53476 _002737_hash NULL
-+_002738_hash um_idi_read 3 850 _002738_hash NULL
-+_002739_hash diva_init_dma_map 3 58336 _002739_hash NULL
-+_002740_hash divas_write 3 63901 _002740_hash NULL
-+_002741_hash fbcon_prepare_logo 5 6246 _002741_hash NULL
-+_002742_hash cciss_allocate_sg_chain_blocks 3-2 5368 _002742_hash NULL
+@@ -0,0 +1,2565 @@
++ipw_queue_tx_init_49161 ipw_queue_tx_init 3 49161 NULL
++scsi_nl_send_vendor_msg_16394 scsi_nl_send_vendor_msg 5 16394 NULL
++acpi_video_bus_write_POST_30039 acpi_video_bus_write_POST 3 30039 NULL
++recent_mt_proc_write_8206 recent_mt_proc_write 3 8206 NULL
++alloc_trdev_16399 alloc_trdev 1 16399 NULL
++rds_sendmsg_40976 rds_sendmsg 4 40976 NULL
++econet_recvmsg_40978 econet_recvmsg 4 40978 NULL
++rt2x00debug_write_bbp_8212 rt2x00debug_write_bbp 3 8212 NULL
++diva_os_malloc_16406 diva_os_malloc 2 16406 NULL
++compat_sock_setsockopt_23 compat_sock_setsockopt 5 23 NULL
++play_iframe_8219 play_iframe 3 8219 NULL
++rxrpc_server_keyring_16431 rxrpc_server_keyring 3 16431 NULL
++usbvideo_rvmalloc_17758 usbvideo_rvmalloc 1 17758 NULL
++sel_read_policyvers_55 sel_read_policyvers 3 55 NULL nohasharray
++padzero_55 padzero 1 55 &sel_read_policyvers_55
++cfg80211_disconnected_57 cfg80211_disconnected 4 57 NULL
++read_file_blob_57406 read_file_blob 3 57406 NULL
++sctp_getsockopt_primary_addr_24639 sctp_getsockopt_primary_addr 2 24639 NULL
++hpsb_write_49217 hpsb_write 6 49217 NULL
++enclosure_register_57412 enclosure_register 3 57412 NULL
++t3_init_l2t_8261 t3_init_l2t 1 8261 NULL
++_req_append_segment_41031 _req_append_segment 2 41031 NULL
++netlink_change_ngroups_16457 netlink_change_ngroups 2 16457 NULL
++mISDN_sock_sendmsg_41035 mISDN_sock_sendmsg 4 41035 NULL
++DepcaSignature_80 DepcaSignature 2 80 NULL nohasharray
++crypto_authenc_setkey_80 crypto_authenc_setkey 3 80 &DepcaSignature_80
++init_cdev_8274 init_cdev 1 8274 NULL
++__mwl8k_cmd_mac_multicast_adr_57427 __mwl8k_cmd_mac_multicast_adr 2 57427 NULL
++copy_to_user_fromio_57432 copy_to_user_fromio 3 57432 NULL
++i2400m_queue_work_41051 i2400m_queue_work 5 41051 NULL
++snd_korg1212_copy_to_92 snd_korg1212_copy_to 6 92 NULL
++load_msg_95 load_msg 2 95 NULL
++sctp_tsnmap_grow_32784 sctp_tsnmap_grow 2 32784 NULL
++new_tape_buffer_32866 new_tape_buffer 2 32866 NULL
++wm8400_i2c_write_49251 wm8400_i2c_write 3 49251 NULL
++sctp_make_fwdtsn_53265 sctp_make_fwdtsn 3 53265 NULL
++sys_pselect6_57449 sys_pselect6 1 57449 NULL
++biovec_create_pools_9575 biovec_create_pools 2 9575 NULL
++tracing_readme_read_16493 tracing_readme_read 3 16493 NULL
++acpi_system_write_sleep_57456 acpi_system_write_sleep 3 57456 NULL
++ieee80211_send_probe_req_49265 ieee80211_send_probe_req 6 49265 NULL
++cfg80211_inform_bss_frame_41078 cfg80211_inform_bss_frame 4 41078 NULL
++sisusb_clear_vram_57466 sisusb_clear_vram 2-3 57466 NULL
++snd_cs4281_BA0_read_6847 snd_cs4281_BA0_read 5-6 6847 NULL
++osd_req_add_get_attr_list_49278 osd_req_add_get_attr_list 3 49278 NULL
++sysctl_string_modpriv_32895 sysctl_string_modpriv 5 32895 NULL
++construct_key_and_link_8321 construct_key_and_link 4 8321 NULL
++leaf_dealloc_24706 leaf_dealloc 3 24706 NULL
++init_q_132 init_q 4 132 NULL
++ipwireless_send_packet_8328 ipwireless_send_packet 4 8328 NULL
++memstick_alloc_host_142 memstick_alloc_host 1 142 NULL
++uio_read_49300 uio_read 3 49300 NULL
++btrfs_mksubvol_150 btrfs_mksubvol 3 150 NULL
++tracing_entries_read_8345 tracing_entries_read 3 8345 NULL
++oom_adjust_write_41116 oom_adjust_write 3 41116 NULL
++copy_in_user_57502 copy_in_user 3 57502 NULL
++simple_attr_read_24738 simple_attr_read 3 24738 NULL
++ath_rxbuf_alloc_24745 ath_rxbuf_alloc 2 24745 NULL
++init_tag_map_57515 init_tag_map 3 57515 NULL
++cmm_read_57520 cmm_read 3 57520 NULL
++kgdb_hex2mem_24755 kgdb_hex2mem 3 24755 NULL
++lpfc_debugfs_read_16566 lpfc_debugfs_read 3 16566 NULL
++DoC_Probe_57534 DoC_Probe 1 57534 NULL
++pcpu_embed_first_chunk_24224 pcpu_embed_first_chunk 3 24224 NULL
++agp_allocate_memory_wrap_16576 agp_allocate_memory_wrap 1 16576 NULL nohasharray
++new_partial_datagram_16576 new_partial_datagram 4 16576 &agp_allocate_memory_wrap_16576
++mI_alloc_skb_24770 mI_alloc_skb 1 24770 NULL
++iscsi_session_setup_196 iscsi_session_setup 4-5 196 NULL
++decode_asn1_bitstring_198 decode_asn1_bitstring 4 198 NULL
++xdi_copy_from_user_8395 xdi_copy_from_user 4 8395 NULL
++joydev_ioctl_common_49359 joydev_ioctl_common 2 49359 NULL
++dvb_ca_write_41171 dvb_ca_write 3 41171 NULL
++cache_read_24790 cache_read 3 24790 NULL
++store_cpufv_215 store_cpufv 4 215 NULL
++compat_filldir_32999 compat_filldir 3 32999 NULL
++ieee80211_if_read_auto_open_plinks_38268 ieee80211_if_read_auto_open_plinks 3 38268 NULL nohasharray
++mthca_alloc_icm_table_38268 mthca_alloc_icm_table 3-4 38268 &ieee80211_if_read_auto_open_plinks_38268
++iscsi_alloc_session_49390 iscsi_alloc_session 3 49390 NULL
++xfs_readdir_41200 xfs_readdir 3 41200 NULL
++wl1271_rx_handle_data_47827 wl1271_rx_handle_data 2 47827 NULL
++dvb_usercopy_16640 dvb_usercopy 3 16640 NULL
++proc_scsi_write_proc_267 proc_scsi_write_proc 3 267 NULL
++ip_append_data_41234 ip_append_data 4-5 41234 NULL
++platform_device_register_data_16660 platform_device_register_data 5 16660 NULL
++sk_stream_alloc_skb_57622 sk_stream_alloc_skb 2 57622 NULL
++iwl_dbgfs_ucode_general_stats_read_49199 iwl_dbgfs_ucode_general_stats_read 3 49199 NULL
++probe_kernel_read_49437 probe_kernel_read 3 49437 NULL
++sisusbcon_putcs_57630 sisusbcon_putcs 3 57630 NULL
++hpsb_make_readpacket_34181 hpsb_make_readpacket 4 34181 NULL
++pnp_alloc_24869 pnp_alloc 1 24869 NULL
++hiddev_compat_ioctl_41255 hiddev_compat_ioctl 2 41255 NULL
++stats_dot11RTSSuccessCount_read_33065 stats_dot11RTSSuccessCount_read 3 33065 NULL
++sel_read_checkreqprot_33068 sel_read_checkreqprot 3 33068 NULL
++queues_read_24877 queues_read 3 24877 NULL
++dlm_new_lockspace_16688 dlm_new_lockspace 2 16688 NULL
++platform_device_add_data_310 platform_device_add_data 3 310 NULL
++agp_3_5_isochronous_node_enable_49465 agp_3_5_isochronous_node_enable 3 49465 NULL
++iwl_dbgfs_tx_statistics_read_314 iwl_dbgfs_tx_statistics_read 3 314 NULL nohasharray
++dn_setsockopt_314 dn_setsockopt 5 314 &iwl_dbgfs_tx_statistics_read_314
++sys_mq_timedsend_57661 sys_mq_timedsend 3 57661 NULL
++r3964_write_57662 r3964_write 4 57662 NULL
++xfs_iformat_local_49472 xfs_iformat_local 4 49472 NULL
++dn_nsp_do_disc_49474 dn_nsp_do_disc 2-6 49474 NULL
++alloc_context_41283 alloc_context 1 41283 NULL
++__lgwrite_57669 __lgwrite 4 57669 NULL
++sctp_recvmsg_23265 sctp_recvmsg 4 23265 NULL
++acpi_processor_write_throttling_16712 acpi_processor_write_throttling 3 16712 NULL
++isr_decrypt_done_read_49490 isr_decrypt_done_read 3 49490 NULL
++ieee80211_fragment_33112 ieee80211_fragment 4 33112 NULL
++write_node_33121 write_node 4 33121 NULL
++ip_vs_icmp_xmit_57701 ip_vs_icmp_xmit 4 57701 NULL
++i2400m_rx_stats_read_57706 i2400m_rx_stats_read 3 57706 NULL
++CIFSSMBWrite_33131 CIFSSMBWrite 4 33131 NULL
++iscsi_recv_pdu_16755 iscsi_recv_pdu 4 16755 NULL
++user_update_41332 user_update 3 41332 NULL
++cmtp_send_interopmsg_376 cmtp_send_interopmsg 7 376 NULL
++cache_slow_downcall_8570 cache_slow_downcall 2 8570 NULL
++lbs_getscantable_24955 lbs_getscantable 3 24955 NULL
++isr_dma0_done_read_8574 isr_dma0_done_read 3 8574 NULL
++nfs4_init_slot_table_33152 nfs4_init_slot_table 2 33152 NULL
++sys_rt_sigpending_24961 sys_rt_sigpending 2 24961 NULL
++ip_nat_sip_expect_57732 ip_nat_sip_expect 6 57732 NULL
++add_rx_skb_8257 add_rx_skb 3 8257 NULL
++do_fcntl_31468 do_fcntl 3 31468 NULL
++compat_sys_set_mempolicy_57742 compat_sys_set_mempolicy 3 57742 NULL nohasharray
++pppol2tp_recvmsg_57742 pppol2tp_recvmsg 4 57742 &compat_sys_set_mempolicy_57742
++sctp_make_op_error_space_5528 sctp_make_op_error_space 3 5528 NULL
++tun_get_user_33178 tun_get_user 3 33178 NULL
++llc_ui_sendmsg_24987 llc_ui_sendmsg 4 24987 NULL
++kmp_init_41373 kmp_init 2 41373 NULL
++lbs_rdmac_read_418 lbs_rdmac_read 3 418 NULL
++ntfs_malloc_nofs_49572 ntfs_malloc_nofs 1 49572 NULL
++alloc_chunk_49575 alloc_chunk 1 49575 NULL
++sctp_setsockopt_default_send_param_49578 sctp_setsockopt_default_send_param 3 49578 NULL nohasharray
++hidraw_report_event_49578 hidraw_report_event 3 49578 &sctp_setsockopt_default_send_param_49578
++key_conf_hw_key_idx_read_25003 key_conf_hw_key_idx_read 3 25003 NULL
++shash_setkey_unaligned_8620 shash_setkey_unaligned 3 8620 NULL
++dm_vcalloc_16814 dm_vcalloc 1-2 16814 NULL
++dataflash_read_fact_otp_33204 dataflash_read_fact_otp 3-2 33204 NULL
++isr_commands_read_41398 isr_commands_read 3 41398 NULL
++pp_read_33210 pp_read 3 33210 NULL
++sys_flistxattr_41407 sys_flistxattr 3 41407 NULL
++scsi_mode_sense_16835 scsi_mode_sense 5 16835 NULL
++ivtv_read_57796 ivtv_read 3 57796 NULL
++isr_wakeups_read_49607 isr_wakeups_read 3 49607 NULL
++xfs_iext_add_41422 xfs_iext_add 3 41422 NULL
++heap_init_49617 heap_init 2 49617 NULL
++isdn_ppp_fill_rq_41428 isdn_ppp_fill_rq 2 41428 NULL
++smk_write_doi_49621 smk_write_doi 3 49621 NULL
++_alloc_get_attr_desc_470 _alloc_get_attr_desc 2 470 NULL
++lbs_rdrf_read_41431 lbs_rdrf_read 3 41431 NULL
++receive_packet_12367 receive_packet 2 12367 NULL
++ntfs_file_buffered_write_41442 ntfs_file_buffered_write 4-6 41442 NULL
++pcpu_build_alloc_info_41443 pcpu_build_alloc_info 3 41443 NULL
++lbs_bcnmiss_read_8678 lbs_bcnmiss_read 3 8678 NULL
++st_write_16874 st_write 3 16874 NULL
++copy_to_user_57835 copy_to_user 3 57835 NULL
++pidlist_resize_496 pidlist_resize 2 496 NULL
++mangle_eprt_packet_16882 mangle_eprt_packet 5 16882 NULL
++flash_read_57843 flash_read 3 57843 NULL
++cachefiles_cook_key_33274 cachefiles_cook_key 2 33274 NULL
++rds_message_map_pages_31487 rds_message_map_pages 2 31487 NULL
++arcfb_write_8702 arcfb_write 3 8702 NULL
++cxio_hal_init_rhdl_resource_25104 cxio_hal_init_rhdl_resource 1 25104 NULL
++sock_wmalloc_16472 sock_wmalloc 2 16472 NULL
++snd_rawmidi_kernel_write_25106 snd_rawmidi_kernel_write 3 25106 NULL
++wep_interrupt_read_41492 wep_interrupt_read 3 41492 NULL
++tracing_max_lat_write_8728 tracing_max_lat_write 3 8728 NULL
++hpfs_translate_name_41497 hpfs_translate_name 3 41497 NULL
++mcs7830_get_reg_33308 mcs7830_get_reg 3 33308 NULL
++snd_gf1_mem_proc_dump_16926 snd_gf1_mem_proc_dump 5-6 16926 NULL
++dn_def_dev_strategy_51973 dn_def_dev_strategy 5 51973 NULL
++sys_gethostname_49698 sys_gethostname 2 49698 NULL
++vhci_read_47878 vhci_read 3 47878 NULL
++devres_alloc_551 devres_alloc 2 551 NULL
++xt_alloc_table_info_57903 xt_alloc_table_info 1 57903 NULL
++em28xx_init_isoc_8755 em28xx_init_isoc 2-3 8755 NULL
++emi26_writememory_57908 emi26_writememory 4 57908 NULL
++hpsb_create_hostinfo_49717 hpsb_create_hostinfo 3 49717 NULL
++joydev_compat_ioctl_8765 joydev_compat_ioctl 2 8765 NULL
++joydev_ioctl_33343 joydev_ioctl 2 33343 NULL
++compat_sys_preadv_583 compat_sys_preadv 3 583 NULL
++sys_fsetxattr_49736 sys_fsetxattr 4 49736 NULL
++create_xattr_datum_33356 create_xattr_datum 5 33356 NULL
++sel_read_handle_unknown_57933 sel_read_handle_unknown 3 57933 NULL
++sys_fgetxattr_25166 sys_fgetxattr 4 25166 NULL
++ipath_init_qp_table_25167 ipath_init_qp_table 2 25167 NULL
++zd_usb_iowrite16v_49744 zd_usb_iowrite16v 3 49744 NULL
++cache_do_downcall_6926 cache_do_downcall 3 6926 NULL
++rx_57944 rx 4 57944 NULL
++sctp_getsockopt_local_addrs_25178 sctp_getsockopt_local_addrs 2 25178 NULL
++key_conf_keylen_read_49758 key_conf_keylen_read 3 49758 NULL
++cpuset_common_file_read_8800 cpuset_common_file_read 5 8800 NULL
++sctp_ulpevent_new_33377 sctp_ulpevent_new 1 33377 NULL
++fuse_conn_waiting_read_49762 fuse_conn_waiting_read 3 49762 NULL
++ieee80211_if_read_dropped_frames_no_route_33383 ieee80211_if_read_dropped_frames_no_route 3 33383 NULL
++viafb_dfpl_proc_write_627 viafb_dfpl_proc_write 3 627 NULL
++hfc_empty_fifo_57972 hfc_empty_fifo 2 57972 NULL
++metronomefb_write_8823 metronomefb_write 3 8823 NULL
++tw_change_queue_depth_57980 tw_change_queue_depth 2 57980 NULL
++iwm_if_alloc_17027 iwm_if_alloc 1 17027 NULL
++hpsb_alloc_packet_49798 hpsb_alloc_packet 1 49798 NULL
++sys_dup3_33421 sys_dup3 2 33421 NULL
++nfs4_acl_new_49806 nfs4_acl_new 1 49806 NULL
++rx_reset_counter_read_58001 rx_reset_counter_read 3 58001 NULL
++mon_stat_read_25238 mon_stat_read 3 25238 NULL
++wa_nep_queue_8858 wa_nep_queue 2 8858 NULL
++ntfs_copy_from_user_iovec_49829 ntfs_copy_from_user_iovec 3-6 49829 NULL
++iwl_dbgfs_ucode_rx_stats_read_58023 iwl_dbgfs_ucode_rx_stats_read 3 58023 NULL
++read_cis_cache_17069 read_cis_cache 4 17069 NULL
++sta_tx_fragments_read_49841 sta_tx_fragments_read 3 49841 NULL
++mempool_create_kmalloc_pool_41650 mempool_create_kmalloc_pool 1 41650 NULL
++simple_transaction_read_17076 simple_transaction_read 3 17076 NULL
++squashfs_cache_init_41656 squashfs_cache_init 2 41656 NULL
++tracing_max_lat_read_8890 tracing_max_lat_read 3 8890 NULL
++crypto_alloc_instance2_25277 crypto_alloc_instance2 3 25277 NULL
++vfs_writev_25278 vfs_writev 3 25278 NULL
++alloc_async_14208 alloc_async 1 14208 NULL
++sys_dup2_25284 sys_dup2 2 25284 NULL
++create_entry_33479 create_entry 2 33479 NULL
++ipath_resize_cq_712 ipath_resize_cq 2 712 NULL
++sys_preadv_17100 sys_preadv 3 17100 NULL
++sctp_setsockopt_bindx_49870 sctp_setsockopt_bindx 3 49870 NULL
++ip_setsockopt_33487 ip_setsockopt 5 33487 NULL
++rds_message_copy_from_user_41682 rds_message_copy_from_user 2 41682 NULL
++xfs_da_buf_make_25303 xfs_da_buf_make 1 25303 NULL
++write_mem_17114 write_mem 3 17114 NULL
++res_counter_read_33499 res_counter_read 4 33499 NULL
++sctp_setsockopt_peer_addr_params_734 sctp_setsockopt_peer_addr_params 3 734 NULL
++cm4040_write_58079 cm4040_write 3 58079 NULL
++fb_read_33506 fb_read 3 33506 NULL
++rfcomm_wmalloc_58090 rfcomm_wmalloc 2 58090 NULL
++fast_shmem_write_8942 fast_shmem_write 5 8942 NULL
++ahash_setkey_unaligned_33521 ahash_setkey_unaligned 3 33521 NULL
++dvb_video_write_754 dvb_video_write 3 754 NULL
++bdx_tx_db_init_41719 bdx_tx_db_init 2 41719 NULL
++alloc_ldt_21972 alloc_ldt 2 21972 NULL
++sys_pwritev_41722 sys_pwritev 3 41722 NULL
++ib_send_cm_mra_60202 ib_send_cm_mra 4 60202 NULL
++deliver_packet_767 deliver_packet 3 767 NULL
++sel_write_member_28800 sel_write_member 3 28800 NULL
++usb_allocate_stream_buffers_8964 usb_allocate_stream_buffers 3 8964 NULL
++drm_mode_crtc_set_gamma_size_54742 drm_mode_crtc_set_gamma_size 2 54742 NULL
++venus_mkdir_8967 venus_mkdir 4 8967 NULL
++vol_cdev_read_8968 vol_cdev_read 3 8968 NULL nohasharray
++seq_open_net_8968 seq_open_net 4 8968 &vol_cdev_read_8968
++befs_nls2utf_17163 befs_nls2utf 3 17163 NULL
++savemem_58129 savemem 3 58129 NULL
++fillonedir_41746 fillonedir 3 41746 NULL
++ipv6_flowlabel_opt_58135 ipv6_flowlabel_opt 3 58135 NULL nohasharray
++slhc_init_58135 slhc_init 1-2 58135 &ipv6_flowlabel_opt_58135
++sel_read_mls_25369 sel_read_mls 3 25369 NULL
++if_writecmd_815 if_writecmd 2 815 NULL
++rtl8169_alloc_rx_skb_25392 rtl8169_alloc_rx_skb 4-5 25392 NULL
++viafb_dfph_proc_write_49288 viafb_dfph_proc_write 3 49288 NULL
++sctp_getsockopt_associnfo_58169 sctp_getsockopt_associnfo 2 58169 NULL
++read_fifo_826 read_fifo 3 826 NULL
++jffs2_do_create_25404 jffs2_do_create 6 25404 NULL
++dn_recvmsg_17213 dn_recvmsg 4 17213 NULL
++enic_rq_alloc_skb_17220 enic_rq_alloc_skb 2 17220 NULL
++et61x251_read_25420 et61x251_read 3 25420 NULL
++garmin_write_bulk_58191 garmin_write_bulk 3 58191 NULL
++asix_write_cmd_58192 asix_write_cmd 5 58192 NULL
++um_idi_read_850 um_idi_read 3 850 NULL
++__module_alloc_50004 __module_alloc 1 50004 NULL
++cxio_init_resource_fifo_25429 cxio_init_resource_fifo 3 25429 NULL
++sco_send_frame_41815 sco_send_frame 3 41815 NULL
++isdn_read_50021 isdn_read 3 50021 NULL
++snd_gus_dram_peek_9062 snd_gus_dram_peek 4 9062 NULL
++o2net_send_message_vec_879 o2net_send_message_vec 4 879 NULL
++alloc_ep_17269 alloc_ep 1 17269 NULL
++ieee80211_if_read_aid_9705 ieee80211_if_read_aid 3 9705 NULL
++generic_file_buffered_write_25464 generic_file_buffered_write 4 25464 NULL
++do_ip_setsockopt_41852 do_ip_setsockopt 5 41852 NULL
++raw_recvmsg_17277 raw_recvmsg 4 17277 NULL
++alloc_ebda_hpc_50046 alloc_ebda_hpc 1-2 50046 NULL
++keyctl_instantiate_key_41855 keyctl_instantiate_key 3 41855 NULL
++create_queues_9088 create_queues 2-3 9088 NULL
++ldm_frag_add_5611 ldm_frag_add 2 5611 NULL
++f_audio_buffer_alloc_41110 f_audio_buffer_alloc 1 41110 NULL
++minstrel_stats_read_17290 minstrel_stats_read 3 17290 NULL
++fuse_conn_max_background_write_50061 fuse_conn_max_background_write 3 50061 NULL
++read_file_debug_58256 read_file_debug 3 58256 NULL
++sys_fcntl_19267 sys_fcntl 3 19267 NULL
++skb_pad_17302 skb_pad 2 17302 NULL
++tracing_trace_options_write_153 tracing_trace_options_write 3 153 NULL
++btmrvl_hsstate_read_920 btmrvl_hsstate_read 3 920 NULL
++ivtv_buf_copy_from_user_25502 ivtv_buf_copy_from_user 4 25502 NULL
++acpi_ds_build_internal_package_obj_58271 acpi_ds_build_internal_package_obj 3 58271 NULL
++snd_pcm_plugin_build_25505 snd_pcm_plugin_build 5 25505 NULL
++dev_set_alias_50084 dev_set_alias 3 50084 NULL
++tcp_mark_head_lost_50087 tcp_mark_head_lost 2 50087 NULL
++iwm_umac_set_config_var_17320 iwm_umac_set_config_var 4 17320 NULL
++sys_keyctl_33708 sys_keyctl 4 33708 NULL nohasharray
++netlink_sendmsg_33708 netlink_sendmsg 4 33708 &sys_keyctl_33708
++ata_host_alloc_pinfo_17325 ata_host_alloc_pinfo 3 17325 NULL
++get_free_de_33714 get_free_de 2 33714 NULL
++pvr2_stream_buffer_count_33719 pvr2_stream_buffer_count 2 33719 NULL
++get_packet_41914 get_packet 3 41914 NULL
++get_fdb_entries_41916 get_fdb_entries 3 41916 NULL
++sctp_make_heartbeat_958 sctp_make_heartbeat 4 958 NULL
++sys_msgrcv_959 sys_msgrcv 3 959 NULL
++csr1212_new_leaf_50112 csr1212_new_leaf 3 50112 NULL
++ieee80211_if_read_dot11MeshTTL_58307 ieee80211_if_read_dot11MeshTTL 3 58307 NULL
++serverworks_create_gatt_pages_46582 serverworks_create_gatt_pages 1 46582 NULL
++ieee80211_if_read_path_refresh_time_25545 ieee80211_if_read_path_refresh_time 3 25545 NULL
++hpsb_iso_xmit_init_19277 hpsb_iso_xmit_init 3 19277 NULL
++dispatch_write_17361 dispatch_write 3 17361 NULL
++copy_items_50140 copy_items 6 50140 NULL
++isr_irqs_read_9181 isr_irqs_read 3 9181 NULL
++pcim_iomap_58334 pcim_iomap 3 58334 NULL
++diva_init_dma_map_58336 diva_init_dma_map 3 58336 NULL
++xfs_buf_associate_memory_17915 xfs_buf_associate_memory 3 17915 NULL
++zd_rfwrite_locked_17381 zd_rfwrite_locked 3 17381 NULL
++hashtab_create_33769 hashtab_create 3 33769 NULL
++alloc_group_attrs_9194 alloc_group_attrs 2 9194 NULL
++alloc_fdtable_17389 alloc_fdtable 1 17389 NULL
++xfrm_dst_alloc_copy_3034 xfrm_dst_alloc_copy 3 3034 NULL
++vmalloc_to_sg_58354 vmalloc_to_sg 2 58354 NULL
++aac_nark_ioremap_50163 aac_nark_ioremap 2 50163 NULL nohasharray
++kmalloc_node_50163 kmalloc_node 1 50163 &aac_nark_ioremap_50163
++cx24116_writeregN_41975 cx24116_writeregN 4 41975 NULL
++usbtmc_write_64340 usbtmc_write 3 64340 NULL
++ubi_resize_volume_50172 ubi_resize_volume 2 50172 NULL
++__devres_alloc_25598 __devres_alloc 2 25598 NULL
++l2cap_create_connless_pdu_9222 l2cap_create_connless_pdu 3 9222 NULL
++ib_send_cm_drep_50186 ib_send_cm_drep 3 50186 NULL
++sctp_getsockopt_delayed_ack_9232 sctp_getsockopt_delayed_ack 2 9232 NULL
++mwl8k_prepare_multicast_42499 mwl8k_prepare_multicast 2 42499 NULL
++proc_coredump_filter_write_25625 proc_coredump_filter_write 3 25625 NULL
++pool_allocate_42012 pool_allocate 3 42012 NULL
++l2cap_sock_setsockopt_50207 l2cap_sock_setsockopt 5 50207 NULL
++sctp_make_init_58401 sctp_make_init 4 58401 NULL
++ieee80211_skb_resize_50211 ieee80211_skb_resize 3 50211 NULL
++gigaset_initdriver_1060 gigaset_initdriver 2 1060 NULL
++islpci_mgt_transmit_34133 islpci_mgt_transmit 5 34133 NULL
++ieee80211_if_read_peer_45233 ieee80211_if_read_peer 3 45233 NULL
++acpi_ut_create_buffer_object_42030 acpi_ut_create_buffer_object 1 42030 NULL
++agp_create_memory_1075 agp_create_memory 1 1075 NULL
++__hwahc_op_set_gtk_42038 __hwahc_op_set_gtk 4 42038 NULL
++iscsi_offload_mesg_58425 iscsi_offload_mesg 5 58425 NULL
++mon_bin_compat_ioctl_50234 mon_bin_compat_ioctl 3 50234 NULL
++probe_bios_17467 probe_bios 1 17467 NULL
++irda_sendmsg_ultra_42047 irda_sendmsg_ultra 4 42047 NULL
++jffs2_do_link_42048 jffs2_do_link 6 42048 NULL
++stats_transmitted_frame_count_read_33861 stats_transmitted_frame_count_read 3 33861 NULL
++afs_extract_data_50261 afs_extract_data 5 50261 NULL
++compat_sys_select_16131 compat_sys_select 1 16131 NULL
++sta_inactive_ms_read_25690 sta_inactive_ms_read 3 25690 NULL
++iwl_dbgfs_stations_read_9309 iwl_dbgfs_stations_read 3 9309 NULL
++compat_do_ipt_set_ctl_58466 compat_do_ipt_set_ctl 4 58466 NULL
++scsi_execute_req_42088 scsi_execute_req 5 42088 NULL
++dm_table_create_35687 dm_table_create 3 35687 NULL
++rxrpc_setsockopt_50286 rxrpc_setsockopt 5 50286 NULL
++vmalloc_32_1135 vmalloc_32 1 1135 NULL
++ibmasm_new_command_25714 ibmasm_new_command 2 25714 NULL
++snd_rme96_capture_copy_58484 snd_rme96_capture_copy 5 58484 NULL
++restore_i387_fxsave_17528 restore_i387_fxsave 2 17528 NULL
++submit_inquiry_42108 submit_inquiry 3 42108 NULL
++sel_write_context_25726 sel_write_context 3 25726 NULL nohasharray
++__alloc_bootmem_low_node_25726 __alloc_bootmem_low_node 2 25726 &sel_write_context_25726
++sysfs_read_file_42113 sysfs_read_file 3 42113 NULL
++mcs_unwrap_fir_25733 mcs_unwrap_fir 3 25733 NULL
++nfs_pagein_one_58502 nfs_pagein_one 3 58502 NULL
++xlog_do_log_recovery_17550 xlog_do_log_recovery 3 17550 NULL
++__copy_to_user_17551 __copy_to_user 3 17551 NULL
++ipv6_renew_options_28867 ipv6_renew_options 5 28867 NULL
++vc_resize_3585 vc_resize 2-3 3585 NULL
++sel_read_avc_cache_threshold_33942 sel_read_avc_cache_threshold 3 33942 NULL
++copy_from_user_17559 copy_from_user 3 17559 NULL
++ipc_alloc_1192 ipc_alloc 1 1192 NULL
++ib_create_send_mad_1196 ib_create_send_mad 5 1196 NULL
++rndis_add_response_58544 rndis_add_response 2 58544 NULL
++efx_tsoh_heap_alloc_58545 efx_tsoh_heap_alloc 2 58545 NULL
++isdn_ppp_read_50356 isdn_ppp_read 4 50356 NULL
++read_9397 read 3 9397 NULL
++i2cdev_read_1206 i2cdev_read 3 1206 NULL
++tracing_buffers_read_11124 tracing_buffers_read 3 11124 NULL
++acpi_ut_create_package_object_17594 acpi_ut_create_package_object 1 17594 NULL
++pmcraid_copy_sglist_38431 pmcraid_copy_sglist 3 38431 NULL
++event_rx_pool_read_25792 event_rx_pool_read 3 25792 NULL
++get_skb_63008 get_skb 2 63008 NULL
++blk_init_tags_30592 blk_init_tags 1 30592 NULL
++oprofilefs_str_to_user_42182 oprofilefs_str_to_user 3 42182 NULL
++sg_read_25799 sg_read 3 25799 NULL
++sl_alloc_bufs_50380 sl_alloc_bufs 2 50380 NULL
++ipw_packet_received_skb_1230 ipw_packet_received_skb 2 1230 NULL
++sys32_rt_sigpending_25814 sys32_rt_sigpending 2 25814 NULL
++xlog_recover_add_to_cont_trans_58583 xlog_recover_add_to_cont_trans 3 58583 NULL
++realloc_buffer_25816 realloc_buffer 2 25816 NULL
++skb_make_writable_24783 skb_make_writable 2 24783 NULL
++pwr_missing_bcns_read_25824 pwr_missing_bcns_read 3 25824 NULL
++gdth_search_isa_58595 gdth_search_isa 1 58595 NULL
++__ntfs_malloc_34022 __ntfs_malloc 1 34022 NULL
++iwl3945_sta_dbgfs_stats_table_read_28882 iwl3945_sta_dbgfs_stats_table_read 3 28882 NULL
++mcs_unwrap_mir_9455 mcs_unwrap_mir 3 9455 NULL
++ppp_write_34034 ppp_write 3 34034 NULL
++ioctl_private_iw_point_1273 ioctl_private_iw_point 7 1273 NULL
++packet_setsockopt_17662 packet_setsockopt 5 17662 NULL
++module_alloc_update_bounds_rx_58634 module_alloc_update_bounds_rx 1 58634 NULL
++btmrvl_hsmode_write_42252 btmrvl_hsmode_write 3 42252 NULL
++dsp_tone_hw_message_17678 dsp_tone_hw_message 3 17678 NULL
++ulog_alloc_skb_23427 ulog_alloc_skb 1 23427 NULL
++pgctrl_write_50453 pgctrl_write 3 50453 NULL
++pwr_enable_ps_read_17686 pwr_enable_ps_read 3 17686 NULL
++lp_write_9511 lp_write 3 9511 NULL
++venus_rename_17707 venus_rename 4-5 17707 NULL
++neigh_hash_grow_1324 neigh_hash_grow 2 1324 NULL
++cdrom_read_cdda_50478 cdrom_read_cdda 4 50478 NULL
++scsi_tgt_kspace_exec_9522 scsi_tgt_kspace_exec 8 9522 NULL
++zd_usb_ioread16v_17715 zd_usb_ioread16v 4 17715 NULL
++do_jffs2_setxattr_25910 do_jffs2_setxattr 5 25910 NULL
++read_file_dma_9530 read_file_dma 3 9530 NULL
++zd_usb_rfwrite_42300 zd_usb_rfwrite 3 42300 NULL
++sel_read_perm_42302 sel_read_perm 3 42302 NULL
++write_int_38453 write_int 3 38453 NULL
++sctp_setsockopt_del_key_42304 sctp_setsockopt_del_key 3 42304 NULL nohasharray
++ulong_read_file_42304 ulong_read_file 3 42304 &sctp_setsockopt_del_key_42304
++pwr_rcvd_awake_beacons_read_50505 pwr_rcvd_awake_beacons_read 3 50505 NULL
++snd_es1938_capture_copy_25930 snd_es1938_capture_copy 5 25930 NULL
++key_flags_read_25931 key_flags_read 3 25931 NULL
++audit_log_n_untrustedstring_9548 audit_log_n_untrustedstring 3 9548 NULL
++ipx_sendmsg_1362 ipx_sendmsg 4 1362 NULL
++init_exception_table_34132 init_exception_table 2 34132 NULL
++sctp_make_op_error_25941 sctp_make_op_error 5 25941 NULL
++fw_node_create_9559 fw_node_create 2 9559 NULL
++sctp_getsockopt_nodelay_9560 sctp_getsockopt_nodelay 2 9560 NULL
++kobj_map_9566 kobj_map 2-3 9566 NULL
++btrfs_copy_from_user_9568 btrfs_copy_from_user 3-1 9568 NULL
++ip_nat_sdp_port_17763 ip_nat_sdp_port 5 17763 NULL
++cxgb3i_ddp_make_gl_34150 cxgb3i_ddp_make_gl 1 34150 NULL
++sctp_setsockopt_initmsg_1383 sctp_setsockopt_initmsg 3 1383 NULL
++do_msgsnd_1387 do_msgsnd 4 1387 NULL
++cosa_read_25966 cosa_read 3 25966 NULL
++ide_raw_taskfile_42355 ide_raw_taskfile 4 42355 NULL
++rngapi_reset_34366 rngapi_reset 3 34366 NULL nohasharray
++p54_alloc_skb_34366 p54_alloc_skb 3 34366 &rngapi_reset_34366
++file_read_actor_1401 file_read_actor 4 1401 NULL
++av7110_ipack_init_46655 av7110_ipack_init 2 46655 NULL
++hci_si_event_1404 hci_si_event 3 1404 NULL
++udp_setsockopt_25985 udp_setsockopt 5 25985 NULL
++do_sync_9604 do_sync 1 9604 NULL
++snd_emu10k1_fx8010_read_9605 snd_emu10k1_fx8010_read 5-6 9605 NULL nohasharray
++sysprof_sample_read_9605 sysprof_sample_read 3 9605 &snd_emu10k1_fx8010_read_9605
++compat_readv_30273 compat_readv 3 30273 NULL
++agp_allocate_memory_58761 agp_allocate_memory 2 58761 NULL
++fz_hash_alloc_50580 fz_hash_alloc 1 50580 NULL
++pep_reply_50582 pep_reply 5 50582 NULL
++mtd_write_34207 mtd_write 3 34207 NULL
++sge_rx_50594 sge_rx 3 50594 NULL
++stack_max_size_read_1445 stack_max_size_read 3 1445 NULL
++xlog_find_verify_log_record_18870 xlog_find_verify_log_record 2 18870 NULL
++__videobuf_copy_to_user_1454 __videobuf_copy_to_user 3 1454 NULL
++selinux_inode_post_setxattr_26037 selinux_inode_post_setxattr 4 26037 NULL
++tx_queue_len_read_1463 tx_queue_len_read 3 1463 NULL
++uvc_alloc_buffers_9656 uvc_alloc_buffers 2-3 9656 NULL
++queue_received_packet_9657 queue_received_packet 5 9657 NULL
++sctp_getsockopt_initmsg_26042 sctp_getsockopt_initmsg 2 26042 NULL
++ep_read_58813 ep_read 3 58813 NULL
++netpoll_send_udp_58955 netpoll_send_udp 3 58955 NULL
++snd_opl4_mem_proc_write_9670 snd_opl4_mem_proc_write 5-6 9670 NULL
++pci_enable_sriov_35745 pci_enable_sriov 2 35745 NULL
++sisusb_send_bulk_msg_17864 sisusb_send_bulk_msg 3 17864 NULL
++simple_transaction_get_50633 simple_transaction_get 3 50633 NULL
++key_conf_keyidx_read_42443 key_conf_keyidx_read 3 42443 NULL
++alloc_sja1000dev_17868 alloc_sja1000dev 1 17868 NULL
++keyctl_update_key_26061 keyctl_update_key 3 26061 NULL
++sta_num_ps_buf_frames_read_1488 sta_num_ps_buf_frames_read 3 1488 NULL
++orinoco_set_key_17878 orinoco_set_key 5-7 17878 NULL
++cifs_write_9687 cifs_write 3 9687 NULL
++command_write_58841 command_write 3 58841 NULL
++compat_sys_pwritev_17886 compat_sys_pwritev 3 17886 NULL
++ocfs2_readlink_50656 ocfs2_readlink 3 50656 NULL
++sys_readv_50664 sys_readv 3 50664 NULL
++ps_upsd_timeouts_read_28924 ps_upsd_timeouts_read 3 28924 NULL
++recover_peb_29238 recover_peb 6-7 29238 NULL
++snd_usb_ctl_msg_26092 snd_usb_ctl_msg 8 26092 NULL
++udp_manip_pkt_50770 udp_manip_pkt 2 50770 NULL
++recover_head_17904 recover_head 3 17904 NULL
++iwl_dbgfs_traffic_log_read_58870 iwl_dbgfs_traffic_log_read 3 58870 NULL
++dabusb_read_58873 dabusb_read 3 58873 NULL
++dccp_feat_register_sp_17914 dccp_feat_register_sp 5 17914 NULL
++btmrvl_psstate_read_50683 btmrvl_psstate_read 3 50683 NULL
++srp_iu_pool_alloc_17920 srp_iu_pool_alloc 2 17920 NULL
++tun_alloc_skb_41216 tun_alloc_skb 2-4-3 41216 NULL
++gs_alloc_req_58883 gs_alloc_req 2 58883 NULL
++cs553x_init_one_58886 cs553x_init_one 3 58886 NULL
++sysctl_tcp_congestion_control_27564 sysctl_tcp_congestion_control 5 27564 NULL
++tsf_read_58892 tsf_read 3 58892 NULL
++user_instantiate_26131 user_instantiate 3 26131 NULL
++vmalloc_node_58700 vmalloc_node 1 58700 NULL
++skb_cow_26138 skb_cow 2 26138 NULL
++smk_write_netlbladdr_42525 smk_write_netlbladdr 3 42525 NULL
++__alloc_percpu_9764 __alloc_percpu 1 9764 NULL
++snd_emux_create_port_42533 snd_emux_create_port 3 42533 NULL
++do_sigpending_9766 do_sigpending 2 9766 NULL
++iwl_dbgfs_disable_ht40_read_35761 iwl_dbgfs_disable_ht40_read 3 35761 NULL
++kgdb_mem2hex_1578 kgdb_mem2hex 3 1578 NULL
++__blk_queue_init_tags_9778 __blk_queue_init_tags 2 9778 NULL
++copy_oldmem_page_26164 copy_oldmem_page 3-1 26164 NULL
++ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime_1589 ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime 3 1589 NULL
++snd_mem_proc_write_9786 snd_mem_proc_write 3 9786 NULL
++fc_frame_alloc_1596 fc_frame_alloc 2 1596 NULL
++udp_recvmsg_42558 udp_recvmsg 4 42558 NULL
++smk_write_cipso_17989 smk_write_cipso 3 17989 NULL
++skb_padto_50759 skb_padto 2 50759 NULL
++reiserfs_resize_34377 reiserfs_resize 2 34377 NULL
++get_registers_26187 get_registers 3 26187 NULL
++ttm_bo_fbdev_io_9805 ttm_bo_fbdev_io 4 9805 NULL
++btmrvl_hscmd_read_1614 btmrvl_hscmd_read 3 1614 NULL
++av7110_vbi_write_34384 av7110_vbi_write 3 34384 NULL
++usbvision_v4l2_read_34386 usbvision_v4l2_read 3 34386 NULL
++snd_pcm_oss_write2_27332 snd_pcm_oss_write2 3 27332 NULL
++udpv6_recvmsg_9813 udpv6_recvmsg 4 9813 NULL
++pvr2_v4l2_read_18006 pvr2_v4l2_read 3 18006 NULL
++xfs_idata_realloc_26199 xfs_idata_realloc 2 26199 NULL
++mce_write_26201 mce_write 3 26201 NULL
++bio_alloc_map_data_50782 bio_alloc_map_data 1-2 50782 NULL
++ivtv_read_pos_34400 ivtv_read_pos 3 34400 NULL
++__pskb_pull_42602 __pskb_pull 2 42602 NULL
++cifs_write_end_1643 cifs_write_end 5 1643 NULL
++tpm_write_50798 tpm_write 3 50798 NULL
++btmrvl_hsmode_read_1647 btmrvl_hsmode_read 3 1647 NULL
++dvb_dvr_set_buffer_size_9840 dvb_dvr_set_buffer_size 2 9840 NULL
++store_sys_hwmon_26225 store_sys_hwmon 3 26225 NULL
++write_flush_50803 write_flush 3 50803 NULL
++rxrpc_recvmsg_26233 rxrpc_recvmsg 4 26233 NULL
++ikconfig_read_current_1658 ikconfig_read_current 3 1658 NULL
++ip_vs_icmp_xmit_v6_18045 ip_vs_icmp_xmit_v6 4 18045 NULL
++dvb_play_50814 dvb_play 3 50814 NULL
++ep_write_59008 ep_write 3 59008 NULL
++sys_move_pages_42626 sys_move_pages 2 42626 NULL
++sctp_make_heartbeat_ack_34411 sctp_make_heartbeat_ack 4 34411 NULL
++ddebug_proc_write_18055 ddebug_proc_write 3 18055 NULL
++pmcraid_alloc_sglist_9864 pmcraid_alloc_sglist 1 9864 NULL
++sta_tx_retry_count_read_59021 sta_tx_retry_count_read 3 59021 NULL
++scsi_activate_tcq_42640 scsi_activate_tcq 2 42640 NULL
++configfs_read_file_1683 configfs_read_file 3 1683 NULL
++kvm_read_guest_page_18074 kvm_read_guest_page 5 18074 NULL
++sctp_make_abort_34459 sctp_make_abort 3 34459 NULL
++selinux_transaction_write_59038 selinux_transaction_write 3 59038 NULL
++get_vm_area_18080 get_vm_area 1 18080 NULL
++bm_register_write_9893 bm_register_write 3 9893 NULL nohasharray
++snd_midi_event_new_9893 snd_midi_event_new 1 9893 &bm_register_write_9893
++handle_rx_packet_58993 handle_rx_packet 3 58993 NULL
++iwm_rx_packet_alloc_9898 iwm_rx_packet_alloc 3 9898 NULL
++i2o_parm_field_get_34477 i2o_parm_field_get 5 34477 NULL
++pdu_write_u_1710 pdu_write_u 3 1710 NULL
++coda_psdev_write_1711 coda_psdev_write 3 1711 NULL
++iraw_encode_18099 iraw_encode 2-3 18099 NULL
++udf_alloc_i_data_35786 udf_alloc_i_data 2 35786 NULL
++netlink_kernel_create_18110 netlink_kernel_create 3 18110 NULL
++sis190_try_rx_copy_57069 sis190_try_rx_copy 3 57069 NULL
++request_key_and_link_42693 request_key_and_link 4 42693 NULL
++snd_pcm_plug_alloc_42339 snd_pcm_plug_alloc 2 42339 NULL
++pwr_wake_on_host_read_26321 pwr_wake_on_host_read 3 26321 NULL
++snd_pcm_plugin_alloc_12580 snd_pcm_plugin_alloc 2 12580 NULL
++cafe_deliver_buffer_1755 cafe_deliver_buffer 3 1755 NULL
++set_rxd_buffer_pointer_9950 set_rxd_buffer_pointer 8 9950 NULL
++tcp_sacktag_walk_26339 tcp_sacktag_walk 5-6 26339 NULL
++selinux_inode_setsecurity_18148 selinux_inode_setsecurity 4 18148 NULL
++csum_partial_copy_fromiovecend_9957 csum_partial_copy_fromiovecend 3-4 9957 NULL
++tracing_stats_read_34537 tracing_stats_read 3 34537 NULL
++hdpvr_i2c_read_26347 hdpvr_i2c_read 4 26347 NULL
++cosa_write_1774 cosa_write 3 1774 NULL
++set_aoe_iflist_42737 set_aoe_iflist 2 42737 NULL
++hugetlbfs_read_actor_34547 hugetlbfs_read_actor 2-5-4 34547 NULL
++ax25_setsockopt_42740 ax25_setsockopt 5 42740 NULL
++create_rsb_42744 create_rsb 3 42744 NULL
++fc_change_queue_depth_18169 fc_change_queue_depth 2 18169 NULL
++sysctl_uts_string_17797 sysctl_uts_string 5 17797 NULL
++dup_to_netobj_26363 dup_to_netobj 3 26363 NULL
++sock_bindtodevice_50942 sock_bindtodevice 3 50942 NULL
++cryptd_alloc_instance_18048 cryptd_alloc_instance 2-3 18048 NULL
++nfs_readdata_alloc_9990 nfs_readdata_alloc 1 9990 NULL
++asn1_octets_decode_9991 asn1_octets_decode 2 9991 NULL
++framebuffer_alloc_59145 framebuffer_alloc 1 59145 NULL
++sta_tx_packets_read_50955 sta_tx_packets_read 3 50955 NULL
++radeon_compat_ioctl_59150 radeon_compat_ioctl 2 59150 NULL
++velocity_rx_copy_34583 velocity_rx_copy 2 34583 NULL
++x25_recvmsg_42777 x25_recvmsg 4 42777 NULL
++init_send_hfcd_34586 init_send_hfcd 1 34586 NULL
++cryptd_hash_setkey_42781 cryptd_hash_setkey 3 42781 NULL
++kmsg_write_26398 kmsg_write 3 26398 NULL
++orinoco_add_extscan_result_18207 orinoco_add_extscan_result 3 18207 NULL
++do_ipv6_setsockopt_18215 do_ipv6_setsockopt 5 18215 NULL
++setup_window_59178 setup_window 7-5-4-2 59178 NULL
++cx18_copy_buf_to_user_50990 cx18_copy_buf_to_user 4 50990 NULL
++timeout_write_50991 timeout_write 3 50991 NULL
++fw_device_op_compat_ioctl_42804 fw_device_op_compat_ioctl 2 42804 NULL
++sctp_getsockopt_peeloff_59190 sctp_getsockopt_peeloff 2 59190 NULL
++proc_write_51003 proc_write 3 51003 NULL
++set_arg_42824 set_arg 3 42824 NULL
++pagemap_read_26441 pagemap_read 3 26441 NULL
++xfs_iext_realloc_indirect_59211 xfs_iext_realloc_indirect 2 59211 NULL
++rfcomm_sock_setsockopt_18254 rfcomm_sock_setsockopt 5 18254 NULL
++lbs_dev_info_51023 lbs_dev_info 3 51023 NULL
++net_assign_generic_59217 net_assign_generic 2 59217 NULL
++audit_log_n_string_31705 audit_log_n_string 3 31705 NULL
++fuse_conn_congestion_threshold_read_51028 fuse_conn_congestion_threshold_read 3 51028 NULL
++qdisc_class_hash_alloc_18262 qdisc_class_hash_alloc 1 18262 NULL
++write_essid_42840 write_essid 3 42840 NULL
++hidp_queue_report_1881 hidp_queue_report 3 1881 NULL
++dev_config_8506 dev_config 3 8506 NULL
++dump_midi_51040 dump_midi 3 51040 NULL
++tty_prepare_flip_string_flags_59240 tty_prepare_flip_string_flags 4 59240 NULL
++cxacru_cm_get_array_4412 cxacru_cm_get_array 4 4412 NULL
++cxgb3i_alloc_big_mem_18283 cxgb3i_alloc_big_mem 1 18283 NULL
++do_arpt_set_ctl_51053 do_arpt_set_ctl 4 51053 NULL
++pccard_store_cis_10094 pccard_store_cis 5 10094 NULL
++ib_alloc_device_26483 ib_alloc_device 1 26483 NULL
++ulong_write_file_26485 ulong_write_file 3 26485 NULL
++wusb_prf_64_51065 wusb_prf_64 7 51065 NULL
++isr_fiqs_read_34687 isr_fiqs_read 3 34687 NULL
++pskb_expand_head_42881 pskb_expand_head 2-3 42881 NULL
++ip6ip6_err_18308 ip6ip6_err 5 18308 NULL
++read_vmcore_26501 read_vmcore 3 26501 NULL
++hptiop_adjust_disk_queue_depth_34698 hptiop_adjust_disk_queue_depth 2 34698 NULL
++alloc_skb_55439 alloc_skb 1 55439 NULL
++xpc_kmalloc_cacheline_aligned_42895 xpc_kmalloc_cacheline_aligned 1 42895 NULL
++jbd2_journal_init_revoke_51088 jbd2_journal_init_revoke 2 51088 NULL
++ecryptfs_send_message_18322 ecryptfs_send_message 2 18322 NULL
++iwm_rx_handle_24899 iwm_rx_handle 3 24899 NULL
++pcpu_get_vm_areas_26522 pcpu_get_vm_areas 3 26522 NULL
++btmrvl_hscfgcmd_read_56303 btmrvl_hscfgcmd_read 3 56303 NULL
++read_file_wiphy_51103 read_file_wiphy 3 51103 NULL
++ieee80211_if_read_num_sta_ps_34722 ieee80211_if_read_num_sta_ps 3 34722 NULL
++aes_decrypt_packets_read_10155 aes_decrypt_packets_read 3 10155 NULL
++rds_message_inc_copy_to_user_26540 rds_message_inc_copy_to_user 3 26540 NULL
++rx_out_of_mem_read_10157 rx_out_of_mem_read 3 10157 NULL
++reg_w_ixbuf_34736 reg_w_ixbuf 4 34736 NULL
++zd_ioread32v_26545 zd_ioread32v 4 26545 NULL
++pwr_power_save_off_read_18355 pwr_power_save_off_read 3 18355 NULL
++asd_store_update_bios_10165 asd_store_update_bios 4 10165 NULL
++fd_copyout_59323 fd_copyout 3 59323 NULL
++sctp_getsockopt_maxburst_42941 sctp_getsockopt_maxburst 2 42941 NULL
++sel_read_avc_hash_stats_1984 sel_read_avc_hash_stats 3 1984 NULL
++solos_param_store_34755 solos_param_store 4 34755 NULL
++arlan_rx_interrupt_10184 arlan_rx_interrupt 4 10184 NULL
++xfs_trans_get_efd_51148 xfs_trans_get_efd 3 51148 NULL
++xfs_attrmulti_attr_set_59346 xfs_attrmulti_attr_set 4 59346 NULL
++vcc_recvmsg_37198 vcc_recvmsg 4 37198 NULL
++hpsb_make_streampacket_21071 hpsb_make_streampacket 3 21071 NULL
++proc_write_mled_51169 proc_write_mled 3 51169 NULL
++write_flush_pipefs_2021 write_flush_pipefs 3 2021 NULL
++__copy_in_user_34790 __copy_in_user 3 34790 NULL
++snd_nm256_playback_copy_38567 snd_nm256_playback_copy 5 38567 NULL
++tipc_log_resize_34803 tipc_log_resize 1 34803 NULL
++devm_ioremap_nocache_2036 devm_ioremap_nocache 3-2 2036 NULL
++create_snapshot_51195 create_snapshot 4 51195 NULL
++fc_frame_alloc_fill_59394 fc_frame_alloc_fill 2 59394 NULL
++pwr_fix_tsf_ps_read_26627 pwr_fix_tsf_ps_read 3 26627 NULL
++sctp_getsockopt_fragment_interleave_51215 sctp_getsockopt_fragment_interleave 2 51215 NULL
++acpi_video_bus_write_DOS_2064 acpi_video_bus_write_DOS 3 2064 NULL
++isr_rx_mem_overflow_read_43025 isr_rx_mem_overflow_read 3 43025 NULL
++cciss_proc_write_10259 cciss_proc_write 3 10259 NULL
++b43_debugfs_write_34838 b43_debugfs_write 3 34838 NULL
++subbuf_read_actor_2071 subbuf_read_actor 3 2071 NULL
++fuse_perform_write_18457 fuse_perform_write 4 18457 NULL
++regset_tls_set_18459 regset_tls_set 4 18459 NULL
++iwl_dbgfs_current_sleep_command_read_2081 iwl_dbgfs_current_sleep_command_read 3 2081 NULL
++acpi_system_write_wakeup_device_34853 acpi_system_write_wakeup_device 3 34853 NULL
++parse_table_59430 parse_table 6 59430 NULL
++drm_property_create_51239 drm_property_create 4 51239 NULL
++stats_rx_expand_skb_head2_read_59439 stats_rx_expand_skb_head2_read 3 59439 NULL
++idetape_chrdev_read_2097 idetape_chrdev_read 3 2097 NULL
++audit_expand_2098 audit_expand 2 2098 NULL
++st_read_51251 st_read 3 51251 NULL
++udpv6_setsockopt_18487 udpv6_setsockopt 5 18487 NULL
++ecryptfs_encrypt_and_encode_filename_2109 ecryptfs_encrypt_and_encode_filename 6 2109 NULL
++compat_dccp_setsockopt_51263 compat_dccp_setsockopt 5 51263 NULL
++fwnet_pd_new_39947 fwnet_pd_new 4 39947 NULL
++enable_read_2117 enable_read 3 2117 NULL
++dvb_audio_write_51275 dvb_audio_write 3 51275 NULL
++ipwireless_network_packet_received_51277 ipwireless_network_packet_received 4 51277 NULL
++wl1251_build_probe_req_10318 wl1251_build_probe_req 3 10318 NULL
++_xfs_buf_get_pages_59472 _xfs_buf_get_pages 2 59472 NULL
++tomoyo_read_43089 tomoyo_read 3 43089 NULL
++snd_gus_dram_poke_18525 snd_gus_dram_poke 4 18525 NULL
++cdrom_read_cdda_old_27664 cdrom_read_cdda_old 4 27664 NULL
++arcmsr_adjust_disk_queue_depth_34916 arcmsr_adjust_disk_queue_depth 2 34916 NULL
++mlx4_init_icm_table_2151 mlx4_init_icm_table 4-5 2151 NULL
++HDLC_Encode_7186 HDLC_Encode 2-3 7186 NULL
++ib_copy_from_udata_59502 ib_copy_from_udata 3 59502 NULL
++seq_copy_in_user_18543 seq_copy_in_user 3 18543 NULL
++dv1394_write_18547 dv1394_write 3 18547 NULL
++stats_rx_handlers_fragments_read_10356 stats_rx_handlers_fragments_read 3 10356 NULL
++alloc_hippi_dev_51320 alloc_hippi_dev 1 51320 NULL
++fb_sys_write_33130 fb_sys_write 3 33130 NULL
++mthca_buf_alloc_35861 mthca_buf_alloc 2 35861 NULL
++get_scq_2177 get_scq 1 2177 NULL
++alloc_fddidev_15382 alloc_fddidev 1 15382 NULL
++srp_ring_alloc_26760 srp_ring_alloc 2 26760 NULL
++alloc_smp_req_51337 alloc_smp_req 1 51337 NULL
++ecryptfs_decode_and_decrypt_filename_10379 ecryptfs_decode_and_decrypt_filename 5 10379 NULL
++sta_tx_retry_failed_read_10381 sta_tx_retry_failed_read 3 10381 NULL
++skb_gro_header_slow_34958 skb_gro_header_slow 2 34958 NULL
++debug_output_18575 debug_output 3 18575 NULL
++do_compat_pselect_10398 do_compat_pselect 1 10398 NULL
++__netdev_alloc_skb_18595 __netdev_alloc_skb 2 18595 NULL
++slabinfo_write_18600 slabinfo_write 3 18600 NULL
++init_copy_kstat_irqs_34985 init_copy_kstat_irqs 4 34985 NULL
++radeon_kms_compat_ioctl_51371 radeon_kms_compat_ioctl 2 51371 NULL
++iowarrior_write_18604 iowarrior_write 3 18604 NULL
++vhci_write_2224 vhci_write 3 2224 NULL
++nfsd_cache_update_59574 nfsd_cache_update 3 59574 NULL
++l2cap_skbuff_fromiovec_35003 l2cap_skbuff_fromiovec 3-4 35003 NULL
++from_buffer_18625 from_buffer 3 18625 NULL
++uio_write_43202 uio_write 3 43202 NULL
++memdup_user_59590 memdup_user 2 59590 NULL
++alloc_etherdev_mq_compat_2247 alloc_etherdev_mq_compat 1 2247 NULL
++iso_callback_43208 iso_callback 3 43208 NULL
++smk_write_load_26829 smk_write_load 3 26829 NULL
++sel_write_avc_cache_threshold_2256 sel_write_avc_cache_threshold 3 2256 NULL
++coda_psdev_read_35029 coda_psdev_read 3 35029 NULL
++packet_sendmsg_24954 packet_sendmsg 4 24954 NULL
++ecryptfs_miscdev_write_26847 ecryptfs_miscdev_write 3 26847 NULL
++blk_register_region_51424 blk_register_region 1-2 51424 NULL
++mga_ioremap_8571 mga_ioremap 2-1 8571 NULL
++econet_sendmsg_51430 econet_sendmsg 4 51430 NULL
++event_phy_transmit_error_read_10471 event_phy_transmit_error_read 3 10471 NULL
++edge_tty_recv_18667 edge_tty_recv 4 18667 NULL
++btmrvl_gpiogap_write_35053 btmrvl_gpiogap_write 3 35053 NULL
++sel_read_class_12669 sel_read_class 3 12669 NULL
++stats_received_fragment_count_read_59643 stats_received_fragment_count_read 3 59643 NULL
++ubifs_setxattr_59650 ubifs_setxattr 4 59650 NULL nohasharray
++hidraw_read_59650 hidraw_read 3 59650 &ubifs_setxattr_59650
++kvm_clear_guest_page_2308 kvm_clear_guest_page 4 2308 NULL
++sel_write_disable_10511 sel_write_disable 3 10511 NULL
++store_ifalias_35088 store_ifalias 4 35088 NULL
++____alloc_ei_netdev_51475 ____alloc_ei_netdev 1 51475 NULL
++rds_message_alloc_10517 rds_message_alloc 1 10517 NULL
++alloc_dca_provider_59670 alloc_dca_provider 2 59670 NULL
++blk_rq_map_user_iov_16772 blk_rq_map_user_iov 5 16772 NULL
++snmp_mib_init_10526 snmp_mib_init 2 10526 NULL
++get_vm_area_caller_10527 get_vm_area_caller 1 10527 NULL
++capi_write_35104 capi_write 3 35104 NULL
++ide_settings_proc_write_35110 ide_settings_proc_write 3 35110 NULL
++sriov_enable_59689 sriov_enable 2 59689 NULL
++x25_asy_change_mtu_26928 x25_asy_change_mtu 2 26928 NULL
++mic_calc_failure_read_59700 mic_calc_failure_read 3 59700 NULL
++scsi_tgt_copy_sense_26933 scsi_tgt_copy_sense 3 26933 NULL
++pwr_ps_enter_read_26935 pwr_ps_enter_read 3 26935 NULL nohasharray
++sctp_setsockopt_adaptation_layer_26935 sctp_setsockopt_adaptation_layer 3 26935 &pwr_ps_enter_read_26935
++hecubafb_write_26942 hecubafb_write 3 26942 NULL
++wep_packets_read_18751 wep_packets_read 3 18751 NULL
++rose_recvmsg_2368 rose_recvmsg 4 2368 NULL
++perf_mmap_data_alloc_43335 perf_mmap_data_alloc 2 43335 NULL
++unix_stream_sendmsg_61455 unix_stream_sendmsg 4 61455 NULL
++prism2_info_scanresults_59729 prism2_info_scanresults 3 59729 NULL
++iscsi_conn_setup_35159 iscsi_conn_setup 2 35159 NULL
++ieee80211_if_read_bssid_35161 ieee80211_if_read_bssid 3 35161 NULL
++alloc_fcdev_18780 alloc_fcdev 1 18780 NULL
++__alloc_eip_netdev_51549 __alloc_eip_netdev 1 51549 NULL
++compat_sys_move_pages_5861 compat_sys_move_pages 2 5861 NULL
++otp_read_10594 otp_read 2-5-4 10594 NULL
++rxpipe_rx_prep_beacon_drop_read_2403 rxpipe_rx_prep_beacon_drop_read 3 2403 NULL
++isdn_v110_open_2418 isdn_v110_open 3 2418 NULL
++long_retry_limit_read_59766 long_retry_limit_read 3 59766 NULL
++blk_msg_write_13655 blk_msg_write 3 13655 NULL
++ima_show_htable_violations_10619 ima_show_htable_violations 3 10619 NULL
++cxgb3_get_cpl_reply_skb_10620 cxgb3_get_cpl_reply_skb 2 10620 NULL
++sta_agg_status_read_14058 sta_agg_status_read 3 14058 NULL
++venus_remove_59781 venus_remove 4 59781 NULL
++ioremap_nocache_2439 ioremap_nocache 2-1 2439 NULL
++sys_modify_ldt_18824 sys_modify_ldt 3 18824 NULL
++unix_stream_recvmsg_35210 unix_stream_recvmsg 4 35210 NULL
++tty_buffer_find_2443 tty_buffer_find 2 2443 NULL
++xlog_do_recover_59789 xlog_do_recover 3 59789 NULL
++stats_tx_handlers_drop_fragment_read_45464 stats_tx_handlers_drop_fragment_read 3 45464 NULL
++rfcomm_tty_write_51603 rfcomm_tty_write 3 51603 NULL
++ipw_write_59807 ipw_write 3 59807 NULL
++l1oip_socket_parse_4507 l1oip_socket_parse 4 4507 NULL
++scsi_init_shared_tag_map_59812 scsi_init_shared_tag_map 2 59812 NULL
++ni65_alloc_mem_10664 ni65_alloc_mem 3 10664 NULL
++b43legacy_debugfs_read_2473 b43legacy_debugfs_read 3 2473 NULL
++usb_alloc_urb_43436 usb_alloc_urb 1 43436 NULL
++sctp_setsockopt_events_18862 sctp_setsockopt_events 3 18862 NULL
++btmrvl_txdnldready_read_413 btmrvl_txdnldready_read 3 413 NULL
++dns_resolve_server_name_to_ip_51632 dns_resolve_server_name_to_ip 1 51632 NULL
++set_fd_set_35249 set_fd_set 1 35249 NULL
++wiphy_new_2482 wiphy_new 2 2482 NULL
++pl2303_buf_alloc_35251 pl2303_buf_alloc 1 35251 NULL
++ieee80211_if_read_dot11MeshHWMPmaxPREQretries_59829 ieee80211_if_read_dot11MeshHWMPmaxPREQretries 3 59829 NULL
++qla2x00_change_queue_depth_43446 qla2x00_change_queue_depth 2 43446 NULL
++ioapic_setup_resources_35255 ioapic_setup_resources 1 35255 NULL
++tcp_push_10680 tcp_push 3 10680 NULL
++sctp_auth_create_key_51641 sctp_auth_create_key 1 51641 NULL
++c101_run_37279 c101_run 2 37279 NULL
++iscsi_create_session_51647 iscsi_create_session 3 51647 NULL
++___alloc_bootmem_node_18882 ___alloc_bootmem_node 2 18882 NULL
++tun_put_user_59849 tun_put_user 4 59849 NULL
++alloc_fdmem_27083 alloc_fdmem 1 27083 NULL
++irda_recvmsg_stream_35280 irda_recvmsg_stream 4 35280 NULL
++btmrvl_hscmd_write_27089 btmrvl_hscmd_write 3 27089 NULL
++isr_rx_rdys_read_35283 isr_rx_rdys_read 3 35283 NULL
++selinux_inode_setxattr_10708 selinux_inode_setxattr 4 10708 NULL
++ps_upsd_utilization_read_51669 ps_upsd_utilization_read 3 51669 NULL
++alloc_arch_preferred_bootmem_27097 alloc_arch_preferred_bootmem 2 27097 NULL
++pvr2_ioread_read_10720 pvr2_ioread_read 3 10720 NULL nohasharray
++shash_async_setkey_10720 shash_async_setkey 3 10720 &pvr2_ioread_read_10720
++sctp_setsockopt_associnfo_51684 sctp_setsockopt_associnfo 3 51684 NULL
++__iscsi_complete_pdu_10726 __iscsi_complete_pdu 4 10726 NULL
++pvr2_ioread_set_sync_key_59882 pvr2_ioread_set_sync_key 3 59882 NULL
++l2cap_sock_recvmsg_59886 l2cap_sock_recvmsg 4 59886 NULL
++tracing_read_pipe_35312 tracing_read_pipe 3 35312 NULL
++sctp_getsockopt_maxseg_10737 sctp_getsockopt_maxseg 2 10737 NULL
++compat_sys_msgsnd_10738 compat_sys_msgsnd 2 10738 NULL
++sel_write_access_51704 sel_write_access 3 51704 NULL
++dvb_net_ioctl_43516 dvb_net_ioctl 3 43516 NULL
++stats_tx_handlers_queued_read_35325 stats_tx_handlers_queued_read 3 35325 NULL
++do_readlink_43518 do_readlink 2 43518 NULL
++compat_sys_migrate_pages_3157 compat_sys_migrate_pages 2 3157 NULL
++fallback_on_nodma_alloc_35332 fallback_on_nodma_alloc 2 35332 NULL
++drm_compat_ioctl_51717 drm_compat_ioctl 2 51717 NULL
++pms_capture_27142 pms_capture 4 27142 NULL
++btmrvl_hscfgcmd_write_27143 btmrvl_hscfgcmd_write 3 27143 NULL
++gspca_dev_probe_2570 gspca_dev_probe 4 2570 NULL
++sg_read_oxfer_51724 sg_read_oxfer 3 51724 NULL
++kvm_read_guest_atomic_10765 kvm_read_guest_atomic 4 10765 NULL
++cachefiles_daemon_write_43535 cachefiles_daemon_write 3 43535 NULL
++store_pwm1_enable_2577 store_pwm1_enable 4 2577 NULL
++pwc_video_read_51735 pwc_video_read 3 51735 NULL
++hid_parse_report_51737 hid_parse_report 3 51737 NULL
++compat_filldir64_35354 compat_filldir64 3 35354 NULL
++i2400m_net_rx_27170 i2400m_net_rx 5 27170 NULL
++mld_newpack_50950 mld_newpack 2 50950 NULL
++aac_change_queue_depth_51753 aac_change_queue_depth 2 51753 NULL
++ath_rx_init_43564 ath_rx_init 2 43564 NULL
++acpi_video_device_write_brightness_43565 acpi_video_device_write_brightness 3 43565 NULL
++dapm_widget_power_read_file_59950 dapm_widget_power_read_file 3 59950 NULL
++sys_bind_10799 sys_bind 3 10799 NULL
++ip_ufo_append_data_27187 ip_ufo_append_data 5-7-6 27187 NULL
++ioremap_prot_51764 ioremap_prot 2-1 51764 NULL
++rpc_malloc_43573 rpc_malloc 2 43573 NULL
++it821x_firmware_command_8628 it821x_firmware_command 3 8628 NULL
++smk_write_logging_2618 smk_write_logging 3 2618 NULL
++aun_incoming_10814 aun_incoming 3 10814 NULL
++usbvideo_register_59982 usbvideo_register 2 59982 NULL
++send_command_10832 send_command 4 10832 NULL
++lro_gen_skb_2644 lro_gen_skb 6 2644 NULL
++osd_req_read_kern_59990 osd_req_read_kern 5 59990 NULL
++lbs_sleepparams_read_10840 lbs_sleepparams_read 3 10840 NULL
++pppol2tp_sendmsg_56420 pppol2tp_sendmsg 4 56420 NULL
++proc_read_43614 proc_read 3 43614 NULL
++dma_memcpy_pg_to_iovec_1725 dma_memcpy_pg_to_iovec 6 1725 NULL
++rxrpc_request_key_27235 rxrpc_request_key 3 27235 NULL
++fuse_conn_max_background_read_10855 fuse_conn_max_background_read 3 10855 NULL
++mthca_init_cq_60011 mthca_init_cq 2 60011 NULL
++register_device_60015 register_device 3-2 60015 NULL
++snd_pcm_oss_write1_10872 snd_pcm_oss_write1 3 10872 NULL
++osd_req_list_dev_partitions_60027 osd_req_list_dev_partitions 4 60027 NULL
++sys_sched_getaffinity_60033 sys_sched_getaffinity 2 60033 NULL
++do_ip6t_set_ctl_60040 do_ip6t_set_ctl 4 60040 NULL
++do_readv_writev_51849 do_readv_writev 4 51849 NULL
++uhci_debug_read_5911 uhci_debug_read 3 5911 NULL
++pmcraid_change_queue_depth_60044 pmcraid_change_queue_depth 2 60044 NULL
++memcpy_fromiovecend_2707 memcpy_fromiovecend 3-4 2707 NULL
++cgroup_write_string_10900 cgroup_write_string 5 10900 NULL
++pointer_size_read_51863 pointer_size_read 3 51863 NULL
++load_module_60056 load_module 2 60056 NULL
++get_indirect_ea_51869 get_indirect_ea 4 51869 NULL
++compat_writev_60063 compat_writev 3 60063 NULL
++sta_last_seq_ctrl_read_19106 sta_last_seq_ctrl_read 3 19106 NULL
++__copy_from_user_10918 __copy_from_user 3 10918 NULL
++user_read_51881 user_read 3 51881 NULL
++copy_from_buf_27308 copy_from_buf 4-2 27308 NULL
++__xip_file_write_2733 __xip_file_write 3-4 2733 NULL
++proc_write_bluetooth_34589 proc_write_bluetooth 3 34589 NULL
++rxrpc_kernel_send_data_60083 rxrpc_kernel_send_data 3 60083 NULL
++hidp_send_ctrl_message_43702 hidp_send_ctrl_message 4 43702 NULL
++smb_do_alloc_request_43708 smb_do_alloc_request 2 43708 NULL
++iwl_calib_set_10944 iwl_calib_set 3 10944 NULL
++async_setkey_35521 async_setkey 3 35521 NULL
++alloc_irdadev_19140 alloc_irdadev 1 19140 NULL
++gfs2_readlink_10958 gfs2_readlink 3 10958 NULL
++rxpipe_tx_xfr_host_int_trig_rx_data_read_35538 rxpipe_tx_xfr_host_int_trig_rx_data_read 3 35538 NULL
++snd_rme32_playback_copy_43732 snd_rme32_playback_copy 5 43732 NULL
++ttm_bo_kmap_60118 ttm_bo_kmap 3 60118 NULL
++fuse_conn_congestion_threshold_write_43736 fuse_conn_congestion_threshold_write 3 43736 NULL
++alloc_context_3194 alloc_context 1 3194 NULL
++bm_entry_read_10976 bm_entry_read 3 10976 NULL
++pcbit_stat_27364 pcbit_stat 2 27364 NULL
++gigaset_initcs_43753 gigaset_initcs 2 43753 NULL
++sctp_setsockopt_active_key_43755 sctp_setsockopt_active_key 3 43755 NULL
++xfrm_hash_alloc_10997 xfrm_hash_alloc 1 10997 NULL
++lbs_highsnr_read_5931 lbs_highsnr_read 3 5931 NULL
++init_state_60165 init_state 2 60165 NULL
++fast_shmem_read_2823 fast_shmem_read 5 2823 NULL
++sel_read_enforce_2828 sel_read_enforce 3 2828 NULL
++__copy_to_user_inatomic_19214 __copy_to_user_inatomic 3 19214 NULL
++sg_build_sgat_60179 sg_build_sgat 3 60179 NULL nohasharray
++jffs2_alloc_full_dirent_60179 jffs2_alloc_full_dirent 1 60179 &sg_build_sgat_60179
++kernel_readv_35617 kernel_readv 3 35617 NULL
++hci_send_cmd_43810 hci_send_cmd 3 43810 NULL
++sys_lgetxattr_45531 sys_lgetxattr 4 45531 NULL
++cxio_init_resource_fifo_random_43814 cxio_init_resource_fifo_random 3 43814 NULL
++sta_tx_bytes_read_55197 sta_tx_bytes_read 3 55197 NULL
++tda10048_writeregbulk_11050 tda10048_writeregbulk 4 11050 NULL
++skb_copy_datagram_from_iovec_52014 skb_copy_datagram_from_iovec 2-5-4 52014 NULL
++move_addr_to_user_2868 move_addr_to_user 2 2868 NULL
++ieee80211_alloc_hw_43829 ieee80211_alloc_hw 1 43829 NULL
++vxge_rx_alloc_52024 vxge_rx_alloc 3 52024 NULL
++acpi_system_read_dsdt_19261 acpi_system_read_dsdt 3 19261 NULL
++p54_download_eeprom_43842 p54_download_eeprom 4 43842 NULL
++spi_register_board_info_35651 spi_register_board_info 2 35651 NULL
++read_flush_43851 read_flush 3 43851 NULL
++dma_rx_errors_read_52045 dma_rx_errors_read 3 52045 NULL
++cmm_write_2896 cmm_write 3 2896 NULL
++request_lock_35670 request_lock 4 35670 NULL
++vicam_read_2904 vicam_read 3 2904 NULL
++compat_sys_kexec_load_35674 compat_sys_kexec_load 2 35674 NULL
++compat_sys_fcntl64_60256 compat_sys_fcntl64 3 60256 NULL
++qc_capture_19298 qc_capture 3 19298 NULL
++stats_tx_expand_skb_head_cloned_read_11107 stats_tx_expand_skb_head_cloned_read 3 11107 NULL
++gdth_isa_probe_one_48925 gdth_isa_probe_one 1 48925 NULL
++hcd_buffer_alloc_27495 hcd_buffer_alloc 2 27495 NULL
++event_tx_stuck_read_19305 event_tx_stuck_read 3 19305 NULL
++rds_page_copy_user_35691 rds_page_copy_user 4 35691 NULL
++tracing_entries_write_60563 tracing_entries_write 3 60563 NULL
++printer_write_60276 printer_write 3 60276 NULL
++garmin_read_process_27509 garmin_read_process 3 27509 NULL
++alloc_alien_cache_11127 alloc_alien_cache 2 11127 NULL
++nsm_get_handle_52089 nsm_get_handle 4 52089 NULL
++__pskb_pull_tail_60287 __pskb_pull_tail 2 60287 NULL
++gs_buf_alloc_25067 gs_buf_alloc 2 25067 NULL
++cfg80211_inform_bss_19332 cfg80211_inform_bss 8 19332 NULL
++ib_copy_to_udata_27525 ib_copy_to_udata 3 27525 NULL
++dn_nsp_return_disc_60296 dn_nsp_return_disc 2 60296 NULL
++do_xip_mapping_read_60297 do_xip_mapping_read 5 60297 NULL
++prism2_sta_send_mgmt_43916 prism2_sta_send_mgmt 5 43916 NULL
++ppp_cp_event_2965 ppp_cp_event 6 2965 NULL
++acpi_os_map_memory_11161 acpi_os_map_memory 2-1 11161 NULL
++retry_count_read_52129 retry_count_read 3 52129 NULL
++ioremap_default_64667 ioremap_default 2-1 64667 NULL
++ioat2_alloc_ring_11172 ioat2_alloc_ring 2 11172 NULL
++read_zero_19366 read_zero 3 19366 NULL
++stats_dot11RTSFailureCount_read_43948 stats_dot11RTSFailureCount_read 3 43948 NULL
++stats_multiple_retry_count_read_60334 stats_multiple_retry_count_read 3 60334 NULL
++hysdn_conf_write_52145 hysdn_conf_write 3 52145 NULL
++store_cardr_2997 store_cardr 4 2997 NULL
++libipw_alloc_txb_27579 libipw_alloc_txb 1-3-2 27579 NULL
++stats_rx_handlers_drop_passive_scan_read_52160 stats_rx_handlers_drop_passive_scan_read 3 52160 NULL
++uv_ptc_proc_write_19394 uv_ptc_proc_write 3 19394 NULL
++ieee80211_if_read_dot11MeshRetryTimeout_52168 ieee80211_if_read_dot11MeshRetryTimeout 3 52168 NULL
++mga_compat_ioctl_52170 mga_compat_ioctl 2 52170 NULL
++ar9170_rx_copy_data_35787 ar9170_rx_copy_data 2 35787 NULL
++depth_write_3021 depth_write 3 3021 NULL
++dccp_setsockopt_60367 dccp_setsockopt 5 60367 NULL
++store_fan1_input_35793 store_fan1_input 4 35793 NULL
++recent_old_proc_write_43473 recent_old_proc_write 3 43473 NULL
++fast_rx_path_59214 fast_rx_path 3 59214 NULL
++tipc_cfg_reply_alloc_27606 tipc_cfg_reply_alloc 1 27606 NULL
++bcm_recvmsg_43992 bcm_recvmsg 4 43992 NULL
++proc_pid_readlink_52186 proc_pid_readlink 3 52186 NULL
++iwl_dbgfs_sleep_level_override_read_3038 iwl_dbgfs_sleep_level_override_read 3 3038 NULL
++dvbdmx_write_19423 dvbdmx_write 3 19423 NULL
++zd_rfwritev_locked_35812 zd_rfwritev_locked 4 35812 NULL
++cnic_alloc_dma_34641 cnic_alloc_dma 3 34641 NULL
++early_node_mem_52200 early_node_mem 4 52200 NULL
++mthca_alloc_resize_buf_60394 mthca_alloc_resize_buf 3 60394 NULL
++write_flush_procfs_44011 write_flush_procfs 3 44011 NULL
++__videobuf_alloc_11253 __videobuf_alloc 1 11253 NULL
++read_flush_procfs_27642 read_flush_procfs 3 27642 NULL
++iscsi_if_send_reply_52219 iscsi_if_send_reply 7 52219 NULL
++dac960_user_command_proc_write_3071 dac960_user_command_proc_write 3 3071 NULL
++hugetlbfs_read_11268 hugetlbfs_read 3 11268 NULL
++_alloc_mISDN_skb_52232 _alloc_mISDN_skb 3 52232 NULL
++excessive_retries_read_60425 excessive_retries_read 3 60425 NULL
++ip_vs_skb_replace_3083 ip_vs_skb_replace 4-6 3083 NULL
++proc_write_brn_3084 proc_write_brn 3 3084 NULL
++tstats_write_60432 tstats_write 3 60432 NULL nohasharray
++kmalloc_60432 kmalloc 1 60432 &tstats_write_60432
++refill_pool_19477 refill_pool 2 19477 NULL
++fl_create_52248 fl_create 4 52248 NULL
++rx_data_60442 rx_data 4 60442 NULL
++iwm_ntf_rx_packet_60452 iwm_ntf_rx_packet 3 60452 NULL
++sisusbcon_do_font_op_52271 sisusbcon_do_font_op 9 52271 NULL
++uwb_rc_cmd_done_35892 uwb_rc_cmd_done 4 35892 NULL
++l2cap_sar_segment_sdu_27701 l2cap_sar_segment_sdu 3 27701 NULL
++skb_realloc_headroom_19516 skb_realloc_headroom 2 19516 NULL
++atm_alloc_charge_19517 atm_alloc_charge 2 19517 NULL nohasharray
++dev_alloc_skb_19517 dev_alloc_skb 1 19517 &atm_alloc_charge_19517
++mb_cache_create_35903 mb_cache_create 4-5 35903 NULL
++construct_key_11329 construct_key 3 11329 NULL
++crypto_shash_setkey_60483 crypto_shash_setkey 3 60483 NULL
++fill_write_buffer_3142 fill_write_buffer 3 3142 NULL
++disk_expand_part_tbl_30561 disk_expand_part_tbl 2 30561 NULL
++igmpv3_newpack_35912 igmpv3_newpack 2 35912 NULL
++kernel_setsockopt_35913 kernel_setsockopt 5 35913 NULL
++reg_w_buf_27724 reg_w_buf 3 27724 NULL
++dccp_listen_start_35918 dccp_listen_start 2 35918 NULL
++ip6_append_data_60501 ip6_append_data 4-5 60501 NULL
++a4t_cs_init_27734 a4t_cs_init 3 27734 NULL
++dvb_generic_ioctl_3257 dvb_generic_ioctl 3 3257 NULL
++sel_write_create_11353 sel_write_create 3 11353 NULL
++tracing_set_trace_read_44122 tracing_set_trace_read 3 44122 NULL
++put_cmsg_compat_35937 put_cmsg_compat 4 35937 NULL
++drm_vblank_init_11362 drm_vblank_init 2 11362 NULL
++ath_tx_init_60515 ath_tx_init 2 60515 NULL
++bt_skb_alloc_6404 bt_skb_alloc 1 6404 NULL
++ntfs_rl_split_52328 ntfs_rl_split 2-4 52328 NULL
++ocfs2_control_message_19564 ocfs2_control_message 3 19564 NULL
++ieee80211_key_alloc_11373 ieee80211_key_alloc 3 11373 NULL
++compat_do_ip6t_set_ctl_3184 compat_do_ip6t_set_ctl 4 3184 NULL
++cgroup_read_s64_19570 cgroup_read_s64 5 19570 NULL
++hysdn_sched_rx_60533 hysdn_sched_rx 3 60533 NULL
++kcalloc_27770 kcalloc 1-2 27770 NULL
++bm_status_read_19583 bm_status_read 3 19583 NULL
++dev_irnet_write_11398 dev_irnet_write 3 11398 NULL
++acl_alloc_35979 acl_alloc 1 35979 NULL
++copy_entries_to_user_52367 copy_entries_to_user 1 52367 NULL
++___alloc_bootmem_11410 ___alloc_bootmem 1 11410 NULL
++str_to_user_11411 str_to_user 2 11411 NULL
++trace_options_read_11419 trace_options_read 3 11419 NULL
++isdn_writebuf_stub_52383 isdn_writebuf_stub 4 52383 NULL
++kimage_crash_alloc_3233 kimage_crash_alloc 3 3233 NULL
++mptscsih_change_queue_depth_44196 mptscsih_change_queue_depth 2 44196 NULL
++console_store_36007 console_store 4 36007 NULL
++key_key_read_3241 key_key_read 3 3241 NULL
++aer_inject_write_52399 aer_inject_write 3 52399 NULL
++ieee80211_if_read_dot11MeshHWMPactivePathTimeout_7368 ieee80211_if_read_dot11MeshHWMPactivePathTimeout 3 7368 NULL
++snd_hdspm_playback_copy_52405 snd_hdspm_playback_copy 5 52405 NULL
++sta_rx_dropped_read_27830 sta_rx_dropped_read 3 27830 NULL
++sys_listxattr_27833 sys_listxattr 3 27833 NULL
++aac_rx_ioremap_52410 aac_rx_ioremap 2 52410 NULL
++um_idi_write_18293 um_idi_write 3 18293 NULL
++cgroup_file_write_52417 cgroup_file_write 3 52417 NULL
++srp_alloc_iu_44227 srp_alloc_iu 2 44227 NULL
++cifs_partialpagewrite_60612 cifs_partialpagewrite 2-3 60612 NULL
++usbvision_rvmalloc_19655 usbvision_rvmalloc 1 19655 NULL
++LoadBitmap_19658 LoadBitmap 2 19658 NULL
++scsi_track_queue_full_44239 scsi_track_queue_full 2 44239 NULL
++get_new_cssid_51665 get_new_cssid 2 51665 NULL
++read_profile_27859 read_profile 3 27859 NULL
++stats_rx_handlers_drop_read_3284 stats_rx_handlers_drop_read 3 3284 NULL
++acl_alloc_stack_init_60630 acl_alloc_stack_init 1 60630 NULL
++enlarge_skb_44248 enlarge_skb 2 44248 NULL
++sys_init_module_36047 sys_init_module 2 36047 NULL
++ubifs_recover_leb_60639 ubifs_recover_leb 3 60639 NULL
++btmrvl_psmode_read_22395 btmrvl_psmode_read 3 22395 NULL
++stack_max_size_write_36068 stack_max_size_write 3 36068 NULL
++oom_adjust_read_25127 oom_adjust_read 3 25127 NULL
++sd_do_mode_sense_11507 sd_do_mode_sense 5 11507 NULL
++unix_seqpacket_sendmsg_27893 unix_seqpacket_sendmsg 4 27893 NULL
++kmem_zalloc_11510 kmem_zalloc 1 11510 NULL
++ubi_eba_write_leb_st_27896 ubi_eba_write_leb_st 5 27896 NULL
++ieee80211_if_read_dot11MeshConfirmTimeout_60670 ieee80211_if_read_dot11MeshConfirmTimeout 3 60670 NULL
++gluebi_write_27905 gluebi_write 3 27905 NULL
++aac_rkt_ioremap_3333 aac_rkt_ioremap 2 3333 NULL
++sctp_make_init_ack_3335 sctp_make_init_ack 4 3335 NULL
++read_from_oldmem_3337 read_from_oldmem 2 3337 NULL
++sctp_getsockopt_context_52490 sctp_getsockopt_context 2 52490 NULL
++skb_cow_head_52495 skb_cow_head 2 52495 NULL
++vga_arb_write_36112 vga_arb_write 3 36112 NULL
++do_sysctl_strategy_11541 do_sysctl_strategy 6 11541 NULL
++l1oip_socket_recv_56537 l1oip_socket_recv 6 56537 NULL
++memcpy_toiovecend_19736 memcpy_toiovecend 3-4 19736 NULL
++iser_rcv_completion_63364 iser_rcv_completion 2 63364 NULL
++dispatch_proc_write_44320 dispatch_proc_write 3 44320 NULL
++vmalloc_exec_36132 vmalloc_exec 1 36132 NULL
++p9_client_read_19750 p9_client_read 5 19750 NULL
++sctp_getsockopt_peer_addrs_old_11565 sctp_getsockopt_peer_addrs_old 2 11565 NULL nohasharray
++skb_cow_data_11565 skb_cow_data 2 11565 &sctp_getsockopt_peer_addrs_old_11565
++raw_recvmsg_52529 raw_recvmsg 4 52529 NULL
++copy_from_user_toio_31966 copy_from_user_toio 3 31966 NULL
++sctp_make_abort_violation_27959 sctp_make_abort_violation 4 27959 NULL
++tracing_clock_write_27961 tracing_clock_write 3 27961 NULL
++b1_alloc_card_36155 b1_alloc_card 1 36155 NULL
++oprofilefs_ulong_to_user_11582 oprofilefs_ulong_to_user 3 11582 NULL
++start_isoc_chain_565 start_isoc_chain 2 565 NULL
++blk_queue_init_tags_44355 blk_queue_init_tags 2 44355 NULL
++saa7146_vmalloc_build_pgtable_19780 saa7146_vmalloc_build_pgtable 2 19780 NULL
++dccpprobe_read_52549 dccpprobe_read 3 52549 NULL
++snd_korg1212_copy_from_36169 snd_korg1212_copy_from 6 36169 NULL
++fw_device_op_ioctl_11595 fw_device_op_ioctl 2 11595 NULL
++ipx_recvmsg_44366 ipx_recvmsg 4 44366 NULL
++hycapi_rx_capipkt_11602 hycapi_rx_capipkt 3 11602 NULL
++msix_map_region_3411 msix_map_region 3 3411 NULL
++sys_kexec_load_14222 sys_kexec_load 2 14222 NULL
++rts_threshold_read_44384 rts_threshold_read 3 44384 NULL
++pci_add_cap_save_buffer_3426 pci_add_cap_save_buffer 3 3426 NULL
++sel_write_checkreqprot_60774 sel_write_checkreqprot 3 60774 NULL
++opticon_write_60775 opticon_write 4 60775 NULL
++snd_rawmidi_write_28008 snd_rawmidi_write 3 28008 NULL
++acl_alloc_num_60778 acl_alloc_num 1-2 60778 NULL
++aoedev_flush_44398 aoedev_flush 2 44398 NULL
++stats_tx_handlers_drop_not_assoc_read_28015 stats_tx_handlers_drop_not_assoc_read 3 28015 NULL
++irda_setsockopt_19824 irda_setsockopt 5 19824 NULL
++nfs4_write_cached_acl_44402 nfs4_write_cached_acl 3 44402 NULL
++get_packet_pg_28023 get_packet_pg 4 28023 NULL
++osst_do_scsi_44410 osst_do_scsi 4 44410 NULL
++cosa_net_setup_rx_38594 cosa_net_setup_rx 2 38594 NULL
++security_context_to_sid_19839 security_context_to_sid 2 19839 NULL
++sisusb_send_bridge_packet_11649 sisusb_send_bridge_packet 2 11649 NULL
++atomic_stats_read_36228 atomic_stats_read 3 36228 NULL
++sctp_setsockopt_maxburst_28041 sctp_setsockopt_maxburst 3 28041 NULL
++alloc_skb_fclone_3467 alloc_skb_fclone 1 3467 NULL
++proc_fault_inject_write_21058 proc_fault_inject_write 3 21058 NULL
++dlm_lock_19858 dlm_lock 6 19858 NULL
++cx231xx_init_vbi_isoc_28053 cx231xx_init_vbi_isoc 2-3 28053 NULL
++ide_queue_pc_tail_11673 ide_queue_pc_tail 5 11673 NULL
++cfg80211_roamed_28061 cfg80211_roamed 4-6 28061 NULL
++compat_sys_mbind_36256 compat_sys_mbind 5 36256 NULL
++dvb_demux_do_ioctl_38811 dvb_demux_do_ioctl 4 38811 NULL
++security_context_to_sid_default_3492 security_context_to_sid_default 2 3492 NULL nohasharray
++efi_ioremap_3492 efi_ioremap 2-1 3492 &security_context_to_sid_default_3492
++iwm_ntf_calib_res_11686 iwm_ntf_calib_res 3 11686 NULL
++sctp_setsockopt_hmac_ident_11687 sctp_setsockopt_hmac_ident 3 11687 NULL
++edac_pci_alloc_ctl_info_63388 edac_pci_alloc_ctl_info 1 63388 NULL
++sysctl_ipc_registered_data_36266 sysctl_ipc_registered_data 5 36266 NULL
++snd_ctl_elem_user_tlv_11695 snd_ctl_elem_user_tlv 3 11695 NULL
++pwr_tx_with_ps_read_60851 pwr_tx_with_ps_read 3 60851 NULL
++usb_buffer_alloc_36276 usb_buffer_alloc 2 36276 NULL
++codec_reg_read_file_36280 codec_reg_read_file 3 36280 NULL
++iscsi_complete_pdu_48372 iscsi_complete_pdu 4 48372 NULL
++gdth_init_isa_28091 gdth_init_isa 1 28091 NULL
++ql_dump_hw_cb_3518 ql_dump_hw_cb 2 3518 NULL
++ieee80211_send_auth_60865 ieee80211_send_auth 5 60865 NULL
++sctp_getsockopt_rtoinfo_62027 sctp_getsockopt_rtoinfo 2 62027 NULL
++diva_alloc_dma_map_23798 diva_alloc_dma_map 2 23798 NULL
++aes_decrypt_interrupt_read_19910 aes_decrypt_interrupt_read 3 19910 NULL
++ps_upsd_max_apturn_read_19918 ps_upsd_max_apturn_read 3 19918 NULL
++ieee80211_if_read_dropped_frames_ttl_44500 ieee80211_if_read_dropped_frames_ttl 3 44500 NULL
++iwl_dbgfs_sram_read_44505 iwl_dbgfs_sram_read 3 44505 NULL
++get_vm_area_node_44507 get_vm_area_node 1 44507 NULL
++vgacon_adjust_height_28124 vgacon_adjust_height 2 28124 NULL
++spidev_write_44510 spidev_write 3 44510 NULL
++proc_write_wled_592 proc_write_wled 3 592 NULL
++iwl_dbgfs_rx_queue_read_19943 iwl_dbgfs_rx_queue_read 3 19943 NULL
++fat_compat_ioctl_filldir_36328 fat_compat_ioctl_filldir 3 36328 NULL
++iwl_dbgfs_qos_read_11753 iwl_dbgfs_qos_read 3 11753 NULL
++hpsb_alloc_host_3562 hpsb_alloc_host 2 3562 NULL
++alloc_smp_resp_3566 alloc_smp_resp 1 3566 NULL
++jbd2_journal_init_revoke_table_36336 jbd2_journal_init_revoke_table 1 36336 NULL
++zd_ioread32v_locked_19953 zd_ioread32v_locked 4 19953 NULL
++mgt_set_varlen_60916 mgt_set_varlen 4 60916 NULL
++compat_sys_setsockopt_3326 compat_sys_setsockopt 5 3326 NULL
++sys_msgsnd_44537 sys_msgsnd 3 44537 NULL
++stats_dot11FCSErrorCount_read_28154 stats_dot11FCSErrorCount_read 3 28154 NULL
++ax25_send_frame_19964 ax25_send_frame 2 19964 NULL
++blkcipher_next_slow_52733 blkcipher_next_slow 4-3 52733 NULL
++relay_alloc_page_array_52735 relay_alloc_page_array 1 52735 NULL
++xfs_buf_get_noaddr_52736 xfs_buf_get_noaddr 1 52736 NULL
++v9fs_file_readn_36353 v9fs_file_readn 4 36353 NULL
++ivtv_v4l2_read_1964 ivtv_v4l2_read 3 1964 NULL
++iscsi_nop_out_rsp_51117 iscsi_nop_out_rsp 4 51117 NULL
++attach_hdlc_protocol_19986 attach_hdlc_protocol 3 19986 NULL
++mtd_do_writeoob_36373 mtd_do_writeoob 4 36373 NULL
++vring_new_virtqueue_36374 vring_new_virtqueue 1 36374 NULL
++sctp_getsockopt_events_3607 sctp_getsockopt_events 2 3607 NULL
++sctp_getsockopt_partial_delivery_point_60952 sctp_getsockopt_partial_delivery_point 2 60952 NULL
++key_algorithm_read_57946 key_algorithm_read 3 57946 NULL
++cafe_v4l_read_52766 cafe_v4l_read 3 52766 NULL
++proc_fdinfo_read_62043 proc_fdinfo_read 3 62043 NULL
++sctp_make_datafrag_empty_34737 sctp_make_datafrag_empty 3 34737 NULL
++ppp_tx_cp_62044 ppp_tx_cp 5 62044 NULL
++pcpu_fc_alloc_11818 pcpu_fc_alloc 2 11818 NULL
++aligned_kmalloc_3628 aligned_kmalloc 1 3628 NULL
++afs_alloc_flat_call_36399 afs_alloc_flat_call 2-3 36399 NULL
++snd_pcm_alloc_vmalloc_buffer_44595 snd_pcm_alloc_vmalloc_buffer 2 44595 NULL
++sctp_setsockopt_maxseg_11829 sctp_setsockopt_maxseg 3 11829 NULL
++dsp_cmx_send_member_15625 dsp_cmx_send_member 2 15625 NULL
++cm_copy_private_data_3649 cm_copy_private_data 2 3649 NULL
++i915_compat_ioctl_3656 i915_compat_ioctl 2 3656 NULL
++sctp_getsockopt_mappedv4_20044 sctp_getsockopt_mappedv4 2 20044 NULL
++compat_udp_setsockopt_38840 compat_udp_setsockopt 5 38840 NULL
++send_video_command_6073 send_video_command 4 6073 NULL nohasharray
++sctp_setsockopt_connectx_6073 sctp_setsockopt_connectx 3 6073 &send_video_command_6073
++ecryptfs_copy_filename_11868 ecryptfs_copy_filename 4 11868 NULL
++sctp_tsnmap_init_36446 sctp_tsnmap_init 2 36446 NULL
++alloc_ieee80211_20063 alloc_ieee80211 1 20063 NULL
++pwr_rcvd_beacons_read_52836 pwr_rcvd_beacons_read 3 52836 NULL
++_l2_alloc_skb_11883 _l2_alloc_skb 1 11883 NULL
++stats_tx_handlers_drop_read_44654 stats_tx_handlers_drop_read 3 44654 NULL
++proc_pid_attr_read_10173 proc_pid_attr_read 3 10173 NULL
++rawv6_sendmsg_20080 rawv6_sendmsg 4 20080 NULL
++fuse_conn_limit_read_20084 fuse_conn_limit_read 3 20084 NULL
++btmrvl_psmode_write_3703 btmrvl_psmode_write 3 3703 NULL
++symtab_init_61050 symtab_init 2 61050 NULL
++alloc_ctrl_packet_44667 alloc_ctrl_packet 1 44667 NULL
++mon_bin_get_event_52863 mon_bin_get_event 4 52863 NULL
++tower_write_8580 tower_write 3 8580 NULL
++kmalloc_slab_11917 kmalloc_slab 1 11917 NULL
++__hidp_send_ctrl_message_28303 __hidp_send_ctrl_message 4 28303 NULL
++edge_buf_alloc_36498 edge_buf_alloc 1 36498 NULL
++buf_acquire_3736 buf_acquire 1 3736 NULL
++ci_ll_write_3740 ci_ll_write 4 3740 NULL
++snd_pcm_oss_read_28317 snd_pcm_oss_read 3 28317 NULL
++__hwahc_op_set_ptk_36510 __hwahc_op_set_ptk 5 36510 NULL
++dccp_feat_clone_sp_val_11942 dccp_feat_clone_sp_val 3 11942 NULL
++pms_read_53873 pms_read 3 53873 NULL
++ieee80211_if_read_fwded_frames_36520 ieee80211_if_read_fwded_frames 3 36520 NULL
++mempool_create_node_44715 mempool_create_node 1 44715 NULL
++replay_bud_56605 replay_bud 3 56605 NULL
++__alloc_bootmem_node_1992 __alloc_bootmem_node 2 1992 NULL
++bm_entry_write_28338 bm_entry_write 3 28338 NULL
++_zd_iowrite32v_locked_44725 _zd_iowrite32v_locked 3 44725 NULL
++tcp_copy_to_iovec_28344 tcp_copy_to_iovec 3 28344 NULL
++clusterip_proc_write_44729 clusterip_proc_write 3 44729 NULL
++cpu_type_read_36540 cpu_type_read 3 36540 NULL
++hpsb_node_write_52928 hpsb_node_write 4 52928 NULL
++snd_seq_oss_readq_new_14283 snd_seq_oss_readq_new 2 14283 NULL
++key_tx_rx_count_read_44742 key_tx_rx_count_read 3 44742 NULL
++xfs_dir2_leaf_getdents_23841 xfs_dir2_leaf_getdents 3 23841 NULL
++read_flush_pipefs_20171 read_flush_pipefs 3 20171 NULL
++wep_addr_key_count_read_20174 wep_addr_key_count_read 3 20174 NULL
++sctp_setsockopt_auth_key_3793 sctp_setsockopt_auth_key 3 3793 NULL
++afs_proc_cells_write_61139 afs_proc_cells_write 3 61139 NULL
++store_disp_52952 store_disp 4 52952 NULL
++mangle_epsv_packet_36571 mangle_epsv_packet 5 36571 NULL
++sys_writev_28384 sys_writev 3 28384 NULL
++dlmfs_file_read_28385 dlmfs_file_read 3 28385 NULL
++ssb_bus_scan_36578 ssb_bus_scan 2 36578 NULL
++ncp_file_write_3813 ncp_file_write 3 3813 NULL
++put_cmsg_36589 put_cmsg 4 36589 NULL
++__vmalloc_61168 __vmalloc 1 61168 NULL
++llc_ui_recvmsg_3826 llc_ui_recvmsg 4 3826 NULL
++sctp_setsockopt_44788 sctp_setsockopt 5 44788 NULL
++pcnet32_realloc_rx_ring_36598 pcnet32_realloc_rx_ring 3 36598 NULL
++event_oom_late_read_61175 event_oom_late_read 3 61175 NULL
++sys_lsetxattr_61177 sys_lsetxattr 4 61177 NULL
++rx_dropped_read_44799 rx_dropped_read 3 44799 NULL
++fat_ioctl_filldir_36621 fat_ioctl_filldir 3 36621 NULL
++smk_read_onlycap_3855 smk_read_onlycap 3 3855 NULL
++rose_sendmsg_20249 rose_sendmsg 4 20249 NULL
++get_fd_set_3866 get_fd_set 1 3866 NULL
++jffs2_security_setxattr_20253 jffs2_security_setxattr 4 20253 NULL
++ubi_dbg_dump_flash_3870 ubi_dbg_dump_flash 4 3870 NULL
++sisusb_write_44834 sisusb_write 3 44834 NULL
++sta_rx_fragments_read_44835 sta_rx_fragments_read 3 44835 NULL
++acpi_system_read_fadt_3876 acpi_system_read_fadt 3 3876 NULL
++mlx4_init_cmpt_table_11569 mlx4_init_cmpt_table 3 11569 NULL
++ubifs_leb_write_61226 ubifs_leb_write 5-4 61226 NULL
++garp_attr_create_3883 garp_attr_create 3 3883 NULL
++cpia_write_proc_20268 cpia_write_proc 3 20268 NULL
++ubifs_recover_log_leb_12079 ubifs_recover_log_leb 3 12079 NULL
++uea_send_modem_cmd_3888 uea_send_modem_cmd 3 3888 NULL
++nvram_write_3894 nvram_write 3 3894 NULL
++osd_req_list_collection_objects_36664 osd_req_list_collection_objects 5 36664 NULL
++sysctl_ipc_data_3903 sysctl_ipc_data 5 3903 NULL
++vcs_write_3910 vcs_write 3 3910 NULL
++compat_sys_msgrcv_7482 compat_sys_msgrcv 2 7482 NULL
++compat_udpv6_setsockopt_42981 compat_udpv6_setsockopt 5 42981 NULL
++do_tty_write_44896 do_tty_write 5 44896 NULL
++snd_cs4281_BA1_read_20323 snd_cs4281_BA1_read 5-6 20323 NULL
++_scsih_change_queue_depth_44902 _scsih_change_queue_depth 2 44902 NULL
++xfs_handle_to_dentry_12135 xfs_handle_to_dentry 3 12135 NULL
++sys_add_key_61288 sys_add_key 4 61288 NULL
++rawv6_seticmpfilter_12137 rawv6_seticmpfilter 5 12137 NULL
++platform_device_register_simple_61290 platform_device_register_simple 4 61290 NULL
++proc_write_tled_3947 proc_write_tled 3 3947 NULL
++i2400m_tx_stats_read_28527 i2400m_tx_stats_read 3 28527 NULL
++btmrvl_sdio_host_to_card_12152 btmrvl_sdio_host_to_card 3 12152 NULL
++gfs2_glock_nq_m_20347 gfs2_glock_nq_m 1 20347 NULL
++l2cap_send_cmd_3678 l2cap_send_cmd 4 3678 NULL
++sel_read_policycap_28544 sel_read_policycap 3 28544 NULL
++mptctl_getiocinfo_28545 mptctl_getiocinfo 2 28545 NULL
++snd_rawmidi_kernel_read1_36740 snd_rawmidi_kernel_read1 4 36740 NULL
++b43legacy_debugfs_write_28556 b43legacy_debugfs_write 3 28556 NULL
++dma_memcpy_to_iovec_12173 dma_memcpy_to_iovec 5 12173 NULL
++pcpu_mem_alloc_3987 pcpu_mem_alloc 1 3987 NULL
++inet_dccp_listen_28565 inet_dccp_listen 2 28565 NULL
++do_add_counters_3992 do_add_counters 3 3992 NULL
++mic_rx_pkts_read_27972 mic_rx_pkts_read 3 27972 NULL
++ip_generic_getfrag_12187 ip_generic_getfrag 3-4 12187 NULL
++st5481_setup_isocpipes_61340 st5481_setup_isocpipes 6-4 61340 NULL
++acpi_video_device_write_state_61342 acpi_video_device_write_state 3 61342 NULL
++ip4ip6_err_36772 ip4ip6_err 5 36772 NULL
++ieee80211_if_read_dot11MeshMaxPeerLinks_23878 ieee80211_if_read_dot11MeshMaxPeerLinks 3 23878 NULL
++snd_hdsp_capture_copy_4011 snd_hdsp_capture_copy 5 4011 NULL
++nfsd_read_20406 nfsd_read 6 20406 NULL
++receive_copy_12216 receive_copy 3 12216 NULL
++proc_fault_inject_read_36802 proc_fault_inject_read 3 36802 NULL
++stats_tx_expand_skb_head_read_53188 stats_tx_expand_skb_head_read 3 53188 NULL
++change_xattr_61390 change_xattr 5 61390 NULL
++find_skb_20431 find_skb 2 20431 NULL
++hiddev_ioctl_36816 hiddev_ioctl 2 36816 NULL
++tcp_fragment_20436 tcp_fragment 3 20436 NULL
++ib_uverbs_unmarshall_recv_12251 ib_uverbs_unmarshall_recv 5 12251 NULL
++vstusb_write_45021 vstusb_write 3 45021 NULL nohasharray
++ptrace_writedata_45021 ptrace_writedata 4 45021 &vstusb_write_45021
++simple_alloc_urb_60420 simple_alloc_urb 3 60420 NULL
++sys_sethostname_42962 sys_sethostname 2 42962 NULL
++shash_compat_setkey_12267 shash_compat_setkey 3 12267 NULL
++add_sctp_bind_addr_12269 add_sctp_bind_addr 3 12269 NULL
++sctp_make_asconf_4078 sctp_make_asconf 3 4078 NULL
++vhci_get_user_45039 vhci_get_user 3 45039 NULL
++compat_ipv6_setsockopt_20468 compat_ipv6_setsockopt 5 20468 NULL
++keyctl_describe_key_36853 keyctl_describe_key 3 36853 NULL
++blk_queue_resize_tags_28670 blk_queue_resize_tags 2 28670 NULL
++sel_write_user_45060 sel_write_user 3 45060 NULL
++sbp2util_node_write_no_wait_7510 sbp2util_node_write_no_wait 4 7510 NULL
++iwm_notif_send_12295 iwm_notif_send 6 12295 NULL
++__dev_alloc_skb_28681 __dev_alloc_skb 1 28681 NULL
++__videobuf_copy_stream_20490 __videobuf_copy_stream 3 20490 NULL
++svc_setsockopt_36876 svc_setsockopt 5 36876 NULL
++snd_mixart_BA0_read_45069 snd_mixart_BA0_read 5-6 45069 NULL
++fast_user_write_20494 fast_user_write 5 20494 NULL
++ipr_change_queue_depth_53263 ipr_change_queue_depth 2 53263 NULL
++allocate_buffers_4113 allocate_buffers 2 4113 NULL
++ib_ucm_alloc_data_36885 ib_ucm_alloc_data 3 36885 NULL
++bt_sock_recvmsg_12316 bt_sock_recvmsg 4 12316 NULL
++selinux_inode_notifysecctx_36896 selinux_inode_notifysecctx 3 36896 NULL
++user_dlm_lock_56667 user_dlm_lock 6 56667 NULL
++pwc_rvmalloc_12325 pwc_rvmalloc 1 12325 NULL
++dvb_dvr_read_17073 dvb_dvr_read 3 17073 NULL
++xfs_iext_realloc_direct_20521 xfs_iext_realloc_direct 2 20521 NULL
++sctp_getsockopt_disable_fragments_12330 sctp_getsockopt_disable_fragments 2 12330 NULL
++pcbit_writecmd_12332 pcbit_writecmd 2 12332 NULL
++__get_vm_area_node_55305 __get_vm_area_node 1 55305 NULL
++amd_create_gatt_pages_20537 amd_create_gatt_pages 1 20537 NULL
++usbdev_read_45114 usbdev_read 3 45114 NULL
++spi_execute_28736 spi_execute 5 28736 NULL
++snd_pcm_aio_write_28738 snd_pcm_aio_write 3 28738 NULL
++mptctl_ioctl_12355 mptctl_ioctl 2 12355 NULL
++get_alua_req_4166 get_alua_req 3 4166 NULL
++blk_dropped_read_4168 blk_dropped_read 3 4168 NULL
++venus_create_20555 venus_create 4 20555 NULL
++ftrace_profile_write_53327 ftrace_profile_write 3 53327 NULL
++expand_files_17080 expand_files 2 17080 NULL
++read_file_bool_4180 read_file_bool 3 4180 NULL
++send_to_tty_45141 send_to_tty 3 45141 NULL
++write_leb_36957 write_leb 5 36957 NULL
++xfs_iext_inline_to_direct_12384 xfs_iext_inline_to_direct 2 12384 NULL
++stats_transmitted_fragment_count_read_28770 stats_transmitted_fragment_count_read 3 28770 NULL
++device_write_45156 device_write 3 45156 NULL
++_osd_req_list_objects_4204 _osd_req_list_objects 6 4204 NULL
++trace_options_core_write_61551 trace_options_core_write 3 61551 NULL
++dvb_net_sec_callback_28786 dvb_net_sec_callback 2 28786 NULL
++gem_alloc_skb_59411 gem_alloc_skb 1 59411 NULL
++sctp_getsockopt_local_addrs_old_4220 sctp_getsockopt_local_addrs_old 2 4220 NULL
++vring_add_indirect_4224 vring_add_indirect 3-4 4224 NULL
++pwr_disable_ps_read_13176 pwr_disable_ps_read 3 13176 NULL
++cgroup_file_read_28804 cgroup_file_read 3 28804 NULL
++snd_sb_csp_load_user_45190 snd_sb_csp_load_user 3 45190 NULL
++setxattr_37006 setxattr 4 37006 NULL
++add_child_45201 add_child 4 45201 NULL
++seq_open_private_61589 seq_open_private 3 61589 NULL
++__get_vm_area_61599 __get_vm_area 1 61599 NULL
++netlink_recvmsg_61600 netlink_recvmsg 4 61600 NULL
++store_lssw_43035 store_lssw 4 43035 NULL nohasharray
++wep_default_key_count_read_43035 wep_default_key_count_read 3 43035 &store_lssw_43035
++spi_alloc_master_45223 spi_alloc_master 2 45223 NULL
++ubi_eba_write_leb_19826 ubi_eba_write_leb 6-5 19826 NULL
++vp_request_msix_vectors_28849 vp_request_msix_vectors 2 28849 NULL
++configfs_write_file_61621 configfs_write_file 3 61621 NULL
++event_enable_write_45238 event_enable_write 3 45238 NULL
++ieee80211_if_read_drop_unencrypted_37053 ieee80211_if_read_drop_unencrypted 3 37053 NULL
++ieee80211_rx_bss_info_61630 ieee80211_rx_bss_info 3 61630 NULL
++isr_cmd_cmplt_read_53439 isr_cmd_cmplt_read 3 53439 NULL
++_fc_frame_alloc_28865 _fc_frame_alloc 2 28865 NULL
++i2o_parm_table_get_61635 i2o_parm_table_get 6 61635 NULL
++snd_hdsp_playback_copy_20676 snd_hdsp_playback_copy 5 20676 NULL
++x25_sendmsg_12487 x25_sendmsg 4 12487 NULL
++dvb_dmxdev_buffer_read_20682 dvb_dmxdev_buffer_read 4 20682 NULL
++pipe_iov_copy_to_user_3447 pipe_iov_copy_to_user 3 3447 NULL
++dvb_ringbuffer_pkt_read_user_4303 dvb_ringbuffer_pkt_read_user 3-5-2 4303 NULL
++resize_stripes_61650 resize_stripes 2 61650 NULL
++n2_run_53459 n2_run 3 53459 NULL
++packet_sendmsg_spkt_28885 packet_sendmsg_spkt 4 28885 NULL
++parse_command_37079 parse_command 2 37079 NULL
++hpsb_make_writepacket_61656 hpsb_make_writepacket 5 61656 NULL
++drm_agp_allocate_memory_15738 drm_agp_allocate_memory 2 15738 NULL
++rds_tcp_data_recv_53476 rds_tcp_data_recv 3 53476 NULL
++ftdi_write_20710 ftdi_write 4 20710 NULL
++snd_rawmidi_kernel_read_4328 snd_rawmidi_kernel_read 3 4328 NULL
++iowarrior_read_53483 iowarrior_read 3 53483 NULL
++osd_req_write_kern_53486 osd_req_write_kern 5 53486 NULL
++snd_pcm_oss_sync1_45298 snd_pcm_oss_sync1 2 45298 NULL
++security_context_to_sid_force_20724 security_context_to_sid_force 2 20724 NULL
++tso_fragment_12539 tso_fragment 3 12539 NULL
++filter_read_61692 filter_read 3 61692 NULL
++ar9170_alloc_4355 ar9170_alloc 1 4355 NULL
++__copy_from_user_inatomic_4365 __copy_from_user_inatomic 3 4365 NULL
++vol_cdev_direct_write_20751 vol_cdev_direct_write 3 20751 NULL
++ipc_rcu_alloc_21208 ipc_rcu_alloc 1 21208 NULL nohasharray
++frame_alloc_21208 frame_alloc 2 21208 &ipc_rcu_alloc_21208
++zc0301_read_53524 zc0301_read 3 53524 NULL
++sys_setdomainname_4373 sys_setdomainname 2 4373 NULL
++fragmentation_threshold_read_61718 fragmentation_threshold_read 3 61718 NULL
++snd_rme9652_capture_copy_10287 snd_rme9652_capture_copy 5 10287 NULL
++copy_vm86_regs_from_user_45340 copy_vm86_regs_from_user 3 45340 NULL
++se401_read_58074 se401_read 3 58074 NULL
++hvc_alloc_12579 hvc_alloc 4 12579 NULL
++irda_sendmsg_4388 irda_sendmsg 4 4388 NULL
++pcpu_extend_area_map_12589 pcpu_extend_area_map 2 12589 NULL
++read_file_interrupt_61742 read_file_interrupt 3 61742 NULL
++vhci_put_user_12604 vhci_put_user 4 12604 NULL
++sctp_getsockopt_adaptation_layer_45375 sctp_getsockopt_adaptation_layer 2 45375 NULL
++hci_sock_setsockopt_28993 hci_sock_setsockopt 5 28993 NULL
++neigh_hash_alloc_52619 neigh_hash_alloc 1 52619 NULL
++sys_sendto_20809 sys_sendto 6 20809 NULL
++w9968cf_read_53582 w9968cf_read 3 53582 NULL nohasharray
++set_registers_53582 set_registers 3 53582 &w9968cf_read_53582
++stats_rx_handlers_drop_short_read_45391 stats_rx_handlers_drop_short_read 3 45391 NULL
++do_pages_stat_4437 do_pages_stat 2 4437 NULL
++lane2_associate_req_45398 lane2_associate_req 4 45398 NULL
++ieee80211_rx_mgmt_probe_resp_12634 ieee80211_rx_mgmt_probe_resp 4 12634 NULL
++pn_sendmsg_12640 pn_sendmsg 4 12640 NULL
++pfkey_recvmsg_53604 pfkey_recvmsg 4 53604 NULL
++sys_fcntl64_29031 sys_fcntl64 3 29031 NULL
++nr_recvmsg_12649 nr_recvmsg 4 12649 NULL
++__do_replace_37227 __do_replace 5 37227 NULL
++dn_alloc_send_pskb_4465 dn_alloc_send_pskb 2 4465 NULL
++at76_set_card_command_4471 at76_set_card_command 4 4471 NULL
++hdpvr_i2c_write_61816 hdpvr_i2c_write 4 61816 NULL
++rxrpc_sendmsg_29049 rxrpc_sendmsg 4 29049 NULL nohasharray
++hpsb_read_29049 hpsb_read 6 29049 &rxrpc_sendmsg_29049
++___alloc_bootmem_nopanic_53626 ___alloc_bootmem_nopanic 1 53626 NULL
++recv_control_msg_4476 recv_control_msg 5 4476 NULL
++tty_buffer_alloc_45437 tty_buffer_alloc 2 45437 NULL
++sys_semtimedop_4486 sys_semtimedop 3 4486 NULL
++udp_sendmsg_4492 udp_sendmsg 4 4492 NULL
++sctp_getsockopt_peer_addr_params_53645 sctp_getsockopt_peer_addr_params 2 53645 NULL
++nr_sendmsg_53656 nr_sendmsg 4 53656 NULL
++rb_simple_write_20890 rb_simple_write 3 20890 NULL
++sisusb_send_packet_20891 sisusb_send_packet 2 20891 NULL
++tracing_read_dyn_info_45468 tracing_read_dyn_info 3 45468 NULL
++key_icverrors_read_20895 key_icverrors_read 3 20895 NULL
++srp_target_alloc_37288 srp_target_alloc 3 37288 NULL
++sctp_getsockopt_active_key_45483 sctp_getsockopt_active_key 2 45483 NULL
++ieee80211_if_read_num_buffered_multicast_12716 ieee80211_if_read_num_buffered_multicast 3 12716 NULL
++compat_sys_readv_20911 compat_sys_readv 3 20911 NULL
++fuse_fill_write_pages_53682 fuse_fill_write_pages 4 53682 NULL
++sys_llistxattr_4532 sys_llistxattr 3 4532 NULL
++isdn_ppp_write_29109 isdn_ppp_write 4 29109 NULL
++jffs2_write_dirent_37311 jffs2_write_dirent 5 37311 NULL
++key_rx_spec_read_12736 key_rx_spec_read 3 12736 NULL
++kmem_zalloc_greedy_45507 kmem_zalloc_greedy 2-3 45507 NULL
++videobuf_vmalloc_to_sg_4548 videobuf_vmalloc_to_sg 2 4548 NULL
++clear_refs_write_61904 clear_refs_write 3 61904 NULL
++scsi_mode_select_37330 scsi_mode_select 6 37330 NULL
++rxrpc_server_sendmsg_37331 rxrpc_server_sendmsg 4 37331 NULL
++ieee80211_if_read_dot11MeshMaxRetries_12756 ieee80211_if_read_dot11MeshMaxRetries 3 12756 NULL
++hpsb_iso_common_init_45525 hpsb_iso_common_init 4 45525 NULL
++proc_scsi_write_29142 proc_scsi_write 3 29142 NULL
++reshape_ring_29147 reshape_ring 2 29147 NULL
++cgroup_read_u64_45532 cgroup_read_u64 5 45532 NULL
++au0828_init_isoc_61917 au0828_init_isoc 2-3 61917 NULL
++copy_macs_45534 copy_macs 4 45534 NULL
++sctp_sendmsg_61919 sctp_sendmsg 4 61919 NULL
++listxattr_12769 listxattr 3 12769 NULL
++wdm_write_53735 wdm_write 3 53735 NULL
++snd_rme9652_playback_copy_20970 snd_rme9652_playback_copy 5 20970 NULL
++send_bulk_static_data_61932 send_bulk_static_data 3 61932 NULL
++mempool_create_29437 mempool_create 1 29437 NULL
++sock_alloc_send_pskb_21246 sock_alloc_send_pskb 2 21246 NULL
++stats_dot11ACKFailureCount_read_45558 stats_dot11ACKFailureCount_read 3 45558 NULL
++venus_rmdir_45564 venus_rmdir 4 45564 NULL
++scsi_adjust_queue_depth_12802 scsi_adjust_queue_depth 3 12802 NULL
++__copy_from_user_inatomic_nocache_49921 __copy_from_user_inatomic_nocache 3 49921 NULL
++xfs_inumbers_fmt_12817 xfs_inumbers_fmt 3 12817 NULL
++ipath_create_cq_45586 ipath_create_cq 2 45586 NULL
++wusb_prf_256_29203 wusb_prf_256 7 29203 NULL
++rdma_set_ib_paths_45592 rdma_set_ib_paths 3 45592 NULL
++iwl_dbgfs_tx_queue_read_4635 iwl_dbgfs_tx_queue_read 3 4635 NULL
++rds_iw_inc_copy_to_user_29214 rds_iw_inc_copy_to_user 3 29214 NULL
++sys_getxattr_37418 sys_getxattr 4 37418 NULL
++hci_sock_sendmsg_37420 hci_sock_sendmsg 4 37420 NULL
++bnx2i_send_nl_mesg_48562 bnx2i_send_nl_mesg 4 48562 NULL
++spidev_ioctl_12846 spidev_ioctl 2 12846 NULL
++audit_log_n_hex_45617 audit_log_n_hex 3 45617 NULL
++devm_ioremap_29235 devm_ioremap 3-2 29235 NULL nohasharray
++squashfs_read_table_29235 squashfs_read_table 4 29235 &devm_ioremap_29235
++lbs_threshold_read_21046 lbs_threshold_read 5 21046 NULL
++xfs_iext_insert_53815 xfs_iext_insert 3 53815 NULL
++saa_write_45625 saa_write 3 45625 NULL
++security_context_to_sid_core_29248 security_context_to_sid_core 2 29248 NULL
++node_read_45634 node_read 4 45634 NULL
++jffs2_do_unlink_62020 jffs2_do_unlink 4 62020 NULL
++mempool_kmalloc_53831 mempool_kmalloc 2 53831 NULL
++cx18_read_pos_4683 cx18_read_pos 3 4683 NULL
++gru_alloc_gts_37453 gru_alloc_gts 2-3 37453 NULL
++short_retry_limit_read_4687 short_retry_limit_read 3 4687 NULL
++pmcraid_build_passthrough_ioadls_62034 pmcraid_build_passthrough_ioadls 2 62034 NULL
++videobuf_pages_to_sg_53849 videobuf_pages_to_sg 2 53849 NULL
++event_calibration_read_21083 event_calibration_read 3 21083 NULL
++acpi_thermal_write_polling_45660 acpi_thermal_write_polling 3 45660 NULL
++prism2_set_genericelement_29277 prism2_set_genericelement 3 29277 NULL
++sctp_user_addto_chunk_62047 sctp_user_addto_chunk 2-3 62047 NULL
++compat_mpctl_ioctl_45671 compat_mpctl_ioctl 2 45671 NULL
++iscsi_change_queue_depth_37480 iscsi_change_queue_depth 2 37480 NULL
++do_pselect_62061 do_pselect 1 62061 NULL
++btmrvl_gpiogap_read_4718 btmrvl_gpiogap_read 3 4718 NULL
++dgram_sendmsg_45679 dgram_sendmsg 4 45679 NULL
++kmem_realloc_37489 kmem_realloc 2 37489 NULL
++ati_create_gatt_pages_4722 ati_create_gatt_pages 1 4722 NULL nohasharray
++show_header_4722 show_header 3 4722 &ati_create_gatt_pages_4722
++groups_alloc_7614 groups_alloc 1 7614 NULL
++sn9c102_read_29305 sn9c102_read 3 29305 NULL
++pcpu_alloc_bootmem_62074 pcpu_alloc_bootmem 2 62074 NULL
++smk_write_ambient_45691 smk_write_ambient 3 45691 NULL
++ci_ll_init_12930 ci_ll_init 3 12930 NULL
++unix_dgram_sendmsg_45699 unix_dgram_sendmsg 4 45699 NULL
++sg_proc_write_adio_45704 sg_proc_write_adio 3 45704 NULL
++vmalloc_32_user_37519 vmalloc_32_user 1 37519 NULL
++proc_file_read_53905 proc_file_read 3 53905 NULL
++dvb_ca_en50221_init_45718 dvb_ca_en50221_init 4 45718 NULL
++__alloc_ei_netdev_29338 __alloc_ei_netdev 1 29338 NULL
++new_skb_21148 new_skb 1 21148 NULL
++bcsp_prepare_pkt_12961 bcsp_prepare_pkt 3 12961 NULL
++l2cap_sock_setsockopt_old_29346 l2cap_sock_setsockopt_old 4 29346 NULL
++bm_status_write_12964 bm_status_write 3 12964 NULL
++ttm_agp_populate_11718 ttm_agp_populate 2 11718 NULL
++snd_cs46xx_io_read_45734 snd_cs46xx_io_read 5-6 45734 NULL
++usb_serial_generic_write_53927 usb_serial_generic_write 4 53927 NULL
++cxgb_alloc_mem_24007 cxgb_alloc_mem 1 24007 NULL
++rw_copy_check_uvector_45748 rw_copy_check_uvector 3 45748 NULL
++stats_retry_count_read_21177 stats_retry_count_read 3 21177 NULL
++sctp_make_chunk_12986 sctp_make_chunk 4 12986 NULL
++acpi_tb_install_table_12988 acpi_tb_install_table 1 12988 NULL
++tracing_mark_write_62143 tracing_mark_write 3 62143 NULL
++mthca_setup_cmd_doorbells_53954 mthca_setup_cmd_doorbells 2 53954 NULL
++ncp__vol2io_4804 ncp__vol2io 5 4804 NULL
++iwl_tx_queue_init_4807 iwl_tx_queue_init 3 4807 NULL
++hpsb_node_read_53963 hpsb_node_read 4 53963 NULL
++cx18_v4l2_read_21196 cx18_v4l2_read 3 21196 NULL
++mangle_rfc959_packet_21197 mangle_rfc959_packet 5 21197 NULL
++alloc_ts_config_45775 alloc_ts_config 1 45775 NULL
++idetape_chrdev_write_53976 idetape_chrdev_write 3 53976 NULL
++subsystem_filter_write_13022 subsystem_filter_write 3 13022 NULL
++raw_setsockopt_45800 raw_setsockopt 5 45800 NULL
++alloc_upcall_62186 alloc_upcall 2 62186 NULL
++lbs_rdbbp_read_45805 lbs_rdbbp_read 3 45805 NULL
++NCR_700_change_queue_depth_45806 NCR_700_change_queue_depth 2 45806 NULL
++cifs_user_write_29424 cifs_user_write 3 29424 NULL
++ubi_eba_atomic_leb_change_13041 ubi_eba_atomic_leb_change 5 13041 NULL
++pcpu_alloc_alloc_info_45813 pcpu_alloc_alloc_info 1-2 45813 NULL
++input_ff_create_21240 input_ff_create 2 21240 NULL
++sock_kmalloc_62205 sock_kmalloc 2 62205 NULL
++key_tx_spec_read_4862 key_tx_spec_read 3 4862 NULL
++__dn_setsockopt_13060 __dn_setsockopt 5 13060 NULL
++alloc_fd_37637 alloc_fd 1 37637 NULL
++hid_register_field_4874 hid_register_field 2-3 4874 NULL
++tcp_dma_try_early_copy_37651 tcp_dma_try_early_copy 3 37651 NULL
++ipxrtr_route_packet_54036 ipxrtr_route_packet 4 54036 NULL
++vga_arb_read_4886 vga_arb_read 3 4886 NULL
++sys_ipc_4889 sys_ipc 3 4889 NULL
++bio_copy_user_iov_37660 bio_copy_user_iov 4 37660 NULL
++rfcomm_sock_sendmsg_37661 rfcomm_sock_sendmsg 4 37661 NULL
++arm_write_29476 arm_write 6 29476 NULL
++isdn_write_45863 isdn_write 3 45863 NULL
++send_control_msg_62261 send_control_msg 5 62261 NULL
++snd_rme96_playback_copy_13111 snd_rme96_playback_copy 5 13111 NULL
++get_rdac_req_45882 get_rdac_req 3 45882 NULL
++store_cpufv_disabled_43809 store_cpufv_disabled 4 43809 NULL
++btmrvl_pscmd_write_29504 btmrvl_pscmd_write 3 29504 NULL
++ntfs_rl_insert_4931 ntfs_rl_insert 2-4 4931 NULL
++ata_scsi_change_queue_depth_37702 ata_scsi_change_queue_depth 2 37702 NULL
++iwl_dbgfs_led_read_45896 iwl_dbgfs_led_read 3 45896 NULL
++ftrace_profile_read_21327 ftrace_profile_read 3 21327 NULL
++mon_bin_ioctl_21336 mon_bin_ioctl 4 21336 NULL
++sta_last_qual_read_62297 sta_last_qual_read 3 62297 NULL
++create_xattr_54106 create_xattr 5 54106 NULL
++udplite_getfrag_14479 udplite_getfrag 3-4 14479 NULL
++tomoyo_alloc_37728 tomoyo_alloc 1 37728 NULL
++devm_kzalloc_4966 devm_kzalloc 2 4966 NULL
++compat_rawv6_setsockopt_4967 compat_rawv6_setsockopt 5 4967 NULL
++udf_sb_alloc_partition_maps_62313 udf_sb_alloc_partition_maps 2 62313 NULL
++alloc_mr_45935 alloc_mr 1 45935 NULL
++read_enabled_file_bool_37744 read_enabled_file_bool 3 37744 NULL
++hfcpci_empty_bfifo_62323 hfcpci_empty_bfifo 4 62323 NULL
++ocfs2_control_cfu_37750 ocfs2_control_cfu 2 37750 NULL
++isr_host_acknowledges_read_54136 isr_host_acknowledges_read 3 54136 NULL
++idetape_queue_rw_tail_29562 idetape_queue_rw_tail 3 29562 NULL
++alloc_orinocodev_21371 alloc_orinocodev 1 21371 NULL
++handle_eviocgbit_4991 handle_eviocgbit 2 4991 NULL
++ds_ioctl_45954 ds_ioctl 3 45954 NULL
++lbs_lowsnr_read_29571 lbs_lowsnr_read 3 29571 NULL
++dccp_setsockopt_cscov_37766 dccp_setsockopt_cscov 2 37766 NULL
++asn1_oid_decode_4999 asn1_oid_decode 2 4999 NULL
++flash_write_62354 flash_write 3 62354 NULL
++rb_simple_read_45972 rb_simple_read 3 45972 NULL
++mmc_ext_csd_read_13205 mmc_ext_csd_read 3 13205 NULL
++memcpy_toiovec_54166 memcpy_toiovec 3 54166 NULL
++ezusb_writememory_45976 ezusb_writememory 4 45976 NULL
++acpi_os_read_memory_54186 acpi_os_read_memory 3-1 54186 NULL
++smk_read_logging_37804 smk_read_logging 3 37804 NULL
++store_bluetooth_21320 store_bluetooth 4 21320 NULL
++cru_detect_11272 cru_detect 1 11272 NULL
++asix_read_cmd_13245 asix_read_cmd 5 13245 NULL
++init_tid_tabs_13252 init_tid_tabs 2-4-3 13252 NULL
++concat_writev_21451 concat_writev 3 21451 NULL
++sierra_setup_urb_46029 sierra_setup_urb 5 46029 NULL
++__register_chrdev_54223 __register_chrdev 2-3 54223 NULL
++sta_rx_bytes_read_46037 sta_rx_bytes_read 3 46037 NULL
++sctp_make_abort_user_29654 sctp_make_abort_user 3 29654 NULL
++snd_midi_channel_alloc_set_28153 snd_midi_channel_alloc_set 1 28153 NULL
++snd_mixart_BA1_read_5082 snd_mixart_BA1_read 5-6 5082 NULL
++o2hb_debug_read_37851 o2hb_debug_read 3 37851 NULL
++udplite_manip_pkt_62433 udplite_manip_pkt 2 62433 NULL
++netdev_alloc_skb_62437 netdev_alloc_skb 2 62437 NULL
++fwnet_receive_packet_46054 fwnet_receive_packet 10 46054 NULL
++vring_add_buf_36348 vring_add_buf 3-4 36348 NULL
++new_lockspace_29674 new_lockspace 2 29674 NULL
++pn_recvmsg_30887 pn_recvmsg 4 30887 NULL
++dma_tx_errors_read_46060 dma_tx_errors_read 3 46060 NULL
++sound_write_5102 sound_write 3 5102 NULL
++read_file_xmit_21487 read_file_xmit 3 21487 NULL
++wusb_prf_54261 wusb_prf 7 54261 NULL nohasharray
++audio_write_54261 audio_write 4 54261 &wusb_prf_54261
++ssb_bus_ssbbus_register_2217 ssb_bus_ssbbus_register 2 2217 NULL
++sys_setxattr_37880 sys_setxattr 4 37880 NULL
++dvb_net_sec_37884 dvb_net_sec 3 37884 NULL
++sel_commit_bools_write_46077 sel_commit_bools_write 3 46077 NULL
++ps_pspoll_timeouts_read_11776 ps_pspoll_timeouts_read 3 11776 NULL
++sta_last_noise_read_62466 sta_last_noise_read 3 62466 NULL
++dbg_leb_change_19969 dbg_leb_change 4 19969 NULL
++nf_nat_mangle_udp_packet_13321 nf_nat_mangle_udp_packet 5-7 13321 NULL
++dma_skb_copy_datagram_iovec_21516 dma_skb_copy_datagram_iovec 3-5 21516 NULL
++ata_host_alloc_46094 ata_host_alloc 2 46094 NULL
++us122l_ctl_msg_13330 us122l_ctl_msg 8 13330 NULL
++dlm_alloc_pagevec_54296 dlm_alloc_pagevec 1 54296 NULL
++sysprof_sample_write_62489 sysprof_sample_write 3 62489 NULL
++skb_copy_expand_7685 skb_copy_expand 2-3 7685 NULL nohasharray
++acpi_ex_allocate_name_string_7685 acpi_ex_allocate_name_string 2-1 7685 &skb_copy_expand_7685
++mlx4_en_create_rx_ring_62498 mlx4_en_create_rx_ring 3 62498 NULL
++emi62_writememory_29731 emi62_writememory 4 29731 NULL
++mlx4_ib_alloc_fast_reg_page_list_46119 mlx4_ib_alloc_fast_reg_page_list 2 46119 NULL
++pkt_alloc_packet_data_37928 pkt_alloc_packet_data 1 37928 NULL
++rxrpc_send_data_21553 rxrpc_send_data 5 21553 NULL
++iwl_dbgfs_status_read_5171 iwl_dbgfs_status_read 3 5171 NULL
++pn_raw_send_54330 pn_raw_send 2 54330 NULL
++pep_sendmsg_62524 pep_sendmsg 4 62524 NULL
++megaraid_change_queue_depth_13375 megaraid_change_queue_depth 2 13375 NULL
++iso_sched_alloc_13377 iso_sched_alloc 1 13377 NULL nohasharray
++wep_key_not_found_read_13377 wep_key_not_found_read 3 13377 &iso_sched_alloc_13377
++ar9170_handle_mpdu_37956 ar9170_handle_mpdu 3 37956 NULL
++cxio_hal_init_resource_29771 cxio_hal_init_resource 2-7-6 29771 NULL
++__netlink_change_ngroups_46156 __netlink_change_ngroups 2 46156 NULL
++sco_sock_sendmsg_62542 sco_sock_sendmsg 4 62542 NULL
++_osd_realloc_seg_54352 _osd_realloc_seg 3 54352 NULL
++visor_write_37975 visor_write 4 37975 NULL
++tcf_hash_create_54360 tcf_hash_create 4 54360 NULL
++ppp_cp_parse_cr_5214 ppp_cp_parse_cr 4 5214 NULL
++snd_emu10k1_synth_copy_from_user_9061 snd_emu10k1_synth_copy_from_user 3-5 9061 NULL
++vfs_readlink_54368 vfs_readlink 3 54368 NULL
++pep_recvmsg_19402 pep_recvmsg 4 19402 NULL
++ocfs2_acl_from_xattr_21604 ocfs2_acl_from_xattr 2 21604 NULL
++subsystem_filter_read_62310 subsystem_filter_read 3 62310 NULL
++vxge_os_dma_malloc_46184 vxge_os_dma_malloc 2 46184 NULL
++do_dccp_setsockopt_54377 do_dccp_setsockopt 5 54377 NULL
++ssb_ioremap_5228 ssb_ioremap 2 5228 NULL
++xfrm_user_policy_62573 xfrm_user_policy 4 62573 NULL
++xlog_do_recovery_pass_21618 xlog_do_recovery_pass 3 21618 NULL
++snd_pcm_oss_read2_54387 snd_pcm_oss_read2 3 54387 NULL
++isdn_ppp_skb_push_5236 isdn_ppp_skb_push 2 5236 NULL
++vfs_readv_38011 vfs_readv 3 38011 NULL
++keyring_read_13438 keyring_read 3 13438 NULL
++sctp_setsockopt_peer_primary_addr_13440 sctp_setsockopt_peer_primary_addr 3 13440 NULL
++compat_sys_semtimedop_3606 compat_sys_semtimedop 3 3606 NULL
++tcp_update_scoreboard_21639 tcp_update_scoreboard 2 21639 NULL
++dsp_write_46218 dsp_write 2 46218 NULL
++prism2_send_mgmt_62605 prism2_send_mgmt 4 62605 NULL nohasharray
++nfsd_vfs_read_62605 nfsd_vfs_read 6 62605 &prism2_send_mgmt_62605
++store_wlan_38040 store_wlan 4 38040 NULL
++dev_write_7708 dev_write 3 7708 NULL
++nsm_create_handle_38060 nsm_create_handle 4 38060 NULL
++atalk_sendmsg_21677 atalk_sendmsg 4 21677 NULL
++ipv6_setsockopt_29871 ipv6_setsockopt 5 29871 NULL
++sisusb_copy_memory_35016 sisusb_copy_memory 4 35016 NULL
++tomoyo_read_control_21682 tomoyo_read_control 3 21682 NULL
++lpfc_sli4_queue_alloc_62646 lpfc_sli4_queue_alloc 3 62646 NULL
++alloc_ltalkdev_38071 alloc_ltalkdev 1 38071 NULL
++evdev_ioctl_handler_21705 evdev_ioctl_handler 2 21705 NULL
++request_key_auth_new_38092 request_key_auth_new 3 38092 NULL
++drm_sman_init_21710 drm_sman_init 2 21710 NULL
++tracing_trace_options_read_51405 tracing_trace_options_read 3 51405 NULL
++ipath_cdev_init_37752 ipath_cdev_init 1 37752 NULL
++sctp_tsnmap_mark_13527 sctp_tsnmap_mark 2 13527 NULL
++bm_init_13529 bm_init 2 13529 NULL
++check586_29914 check586 2 29914 NULL
++snd_pcm_oss_write_38108 snd_pcm_oss_write 3 38108 NULL
++printer_req_alloc_62687 printer_req_alloc 2 62687 NULL nohasharray
++iwl_dbgfs_rx_statistics_read_62687 iwl_dbgfs_rx_statistics_read 3 62687 &printer_req_alloc_62687
++ccid3_hc_rx_getsockopt_62331 ccid3_hc_rx_getsockopt 3 62331 NULL
++reiserfs_allocate_list_bitmaps_21732 reiserfs_allocate_list_bitmaps 3 21732 NULL
++ioremap_wc_62695 ioremap_wc 2-1 62695 NULL
++pg_read_17276 pg_read 3 17276 NULL
++l2cap_create_basic_pdu_54508 l2cap_create_basic_pdu 3 54508 NULL
++ps_pspoll_utilization_read_5361 ps_pspoll_utilization_read 3 5361 NULL
++cgroup_write_X64_54514 cgroup_write_X64 5 54514 NULL
++rxpipe_descr_host_int_trig_rx_data_read_22001 rxpipe_descr_host_int_trig_rx_data_read 3 22001 NULL
++bioset_integrity_create_62708 bioset_integrity_create 2 62708 NULL
++__hwahc_dev_set_key_46328 __hwahc_dev_set_key 5 46328 NULL
++mthca_alloc_init_21754 mthca_alloc_init 2 21754 NULL
++l2down_create_21755 l2down_create 4 21755 NULL
++csr1212_rom_cache_malloc_46339 csr1212_rom_cache_malloc 2 46339 NULL
++__ntfs_copy_from_user_iovec_inatomic_38153 __ntfs_copy_from_user_iovec_inatomic 3-4 38153 NULL
++aem_read_sensor_21770 aem_read_sensor 5 21770 NULL
++gen_pool_add_21776 gen_pool_add 3 21776 NULL
++squashfs_read_id_index_table_5394 squashfs_read_id_index_table 3 5394 NULL
++iwl_dbgfs_chain_noise_read_46355 iwl_dbgfs_chain_noise_read 3 46355 NULL
++cache_write_13589 cache_write 3 13589 NULL
++mpt_lan_receive_post_turbo_13592 mpt_lan_receive_post_turbo 2 13592 NULL
++key_replays_read_62746 key_replays_read 3 62746 NULL
++smk_write_direct_46363 smk_write_direct 3 46363 NULL
++aac_sa_ioremap_13596 aac_sa_ioremap 2 13596 NULL nohasharray
++irias_new_octseq_value_13596 irias_new_octseq_value 2 13596 &aac_sa_ioremap_13596
++irias_add_octseq_attrib_29983 irias_add_octseq_attrib 4 29983 NULL
++cdev_add_38176 cdev_add 2-3 38176 NULL
++__ioremap_caller_21800 __ioremap_caller 2-1 21800 NULL
++swap_cgroup_swapon_13614 swap_cgroup_swapon 2 13614 NULL
++nfsd_vfs_write_54577 nfsd_vfs_write 6 54577 NULL
++ax25_sendmsg_62770 ax25_sendmsg 4 62770 NULL
++rt2x00debug_write_rf_38195 rt2x00debug_write_rf 3 38195 NULL
++stats_frame_duplicate_count_read_54582 stats_frame_duplicate_count_read 3 54582 NULL nohasharray
++fw_iso_buffer_init_54582 fw_iso_buffer_init 3 54582 &stats_frame_duplicate_count_read_54582
++get_ucode_user_38202 get_ucode_user 3 38202 NULL
++acpi_system_debug_proc_write_43231 acpi_system_debug_proc_write 3 43231 NULL
++fuse_file_aio_write_46399 fuse_file_aio_write 4 46399 NULL
++packet_snd_13634 packet_snd 3 13634 NULL
++osd_req_list_partition_collections_38223 osd_req_list_partition_collections 5 38223 NULL
++sfi_map_table_5462 sfi_map_table 1 5462 NULL
++xfs_efd_init_5463 xfs_efd_init 3 5463 NULL
++scsi_vpd_inquiry_30040 scsi_vpd_inquiry 4 30040 NULL
++inet_csk_listen_start_38233 inet_csk_listen_start 2 38233 NULL
++cache_downcall_13666 cache_downcall 3 13666 NULL
++xfs_efi_init_5476 xfs_efi_init 2 5476 NULL
++mtrr_write_59622 mtrr_write 3 59622 NULL
++acpi_tb_check_xsdt_21862 acpi_tb_check_xsdt 1 21862 NULL
++ip_nat_sdp_media_60740 ip_nat_sdp_media 7 60740 NULL
++cifs_security_flags_proc_write_5484 cifs_security_flags_proc_write 3 5484 NULL
++cp210x_set_config_46447 cp210x_set_config 4 46447 NULL
++cnic_init_id_tbl_21872 cnic_init_id_tbl 2 21872 NULL
++sisusbcon_bmove_21873 sisusbcon_bmove 5-7-6 21873 NULL
++tty_write_5494 tty_write 3 5494 NULL
++rx_fcs_err_read_62844 rx_fcs_err_read 3 62844 NULL
++proc_write_lcd_30077 proc_write_lcd 3 30077 NULL
++teiup_create_43201 teiup_create 3 43201 NULL
++filldir64_46469 filldir64 3 46469 NULL
++snd_midi_channel_init_set_30092 snd_midi_channel_init_set 1 30092 NULL
++spidev_message_5518 spidev_message 3 5518 NULL
++vmemmap_alloc_block_43245 vmemmap_alloc_block 1 43245 NULL
++bio_kmalloc_54672 bio_kmalloc 2 54672 NULL
++event_format_read_54674 event_format_read 3 54674 NULL
++nfs_writedata_alloc_62868 nfs_writedata_alloc 1 62868 NULL
++zd_mac_rx_38296 zd_mac_rx 3 38296 NULL
++dv1394_read_21920 dv1394_read 3 21920 NULL
++aoechr_write_62883 aoechr_write 3 62883 NULL
++resize_info_buffer_62889 resize_info_buffer 2 62889 NULL
++if_spi_host_to_card_62890 if_spi_host_to_card 4 62890 NULL
++addtgt_54703 addtgt 3 54703 NULL
++mthca_alloc_cq_buf_46512 mthca_alloc_cq_buf 3 46512 NULL
++audit_unpack_string_13748 audit_unpack_string 3 13748 NULL
++isr_rx_headers_read_38325 isr_rx_headers_read 3 38325 NULL
++rfkill_fop_read_54711 rfkill_fop_read 3 54711 NULL
++recv_stream_30138 recv_stream 4 30138 NULL
++mempool_create_slab_pool_62907 mempool_create_slab_pool 1 62907 NULL
++getdqbuf_62908 getdqbuf 1 62908 NULL
++bdx_rxdb_create_46525 bdx_rxdb_create 1 46525 NULL
++bioset_create_5580 bioset_create 1 5580 NULL
++ocfs2_control_write_54737 ocfs2_control_write 3 54737 NULL
++fb_sys_read_13778 fb_sys_read 3 13778 NULL
++kzalloc_54740 kzalloc 1 54740 NULL
++ipath_reg_phys_mr_23918 ipath_reg_phys_mr 3 23918 NULL
++do_msgrcv_5590 do_msgrcv 4 5590 NULL
++wep_iv_read_54744 wep_iv_read 3 54744 NULL
++stats_tx_status_drop_read_10279 stats_tx_status_drop_read 3 10279 NULL
++arm_read_46556 arm_read 5 46556 NULL
++agp_create_user_memory_62955 agp_create_user_memory 1 62955 NULL
++sctp_sf_abort_violation_38380 sctp_sf_abort_violation 6 38380 NULL
++mempool_create_page_pool_30189 mempool_create_page_pool 1 30189 NULL
++nf_nat_mangle_tcp_packet_8643 nf_nat_mangle_tcp_packet 5-7 8643 NULL
++sock_setsockopt_50088 sock_setsockopt 5 50088 NULL
++dn_sendmsg_38390 dn_sendmsg 4 38390 NULL
++random_read_13815 random_read 3 13815 NULL
++usblp_ioctl_30203 usblp_ioctl 2 30203 NULL
++stats_multicast_transmitted_frame_count_read_54788 stats_multicast_transmitted_frame_count_read 3 54788 NULL
++_send_control_msg_46598 _send_control_msg 6 46598 NULL
++flexcop_device_kmalloc_54793 flexcop_device_kmalloc 1 54793 NULL
++snd_ac97_pcm_assign_30218 snd_ac97_pcm_assign 2 30218 NULL
++ti_recv_22027 ti_recv 4 22027 NULL
++iwm_wdev_alloc_38415 iwm_wdev_alloc 1 38415 NULL
++ieee80211_if_read_dtim_count_38419 ieee80211_if_read_dtim_count 3 38419 NULL
++dccp_manip_pkt_30229 dccp_manip_pkt 2 30229 NULL
++parse_arg_5657 parse_arg 2 5657 NULL
++evdev_ioctl_compat_13851 evdev_ioctl_compat 2 13851 NULL
++pcnet32_realloc_tx_ring_38428 pcnet32_realloc_tx_ring 3 38428 NULL
++aes_decrypt_fail_read_54815 aes_decrypt_fail_read 3 54815 NULL
++request_key_async_with_auxdata_46624 request_key_async_with_auxdata 4 46624 NULL
++zd_usb_read_fw_22049 zd_usb_read_fw 4 22049 NULL
++atalk_recvmsg_22053 atalk_recvmsg 4 22053 NULL
++ip_send_reply_46635 ip_send_reply 4 46635 NULL
++compat_ip_setsockopt_13870 compat_ip_setsockopt 5 13870 NULL
++generic_perform_write_54832 generic_perform_write 3 54832 NULL
++write_rio_54837 write_rio 3 54837 NULL
++rawv6_recvmsg_30265 rawv6_recvmsg 4 30265 NULL
++gigaset_write_cmd_5693 gigaset_write_cmd 3 5693 NULL
++edac_mc_alloc_54846 edac_mc_alloc 1 54846 NULL
++isr_pci_pm_read_30271 isr_pci_pm_read 3 30271 NULL
++scsi_host_alloc_63041 scsi_host_alloc 2 63041 NULL
++printer_read_54851 printer_read 3 54851 NULL
++alloc_ep_req_54860 alloc_ep_req 2 54860 NULL
++sctp_getsockopt_default_send_param_63056 sctp_getsockopt_default_send_param 2 63056 NULL
++unlink1_63059 unlink1 3 63059 NULL
++qla2x00_get_ctx_sp_13912 qla2x00_get_ctx_sp 3 13912 NULL
++tracing_saved_cmdlines_read_21434 tracing_saved_cmdlines_read 3 21434 NULL
++dispatch_ioctl_32357 dispatch_ioctl 2 32357 NULL
++replay_log_leb_18704 replay_log_leb 3 18704 NULL
++alloc_data_packet_46698 alloc_data_packet 1 46698 NULL
++ath_descdma_setup_22128 ath_descdma_setup 5 22128 NULL
++sysctl_string_13937 sysctl_string 5 13937 NULL
++get_packet_5747 get_packet 3 5747 NULL
++event_rx_mismatch_read_38518 event_rx_mismatch_read 3 38518 NULL
++ieee80211_if_read_min_discovery_timeout_13946 ieee80211_if_read_min_discovery_timeout 3 13946 NULL
++wep_decrypt_fail_read_58567 wep_decrypt_fail_read 3 58567 NULL
++iscsi_pool_init_54913 iscsi_pool_init 2-4 54913 NULL
++iwl_dbgfs_sensitivity_read_63116 iwl_dbgfs_sensitivity_read 3 63116 NULL
++sctp_setsockopt_autoclose_5775 sctp_setsockopt_autoclose 3 5775 NULL
++com90xx_found_13974 com90xx_found 3 13974 NULL
++compat_sys_writev_5784 compat_sys_writev 3 5784 NULL
++qcam_read_13977 qcam_read 3 13977 NULL
++__vxge_hw_blockpool_malloc_5786 __vxge_hw_blockpool_malloc 2 5786 NULL
++dvb_demux_read_13981 dvb_demux_read 3 13981 NULL
++ib_send_cm_rtu_63138 ib_send_cm_rtu 3 63138 NULL
++irda_sendmsg_dgram_38563 irda_sendmsg_dgram 4 38563 NULL
++ieee80211_bss_info_update_13991 ieee80211_bss_info_update 4 13991 NULL
++sys_get_mempolicy_30379 sys_get_mempolicy 3 30379 NULL
++skb_copy_datagram_iovec_5806 skb_copy_datagram_iovec 2-4 5806 NULL
++trace_options_core_read_47390 trace_options_core_read 3 47390 NULL
++c4_add_card_54968 c4_add_card 3 54968 NULL
++__proc_file_read_54978 __proc_file_read 3 54978 NULL
++_queue_data_54983 _queue_data 4 54983 NULL
++smb_alloc_request_46798 smb_alloc_request 2 46798 NULL
++rfcomm_sock_recvmsg_22227 rfcomm_sock_recvmsg 4 22227 NULL
++setup_req_5848 setup_req 3 5848 NULL
++rds_ib_inc_copy_to_user_55007 rds_ib_inc_copy_to_user 3 55007 NULL
++icn_writecmd_38629 icn_writecmd 2 38629 NULL
++xfs_iroot_realloc_46826 xfs_iroot_realloc 2 46826 NULL
++audit_init_entry_38644 audit_init_entry 1 38644 NULL
++dvb_dvr_do_ioctl_46839 dvb_dvr_do_ioctl 4 46839 NULL
++enable_write_30456 enable_write 3 30456 NULL
++urandom_read_30462 urandom_read 3 30462 NULL
++mmc_send_cxd_data_38655 mmc_send_cxd_data 5 38655 NULL
++module_alloc_update_bounds_rw_63233 module_alloc_update_bounds_rw 1 63233 NULL
++smctr_process_rx_packet_13270 smctr_process_rx_packet 2 13270 NULL
++do_proc_readlink_14096 do_proc_readlink 3 14096 NULL
++write_head_30481 write_head 4 30481 NULL
++adu_write_30487 adu_write 3 30487 NULL
++compat_sys_pselect6_14105 compat_sys_pselect6 1 14105 NULL
++__netdev_alloc_skb_ip_align_55067 __netdev_alloc_skb_ip_align 2 55067 NULL
++mesh_table_alloc_22305 mesh_table_alloc 1 22305 NULL
++stats_rx_handlers_queued_read_5922 stats_rx_handlers_queued_read 3 5922 NULL nohasharray
++ttm_bo_kmap_ttm_5922 ttm_bo_kmap_ttm 3 5922 &stats_rx_handlers_queued_read_5922
++iscsi_iser_recv_41948 iscsi_iser_recv 4 41948 NULL
++fcp_request_22315 fcp_request 6 22315 NULL
++udpv6_sendmsg_22316 udpv6_sendmsg 4 22316 NULL
++stats_tx_handlers_drop_unencrypted_read_46898 stats_tx_handlers_drop_unencrypted_read 3 46898 NULL
++edac_device_alloc_ctl_info_5941 edac_device_alloc_ctl_info 1 5941 NULL
++ntfs_rl_replace_14136 ntfs_rl_replace 2-4 14136 NULL
++init_kstat_irqs_18740 init_kstat_irqs 3 18740 NULL
++tcp_collapse_63294 tcp_collapse 5-6 63294 NULL
++isdn_ppp_ccp_xmit_reset_63297 isdn_ppp_ccp_xmit_reset 6 63297 NULL
++rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read_55106 rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read 3 55106 NULL
++tipc_subseq_alloc_5957 tipc_subseq_alloc 1 5957 NULL
++tracing_ctrl_read_46922 tracing_ctrl_read 3 46922 NULL
++fb_write_46924 fb_write 3 46924 NULL
++dns_resolver_instantiate_63314 dns_resolver_instantiate 3 63314 NULL
++alloc_candev_22356 alloc_candev 1 22356 NULL
++btmrvl_curpsmode_read_46939 btmrvl_curpsmode_read 3 46939 NULL
++crypto_ahash_setkey_55134 crypto_ahash_setkey 3 55134 NULL
++hdlcdev_rx_997 hdlcdev_rx 3 997 NULL
++filldir_55137 filldir 3 55137 NULL
++evdev_ioctl_22371 evdev_ioctl 2 22371 NULL
++__sctp_setsockopt_connectx_46949 __sctp_setsockopt_connectx 3 46949 NULL
++do_sysctl_28306 do_sysctl 6 28306 NULL
++proc_info_read_63344 proc_info_read 3 63344 NULL
++sysctl_data_55157 sysctl_data 5 55157 NULL
++platform_device_add_resources_13289 platform_device_add_resources 3 13289 NULL
++tcp_manip_pkt_14202 tcp_manip_pkt 2 14202 NULL
++iwl_dbgfs_thermal_throttling_read_38779 iwl_dbgfs_thermal_throttling_read 3 38779 NULL
++ubifs_leb_change_22399 ubifs_leb_change 4 22399 NULL
++snd_gus_dram_write_38784 snd_gus_dram_write 4 38784 NULL
++gre_manip_pkt_38785 gre_manip_pkt 2 38785 NULL
++ps_upsd_max_sptime_read_63362 ps_upsd_max_sptime_read 3 63362 NULL
++zoran_write_22404 zoran_write 3 22404 NULL
++sctp_getsockopt_peer_addr_info_6024 sctp_getsockopt_peer_addr_info 2 6024 NULL
++xfs_dir2_block_to_sf_37868 xfs_dir2_block_to_sf 3 37868 NULL
++idmouse_read_63374 idmouse_read 3 63374 NULL
++sgl_map_user_pages_30610 sgl_map_user_pages 2 30610 NULL
++sel_write_bool_46996 sel_write_bool 3 46996 NULL
++ntfs_rl_append_6037 ntfs_rl_append 2-4 6037 NULL
++ttm_bo_io_47000 ttm_bo_io 5 47000 NULL
++sel_write_relabel_55195 sel_write_relabel 3 55195 NULL
++blk_rq_map_kern_47004 blk_rq_map_kern 4 47004 NULL
++ipv6_renew_option_38813 ipv6_renew_option 3 38813 NULL
++sched_feat_write_55202 sched_feat_write 3 55202 NULL
++dma_declare_coherent_memory_14244 dma_declare_coherent_memory 4-2 14244 NULL
++ht40allow_map_read_55209 ht40allow_map_read 3 55209 NULL nohasharray
++isdn_net_ciscohdlck_alloc_skb_55209 isdn_net_ciscohdlck_alloc_skb 2 55209 &ht40allow_map_read_55209
++compat_raw_setsockopt_30634 compat_raw_setsockopt 5 30634 NULL
++sys_select_38827 sys_select 1 38827 NULL
++rxpipe_missed_beacon_host_int_trig_rx_data_read_63405 rxpipe_missed_beacon_host_int_trig_rx_data_read 3 63405 NULL
++do_raw_setsockopt_55215 do_raw_setsockopt 5 55215 NULL
++extract_entropy_user_26952 extract_entropy_user 3 26952 NULL
++sctp_abort_pkt_new_55218 sctp_abort_pkt_new 5 55218 NULL
++fib_hash_alloc_63412 fib_hash_alloc 1 63412 NULL
++twa_change_queue_depth_30648 twa_change_queue_depth 2 30648 NULL
++handle_received_packet_22457 handle_received_packet 3 22457 NULL
++noack_read_63419 noack_read 3 63419 NULL
++mtd_do_readoob_30654 mtd_do_readoob 3 30654 NULL
++add_numbered_child_14273 add_numbered_child 5 14273 NULL
++l2cap_sock_sendmsg_63427 l2cap_sock_sendmsg 4 63427 NULL
++icmp_manip_pkt_48801 icmp_manip_pkt 2 48801 NULL
++agp_remap_30665 agp_remap 2 30665 NULL
++extend_mmcfg_14282 extend_mmcfg 1 14282 NULL
++interfaces_38859 interfaces 2 38859 NULL
++iwl_dbgfs_tx_power_read_14285 iwl_dbgfs_tx_power_read 3 14285 NULL
++memcpy_fromiovec_55247 memcpy_fromiovec 3 55247 NULL
++nfsd_symlink_63442 nfsd_symlink 6 63442 NULL
++ieee80211_if_read_dot11MeshHWMPpreqMinInterval_24208 ieee80211_if_read_dot11MeshHWMPpreqMinInterval 3 24208 NULL
++cache_write_procfs_22491 cache_write_procfs 3 22491 NULL
++read_default_ldt_14302 read_default_ldt 2 14302 NULL
++write_62671 write 3 62671 NULL
++dccp_setsockopt_ccid_30701 dccp_setsockopt_ccid 4 30701 NULL
++scsi_deactivate_tcq_47086 scsi_deactivate_tcq 2 47086 NULL nohasharray
++oti6858_buf_alloc_47086 oti6858_buf_alloc 1 47086 &scsi_deactivate_tcq_47086
++snd_info_entry_write_63474 snd_info_entry_write 3 63474 NULL
++ieee80211_if_read_capab_55294 ieee80211_if_read_capab 3 55294 NULL
++read_kcore_63488 read_kcore 3 63488 NULL
++lbs_debugfs_read_30721 lbs_debugfs_read 3 30721 NULL
++__skb_cow_39254 __skb_cow 2 39254 NULL
++strategy_allowed_congestion_control_63497 strategy_allowed_congestion_control 5 63497 NULL
++ivtv_copy_buf_to_user_6159 ivtv_copy_buf_to_user 4 6159 NULL
++pskb_may_pull_22546 pskb_may_pull 2 22546 NULL
++mousedev_read_47123 mousedev_read 3 47123 NULL
++ctrl_out_55321 ctrl_out 3 55321 NULL
++agp_alloc_page_array_22554 agp_alloc_page_array 1 22554 NULL
++vdma_mem_alloc_6171 vdma_mem_alloc 1 6171 NULL
++wl1251_cmd_template_set_6172 wl1251_cmd_template_set 4 6172 NULL
++ether1394_write_6180 ether1394_write 6 6180 NULL
++ses_recv_diag_47143 ses_recv_diag 4 47143 NULL nohasharray
++acpi_ut_initialize_buffer_47143 acpi_ut_initialize_buffer 2 47143 &ses_recv_diag_47143
++sock_rmalloc_59740 sock_rmalloc 2 59740 NULL nohasharray
++ieee80211_if_read_fwded_unicast_59740 ieee80211_if_read_fwded_unicast 3 59740 &sock_rmalloc_59740
++ubi_more_leb_change_data_63534 ubi_more_leb_change_data 4 63534 NULL
++fuse_conn_limit_write_30777 fuse_conn_limit_write 3 30777 NULL
++rs_sta_dbgfs_rate_scale_data_read_47165 rs_sta_dbgfs_rate_scale_data_read 3 47165 NULL
++append_to_buffer_63550 append_to_buffer 3 63550 NULL
++smk_write_onlycap_14400 smk_write_onlycap 3 14400 NULL
++acpi_system_read_event_55362 acpi_system_read_event 3 55362 NULL
++kvm_write_guest_page_63555 kvm_write_guest_page 5 63555 NULL
++isp1760_register_14408 isp1760_register 2-1 14408 NULL
++sd_alloc_ctl_entry_29708 sd_alloc_ctl_entry 1 29708 NULL
++OSDSetBlock_38986 OSDSetBlock 2-4 38986 NULL
++svc_pool_map_alloc_arrays_47181 svc_pool_map_alloc_arrays 2 47181 NULL
++mtd_concat_create_14416 mtd_concat_create 2 14416 NULL
++mqueue_read_file_6228 mqueue_read_file 3 6228 NULL
++ioremap_cache_47189 ioremap_cache 2-1 47189 NULL
++ubi_write_30809 ubi_write 5-4 30809 NULL
++smk_read_doi_30813 smk_read_doi 3 30813 NULL
++get_nodes_39012 get_nodes 3 39012 NULL
++module_alloc_update_bounds_47205 module_alloc_update_bounds 1 47205 NULL
++fbcon_prepare_logo_6246 fbcon_prepare_logo 5 6246 NULL
++sctp_setsockopt_connectx_old_22631 sctp_setsockopt_connectx_old 3 22631 NULL
++pwr_wake_on_timer_exp_read_22640 pwr_wake_on_timer_exp_read 3 22640 NULL
++mthca_map_reg_5664 mthca_map_reg 3-2 5664 NULL
++sctp_setsockopt_auth_chunk_30843 sctp_setsockopt_auth_chunk 3 30843 NULL
++xfs_iext_remove_39040 xfs_iext_remove 3 39040 NULL
++options_write_47243 options_write 3 47243 NULL
++module_alloc_63630 module_alloc 1 63630 NULL
++ntfs_malloc_nofs_nofail_63631 ntfs_malloc_nofs_nofail 1 63631 NULL
++proc_loginuid_write_63648 proc_loginuid_write 3 63648 NULL
++__vxge_hw_channel_allocate_55462 __vxge_hw_channel_allocate 3 55462 NULL
++store_sys_acpi_14503 store_sys_acpi 3 14503 NULL
++rtl8169_try_rx_copy_55465 rtl8169_try_rx_copy 3 55465 NULL
++hidraw_ioctl_63658 hidraw_ioctl 2 63658 NULL
++ocfs2_debug_read_14507 ocfs2_debug_read 3 14507 NULL
++tty_audit_log_47280 tty_audit_log 8 47280 NULL
++fc_host_post_vendor_event_30903 fc_host_post_vendor_event 3 30903 NULL
++rawv6_send_hdrinc_55480 rawv6_send_hdrinc 3 55480 NULL
++i2o_pool_alloc_55485 i2o_pool_alloc 4 55485 NULL
++usb_serial_multi_urb_write_22718 usb_serial_multi_urb_write 4 22718 NULL
++tx_internal_desc_overflow_read_47300 tx_internal_desc_overflow_read 3 47300 NULL
++iommu_map_mmio_space_30919 iommu_map_mmio_space 1 30919 NULL
++dataflash_read_user_otp_14536 dataflash_read_user_otp 3-2 14536 NULL nohasharray
++ep0_write_14536 ep0_write 3 14536 &dataflash_read_user_otp_14536
++ax25_output_22736 ax25_output 2 22736 NULL
++drm_vmalloc_dma_14550 drm_vmalloc_dma 1 14550 NULL
++cmtp_add_msgpart_9252 cmtp_add_msgpart 4 9252 NULL
++sctp_setsockopt_rtoinfo_30941 sctp_setsockopt_rtoinfo 3 30941 NULL
++hfcpci_empty_fifo_2427 hfcpci_empty_fifo 4 2427 NULL
++wv_packet_read_39140 wv_packet_read 3 39140 NULL
++wl1251_hw_scan_61137 wl1251_hw_scan 3 61137 NULL nohasharray
++squashfs_read_fragment_index_table_61137 squashfs_read_fragment_index_table 3 61137 &wl1251_hw_scan_61137
++_proc_do_string_6376 _proc_do_string 2 6376 NULL
++alloc_ring_39151 alloc_ring 2-4 39151 NULL
++sctp_getsockopt_assoc_number_6384 sctp_getsockopt_assoc_number 2 6384 NULL
++proc_coredump_filter_read_39153 proc_coredump_filter_read 3 39153 NULL
++nfqnl_mangle_14583 nfqnl_mangle 2 14583 NULL
++ieee80211_if_read_dot11MeshHoldingTimeout_47356 ieee80211_if_read_dot11MeshHoldingTimeout 3 47356 NULL
++idmap_pipe_downcall_14591 idmap_pipe_downcall 3 14591 NULL
++selinux_secctx_to_secid_63744 selinux_secctx_to_secid 2 63744 NULL
++sta_rx_packets_read_22788 sta_rx_packets_read 3 22788 NULL
++get_info_55681 get_info 3 55681 NULL
++mangle_sdp_packet_30986 mangle_sdp_packet 8 30986 NULL
++__bio_map_kern_47379 __bio_map_kern 2-3 47379 NULL
++ubi_more_update_data_39189 ubi_more_update_data 4 39189 NULL
++snd_pcm_oss_read1_63771 snd_pcm_oss_read1 3 63771 NULL
++xfs_trans_get_efi_7898 xfs_trans_get_efi 2 7898 NULL
++l2up_create_6430 l2up_create 3 6430 NULL
++__alloc_bootmem_node_nopanic_6432 __alloc_bootmem_node_nopanic 2 6432 NULL
++pfkey_sendmsg_47394 pfkey_sendmsg 4 47394 NULL
++ivtv_v4l2_write_39226 ivtv_v4l2_write 3 39226 NULL
++selinux_setprocattr_55611 selinux_setprocattr 4 55611 NULL
++copy_nodes_to_user_63807 copy_nodes_to_user 2 63807 NULL
++befs_utf2nls_25628 befs_utf2nls 3 25628 NULL
++read_file_rcstat_22854 read_file_rcstat 3 22854 NULL
++pktgen_if_write_55628 pktgen_if_write 3 55628 NULL
++acpi_thermal_write_cooling_mode_31053 acpi_thermal_write_cooling_mode 3 31053 NULL
++snd_opl4_mem_proc_read_63774 snd_opl4_mem_proc_read 5-6 63774 NULL
++compat_sys_mq_timedsend_31060 compat_sys_mq_timedsend 3 31060 NULL
++sel_write_load_63830 sel_write_load 3 63830 NULL
++lbs_failcount_read_31063 lbs_failcount_read 3 31063 NULL
++got_frame_16028 got_frame 2 16028 NULL
++dvb_dmxdev_set_buffer_size_55643 dvb_dmxdev_set_buffer_size 2 55643 NULL
++proc_pid_attr_write_63845 proc_pid_attr_write 3 63845 NULL
++expand_fdtable_39273 expand_fdtable 2 39273 NULL
++read_oldmem_55658 read_oldmem 3 55658 NULL
++stats_rx_expand_skb_head_read_47467 stats_rx_expand_skb_head_read 3 47467 NULL
++usblp_new_writeurb_22894 usblp_new_writeurb 2 22894 NULL
++mdc800_device_read_22896 mdc800_device_read 3 22896 NULL
++sctp_setsockopt_context_31091 sctp_setsockopt_context 3 31091 NULL
++tpm_read_50344 tpm_read 3 50344 NULL
++sfi_map_memory_5183 sfi_map_memory 2-1 5183 NULL
++newpart_47485 newpart 6 47485 NULL
++stats_rx_handlers_drop_nullfunc_read_39294 stats_rx_handlers_drop_nullfunc_read 3 39294 NULL
++dvb_dvr_ioctl_39317 dvb_dvr_ioctl 3 39317 NULL
++sg_kmalloc_50240 sg_kmalloc 1 50240 NULL
++inet_listen_14723 inet_listen 2 14723 NULL
++compat_sys_get_mempolicy_31109 compat_sys_get_mempolicy 3 31109 NULL
++core_sys_select_47494 core_sys_select 1 47494 NULL
++store_pwm1_62529 store_pwm1 4 62529 NULL
++depth_read_31112 depth_read 3 31112 NULL
++sisusb_write_mem_bulk_29678 sisusb_write_mem_bulk 4 29678 NULL
++__vmalloc_node_39308 __vmalloc_node 1 39308 NULL
++libfc_host_alloc_7917 libfc_host_alloc 2 7917 NULL
++alloc_arraycache_47505 alloc_arraycache 2 47505 NULL
++unlink_simple_47506 unlink_simple 3 47506 NULL
++rndis_set_oid_6547 rndis_set_oid 4 6547 NULL
++wdm_read_6549 wdm_read 3 6549 NULL
++fb_alloc_cmap_6554 fb_alloc_cmap 2 6554 NULL
++divas_write_63901 divas_write 3 63901 NULL
++store_camera_14751 store_camera 4 14751 NULL
++kimage_normal_alloc_31140 kimage_normal_alloc 3 31140 NULL
++w9966_v4l_read_31148 w9966_v4l_read 3 31148 NULL
++alloc_sglist_22960 alloc_sglist 1-3-2 22960 NULL
++uvc_alloc_urb_buffers_63922 uvc_alloc_urb_buffers 3-2 63922 NULL
++bt_skb_send_alloc_6581 bt_skb_send_alloc 2 6581 NULL
++__copy_from_user_nocache_39351 __copy_from_user_nocache 3 39351 NULL
++__alloc_bootmem_low_43423 __alloc_bootmem_low 1 43423 NULL
++esp_alloc_tmp_55741 esp_alloc_tmp 2 55741 NULL
++sta_dev_read_14782 sta_dev_read 3 14782 NULL
++ch_do_scsi_31171 ch_do_scsi 4 31171 NULL
++afs_send_simple_reply_63940 afs_send_simple_reply 3 63940 NULL
++cycx_setup_47562 cycx_setup 4 47562 NULL
++remote_settings_file_write_22987 remote_settings_file_write 3 22987 NULL
++mangle_packet_47567 mangle_packet 5-7 47567 NULL
++read_ldt_47570 read_ldt 2 47570 NULL
++create_attr_set_22861 create_attr_set 1 22861 NULL
++pci_iomap_47575 pci_iomap 3 47575 NULL
++acpi_ex_system_memory_space_handler_31192 acpi_ex_system_memory_space_handler 2 31192 NULL
++ecryptfs_filldir_6622 ecryptfs_filldir 3 6622 NULL
++scsi_execute_33596 scsi_execute 5 33596 NULL
++dn_alloc_skb_6631 dn_alloc_skb 2 6631 NULL
++do_tune_cpucache_14828 do_tune_cpucache 2 14828 NULL
++viafb_dvp0_proc_write_23023 viafb_dvp0_proc_write 3 23023 NULL
++atm_get_addr_31221 atm_get_addr 3 31221 NULL
++uwb_rc_neh_grok_event_55799 uwb_rc_neh_grok_event 3 55799 NULL
++intel_i810_alloc_by_type_31226 intel_i810_alloc_by_type 1 31226 NULL
++uea_request_47613 uea_request 4 47613 NULL
++cache_read_pipefs_47615 cache_read_pipefs 3 47615 NULL
++alloc_agpphysmem_i8xx_39427 alloc_agpphysmem_i8xx 1 39427 NULL
++tcp_recvmsg_31238 tcp_recvmsg 4 31238 NULL
++lcd_write_14857 lcd_write 3 14857 NULL nohasharray
++__krealloc_14857 __krealloc 2 14857 &lcd_write_14857
++get_user_cpu_mask_14861 get_user_cpu_mask 2 14861 NULL
++kmemdup_64015 kmemdup 2 64015 NULL
++sta_rx_duplicates_read_47633 sta_rx_duplicates_read 3 47633 NULL
++alloc_ringbuf_31251 alloc_ringbuf 1 31251 NULL
++reiserfs_add_entry_23062 reiserfs_add_entry 4 23062 NULL nohasharray
++unix_seqpacket_recvmsg_23062 unix_seqpacket_recvmsg 4 23062 &reiserfs_add_entry_23062
++process_rcvd_data_6679 process_rcvd_data 3 6679 NULL
++sb16_copy_from_user_55836 sb16_copy_from_user 10-7-6 55836 NULL
++frequency_read_64031 frequency_read 3 64031 NULL
++sys_semop_39457 sys_semop 3 39457 NULL
++vm_map_ram_23078 vm_map_ram 2 23078 NULL nohasharray
++raw_sendmsg_23078 raw_sendmsg 4 23078 &vm_map_ram_23078
++ether1394_data_handler_2481 ether1394_data_handler 5 2481 NULL
++sriov_enable_migration_14889 sriov_enable_migration 2 14889 NULL
++ps_pspoll_max_apturn_read_6699 ps_pspoll_max_apturn_read 3 6699 NULL
++isr_tx_procs_read_23084 isr_tx_procs_read 3 23084 NULL
++tracing_set_trace_write_57096 tracing_set_trace_write 3 57096 NULL
++setkey_unaligned_39474 setkey_unaligned 3 39474 NULL
++rt2x00debug_write_eeprom_23091 rt2x00debug_write_eeprom 3 23091 NULL
++hcd_alloc_coherent_55862 hcd_alloc_coherent 5 55862 NULL
++ntfs_ucstonls_23097 ntfs_ucstonls 3-5 23097 NULL
++sky2_receive_13407 sky2_receive 2 13407 NULL
++krealloc_14908 krealloc 2 14908 NULL
++pipe_iov_copy_from_user_23102 pipe_iov_copy_from_user 3 23102 NULL
++jffs2_user_setxattr_39488 jffs2_user_setxattr 4 39488 NULL
++stats_tx_handlers_drop_unauth_port_read_16139 stats_tx_handlers_drop_unauth_port_read 3 16139 NULL
++ip_recv_error_23109 ip_recv_error 3 23109 NULL
++uvc_simplify_fraction_31303 uvc_simplify_fraction 3 31303 NULL
++drm_mode_create_tv_properties_23122 drm_mode_create_tv_properties 2 23122 NULL
++sisusbcon_scroll_31315 sisusbcon_scroll 5-3-2 31315 NULL
++packet_recvmsg_47700 packet_recvmsg 4 47700 NULL
++command_file_write_31318 command_file_write 3 31318 NULL
++lbs_highrssi_read_64089 lbs_highrssi_read 3 64089 NULL
++unix_dgram_recvmsg_14952 unix_dgram_recvmsg 4 14952 NULL
++sfi_check_table_6772 sfi_check_table 1 6772 NULL
++bits_to_user_47733 bits_to_user 3-2 47733 NULL
++netxen_alloc_sds_rings_13417 netxen_alloc_sds_rings 2 13417 NULL
++ftrace_pid_read_14970 ftrace_pid_read 3 14970 NULL
++help_14971 help 4 14971 NULL
++iwl_dbgfs_channels_read_6784 iwl_dbgfs_channels_read 3 6784 NULL
++ieee80211_if_read_6785 ieee80211_if_read 3 6785 NULL
++pp_write_39554 pp_write 3 39554 NULL
++br_send_bpdu_29669 br_send_bpdu 3 29669 NULL
++create_reply_packet_6789 create_reply_packet 3 6789 NULL
++hdlcdrv_register_6792 hdlcdrv_register 2 6792 NULL
++usblp_write_23178 usblp_write 3 23178 NULL
++setkey_14987 setkey 3 14987 NULL
++xprt_rdma_allocate_31372 xprt_rdma_allocate 2 31372 NULL
++gss_pipe_downcall_23182 gss_pipe_downcall 3 23182 NULL
++handle_response_55951 handle_response 5 55951 NULL
++ieee80211_if_read_fwded_mcast_39571 ieee80211_if_read_fwded_mcast 3 39571 NULL
++fix_unclean_leb_23188 fix_unclean_leb 3 23188 NULL
++simple_read_from_buffer_55957 simple_read_from_buffer 2-5 55957 NULL
++handle_response_icmp_39574 handle_response_icmp 7 39574 NULL
++acpi_processor_write_limit_23201 acpi_processor_write_limit 3 23201 NULL
++rvmalloc_46873 rvmalloc 1 46873 NULL
++cistpl_vers_1_15023 cistpl_vers_1 4 15023 NULL
++vmap_15025 vmap 2 15025 NULL
++key_ifindex_read_31411 key_ifindex_read 3 31411 NULL
++mcs7830_set_reg_31413 mcs7830_set_reg 3 31413 NULL
++mon_bin_read_6841 mon_bin_read 3 6841 NULL
++tty_buffer_request_room_23228 tty_buffer_request_room 2 23228 NULL
++xlog_get_bp_23229 xlog_get_bp 2 23229 NULL
++__kmalloc_23231 __kmalloc 1 23231 NULL
++rxrpc_client_sendmsg_23236 rxrpc_client_sendmsg 5 23236 NULL
++ubi_leb_write_41691 ubi_leb_write 5-4 41691 NULL
++store_lslvl_15059 store_lslvl 4 15059 NULL
++ssb_bus_pcmciabus_register_56020 ssb_bus_pcmciabus_register 3 56020 NULL
++smk_read_ambient_61220 smk_read_ambient 3 61220 NULL
++ntfs_copy_from_user_15072 ntfs_copy_from_user 3-5 15072 NULL
++pppoe_recvmsg_15073 pppoe_recvmsg 4 15073 NULL
++find_rsb_39650 find_rsb 3 39650 NULL
++snd_rme32_capture_copy_39653 snd_rme32_capture_copy 5 39653 NULL
++dm_write_2513 dm_write 3 2513 NULL
++raw_seticmpfilter_6888 raw_seticmpfilter 3 6888 NULL
++prism2_info_hostscanresults_39657 prism2_info_hostscanresults 3 39657 NULL
++dlmfs_file_write_6892 dlmfs_file_write 3 6892 NULL
++ubifs_write_node_15088 ubifs_write_node 5-3 15088 NULL
++stv680_read_31473 stv680_read 3 31473 NULL
++tipc_cltr_prepare_routing_msg_56052 tipc_cltr_prepare_routing_msg 1 56052 NULL
++doc_probe_23285 doc_probe 1 23285 NULL
++v4l_stk_read_39672 v4l_stk_read 3 39672 NULL
++dccp_sendmsg_56058 dccp_sendmsg 4 56058 NULL
++proc_sessionid_read_6911 proc_sessionid_read 3 6911 NULL
++ieee80211_rx_mgmt_probe_resp_6918 ieee80211_rx_mgmt_probe_resp 3 6918 NULL
++__alloc_bootmem_31498 __alloc_bootmem 1 31498 NULL
++i2cdev_write_23310 i2cdev_write 3 23310 NULL
++dma_region_alloc_56079 dma_region_alloc 2 56079 NULL
++nl_pid_hash_zalloc_23314 nl_pid_hash_zalloc 1 23314 NULL
++ftrace_pid_write_39710 ftrace_pid_write 3 39710 NULL
++event_id_read_64288 event_id_read 3 64288 NULL nohasharray
++xfs_dir_cilookup_result_64288 xfs_dir_cilookup_result 3 64288 &event_id_read_64288
++nfs_flush_one_23329 nfs_flush_one 3 23329 NULL
++store_gps_42118 store_gps 4 42118 NULL
++timeout_read_47915 timeout_read 3 47915 NULL
++hpsb_iso_recv_init_31535 hpsb_iso_recv_init 3 31535 NULL
++hidraw_write_31536 hidraw_write 3 31536 NULL
++page_readlink_23346 page_readlink 3 23346 NULL
++videobuf_dma_init_kernel_6963 videobuf_dma_init_kernel 3 6963 NULL
++sta_tx_filtered_read_6973 sta_tx_filtered_read 3 6973 NULL
++stats_tx_handlers_drop_wep_read_47944 stats_tx_handlers_drop_wep_read 3 47944 NULL
++sisusbcon_clear_64329 sisusbcon_clear 3-5-4 64329 NULL
++tcp_write_xmit_39755 tcp_write_xmit 2 39755 NULL
++request_key_async_6990 request_key_async 4 6990 NULL
++dccp_setsockopt_service_65336 dccp_setsockopt_service 4 65336 NULL
++dabusb_writemem_39764 dabusb_writemem 4 39764 NULL
++do_write_orph_node_64343 do_write_orph_node 2 64343 NULL
++iscsi_create_endpoint_15193 iscsi_create_endpoint 1 15193 NULL
++osst_write_31581 osst_write 3 31581 NULL
++tracing_cpumask_read_7010 tracing_cpumask_read 3 7010 NULL
++rawv6_setsockopt_56165 rawv6_setsockopt 5 56165 NULL
++diva_xdi_write_63975 diva_xdi_write 4 63975 NULL
++llc_alloc_frame_64366 llc_alloc_frame 4 64366 NULL
++mempool_resize_47983 mempool_resize 2 47983 NULL
++hid_report_raw_event_7024 hid_report_raw_event 4 7024 NULL
++ieee80211_if_read_max_ratectrl_rateidx_64369 ieee80211_if_read_max_ratectrl_rateidx 3 64369 NULL
++ib_umad_write_47993 ib_umad_write 3 47993 NULL
++ilo_write_64378 ilo_write 3 64378 NULL
++iscsi_host_alloc_36671 iscsi_host_alloc 2 36671 NULL
++ipath_get_base_info_7043 ipath_get_base_info 3 7043 NULL
++__fc_frame_alloc_23432 __fc_frame_alloc 1 23432 NULL
++acpi_fan_write_state_39818 acpi_fan_write_state 3 39818 NULL
++sys_migrate_pages_39825 sys_migrate_pages 2 39825 NULL
++pidlist_allocate_64404 pidlist_allocate 1 64404 NULL
++cache_read_procfs_52882 cache_read_procfs 3 52882 NULL
++rx_hdr_overflow_read_64407 rx_hdr_overflow_read 3 64407 NULL
++beiscsi_process_async_pdu_39834 beiscsi_process_async_pdu 7 39834 NULL
++drm_alloc_agp_48031 drm_alloc_agp 2 48031 NULL
++hci_sock_recvmsg_7072 hci_sock_recvmsg 4 7072 NULL
++snd_card_create_64418 snd_card_create 4 64418 NULL nohasharray
++keyctl_get_security_64418 keyctl_get_security 3 64418 &snd_card_create_64418
++cp210x_get_config_56229 cp210x_get_config 4 56229 NULL
++spi_dv_device_echo_buffer_39846 spi_dv_device_echo_buffer 2-3 39846 NULL
++pppoe_sendmsg_48039 pppoe_sendmsg 4 48039 NULL
++zd_ioread16v_locked_7082 zd_ioread16v_locked 4 7082 NULL
++dn_nsp_send_disc_23469 dn_nsp_send_disc 2 23469 NULL
++do_ipt_set_ctl_56238 do_ipt_set_ctl 4 56238 NULL
++store_status_7088 store_status 2 7088 NULL
++__lgread_31668 __lgread 4 31668 NULL
++fd_copyin_56247 fd_copyin 3 56247 NULL
++wpan_phy_alloc_48056 wpan_phy_alloc 1 48056 NULL
++ax25_recvmsg_64441 ax25_recvmsg 4 64441 NULL
++sys_connect_15291 sys_connect 3 15291 NULL nohasharray
++xlate_dev_mem_ptr_15291 xlate_dev_mem_ptr 1 15291 &sys_connect_15291
++linear_conf_23485 linear_conf 2 23485 NULL nohasharray
++divasa_remap_pci_bar_23485 divasa_remap_pci_bar 3-4 23485 &linear_conf_23485
++posix_acl_alloc_48063 posix_acl_alloc 1 48063 NULL
++event_filter_read_23494 event_filter_read 3 23494 NULL
++tpm_tis_init_15304 tpm_tis_init 3-2 15304 NULL
++msnd_fifo_alloc_23179 msnd_fifo_alloc 2 23179 NULL
++sys_setsockopt_35320 sys_setsockopt 5 35320 NULL
++pkt_add_39897 pkt_add 3 39897 NULL
++write_led_23517 write_led 2 23517 NULL
++ip_vs_create_timeout_table_64478 ip_vs_create_timeout_table 2 64478 NULL
++send_mpa_reject_7135 send_mpa_reject 3 7135 NULL
++mmc_alloc_host_48097 mmc_alloc_host 1 48097 NULL
++skb_copy_datagram_const_iovec_48102 skb_copy_datagram_const_iovec 2-5-4 48102 NULL
++dvb_aplay_56296 dvb_aplay 3 56296 NULL
++alloc_large_system_hash_64490 alloc_large_system_hash 2 64490 NULL
++sctp_make_asconf_ack_31726 sctp_make_asconf_ack 3 31726 NULL
++aes_encrypt_interrupt_read_39919 aes_encrypt_interrupt_read 3 39919 NULL
++ima_show_measurements_count_23536 ima_show_measurements_count 3 23536 NULL
++snd_hdspm_capture_copy_48113 snd_hdspm_capture_copy 5 48113 NULL
++squashfs_read_inode_lookup_table_7160 squashfs_read_inode_lookup_table 3 7160 NULL
++get_arg_5694 get_arg 3 5694 NULL
++acpi_ut_create_string_object_15360 acpi_ut_create_string_object 1 15360 NULL
++slow_kernel_write_15362 slow_kernel_write 6 15362 NULL
++snd_seq_device_new_31753 snd_seq_device_new 4 31753 NULL
++journal_init_revoke_table_56331 journal_init_revoke_table 1 56331 NULL
++ses_send_diag_64527 ses_send_diag 4 64527 NULL
++tcp_match_skb_to_sack_23568 tcp_match_skb_to_sack 3-4 23568 NULL
++snd_rawmidi_read_56337 snd_rawmidi_read 3 56337 NULL
++venus_symlink_23570 venus_symlink 4-6 23570 NULL
++tty_prepare_flip_string_39955 tty_prepare_flip_string 3 39955 NULL
++__tcp_push_pending_frames_48148 __tcp_push_pending_frames 2 48148 NULL
++iwl_dbgfs_interrupt_read_23574 iwl_dbgfs_interrupt_read 3 23574 NULL
++ipv6_recv_error_56347 ipv6_recv_error 3 56347 NULL
++vxge_os_dma_malloc_async_56348 vxge_os_dma_malloc_async 3 56348 NULL
++isr_dma1_done_read_48159 isr_dma1_done_read 3 48159 NULL
++strip_change_mtu_33968 strip_change_mtu 2 33968 NULL
++cifs_spnego_key_instantiate_23588 cifs_spnego_key_instantiate 3 23588 NULL
++tracing_clock_read_39975 tracing_clock_read 3 39975 NULL
++broadsheetfb_write_39976 broadsheetfb_write 3 39976 NULL
++sctp_datamsg_from_user_55342 sctp_datamsg_from_user 4 55342 NULL
++iov_iter_copy_from_user_atomic_56368 iov_iter_copy_from_user_atomic 4 56368 NULL
++dev_read_56369 dev_read 3 56369 NULL
++mthca_array_init_39987 mthca_array_init 2 39987 NULL
++diva_os_alloc_message_buffer_64568 diva_os_alloc_message_buffer 1 64568 NULL
++ecryptfs_send_message_locked_31801 ecryptfs_send_message_locked 2 31801 NULL
++islpci_mgt_transaction_23610 islpci_mgt_transaction 5 23610 NULL
++isr_rx_procs_read_31804 isr_rx_procs_read 3 31804 NULL
++node_write_29878 node_write 4 29878 NULL
++sys32_ipc_7238 sys32_ipc 3 7238 NULL
++sta_last_signal_read_31818 sta_last_signal_read 3 31818 NULL
++iwl_dbgfs_ucode_tx_stats_read_31611 iwl_dbgfs_ucode_tx_stats_read 3 31611 NULL
++dvb_ca_en50221_io_write_43533 dvb_ca_en50221_io_write 3 43533 NULL
++ocfs2_control_read_56405 ocfs2_control_read 3 56405 NULL
++ivtvfb_write_40023 ivtvfb_write 3 40023 NULL
++use_pool_64607 use_pool 2 64607 NULL
++__get_vm_area_caller_56416 __get_vm_area_caller 1 56416 NULL nohasharray
++acpi_os_write_memory_56416 acpi_os_write_memory 3-1 56416 &__get_vm_area_caller_56416
++store_msg_56417 store_msg 3 56417 NULL
++__i2400mu_send_barker_23652 __i2400mu_send_barker 3 23652 NULL
++dvb_demux_ioctl_65382 dvb_demux_ioctl 3 65382 NULL
++vmalloc_15464 vmalloc 1 15464 NULL
++r128_compat_ioctl_39250 r128_compat_ioctl 2 39250 NULL
++stats_failed_count_read_9244 stats_failed_count_read 3 9244 NULL
++nfsctl_transaction_read_48250 nfsctl_transaction_read 3 48250 NULL
++stats_rx_handlers_drop_defrag_read_56448 stats_rx_handlers_drop_defrag_read 3 56448 NULL
++cx231xx_init_isoc_56453 cx231xx_init_isoc 2-3 56453 NULL
++xfs_dir2_sf_addname_hard_54254 xfs_dir2_sf_addname_hard 3 54254 NULL
++cache_write_pipefs_48270 cache_write_pipefs 3 48270 NULL
++osd_req_list_partition_objects_56464 osd_req_list_partition_objects 5 56464 NULL
++usbvideo_v4l_read_48274 usbvideo_v4l_read 3 48274 NULL
++cx18_read_23699 cx18_read 3 23699 NULL
++add_partition_15515 add_partition 2 15515 NULL
++pkt_bio_alloc_48284 pkt_bio_alloc 1 48284 NULL
++mtd_read_48289 mtd_read 3 48289 NULL
++sock_alloc_send_skb_23720 sock_alloc_send_skb 2 23720 NULL
++osst_execute_17607 osst_execute 7-6 17607 NULL
++kmem_alloc_31920 kmem_alloc 1 31920 NULL
++sctp_setsockopt_delayed_ack_40129 sctp_setsockopt_delayed_ack 3 40129 NULL
++cfg80211_connect_result_56515 cfg80211_connect_result 4-6 56515 NULL
++iov_iter_copy_from_user_31942 iov_iter_copy_from_user 4 31942 NULL nohasharray
++read_mem_31942 read_mem 3 31942 &iov_iter_copy_from_user_31942
++__feat_register_sp_64712 __feat_register_sp 6 64712 NULL
++pwr_elp_enter_read_5324 pwr_elp_enter_read 3 5324 NULL
++proc_self_readlink_38094 proc_self_readlink 3 38094 NULL
++store_ledd_43312 store_ledd 4 43312 NULL
++iwch_alloc_fastreg_pbl_40153 iwch_alloc_fastreg_pbl 2 40153 NULL
++ip_options_get_56538 ip_options_get 4 56538 NULL
++ep0_read_38095 ep0_read 3 38095 NULL
++sctp_getsockopt_sctp_status_56540 sctp_getsockopt_sctp_status 2 56540 NULL
++vstusb_read_23774 vstusb_read 3 23774 NULL
++pt_write_40159 pt_write 3 40159 NULL
++capinc_tty_write_28539 capinc_tty_write 3 28539 NULL
++sl_change_mtu_7396 sl_change_mtu 2 7396 NULL
++allocate_cnodes_5329 allocate_cnodes 1 5329 NULL
++skb_add_data_48363 skb_add_data 3 48363 NULL
++bio_map_kern_64751 bio_map_kern 3 64751 NULL
++rt2x00debug_write_csr_64753 rt2x00debug_write_csr 3 64753 NULL
++mlx4_en_create_tx_ring_64756 mlx4_en_create_tx_ring 3 64756 NULL
++map_addr_48373 map_addr 5 48373 NULL
++drm_property_create_blob_7414 drm_property_create_blob 2 7414 NULL
++rx_path_reset_read_23801 rx_path_reset_read 3 23801 NULL
++rs_sta_dbgfs_stats_table_read_56573 rs_sta_dbgfs_stats_table_read 3 56573 NULL
++compat_fillonedir_15620 compat_fillonedir 3 15620 NULL
++ipr_alloc_ucode_buffer_40199 ipr_alloc_ucode_buffer 1 40199 NULL
++proc_write_node_15624 proc_write_node 3 15624 NULL
++acpi_os_allocate_14892 acpi_os_allocate 1 14892 NULL
++system_enable_read_25815 system_enable_read 3 25815 NULL
++allocate_probes_40204 allocate_probes 1 40204 NULL
++proc_loginuid_read_15631 proc_loginuid_read 3 15631 NULL
++__earlyonly_bootmem_alloc_23824 __earlyonly_bootmem_alloc 2 23824 NULL
++acpi_battery_write_alarm_1240 acpi_battery_write_alarm 3 1240 NULL
++isr_low_rssi_read_64789 isr_low_rssi_read 3 64789 NULL
++ip_options_get_alloc_7448 ip_options_get_alloc 1 7448 NULL
++joydev_handle_JSIOCSBTNMAP_15643 joydev_handle_JSIOCSBTNMAP 3 15643 NULL
++lbs_debugfs_write_48413 lbs_debugfs_write 3 48413 NULL
++nfsctl_transaction_write_64800 nfsctl_transaction_write 3 64800 NULL
++event_filter_write_56609 event_filter_write 3 56609 NULL
++sctp_manip_pkt_40620 sctp_manip_pkt 2 40620 NULL
++iwl_dbgfs_nvm_read_23845 iwl_dbgfs_nvm_read 3 23845 NULL
++compat_sys_fcntl_15654 compat_sys_fcntl 3 15654 NULL
++pwr_tx_without_ps_read_48423 pwr_tx_without_ps_read 3 48423 NULL
++rfkill_fop_write_64808 rfkill_fop_write 3 64808 NULL
++p54_init_common_23850 p54_init_common 1 23850 NULL
++osst_read_40237 osst_read 3 40237 NULL
++sys_sched_setaffinity_32046 sys_sched_setaffinity 2 32046 NULL
++garp_request_join_7471 garp_request_join 4 7471 NULL
++ecryptfs_send_miscdev_64816 ecryptfs_send_miscdev 2 64816 NULL
++ubi_leb_change_14899 ubi_leb_change 4 14899 NULL
++unix_bind_15668 unix_bind 3 15668 NULL
++dm_read_15674 dm_read 3 15674 NULL
++do_kimage_alloc_64827 do_kimage_alloc 3 64827 NULL
++proc_scsi_devinfo_write_32064 proc_scsi_devinfo_write 3 32064 NULL
++xip_file_read_58592 xip_file_read 3 58592 NULL
++evdev_do_ioctl_24459 evdev_do_ioctl 2 24459 NULL
++rs_sta_dbgfs_scale_table_read_40262 rs_sta_dbgfs_scale_table_read 3 40262 NULL
++reqsk_queue_alloc_40272 reqsk_queue_alloc 2 40272 NULL
++sdhci_alloc_host_7509 sdhci_alloc_host 2 7509 NULL
++dlm_dir_lookup_56662 dlm_dir_lookup 4 56662 NULL
++rx_xfr_hint_trig_read_40283 rx_xfr_hint_trig_read 3 40283 NULL
++iwch_reject_cr_23901 iwch_reject_cr 3 23901 NULL
++ip6_ufo_append_data_40301 ip6_ufo_append_data 5-7-6 40301 NULL
++snd_gus_dram_read_56686 snd_gus_dram_read 4 56686 NULL
++ubi_io_write_data_40305 ubi_io_write_data 5 40305 NULL
++send_control_msg_48498 send_control_msg 6 48498 NULL
++alloc_etherdev_mq_56698 alloc_etherdev_mq 1-2 56698 NULL
++diva_os_copy_to_user_48508 diva_os_copy_to_user 4 48508 NULL
++dvb_ringbuffer_read_user_56702 dvb_ringbuffer_read_user 3 56702 NULL
++dgram_recvmsg_23104 dgram_recvmsg 4 23104 NULL
++__alloc_skb_23940 __alloc_skb 1 23940 NULL
++sta_flags_read_56710 sta_flags_read 3 56710 NULL
++ipv6_getsockopt_sticky_56711 ipv6_getsockopt_sticky 5 56711 NULL
++HiSax_readstatus_15752 HiSax_readstatus 2 15752 NULL
++sg_proc_write_dressz_46316 sg_proc_write_dressz 3 46316 NULL
++alloc_tx_32143 alloc_tx 2 32143 NULL
++compat_do_arpt_set_ctl_12184 compat_do_arpt_set_ctl 4 12184 NULL
++ieee80211_if_read_force_unicast_rateidx_32147 ieee80211_if_read_force_unicast_rateidx 3 32147 NULL
++__wa_xfer_setup_segs_56725 __wa_xfer_setup_segs 2 56725 NULL
++do_test_15766 do_test 1 15766 NULL
++mmio_read_40348 mmio_read 4 40348 NULL
++v9fs_file_read_40858 v9fs_file_read 3 40858 NULL
++sta_wep_weak_iv_count_read_64069 sta_wep_weak_iv_count_read 3 64069 NULL
++nfsd_write_54809 nfsd_write 6 54809 NULL
++venus_link_32165 venus_link 5 32165 NULL
++event_rx_mem_empty_read_40363 event_rx_mem_empty_read 3 40363 NULL
++drm_agp_bind_pages_56748 drm_agp_bind_pages 3 56748 NULL
++ntfs_rl_realloc_nofail_32173 ntfs_rl_realloc_nofail 3 32173 NULL
++ubifs_wbuf_write_nolock_64946 ubifs_wbuf_write_nolock 3 64946 NULL
++smk_read_direct_15803 smk_read_direct 3 15803 NULL
++fwnet_incoming_packet_40380 fwnet_incoming_packet 3 40380 NULL
++ip_options_get_from_user_64958 ip_options_get_from_user 4 64958 NULL
++wusb_ccm_mac_32199 wusb_ccm_mac 7 32199 NULL
++csr1212_append_new_cache_32202 csr1212_append_new_cache 2 32202 NULL
++afs_proc_rootcell_write_15822 afs_proc_rootcell_write 3 15822 NULL
++cciss_allocate_sg_chain_blocks_5368 cciss_allocate_sg_chain_blocks 3-2 5368 NULL
++oprofilefs_ulong_from_user_57251 oprofilefs_ulong_from_user 3 57251 NULL
++iscsi_create_conn_50425 iscsi_create_conn 2 50425 NULL
++alloc_netdev_mq_24028 alloc_netdev_mq 1-4 24028 NULL
++event_enable_read_7074 event_enable_read 3 7074 NULL
++xlog_recover_add_to_trans_48614 xlog_recover_add_to_trans 3 48614 NULL
++pskb_pull_65005 pskb_pull 2 65005 NULL
++lbs_lowrssi_read_32242 lbs_lowrssi_read 3 32242 NULL
++agp_generic_alloc_user_9470 agp_generic_alloc_user 1 9470 NULL
++ubi_io_write_15870 ubi_io_write 5 15870 NULL
++ntfs_rl_realloc_56831 ntfs_rl_realloc 3 56831 NULL
++do_ip_vs_set_ctl_48641 do_ip_vs_set_ctl 4 48641 NULL
++__mptctl_ioctl_15875 __mptctl_ioctl 2 15875 NULL
++proc_write_ledd_48644 proc_write_ledd 3 48644 NULL
++sl_realloc_bufs_64086 sl_realloc_bufs 2 64086 NULL
++insert_dent_65034 insert_dent 7 65034 NULL
++blkcipher_copy_iv_24075 blkcipher_copy_iv 3 24075 NULL
++acpi_os_allocate_zeroed_37422 acpi_os_allocate_zeroed 1 37422 NULL
++snd_rawmidi_kernel_write1_56847 snd_rawmidi_kernel_write1 4 56847 NULL
++stats_multicast_received_frame_count_read_24083 stats_multicast_received_frame_count_read 3 24083 NULL
++l2cap_create_iframe_pdu_51801 l2cap_create_iframe_pdu 3 51801 NULL
++aes_encrypt_packets_read_48666 aes_encrypt_packets_read 3 48666 NULL
++sm501_create_subdev_48668 sm501_create_subdev 3-4 48668 NULL nohasharray
++sys_setgroups_48668 sys_setgroups 1 48668 &sm501_create_subdev_48668
++l3_alloc_skb_32289 l3_alloc_skb 1 32289 NULL
++l2cap_build_cmd_48676 l2cap_build_cmd 4 48676 NULL
++request_key_auth_read_24109 request_key_auth_read 3 24109 NULL
++sbp2util_notify_fetch_agent_40494 sbp2util_notify_fetch_agent 4 40494 NULL
++efivar_create_sysfs_entry_56882 efivar_create_sysfs_entry 1 56882 NULL
++vmalloc_user_32308 vmalloc_user 1 32308 NULL
++hysdn_log_write_48694 hysdn_log_write 3 48694 NULL
++manip_pkt_7741 manip_pkt 3 7741 NULL
++recv_msg_48709 recv_msg 4 48709 NULL
++vxge_device_register_7752 vxge_device_register 4 7752 NULL
++irnet_ctrl_write_24139 irnet_ctrl_write 3 24139 NULL
++revalidate_19043 revalidate 2 19043 NULL
++remap_pci_mem_15966 remap_pci_mem 1-2 15966 NULL
++ima_write_policy_40548 ima_write_policy 3 40548 NULL
++journal_init_revoke_56933 journal_init_revoke 2 56933 NULL
++sel_read_initcon_32362 sel_read_initcon 3 32362 NULL
++dlm_allocate_rsb_56941 dlm_allocate_rsb 2 56941 NULL
++bnx2_nvram_write_7790 bnx2_nvram_write 4-2 7790 NULL
++diva_os_copy_from_user_7792 diva_os_copy_from_user 4 7792 NULL
++adu_read_24177 adu_read 3 24177 NULL
++send_mpa_reply_32372 send_mpa_reply 3 32372 NULL
++usbtmc_read_32377 usbtmc_read 3 32377 NULL
++get_entry_16003 get_entry 4 16003 NULL nohasharray
++alloc_vm_area_16003 alloc_vm_area 1 16003 &get_entry_16003
++event_buffer_read_48772 event_buffer_read 3 48772 NULL
++xfs_iext_add_indirect_multi_32400 xfs_iext_add_indirect_multi 3 32400 NULL
++viafb_vt1636_proc_write_16018 viafb_vt1636_proc_write 3 16018 NULL
++dlm_user_request_8131 dlm_user_request 6 8131 NULL
++skge_rx_get_40598 skge_rx_get 3 40598 NULL
++debug_buffer_read_24220 debug_buffer_read 3 24220 NULL
++ssb_bus_register_65183 ssb_bus_register 3 65183 NULL
++snd_pcm_aio_read_13900 snd_pcm_aio_read 3 13900 NULL
++cypress_buf_alloc_32417 cypress_buf_alloc 1 32417 NULL
++waiters_read_40902 waiters_read 3 40902 NULL
++vlsi_alloc_ring_57003 vlsi_alloc_ring 3-4 57003 NULL
++sel_read_bool_24236 sel_read_bool 3 24236 NULL
++tcp_push_one_48816 tcp_push_one 2 48816 NULL
++drm_ioctl_65206 drm_ioctl 3 65206 NULL
++nfulnl_alloc_skb_65207 nfulnl_alloc_skb 2 65207 NULL
++dccp_recvmsg_16056 dccp_recvmsg 4 16056 NULL
++atomic_counters_read_48827 atomic_counters_read 3 48827 NULL
++vc_do_resize_48842 vc_do_resize 3-4 48842 NULL
++acpi_tb_parse_root_table_53455 acpi_tb_parse_root_table 1 53455 NULL
++dvb_dmxdev_read_sec_7892 dvb_dmxdev_read_sec 4 7892 NULL
++snd_nm256_capture_copy_28622 snd_nm256_capture_copy 5 28622 NULL
++kfifo_alloc_65242 kfifo_alloc 1 65242 NULL
++viafb_dvp1_proc_write_48864 viafb_dvp1_proc_write 3 48864 NULL
++iso_alloc_urb_57061 iso_alloc_urb 4 57061 NULL
++isr_tx_exch_complete_read_16103 isr_tx_exch_complete_read 3 16103 NULL
++pcmcia_replace_cis_57066 pcmcia_replace_cis 3 57066 NULL
++ide_driver_proc_write_32493 ide_driver_proc_write 3 32493 NULL
++dma_tx_requested_read_16110 dma_tx_requested_read 3 16110 NULL nohasharray
++isr_hw_pm_mode_changes_read_16110 isr_hw_pm_mode_changes_read 3 16110 &dma_tx_requested_read_16110
++dvb_ca_en50221_io_ioctl_16113 dvb_ca_en50221_io_ioctl 3 16113 NULL
++sys_setgroups16_48882 sys_setgroups16 1 48882 NULL
++btmrvl_pscmd_read_24308 btmrvl_pscmd_read 3 24308 NULL
++system_enable_write_61396 system_enable_write 3 61396 NULL
++raw_send_hdrinc_7937 raw_send_hdrinc 3 7937 NULL
++mac_drv_rx_init_48898 mac_drv_rx_init 2 48898 NULL nohasharray
++joydev_handle_JSIOCSAXMAP_48898 joydev_handle_JSIOCSAXMAP 3 48898 &mac_drv_rx_init_48898
++sisusbcon_scroll_area_25899 sisusbcon_scroll_area 3-4 25899 NULL
++xdi_copy_to_user_48900 xdi_copy_to_user 4 48900 NULL
++compat_core_sys_select_65285 compat_core_sys_select 1 65285 NULL
++fsm_init_16134 fsm_init 2 16134 NULL
++hysdn_rx_netpkt_16136 hysdn_rx_netpkt 3 16136 NULL
++__seq_open_private_40715 __seq_open_private 3 40715 NULL
++redirected_tty_write_65297 redirected_tty_write 3 65297 NULL
++ilo_read_32531 ilo_read 3 32531 NULL
++ieee80211_if_read_estab_plinks_32533 ieee80211_if_read_estab_plinks 3 32533 NULL
++ioremap_23172 ioremap 2-1 23172 NULL
++sysfs_write_file_57116 sysfs_write_file 3 57116 NULL
++csr1212_new_descriptor_leaf_57117 csr1212_new_descriptor_leaf 4 57117 NULL
++jffs2_trusted_setxattr_65310 jffs2_trusted_setxattr 4 65310 NULL
++kzalloc_node_24352 kzalloc_node 1 24352 NULL
++trace_options_write_48275 trace_options_write 3 48275 NULL
++format_devstat_counter_32550 format_devstat_counter 3 32550 NULL
++xfs_iext_remove_direct_40744 xfs_iext_remove_direct 3 40744 NULL
++cfi_read_pri_24366 cfi_read_pri 3 24366 NULL
++ima_show_htable_value_57136 ima_show_htable_value 2 57136 NULL
++aes_encrypt_fail_read_32562 aes_encrypt_fail_read 3 32562 NULL
++sys_mbind_7990 sys_mbind 5 7990 NULL
++proc_write_disp_16184 proc_write_disp 3 16184 NULL
++pg_write_40766 pg_write 3 40766 NULL
++event_heart_beat_read_48961 event_heart_beat_read 3 48961 NULL
++uea_idma_write_64139 uea_idma_write 3 64139 NULL
++ecryptfs_readlink_40775 ecryptfs_readlink 3 40775 NULL
++dma_rx_requested_read_65354 dma_rx_requested_read 3 65354 NULL
++getxattr_24398 getxattr 4 24398 NULL
++stk_prepare_sio_buffers_57168 stk_prepare_sio_buffers 2 57168 NULL
++vcs_read_8017 vcs_read 3 8017 NULL
++read_file_beacon_32595 read_file_beacon 3 32595 NULL
++create_table_16213 create_table 2 16213 NULL
++rx_hw_stuck_read_57179 rx_hw_stuck_read 3 57179 NULL
++_alloc_set_attr_list_48991 _alloc_set_attr_list 4 48991 NULL
++sys_set_mempolicy_32608 sys_set_mempolicy 3 32608 NULL
++atomic_read_file_16227 atomic_read_file 3 16227 NULL
++sel_write_enforce_48998 sel_write_enforce 3 48998 NULL
++b43_debugfs_read_24425 b43_debugfs_read 3 24425 NULL
++netdev_alloc_skb_ip_align_40811 netdev_alloc_skb_ip_align 2 40811 NULL
++ieee80211_rx_mgmt_beacon_24430 ieee80211_rx_mgmt_beacon 3 24430 NULL
++trace_parser_get_init_31379 trace_parser_get_init 2 31379 NULL
++__alloc_bootmem_nopanic_65397 __alloc_bootmem_nopanic 1 65397 NULL
++trace_seq_to_user_65398 trace_seq_to_user 3 65398 NULL
++irda_recvmsg_dgram_32631 irda_recvmsg_dgram 4 32631 NULL
++rcname_read_25919 rcname_read 3 25919 NULL
++skb_copy_to_page_8071 skb_copy_to_page 6 8071 NULL
++alloc_targets_8074 alloc_targets 2 8074 NULL
++tifm_alloc_adapter_10903 tifm_alloc_adapter 1 10903 NULL
++drm_calloc_large_65421 drm_calloc_large 1-2 65421 NULL
++generic_readlink_32654 generic_readlink 3 32654 NULL
++skb_copy_and_csum_datagram_iovec_24466 skb_copy_and_csum_datagram_iovec 2 24466 NULL
++ttm_bo_ioremap_40854 ttm_bo_ioremap 4-3-2 40854 NULL
++xpc_kzalloc_cacheline_aligned_65433 xpc_kzalloc_cacheline_aligned 1 65433 NULL
++drm_fb_helper_init_crtc_count_32666 drm_fb_helper_init_crtc_count 2-3 32666 NULL
++fbcon_do_set_font_4079 fbcon_do_set_font 2-3 4079 NULL
++move_addr_to_kernel_32673 move_addr_to_kernel 2 32673 NULL
++stk_allocate_buffers_16291 stk_allocate_buffers 2 16291 NULL
++__cxio_init_resource_fifo_16295 __cxio_init_resource_fifo 3 16295 NULL
++hid_input_report_32458 hid_input_report 4 32458 NULL
++rsc_mgr_init_16299 rsc_mgr_init 3 16299 NULL
++venus_lookup_8121 venus_lookup 4 8121 NULL
++ccid3_hc_tx_getsockopt_16314 ccid3_hc_tx_getsockopt 3 16314 NULL
++dmam_declare_coherent_memory_43679 dmam_declare_coherent_memory 4-2 43679 NULL
++io_mapping_create_wc_1354 io_mapping_create_wc 1-2 1354 NULL
++read_buf_20469 read_buf 2 20469 NULL
++request_key_with_auxdata_24515 request_key_with_auxdata 4 24515 NULL
++scsi_register_49094 scsi_register 2 49094 NULL
++isdn_add_channels_40905 isdn_add_channels 3 40905 NULL
++compat_do_readv_writev_49102 compat_do_readv_writev 4 49102 NULL
++vol_cdev_write_40915 vol_cdev_write 3 40915 NULL
++named_prepare_buf_24532 named_prepare_buf 2 24532 NULL
++hdpvr_read_9273 hdpvr_read 3 9273 NULL
++alloc_dr_65495 alloc_dr 2 65495 NULL
++intel_i830_alloc_by_type_40921 intel_i830_alloc_by_type 1 40921 NULL
++ftdi_elan_write_57309 ftdi_elan_write 3 57309 NULL
++total_ps_buffered_read_16365 total_ps_buffered_read 3 16365 NULL
++stats_read_ul_32751 stats_read_ul 3 32751 NULL
++pt_read_49136 pt_read 3 49136 NULL
++snd_vx_create_40948 snd_vx_create 4 40948 NULL
++dbg_leb_write_20478 dbg_leb_write 5-4 20478 NULL
++iscsi_tcp_conn_setup_16376 iscsi_tcp_conn_setup 2 16376 NULL
++tracing_ctrl_write_42324 tracing_ctrl_write 3 42324 NULL nohasharray
++hysdn_conf_read_42324 hysdn_conf_read 3 42324 &tracing_ctrl_write_42324
++check_mirror_57342 check_mirror 2-1 57342 NULL nohasharray
++usblp_read_57342 usblp_read 3 57342 &check_mirror_57342
++atyfb_setup_generic_49151 atyfb_setup_generic 3 49151 NULL
diff --git a/tools/gcc/size_overflow_plugin.c b/tools/gcc/size_overflow_plugin.c
new file mode 100644
-index 0000000..1aa0dce
+index 0000000..6387ddc
--- /dev/null
+++ b/tools/gcc/size_overflow_plugin.c
-@@ -0,0 +1,1865 @@
+@@ -0,0 +1,1918 @@
+/*
+ * Copyright 2011, 2012 by Emese Revfy <re.emese@gmail.com>
+ * Licensed under the GPL v2, or (at your option) v3
@@ -122726,8 +123213,10 @@ index 0000000..1aa0dce
+static tree get_size_overflow_type(gimple stmt, const_tree node);
+static tree dup_assign(struct pointer_set_t *visited, gimple oldstmt, const_tree node, tree rhs1, tree rhs2, tree __unused rhs3);
+
++static unsigned int call_count=0;
++
+static struct plugin_info size_overflow_plugin_info = {
-+ .version = "20121113beta",
++ .version = "20121212beta",
+ .help = "no-size-overflow\tturn off size overflow checking\n",
+};
+
@@ -123006,6 +123495,9 @@ index 0000000..1aa0dce
+ const_tree type = TREE_TYPE(arg);
+ enum tree_code code = TREE_CODE(type);
+
++ if (code == BOOLEAN_TYPE)
++ return;
++
+ gcc_assert(code == INTEGER_TYPE || code == ENUMERAL_TYPE ||
+ (code == POINTER_TYPE && TREE_CODE(TREE_TYPE(type)) == VOID_TYPE) ||
+ (code == POINTER_TYPE && TREE_CODE(TREE_TYPE(type)) == INTEGER_TYPE));
@@ -123155,10 +123647,20 @@ index 0000000..1aa0dce
+ gcc_unreachable();
+ }
+
-+ if (gimple_code(oldstmt) == GIMPLE_ASM)
++ switch (gimple_code(oldstmt)) {
++ case GIMPLE_ASM:
+ lhs = rhs1;
-+ else
++ break;
++ case GIMPLE_CALL:
++ lhs = gimple_call_lhs(oldstmt);
++ break;
++ case GIMPLE_ASSIGN:
+ lhs = gimple_get_lhs(oldstmt);
++ break;
++ default:
++ debug_gimple_stmt(oldstmt);
++ gcc_unreachable();
++ }
+
+ gsi = gsi_for_stmt(oldstmt);
+ pointer_set_insert(visited, oldstmt);
@@ -123221,11 +123723,8 @@ index 0000000..1aa0dce
+ new_var = make_ssa_name(new_var, stmt);
+ gimple_set_lhs(stmt, new_var);
+
-+ if (rhs1 != NULL_TREE) {
-+ if (!gimple_assign_cast_p(oldstmt) && TREE_CODE_CLASS(gimple_assign_rhs_code(oldstmt)) != tcc_comparison)
-+ rhs1 = cast_a_tree(size_overflow_type, rhs1);
++ if (rhs1 != NULL_TREE)
+ gimple_assign_set_rhs1(stmt, rhs1);
-+ }
+
+ if (rhs2 != NULL_TREE)
+ gimple_assign_set_rhs2(stmt, rhs2);
@@ -123460,6 +123959,7 @@ index 0000000..1aa0dce
+
+static tree handle_unary_rhs(struct pointer_set_t *visited, gimple stmt)
+{
++ gimple def_stmt;
+ tree size_overflow_type, lhs = gimple_get_lhs(stmt);
+ tree new_rhs1, rhs1 = gimple_assign_rhs1(stmt);
+ const_tree rhs1_type = TREE_TYPE(rhs1);
@@ -123489,13 +123989,16 @@ index 0000000..1aa0dce
+ size_overflow_type = get_size_overflow_type(stmt, rhs1);
+ new_rhs1 = cast_to_new_size_overflow_type(stmt, new_rhs1, size_overflow_type, BEFORE_STMT);
+
-+ change_rhs1(stmt, new_rhs1);
+ check_size_overflow(stmt, size_overflow_type, new_rhs1, rhs1, BEFORE_STMT);
+
+ rhs1 = gimple_assign_rhs1(stmt);
+ rhs1_type = TREE_TYPE(rhs1);
-+ if (TYPE_UNSIGNED(rhs1_type) != TYPE_UNSIGNED(lhs_type))
++ if (TYPE_UNSIGNED(rhs1_type) != TYPE_UNSIGNED(lhs_type)) {
++ def_stmt = get_def_stmt(new_rhs1);
++ rhs1 = gimple_assign_rhs1(def_stmt);
+ return create_assign(visited, stmt, rhs1, AFTER_STMT);
++ }
++ change_rhs1(stmt, new_rhs1);
+
+ if (!check_mode_type(stmt))
+ return create_assign(visited, stmt, lhs, AFTER_STMT);
@@ -123508,10 +124011,13 @@ index 0000000..1aa0dce
+ return create_assign(visited, stmt, lhs, AFTER_STMT);
+}
+
-+static tree handle_unary_ops(struct pointer_set_t *visited, tree lhs)
++static tree handle_unary_ops(struct pointer_set_t *visited, gimple stmt)
+{
++ tree rhs1, lhs = gimple_get_lhs(stmt);
+ gimple def_stmt = get_def_stmt(lhs);
-+ tree rhs1 = gimple_assign_rhs1(def_stmt);
++
++ gcc_assert(gimple_code(def_stmt) != GIMPLE_NOP);
++ rhs1 = gimple_assign_rhs1(def_stmt);
+
+ if (is_gimple_constant(rhs1))
+ return create_assign(visited, def_stmt, lhs, AFTER_STMT);
@@ -123528,10 +124034,11 @@ index 0000000..1aa0dce
+#if BUILDING_GCC_VERSION >= 4006
+ case MEM_REF:
+#endif
-+ case PARM_DECL:
+ case TARGET_MEM_REF:
-+ case VAR_DECL:
+ return create_assign(visited, def_stmt, lhs, AFTER_STMT);
++ case PARM_DECL:
++ case VAR_DECL:
++ return create_assign(visited, stmt, lhs, AFTER_STMT);
+
+ default:
+ debug_gimple_stmt(def_stmt);
@@ -123574,7 +124081,8 @@ index 0000000..1aa0dce
+ const_tree loc_line;
+ tree loc_file, ssa_name, current_func;
+ expanded_location xloc;
-+ char ssa_name_buf[256];
++ char *ssa_name_buf;
++ int len;
+ gimple_stmt_iterator gsi = gsi_start_bb(bb_true);
+
+ def_stmt = get_def_stmt(arg);
@@ -123594,8 +124102,12 @@ index 0000000..1aa0dce
+ current_func = build_string(NAME_LEN(current_function_decl) + 1, NAME(current_function_decl));
+ current_func = create_string_param(current_func);
+
-+ snprintf(ssa_name_buf, 256, "%s_%u (%s)\n", NAME(SSA_NAME_VAR(arg)), SSA_NAME_VERSION(arg), min ? "min" : "max");
-+ ssa_name = build_string(256, ssa_name_buf);
++ gcc_assert(DECL_NAME(SSA_NAME_VAR(arg)) != NULL);
++ call_count++;
++ len = asprintf(&ssa_name_buf, "%s_%u %s, count: %u\n", NAME(SSA_NAME_VAR(arg)), SSA_NAME_VERSION(arg), min ? "min" : "max", call_count);
++ gcc_assert(len > 0);
++ ssa_name = build_string(len + 1, ssa_name_buf);
++ free(ssa_name_buf);
+ ssa_name = create_string_param(ssa_name);
+
+ // void report_size_overflow(const char *file, unsigned int line, const char *func, const char *ssa_name)
@@ -123698,7 +124210,7 @@ index 0000000..1aa0dce
+ if (gimple_assign_rhs_code(def_stmt) == RSHIFT_EXPR)
+ return get_size_overflow_type(change_rhs_def_stmt, change_rhs);
+
-+ if (!types_compatible_p(lhs_type, rhs1_type) || !useless_type_conversion_p(rhs1_type, rhs2_type)) {
++ if (!types_compatible_p(lhs_type, rhs1_type) || !types_compatible_p(rhs1_type, rhs2_type)) {
+ debug_gimple_stmt(def_stmt);
+ gcc_unreachable();
+ }
@@ -123947,6 +124459,7 @@ index 0000000..1aa0dce
+static tree get_size_overflow_type(gimple stmt, const_tree node)
+{
+ const_tree type;
++ tree new_type;
+
+ gcc_assert(node != NULL_TREE);
+
@@ -123957,20 +124470,29 @@ index 0000000..1aa0dce
+
+ switch (TYPE_MODE(type)) {
+ case QImode:
-+ return (TYPE_UNSIGNED(type)) ? unsigned_intHI_type_node : intHI_type_node;
++ new_type = (TYPE_UNSIGNED(type)) ? unsigned_intHI_type_node : intHI_type_node;
++ break;
+ case HImode:
-+ return (TYPE_UNSIGNED(type)) ? unsigned_intSI_type_node : intSI_type_node;
++ new_type = (TYPE_UNSIGNED(type)) ? unsigned_intSI_type_node : intSI_type_node;
++ break;
+ case SImode:
-+ return (TYPE_UNSIGNED(type)) ? unsigned_intDI_type_node : intDI_type_node;
++ new_type = (TYPE_UNSIGNED(type)) ? unsigned_intDI_type_node : intDI_type_node;
++ break;
+ case DImode:
+ if (LONG_TYPE_SIZE == GET_MODE_BITSIZE(SImode))
-+ return (TYPE_UNSIGNED(type)) ? unsigned_intDI_type_node : intDI_type_node;
-+ return (TYPE_UNSIGNED(type)) ? unsigned_intTI_type_node : intTI_type_node;
++ new_type = (TYPE_UNSIGNED(type)) ? unsigned_intDI_type_node : intDI_type_node;
++ else
++ new_type = (TYPE_UNSIGNED(type)) ? unsigned_intTI_type_node : intTI_type_node;
++ break;
+ default:
+ debug_tree((tree)node);
+ error("%s: unsupported gcc configuration.", __func__);
+ gcc_unreachable();
+ }
++
++ if (TYPE_QUALS(type) != 0)
++ return build_qualified_type(new_type, TYPE_QUALS(type));
++ return new_type;
+}
+
+static tree expand_visited(gimple def_stmt)
@@ -124011,21 +124533,22 @@ index 0000000..1aa0dce
+
+ gcc_assert(code == INTEGER_TYPE || code == POINTER_TYPE || code == BOOLEAN_TYPE || code == ENUMERAL_TYPE);
+
-+
+ def_stmt = get_def_stmt(lhs);
+
-+ if (!def_stmt)
++ if (!def_stmt || gimple_code(def_stmt) == GIMPLE_NOP)
+ return NULL_TREE;
+
+ if (gimple_plf(def_stmt, MY_STMT))
+ return lhs;
+
++ // skip char type, except PHI (FIXME: only kernel)
++ if (TYPE_MODE(TREE_TYPE(lhs)) == QImode && gimple_code(def_stmt) != GIMPLE_PHI)
++ return create_assign(visited, def_stmt, lhs, AFTER_STMT);
++
+ if (pointer_set_contains(visited, def_stmt))
+ return expand_visited(def_stmt);
+
+ switch (gimple_code(def_stmt)) {
-+ case GIMPLE_NOP:
-+ return NULL_TREE;
+ case GIMPLE_PHI:
+ return build_new_phi(visited, lhs);
+ case GIMPLE_CALL:
@@ -124034,7 +124557,7 @@ index 0000000..1aa0dce
+ case GIMPLE_ASSIGN:
+ switch (gimple_num_ops(def_stmt)) {
+ case 2:
-+ return handle_unary_ops(visited, lhs);
++ return handle_unary_ops(visited, def_stmt);
+ case 3:
+ return handle_binary_ops(visited, lhs);
+#if BUILDING_GCC_VERSION >= 4007
@@ -124093,6 +124616,8 @@ index 0000000..1aa0dce
+
+static bool skip_types(const_tree var)
+{
++ const_tree type;
++
+ switch (TREE_CODE(var)) {
+ case ADDR_EXPR:
+#if BUILDING_GCC_VERSION >= 4006
@@ -124107,6 +124632,17 @@ index 0000000..1aa0dce
+ default:
+ break;
+ }
++
++ type = TREE_TYPE(TREE_TYPE(var));
++ if (!type)
++ return false;
++ switch (TREE_CODE(type)) {
++ case RECORD_TYPE:
++ return true;
++ default:
++ break;
++ }
++
+ return false;
+}
+
@@ -124255,6 +124791,10 @@ index 0000000..1aa0dce
+ if (skip_types(lhs))
+ return false;
+
++ // skip char type (FIXME: only kernel)
++ if (TYPE_MODE(TREE_TYPE(lhs)) == QImode)
++ return false;
++
+ if (TREE_CODE(lhs) == PARM_DECL)
+ return is_already_marked(lhs);
+