summaryrefslogtreecommitdiffstats
path: root/main/linux-grsec
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-01-10 09:58:08 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-01-10 12:07:38 +0000
commit8056d4d2714d9155941c46fe1eef969dab94b903 (patch)
tree262410b0d2277d6a33c3f7d9874c0b3d43d8d178 /main/linux-grsec
parent7ff75be3b1abfa8861dbf5a1a2475887a9c3b0cd (diff)
downloadaports-8056d4d2714d9155941c46fe1eef969dab94b903.tar.bz2
aports-8056d4d2714d9155941c46fe1eef969dab94b903.tar.xz
main/linux-grsec: remove unused patch
Diffstat (limited to 'main/linux-grsec')
-rw-r--r--main/linux-grsec/pax-16.patch8252
1 files changed, 0 insertions, 8252 deletions
diff --git a/main/linux-grsec/pax-16.patch b/main/linux-grsec/pax-16.patch
deleted file mode 100644
index 870b6d85c..000000000
--- a/main/linux-grsec/pax-16.patch
+++ /dev/null
@@ -1,8252 +0,0 @@
-diff -u linux-3.6.10-pax/arch/x86/include/asm/local.h linux-3.6.10-pax/arch/x86/include/asm/local.h
---- linux-3.6.10-pax/arch/x86/include/asm/local.h 2012-10-01 02:50:39.232114638 +0200
-+++ linux-3.6.10-pax/arch/x86/include/asm/local.h 2012-12-12 05:17:52.039784402 +0100
-@@ -10,10 +10,16 @@
- 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)
- {
-@@ -29,6 +35,12 @@
- : "+m" (l->a.counter));
- }
-
-+static inline void local_inc_unchecked(local_unchecked_t *l)
-+{
-+ asm volatile(_ASM_INC "%0\n"
-+ : "+m" (l->a.counter));
-+}
-+
- static inline void local_dec(local_t *l)
- {
- asm volatile(_ASM_DEC "%0\n"
-@@ -43,6 +55,12 @@
- : "+m" (l->a.counter));
- }
-
-+static inline void local_dec_unchecked(local_unchecked_t *l)
-+{
-+ asm volatile(_ASM_DEC "%0\n"
-+ : "+m" (l->a.counter));
-+}
-+
- static inline void local_add(long i, local_t *l)
- {
- asm volatile(_ASM_ADD "%1,%0\n"
-@@ -58,6 +76,13 @@
- : "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));
-+}
-+
- static inline void local_sub(long i, local_t *l)
- {
- asm volatile(_ASM_SUB "%1,%0\n"
-@@ -74,0 +100,7 @@
-+
-+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));
-+}
-@@ -223,6 +255,38 @@
- #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);
-@@ -233,6 +297,8 @@
-
- #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 -u linux-3.6.10-pax/arch/x86/kernel/ftrace.c linux-3.6.10-pax/arch/x86/kernel/ftrace.c
---- linux-3.6.10-pax/arch/x86/kernel/ftrace.c 2012-10-01 02:50:39.520114639 +0200
-+++ linux-3.6.10-pax/arch/x86/kernel/ftrace.c 2012-12-12 05:21:59.187819402 +0100
-@@ -214,7 +214,7 @@
- unsigned char old[MCOUNT_INSN_SIZE], *new;
- int ret;
-
-- 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);
-
- /* See comment above by declaration of modifying_ftrace_code */
-@@ -258,7 +258,7 @@
- * kernel identity mapping to modify code.
- */
- if (within(ip, (unsigned long)_text, (unsigned long)_etext))
-- ip = (unsigned long)__va(__pa(ip));
-+ ip = (unsigned long)__va(__pa(ktla_ktva(ip)));
-
- return probe_kernel_write((void *)ip, val, size);
- }
-@@ -268,7 +268,7 @@
- unsigned char replaced[MCOUNT_INSN_SIZE];
- unsigned char brk = BREAKPOINT_INSTRUCTION;
-
-- if (probe_kernel_read(replaced, (void *)ip, MCOUNT_INSN_SIZE))
-+ if (probe_kernel_read(replaced, (void *)ktla_ktva(ip), MCOUNT_INSN_SIZE))
- return -EFAULT;
-
- /* Make sure it is what we expect it to be */
-@@ -574,7 +574,7 @@
- return ret;
-
- fail_update:
-- probe_kernel_write((void *)ip, &old_code[0], 1);
-+ probe_kernel_write((void *)ktla_ktva(ip), &old_code[0], 1);
- goto out;
- }
-
-diff -u linux-3.6.10-pax/arch/x86/kernel/kgdb.c linux-3.6.10-pax/arch/x86/kernel/kgdb.c
---- linux-3.6.10-pax/arch/x86/kernel/kgdb.c 2012-10-01 02:50:39.560114640 +0200
-+++ linux-3.6.10-pax/arch/x86/kernel/kgdb.c 2012-12-12 05:19:25.971801387 +0100
-@@ -229,7 +229,10 @@
- bp->attr.bp_addr = breakinfo[breakno].addr;
- bp->attr.bp_len = breakinfo[breakno].len;
- bp->attr.bp_type = breakinfo[breakno].type;
-- info->address = breakinfo[breakno].addr;
-+ if (breakinfo[breakno].type == X86_BREAKPOINT_EXECUTE)
-+ info->address = ktla_ktva(breakinfo[breakno].addr);
-+ else
-+ info->address = breakinfo[breakno].addr;
- info->len = breakinfo[breakno].len;
- info->type = breakinfo[breakno].type;
- val = arch_install_hw_breakpoint(bp);
-@@ -749,11 +752,11 @@
- char opc[BREAK_INSTR_SIZE];
-
- bpt->type = BP_BREAKPOINT;
-- err = probe_kernel_read(bpt->saved_instr, (char *)bpt->bpt_addr,
-+ err = probe_kernel_read(bpt->saved_instr, ktla_ktva((char *)bpt->bpt_addr),
- BREAK_INSTR_SIZE);
- if (err)
- return err;
-- err = probe_kernel_write((char *)bpt->bpt_addr,
-+ err = probe_kernel_write(ktla_ktva((char *)bpt->bpt_addr),
- arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE);
- #ifdef CONFIG_DEBUG_RODATA
- if (!err)
-@@ -766,7 +769,7 @@
- return -EBUSY;
- text_poke((void *)bpt->bpt_addr, arch_kgdb_ops.gdb_bpt_instr,
- BREAK_INSTR_SIZE);
-- err = probe_kernel_read(opc, (char *)bpt->bpt_addr, BREAK_INSTR_SIZE);
-+ err = probe_kernel_read(opc, ktla_ktva((char *)bpt->bpt_addr), BREAK_INSTR_SIZE);
- if (err)
- return err;
- if (memcmp(opc, arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE))
-@@ -791,13 +794,13 @@
- if (mutex_is_locked(&text_mutex))
- goto knl_write;
- text_poke((void *)bpt->bpt_addr, bpt->saved_instr, BREAK_INSTR_SIZE);
-- err = probe_kernel_read(opc, (char *)bpt->bpt_addr, BREAK_INSTR_SIZE);
-+ err = probe_kernel_read(opc, ktla_ktva((char *)bpt->bpt_addr), BREAK_INSTR_SIZE);
- if (err || memcmp(opc, bpt->saved_instr, BREAK_INSTR_SIZE))
- goto knl_write;
- return err;
- knl_write:
- #endif /* CONFIG_DEBUG_RODATA */
-- return probe_kernel_write((char *)bpt->bpt_addr,
-+ return probe_kernel_write(ktla_ktva((char *)bpt->bpt_addr),
- (char *)bpt->saved_instr, BREAK_INSTR_SIZE);
- }
-
-diff -u linux-3.6.10-pax/arch/x86/kernel/kprobes.c linux-3.6.10-pax/arch/x86/kernel/kprobes.c
---- linux-3.6.10-pax/arch/x86/kernel/kprobes.c 2012-10-01 02:50:39.564114639 +0200
-+++ linux-3.6.10-pax/arch/x86/kernel/kprobes.c 2012-12-11 23:20:42.886278655 +0100
-@@ -119,7 +119,7 @@
- s32 raddr;
- } __attribute__((packed)) *insn;
-
-- insn = (struct __arch_relative_insn *)from;
-+ insn = (struct __arch_relative_insn *)ktla_ktva(from);
-
- pax_open_kernel();
- insn->raddr = (s32)((long)(to) - ((long)(from) + 5));
-@@ -241,9 +241,9 @@
- * for the first byte, we can recover the original instruction
- * from it and kp->opcode.
- */
-- memcpy(buf, kp->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
-+ memcpy(buf, ktla_ktva(kp->addr), MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
- buf[0] = kp->opcode;
-- return (unsigned long)buf;
-+ return ktva_ktla((unsigned long)buf);
- }
-
- /*
-@@ -509,7 +509,7 @@
- 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 = ktla_ktva((unsigned long)p->addr);
- else
- regs->ip = ktva_ktla((unsigned long)p->ainsn.insn);
- }
-diff -u linux-3.6.10-pax/arch/x86/kernel/kprobes-opt.c linux-3.6.10-pax/arch/x86/kernel/kprobes-opt.c
---- linux-3.6.10-pax/arch/x86/kernel/kprobes-opt.c 2012-10-01 02:50:39.576114640 +0200
-+++ linux-3.6.10-pax/arch/x86/kernel/kprobes-opt.c 2012-12-12 05:17:52.051784405 +0100
-@@ -353,17 +353,17 @@
- op->optinsn.size = ret;
-
- /* Copy arch-dep-instance from template */
-- memcpy(buf, &optprobe_template_entry, TMPL_END_IDX);
-+ memcpy(buf, ktla_ktva(&optprobe_template_entry), TMPL_END_IDX);
-
- /* Set probe information */
- synthesize_set_arg1(buf + TMPL_MOVE_IDX, (unsigned long)op);
-
- /* Set probe function call */
-- synthesize_relcall(buf + TMPL_CALL_IDX, ktla_ktva(optimized_callback));
-+ synthesize_relcall(ktva_ktla(buf) + TMPL_CALL_IDX, optimized_callback);
-
- /* Set returning jmp instruction at the tail of out-of-line buffer */
-- synthesize_reljump(buf + TMPL_END_IDX + op->optinsn.size,
-- (u8 *)ktla_ktva(op->kp.addr) + op->optinsn.size);
-+ synthesize_reljump(ktva_ktla(buf) + TMPL_END_IDX + op->optinsn.size,
-+ (u8 *)op->kp.addr + op->optinsn.size);
-
- flush_icache_range((unsigned long) buf,
- (unsigned long) buf + TMPL_END_IDX +
-@@ -483,7 +483,7 @@
- /* This kprobe is really able to run optimized path. */
- op = container_of(p, struct optimized_kprobe, kp);
- /* Detour through copied instructions */
-- regs->ip = (unsigned long)op->optinsn.insn + TMPL_END_IDX;
-+ regs->ip = ktva_ktla((unsigned long)op->optinsn.insn) + TMPL_END_IDX;
- if (!reenter)
- reset_current_kprobe();
- preempt_enable_no_resched();
-diff -u linux-3.6.10-pax/arch/x86/mm/pageattr.c linux-3.6.10-pax/arch/x86/mm/pageattr.c
---- linux-3.6.10-pax/arch/x86/mm/pageattr.c 2012-10-01 02:50:39.908114641 +0200
-+++ linux-3.6.10-pax/arch/x86/mm/pageattr.c 2012-12-11 17:26:32.945231407 +0100
-@@ -320,7 +320,7 @@
- #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;
- }
-diff -u linux-3.6.10-pax/include/asm-generic/atomic-long.h linux-3.6.10-pax/include/asm-generic/atomic-long.h
---- linux-3.6.10-pax/include/asm-generic/atomic-long.h 2012-10-01 02:50:45.028114657 +0200
-+++ linux-3.6.10-pax/include/asm-generic/atomic-long.h 2012-12-12 05:17:52.051784405 +0100
-@@ -161,6 +161,15 @@
- 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;
-@@ -347,6 +356,16 @@
- 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;
-@@ -417,6 +436,7 @@
- atomic_long_add_unchecked(0, (atomic_long_unchecked_t *)NULL);
- atomic_long_sub_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);
- }
-@@ -440,6 +460,7 @@
- #define atomic_long_add_unchecked(i, v) atomic_long_add((i), (v))
- #define atomic_long_sub_unchecked(i, v) atomic_long_sub((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
-diff -u linux-3.6.10-pax/include/asm-generic/local.h linux-3.6.10-pax/include/asm-generic/local.h
---- linux-3.6.10-pax/include/asm-generic/local.h 2012-10-01 02:50:45.040114657 +0200
-+++ linux-3.6.10-pax/include/asm-generic/local.h 2012-12-12 05:17:52.051784405 +0100
-@@ -23,25 +23,37 @@
- 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 -u linux-3.6.10-pax/kernel/rcutree_plugin.h linux-3.6.10-pax/kernel/rcutree_plugin.h
---- linux-3.6.10-pax/kernel/rcutree_plugin.h 2012-10-01 02:50:46.788114663 +0200
-+++ linux-3.6.10-pax/kernel/rcutree_plugin.h 2012-12-14 22:16:31.163937553 +0100
-@@ -2174,7 +2174,7 @@
- print_cpu_stall_fast_no_hz(fast_no_hz, cpu);
- printk(KERN_ERR "\t%d: (%lu %s) idle=%03x/%llx/%d %s\n",
- cpu, ticks_value, ticks_title,
-- atomic_read(&rdtp->dynticks) & 0xfff,
-+ atomic_read_unchecked(&rdtp->dynticks) & 0xfff,
- rdtp->dynticks_nesting, rdtp->dynticks_nmi_nesting,
- fast_no_hz);
- }
-diff -u linux-3.6.10-pax/mm/slab.c linux-3.6.10-pax/mm/slab.c
---- linux-3.6.10-pax/mm/slab.c 2012-10-24 16:16:24.963043971 +0200
-+++ linux-3.6.10-pax/mm/slab.c 2012-12-11 16:50:21.576816106 +0100
-@@ -4772,7 +4772,7 @@
- if (!PageSlab(page))
- return false;
-
-- cachep = page_get_cache(page);
-+ cachep = page->slab_cache;
- return cachep->flags & SLAB_USERCOPY;
- }
-
-@@ -4796,7 +4796,7 @@
- if (!PageSlab(page))
- return NULL;
-
-- cachep = page_get_cache(page);
-+ cachep = page->slab_cache;
- if (!(cachep->flags & SLAB_USERCOPY))
- return cachep->name;
-
-diff -u linux-3.6.10-pax/tools/gcc/generate_size_overflow_hash.sh linux-3.6.10-pax/tools/gcc/generate_size_overflow_hash.sh
---- linux-3.6.10-pax/tools/gcc/generate_size_overflow_hash.sh 2012-10-01 12:50:23.776877412 +0200
-+++ linux-3.6.10-pax/tools/gcc/generate_size_overflow_hash.sh 2012-12-12 16:46:55.048275630 +0100
-@@ -31,14 +31,14 @@
- 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
-@@ -49,7 +49,7 @@
- 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"
-
-@@ -65,17 +65,17 @@
- 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"
-diff -u linux-3.6.10-pax/tools/gcc/size_overflow_hash.data linux-3.6.10-pax/tools/gcc/size_overflow_hash.data
---- linux-3.6.10-pax/tools/gcc/size_overflow_hash.data 2012-10-02 21:20:36.659370824 +0200
-+++ linux-3.6.10-pax/tools/gcc/size_overflow_hash.data 2012-12-14 22:19:29.331951684 +0100
-@@ -1,3597 +1,3618 @@
--_000001_hash alloc_dr 2 65495 _000001_hash NULL
--_000002_hash __copy_from_user 3 10918 _000002_hash NULL
--_000003_hash copy_from_user 3 17559 _000003_hash NULL
--_000004_hash __copy_from_user_inatomic 3 4365 _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 60432 _003302_hash NULL nohasharray
--_000010_hash kmalloc_array 1-2 9444 _000010_hash NULL
--_000012_hash __kmalloc_reserve 1 17080 _000012_hash NULL
--_000013_hash kmalloc_slab 1 11917 _000013_hash NULL
--_000014_hash kmemdup 2 64015 _000014_hash NULL
--_000015_hash __krealloc 2 14857 _000340_hash NULL nohasharray
--_000016_hash memdup_user 2 59590 _000016_hash NULL
--_000017_hash module_alloc 1 63630 _000017_hash NULL
--_000018_hash read_default_ldt 2 14302 _000018_hash NULL
--_000019_hash read_kcore 3 63488 _000019_hash NULL
--_000020_hash read_ldt 2 47570 _000020_hash NULL
--_000021_hash read_zero 3 19366 _000021_hash NULL
--_000022_hash __vmalloc_node 1 39308 _000022_hash NULL
--_000023_hash aac_convert_sgraw2 4 51598 _000023_hash NULL
--_000024_hash aa_simple_write_to_buffer 4-3 49683 _000024_hash NULL
--_000025_hash ablkcipher_copy_iv 3 64140 _000025_hash NULL
--_000026_hash ablkcipher_next_slow 3-4 47274 _000026_hash NULL
--_000028_hash acpi_battery_write_alarm 3 1240 _000028_hash NULL
--_000029_hash acpi_os_allocate 1 14892 _000029_hash NULL
--_000030_hash acpi_system_write_wakeup_device 3 34853 _000030_hash NULL
--_000031_hash adu_write 3 30487 _000031_hash NULL
--_000032_hash aer_inject_write 3 52399 _000032_hash NULL
--_000033_hash afs_alloc_flat_call 2-3 36399 _000033_hash NULL
--_000035_hash afs_proc_cells_write 3 61139 _000035_hash NULL
--_000036_hash afs_proc_rootcell_write 3 15822 _000036_hash NULL
--_000037_hash agp_3_5_isochronous_node_enable 3 49465 _000037_hash NULL
--_000038_hash agp_alloc_page_array 1 22554 _000038_hash NULL
--_000039_hash ah_alloc_tmp 2-3 54378 _000039_hash NULL
--_000041_hash ahash_setkey_unaligned 3 33521 _000041_hash NULL
--_000042_hash alg_setkey 3 31485 _000042_hash NULL
--_000043_hash aligned_kmalloc 1 3628 _000043_hash NULL
--_000044_hash alloc_context 1 3194 _000044_hash NULL
--_000045_hash alloc_ep_req 2 54860 _000045_hash NULL
--_000046_hash alloc_fdmem 1 27083 _000046_hash NULL
--_000047_hash alloc_flex_gd 1 57259 _000047_hash NULL
--_000048_hash alloc_sglist 1-3-2 22960 _000048_hash NULL
--_000049_hash __alloc_skb 1 23940 _000049_hash NULL
--_000050_hash aoedev_flush 2 44398 _000050_hash NULL
--_000051_hash append_to_buffer 3 63550 _000051_hash NULL
--_000052_hash asix_read_cmd 5 13245 _000052_hash NULL
--_000053_hash asix_write_cmd 5 58192 _000053_hash NULL
--_000054_hash at76_set_card_command 4 4471 _000054_hash NULL
--_000055_hash ath6kl_add_bss_if_needed 6 24317 _000055_hash NULL
--_000056_hash ath6kl_debug_roam_tbl_event 3 5224 _000056_hash NULL
--_000057_hash ath6kl_mgmt_powersave_ap 6 13791 _000057_hash NULL
--_000058_hash ath6kl_send_go_probe_resp 3 21113 _000058_hash NULL
--_000059_hash ath6kl_set_ap_probe_resp_ies 3 50539 _000059_hash NULL
--_000060_hash ath6kl_set_assoc_req_ies 3 43185 _000060_hash NULL
--_000061_hash ath6kl_wmi_bssinfo_event_rx 3 2275 _000061_hash NULL
--_000062_hash ath6kl_wmi_send_action_cmd 7 58860 _000062_hash NULL
--_000063_hash __ath6kl_wmi_send_mgmt_cmd 7 38971 _000063_hash NULL
--_000064_hash attach_hdlc_protocol 3 19986 _000064_hash NULL
--_000065_hash audio_write 4 54261 _001782_hash NULL nohasharray
--_000066_hash audit_unpack_string 3 13748 _000066_hash NULL
--_000067_hash ax25_setsockopt 5 42740 _000067_hash NULL
--_000068_hash b43_debugfs_write 3 34838 _000068_hash NULL
--_000069_hash b43legacy_debugfs_write 3 28556 _000069_hash NULL
--_000070_hash batadv_hash_new 1 40491 _000070_hash NULL
--_000071_hash batadv_orig_node_add_if 2 18433 _000071_hash NULL
--_000072_hash batadv_orig_node_del_if 2 4 _000072_hash NULL
--_000073_hash batadv_tt_changes_fill_buff 4 40323 _000073_hash NULL
--_000074_hash batadv_tt_realloc_packet_buff 4 49960 _000074_hash NULL
--_000075_hash bch_alloc 1 4593 _000075_hash NULL
--_000076_hash befs_nls2utf 3 17163 _000076_hash NULL
--_000077_hash befs_utf2nls 3 25628 _000077_hash NULL
--_000078_hash bfad_debugfs_write_regrd 3 15218 _000078_hash NULL
--_000079_hash bfad_debugfs_write_regwr 3 61841 _000079_hash NULL
--_000080_hash bio_alloc_map_data 1-2 50782 _000080_hash NULL
--_000082_hash bio_kmalloc 2 54672 _000082_hash NULL
--_000083_hash bitmap_storage_alloc 2 55077 _000083_hash NULL
--_000084_hash blkcipher_copy_iv 3 24075 _000084_hash NULL
--_000085_hash blkcipher_next_slow 3-4 52733 _000085_hash NULL
--_000087_hash bl_pipe_downcall 3 34264 _000087_hash NULL
--_000088_hash bnad_debugfs_write_regrd 3 6706 _000088_hash NULL
--_000089_hash bnad_debugfs_write_regwr 3 57500 _000089_hash NULL
--_000090_hash bnx2fc_cmd_mgr_alloc 2-3 24873 _000090_hash NULL
--_000092_hash bnx2fc_process_unsol_compl 2 15576 _000092_hash NULL
--_000093_hash bnx2_nvram_write 2-4 7790 _000093_hash NULL
--_000095_hash btmrvl_gpiogap_write 3 35053 _000095_hash NULL
--_000096_hash btmrvl_hscfgcmd_write 3 27143 _000096_hash NULL
--_000097_hash btmrvl_hscmd_write 3 27089 _000097_hash NULL
--_000098_hash btmrvl_hsmode_write 3 42252 _000098_hash NULL
--_000099_hash btmrvl_pscmd_write 3 29504 _000099_hash NULL
--_000100_hash btmrvl_psmode_write 3 3703 _000100_hash NULL
--_000101_hash btrfs_alloc_delayed_item 1 11678 _000101_hash NULL
--_000102_hash c4iw_id_table_alloc 3 48163 _000102_hash NULL
--_000103_hash cache_do_downcall 3 6926 _000103_hash NULL
--_000104_hash cachefiles_cook_key 2 33274 _000104_hash NULL
--_000105_hash cachefiles_daemon_write 3 43535 _000105_hash NULL
--_000106_hash capi_write 3 35104 _003607_hash NULL nohasharray
--_000107_hash carl9170_debugfs_write 3 50857 _000107_hash NULL
--_000108_hash cciss_allocate_sg_chain_blocks 2-3 5368 _000108_hash NULL
--_000110_hash cciss_proc_write 3 10259 _000110_hash NULL
--_000111_hash cdrom_read_cdda_old 4 27664 _000111_hash NULL
--_000112_hash ceph_alloc_page_vector 1 18710 _000112_hash NULL
--_000113_hash ceph_buffer_new 1 35974 _000113_hash NULL
--_000114_hash ceph_copy_user_to_page_vector 3-4 656 _000114_hash NULL
--_000116_hash ceph_get_direct_page_vector 2 41917 _000116_hash NULL
--_000117_hash ceph_msg_new 2 5846 _000117_hash NULL
--_000118_hash ceph_setxattr 4 18913 _000118_hash NULL
--_000119_hash cfi_read_pri 3 24366 _000119_hash NULL
--_000120_hash cgroup_write_string 5 10900 _000120_hash NULL
--_000121_hash cgroup_write_X64 5 54514 _000121_hash NULL
--_000122_hash change_xattr 5 61390 _000122_hash NULL
--_000123_hash check_load_and_stores 2 2143 _000123_hash NULL
--_000124_hash cifs_idmap_key_instantiate 3 54503 _000124_hash NULL
--_000125_hash cifs_security_flags_proc_write 3 5484 _000125_hash NULL
--_000126_hash cifs_setxattr 4 23957 _000126_hash NULL
--_000127_hash cifs_spnego_key_instantiate 3 23588 _000127_hash NULL
--_000128_hash cld_pipe_downcall 3 15058 _000128_hash NULL
--_000129_hash clear_refs_write 3 61904 _000129_hash NULL
--_000130_hash clusterip_proc_write 3 44729 _000130_hash NULL
--_000131_hash cm4040_write 3 58079 _000131_hash NULL
--_000132_hash cm_copy_private_data 2 3649 _000132_hash NULL
--_000133_hash cmm_write 3 2896 _000133_hash NULL
--_000134_hash cm_write 3 36858 _000134_hash NULL
--_000135_hash coda_psdev_write 3 1711 _000135_hash NULL
--_000136_hash codec_reg_read_file 3 36280 _000136_hash NULL
--_000137_hash command_file_write 3 31318 _000137_hash NULL
--_000138_hash command_write 3 58841 _000138_hash NULL
--_000139_hash comm_write 3 44537 _001714_hash NULL nohasharray
--_000140_hash concat_writev 3 21451 _000140_hash NULL
--_000141_hash copy_and_check 3 19089 _000141_hash NULL
--_000142_hash copy_from_user_toio 3 31966 _000142_hash NULL
--_000143_hash copy_items 6 50140 _000143_hash NULL
--_000144_hash copy_macs 4 45534 _000144_hash NULL
--_000145_hash __copy_to_user 3 17551 _000145_hash NULL
--_000146_hash copy_vm86_regs_from_user 3 45340 _000146_hash NULL
--_000147_hash core_sys_select 1 47494 _000147_hash NULL
--_000148_hash cosa_write 3 1774 _000148_hash NULL
--_000149_hash cp210x_set_config 4 46447 _000149_hash NULL
--_000150_hash create_entry 2 33479 _000150_hash NULL
--_000151_hash create_queues 2-3 9088 _000151_hash NULL
--_000153_hash create_xattr 5 54106 _000153_hash NULL
--_000154_hash create_xattr_datum 5 33356 _003443_hash NULL nohasharray
--_000155_hash csum_partial_copy_fromiovecend 3-4 9957 _000155_hash NULL
--_000157_hash ctrl_out 3-5 8712 _000157_hash NULL
--_000159_hash cxacru_cm_get_array 4 4412 _000159_hash NULL
--_000160_hash cxgbi_alloc_big_mem 1 4707 _000160_hash NULL
--_000161_hash dac960_user_command_proc_write 3 3071 _000161_hash NULL
--_000162_hash datablob_format 2 39571 _002490_hash NULL nohasharray
--_000163_hash dccp_feat_clone_sp_val 3 11942 _000163_hash NULL
--_000164_hash dccp_setsockopt_ccid 4 30701 _000164_hash NULL
--_000165_hash dccp_setsockopt_cscov 2 37766 _000165_hash NULL
--_000166_hash dccp_setsockopt_service 4 65336 _000166_hash NULL
--_000167_hash ddebug_proc_write 3 18055 _000167_hash NULL
--_000168_hash dev_config 3 8506 _000168_hash NULL
--_000169_hash device_write 3 45156 _000169_hash NULL
--_000170_hash devm_kzalloc 2 4966 _000170_hash NULL
--_000171_hash devres_alloc 2 551 _000171_hash NULL
--_000172_hash dfs_file_write 3 41196 _000172_hash NULL
--_000173_hash direct_entry 3 38836 _000173_hash NULL
--_000174_hash dispatch_ioctl 2 32357 _000174_hash NULL
--_000175_hash dispatch_proc_write 3 44320 _000175_hash NULL
--_000176_hash diva_os_copy_from_user 4 7792 _000176_hash NULL
--_000177_hash dlm_alloc_pagevec 1 54296 _000177_hash NULL
--_000178_hash dlmfs_file_read 3 28385 _000178_hash NULL
--_000179_hash dlmfs_file_write 3 6892 _000179_hash NULL
--_000180_hash dm_read 3 15674 _000180_hash NULL
--_000181_hash dm_write 3 2513 _000181_hash NULL
--_000182_hash __dn_setsockopt 5 13060 _000182_hash NULL
--_000183_hash dns_query 3 9676 _000183_hash NULL
--_000184_hash dns_resolver_instantiate 3 63314 _000184_hash NULL
--_000185_hash do_add_counters 3 3992 _000185_hash NULL
--_000186_hash __do_config_autodelink 3 58763 _000186_hash NULL
--_000187_hash do_ip_setsockopt 5 41852 _000187_hash NULL
--_000188_hash do_ipv6_setsockopt 5 18215 _000188_hash NULL
--_000189_hash do_ip_vs_set_ctl 4 48641 _000189_hash NULL
--_000190_hash do_kimage_alloc 3 64827 _000190_hash NULL
--_000191_hash do_register_entry 4 29478 _000191_hash NULL
--_000192_hash do_tty_write 5 44896 _000192_hash NULL
--_000193_hash do_update_counters 4 2259 _000193_hash NULL
--_000194_hash dsp_write 2 46218 _000194_hash NULL
--_000195_hash dup_to_netobj 3 26363 _000195_hash NULL
--_000196_hash dwc3_link_state_write 3 12641 _000196_hash NULL
--_000197_hash dwc3_mode_write 3 51997 _000197_hash NULL
--_000198_hash dwc3_testmode_write 3 30516 _000198_hash NULL
--_000199_hash ecryptfs_copy_filename 4 11868 _000199_hash NULL
--_000200_hash ecryptfs_miscdev_write 3 26847 _000200_hash NULL
--_000201_hash ecryptfs_send_miscdev 2 64816 _000201_hash NULL
--_000202_hash efx_tsoh_heap_alloc 2 58545 _000202_hash NULL
--_000203_hash emi26_writememory 4 57908 _000203_hash NULL
--_000204_hash emi62_writememory 4 29731 _000204_hash NULL
--_000205_hash encrypted_instantiate 3 3168 _000205_hash NULL
--_000206_hash encrypted_update 3 13414 _000206_hash NULL
--_000207_hash ep0_write 3 14536 _001422_hash NULL nohasharray
--_000208_hash ep_read 3 58813 _000208_hash NULL
--_000209_hash ep_write 3 59008 _000209_hash NULL
--_000210_hash erst_dbg_write 3 46715 _000210_hash NULL
--_000211_hash esp_alloc_tmp 2-3 40558 _000211_hash NULL
--_000213_hash evdev_do_ioctl 2 24459 _000213_hash NULL
--_000214_hash exofs_read_lookup_dev_table 3 17733 _000214_hash NULL
--_000215_hash ext4_kvmalloc 1 14796 _000215_hash NULL
--_000216_hash ezusb_writememory 4 45976 _000216_hash NULL
--_000217_hash fanotify_write 3 64623 _000217_hash NULL
--_000218_hash fd_copyin 3 56247 _000218_hash NULL
--_000219_hash ffs_epfile_io 3 64886 _000219_hash NULL
--_000220_hash ffs_prepare_buffer 2 59892 _000220_hash NULL
--_000221_hash f_hidg_write 3 7932 _000221_hash NULL
--_000222_hash file_read_actor 4 1401 _000222_hash NULL
--_000223_hash fill_write_buffer 3 3142 _000223_hash NULL
--_000224_hash __find_xattr 6 2117 _002425_hash NULL nohasharray
--_000225_hash fl_create 5 56435 _000225_hash NULL
--_000226_hash fs_path_ensure_buf 2 59445 _000226_hash NULL
--_000227_hash ftdi_elan_write 3 57309 _000227_hash NULL
--_000228_hash fw_iso_buffer_alloc 2 13704 _000228_hash NULL
--_000229_hash garmin_write_bulk 3 58191 _000229_hash NULL
--_000230_hash garp_attr_create 3 3883 _000230_hash NULL
--_000231_hash get_arg 3 5694 _000231_hash NULL
--_000232_hash getdqbuf 1 62908 _000232_hash NULL
--_000233_hash get_fdb_entries 3 41916 _000233_hash NULL
--_000234_hash get_fd_set 1 3866 _000234_hash NULL
--_000235_hash get_indirect_ea 4 51869 _000235_hash NULL
--_000236_hash get_registers 3 26187 _000236_hash NULL
--_000237_hash get_scq 2 10897 _000237_hash NULL
--_000238_hash get_server_iovec 2 16804 _000238_hash NULL
--_000239_hash get_ucode_user 3 38202 _000239_hash NULL
--_000240_hash get_user_cpu_mask 2 14861 _000240_hash NULL
--_000241_hash gfs2_alloc_sort_buffer 1 18275 _000241_hash NULL
--_000242_hash gfs2_glock_nq_m 1 20347 _000242_hash NULL
--_000243_hash gigaset_initcs 2 43753 _000243_hash NULL
--_000244_hash gigaset_initdriver 2 1060 _000244_hash NULL
--_000245_hash groups_alloc 1 7614 _000245_hash NULL
--_000246_hash gs_alloc_req 2 58883 _000246_hash NULL
--_000247_hash gs_buf_alloc 2 25067 _000247_hash NULL
--_000248_hash gsm_data_alloc 3 42437 _000248_hash NULL
--_000249_hash gss_pipe_downcall 3 23182 _000249_hash NULL
--_000250_hash handle_request 9 10024 _000250_hash NULL
--_000251_hash hashtab_create 3 33769 _000251_hash NULL
--_000252_hash hcd_buffer_alloc 2 27495 _000252_hash NULL
--_000253_hash hci_sock_setsockopt 5 28993 _000253_hash NULL
--_000254_hash heap_init 2 49617 _000254_hash NULL
--_000255_hash hest_ghes_dev_register 1 46766 _000255_hash NULL
--_000256_hash hidg_alloc_ep_req 2 10159 _000256_hash NULL
--_000257_hash hid_parse_report 3 51737 _000257_hash NULL
--_000258_hash hidraw_get_report 3 45609 _000258_hash NULL
--_000259_hash hidraw_report_event 3 20503 _000259_hash NULL
--_000260_hash hidraw_send_report 3 23449 _000260_hash NULL
--_000261_hash hpfs_translate_name 3 41497 _000261_hash NULL
--_000262_hash hysdn_conf_write 3 52145 _000262_hash NULL
--_000263_hash __i2400mu_send_barker 3 23652 _000263_hash NULL
--_000264_hash i2cdev_read 3 1206 _000264_hash NULL
--_000265_hash i2cdev_write 3 23310 _000265_hash NULL
--_000266_hash i2o_parm_field_get 5 34477 _000266_hash NULL
--_000267_hash i2o_parm_table_get 6 61635 _000267_hash NULL
--_000268_hash ib_copy_from_udata 3 59502 _000268_hash NULL
--_000269_hash ib_ucm_alloc_data 3 36885 _000269_hash NULL
--_000270_hash ib_umad_write 3 47993 _000270_hash NULL
--_000271_hash ib_uverbs_unmarshall_recv 5 12251 _000271_hash NULL
--_000272_hash icn_writecmd 2 38629 _000272_hash NULL
--_000273_hash ide_driver_proc_write 3 32493 _000273_hash NULL
--_000274_hash ide_settings_proc_write 3 35110 _000274_hash NULL
--_000275_hash idetape_chrdev_write 3 53976 _000275_hash NULL
--_000276_hash idmap_pipe_downcall 3 14591 _000276_hash NULL
--_000277_hash ieee80211_build_probe_req 7-5 27660 _000277_hash NULL
--_000278_hash ieee80211_if_write 3 34894 _000278_hash NULL
--_000279_hash if_write 3 51756 _000279_hash NULL
--_000280_hash ilo_write 3 64378 _000280_hash NULL
--_000281_hash ima_write_policy 3 40548 _000281_hash NULL
--_000282_hash init_data_container 1 60709 _000282_hash NULL
--_000283_hash init_send_hfcd 1 34586 _000283_hash NULL
--_000284_hash insert_dent 7 65034 _000284_hash NULL
--_000285_hash interpret_user_input 2 19393 _000285_hash NULL
--_000286_hash int_proc_write 3 39542 _000286_hash NULL
--_000287_hash ioctl_private_iw_point 7 1273 _000287_hash NULL
--_000288_hash iov_iter_copy_from_user 4 31942 _000288_hash NULL
--_000289_hash iov_iter_copy_from_user_atomic 4 56368 _000289_hash NULL
--_000290_hash iowarrior_write 3 18604 _000290_hash NULL
--_000291_hash ipc_alloc 1 1192 _000291_hash NULL
--_000292_hash ipc_rcu_alloc 1 21208 _000292_hash NULL
--_000293_hash ip_options_get_from_user 4 64958 _000293_hash NULL
--_000294_hash ipv6_renew_option 3 38813 _000294_hash NULL
--_000295_hash ip_vs_conn_fill_param_sync 6 29771 _001898_hash NULL nohasharray
--_000296_hash ip_vs_create_timeout_table 2 64478 _000296_hash NULL
--_000297_hash ipw_queue_tx_init 3 49161 _000297_hash NULL
--_000298_hash irda_setsockopt 5 19824 _000298_hash NULL
--_000299_hash irias_new_octseq_value 2 13596 _003821_hash NULL nohasharray
--_000300_hash irnet_ctrl_write 3 24139 _000300_hash NULL
--_000301_hash isdn_add_channels 3 40905 _000301_hash NULL
--_000302_hash isdn_ppp_fill_rq 2 41428 _000302_hash NULL
--_000303_hash isdn_ppp_write 4 29109 _000303_hash NULL
--_000304_hash isdn_read 3 50021 _000304_hash NULL
--_000305_hash isdn_v110_open 3 2418 _000305_hash NULL
--_000306_hash isdn_writebuf_stub 4 52383 _000306_hash NULL
--_000307_hash islpci_mgt_transmit 5 34133 _000307_hash NULL
--_000308_hash iso_callback 3 43208 _000308_hash NULL
--_000309_hash iso_packets_buffer_init 3-4 29061 _000309_hash NULL
--_000310_hash it821x_firmware_command 3 8628 _000310_hash NULL
--_000311_hash iwch_alloc_fastreg_pbl 2 40153 _000311_hash NULL
--_000312_hash iwl_calib_set 3 34400 _003754_hash NULL nohasharray
--_000313_hash jbd2_journal_init_revoke_table 1 36336 _000313_hash NULL
--_000314_hash jffs2_alloc_full_dirent 1 60179 _001158_hash NULL nohasharray
--_000315_hash journal_init_revoke_table 1 56331 _000315_hash NULL
--_000316_hash kcalloc 1-2 27770 _000316_hash NULL
--_000318_hash keyctl_instantiate_key_common 4 47889 _000318_hash NULL
--_000319_hash keyctl_update_key 3 26061 _000319_hash NULL
--_000320_hash __kfifo_alloc 2-3 22173 _000320_hash NULL
--_000322_hash kfifo_copy_from_user 3 5091 _000322_hash NULL
--_000323_hash kmalloc_node 1 50163 _003818_hash NULL nohasharray
--_000324_hash kmalloc_parameter 1 65279 _000324_hash NULL
--_000325_hash kmem_alloc 1 31920 _000325_hash NULL
--_000326_hash kobj_map 2-3 9566 _000326_hash NULL
--_000328_hash kone_receive 4 4690 _000328_hash NULL
--_000329_hash kone_send 4 63435 _000329_hash NULL
--_000330_hash krealloc 2 14908 _000330_hash NULL
--_000331_hash kvmalloc 1 32646 _000331_hash NULL
--_000332_hash kvm_read_guest_atomic 4 10765 _000332_hash NULL
--_000333_hash kvm_read_guest_cached 4 39666 _000333_hash NULL
--_000334_hash kvm_read_guest_page 5 18074 _000334_hash NULL
--_000335_hash kzalloc 1 54740 _000335_hash NULL
--_000336_hash l2cap_sock_setsockopt 5 50207 _000336_hash NULL
--_000337_hash l2cap_sock_setsockopt_old 4 29346 _000337_hash NULL
--_000338_hash lane2_associate_req 4 45398 _000338_hash NULL
--_000339_hash lbs_debugfs_write 3 48413 _000339_hash NULL
--_000340_hash lcd_write 3 14857 _000340_hash &_000015_hash
--_000341_hash ldm_frag_add 2 5611 _000341_hash NULL
--_000342_hash __lgread 4 31668 _000342_hash NULL
--_000343_hash libipw_alloc_txb 1-3-2 27579 _000343_hash NULL
--_000344_hash link_send_sections_long 4 46556 _000344_hash NULL
--_000345_hash listxattr 3 12769 _000345_hash NULL
--_000346_hash load_msg 2 95 _000346_hash NULL
--_000347_hash lpfc_debugfs_dif_err_write 3 17424 _000347_hash NULL
--_000348_hash lp_write 3 9511 _000348_hash NULL
--_000349_hash mb_cache_create 2 17307 _000349_hash NULL
--_000350_hash mce_write 3 26201 _000350_hash NULL
--_000351_hash mcs7830_get_reg 3 33308 _000351_hash NULL
--_000352_hash mcs7830_set_reg 3 31413 _000352_hash NULL
--_000353_hash memcpy_fromiovec 3 55247 _000353_hash NULL
--_000354_hash memcpy_fromiovecend 3-4 2707 _000354_hash NULL
--_000356_hash mempool_resize 2 47983 _002039_hash NULL nohasharray
--_000357_hash mem_rw 3 22085 _000357_hash NULL
--_000358_hash mgmt_control 3 7349 _000358_hash NULL
--_000359_hash mgmt_pending_add 5 46976 _000359_hash NULL
--_000360_hash mlx4_ib_alloc_fast_reg_page_list 2 46119 _000360_hash NULL
--_000361_hash mmc_alloc_sg 1 21504 _000361_hash NULL
--_000362_hash mmc_send_bus_test 4 18285 _000362_hash NULL
--_000363_hash mmc_send_cxd_data 5 38655 _000363_hash NULL
--_000364_hash module_alloc_update_bounds 1 47205 _000364_hash NULL
--_000365_hash move_addr_to_kernel 2 32673 _000365_hash NULL
--_000366_hash mpi_alloc_limb_space 1 23190 _000366_hash NULL
--_000367_hash mpi_resize 2 44674 _000367_hash NULL
--_000368_hash mptctl_getiocinfo 2 28545 _000368_hash NULL
--_000369_hash mtdchar_readoob 4 31200 _000369_hash NULL
--_000370_hash mtdchar_write 3 56831 _002122_hash NULL nohasharray
--_000371_hash mtdchar_writeoob 4 3393 _000371_hash NULL
--_000372_hash mtd_device_parse_register 5 5024 _000372_hash NULL
--_000373_hash mtf_test_write 3 18844 _000373_hash NULL
--_000374_hash mthca_alloc_icm_table 3-4 38268 _002459_hash NULL nohasharray
--_000376_hash mthca_alloc_init 2 21754 _000376_hash NULL
--_000377_hash mthca_array_init 2 39987 _000377_hash NULL
--_000378_hash mthca_buf_alloc 2 35861 _000378_hash NULL
--_000379_hash mtrr_write 3 59622 _000379_hash NULL
--_000380_hash musb_test_mode_write 3 33518 _000380_hash NULL
--_000381_hash mwifiex_get_common_rates 3 17131 _000381_hash NULL
--_000382_hash __mxt_write_reg 3 57326 _000382_hash NULL
--_000383_hash nand_bch_init 2-3 16280 _001439_hash NULL nohasharray
--_000385_hash ncp_file_write 3 3813 _000385_hash NULL
--_000386_hash ncp__vol2io 5 4804 _000386_hash NULL
--_000387_hash nes_alloc_fast_reg_page_list 2 33523 _000387_hash NULL
--_000388_hash nfc_targets_found 3 29886 _000388_hash NULL
--_000389_hash __nf_ct_ext_add_length 3 12364 _000389_hash NULL
--_000390_hash nfs4_acl_new 1 49806 _000390_hash NULL
--_000391_hash nfs4_write_cached_acl 4 15070 _000391_hash NULL
--_000392_hash nfsd_symlink 6 63442 _000392_hash NULL
--_000393_hash nfs_idmap_get_desc 2-4 42990 _000393_hash NULL
--_000395_hash nfs_readdir_make_qstr 3 12509 _000395_hash NULL
--_000396_hash note_last_dentry 3 12285 _000396_hash NULL
--_000397_hash ntfs_copy_from_user 3-5 15072 _000397_hash NULL
--_000399_hash __ntfs_copy_from_user_iovec_inatomic 3-4 38153 _000399_hash NULL
--_000401_hash ntfs_ucstonls 3-5 23097 _000401_hash NULL
--_000403_hash nvme_alloc_iod 1 56027 _000403_hash NULL
--_000404_hash nvram_write 3 3894 _000404_hash NULL
--_000405_hash o2hb_debug_create 4 18744 _000405_hash NULL
--_000406_hash o2net_send_message_vec 4 879 _002013_hash NULL nohasharray
--_000407_hash ocfs2_control_cfu 2 37750 _000407_hash NULL
--_000408_hash oom_adjust_write 3 41116 _000408_hash NULL
--_000409_hash oom_score_adj_write 3 42594 _000409_hash NULL
--_000410_hash oprofilefs_ulong_from_user 3 57251 _000410_hash NULL
--_000411_hash opticon_write 4 60775 _000411_hash NULL
--_000412_hash p9_check_zc_errors 4 15534 _000412_hash NULL
--_000413_hash packet_buffer_init 2 1607 _000413_hash NULL
--_000414_hash packet_setsockopt 5 17662 _000414_hash NULL
--_000415_hash parse_command 2 37079 _000415_hash NULL
--_000416_hash pcbit_writecmd 2 12332 _000416_hash NULL
--_000417_hash pcmcia_replace_cis 3 57066 _000417_hash NULL
--_000418_hash pgctrl_write 3 50453 _000418_hash NULL
--_000419_hash pg_write 3 40766 _000419_hash NULL
--_000420_hash pidlist_allocate 1 64404 _000420_hash NULL
--_000421_hash pipe_iov_copy_from_user 3 23102 _000421_hash NULL
--_000422_hash pipe_iov_copy_to_user 3 3447 _000422_hash NULL
--_000423_hash pkt_add 3 39897 _000423_hash NULL
--_000424_hash pktgen_if_write 3 55628 _000424_hash NULL
--_000425_hash platform_device_add_data 3 310 _000425_hash NULL
--_000426_hash platform_device_add_resources 3 13289 _000426_hash NULL
--_000427_hash pmcraid_copy_sglist 3 38431 _000427_hash NULL
--_000428_hash pm_qos_power_write 3 52513 _000428_hash NULL
--_000429_hash pnpbios_proc_write 3 19758 _000429_hash NULL
--_000430_hash pool_allocate 3 42012 _000430_hash NULL
--_000431_hash posix_acl_alloc 1 48063 _000431_hash NULL
--_000432_hash ppp_cp_parse_cr 4 5214 _000432_hash NULL
--_000433_hash ppp_write 3 34034 _000433_hash NULL
--_000434_hash pp_read 3 33210 _000434_hash NULL
--_000435_hash pp_write 3 39554 _000435_hash NULL
--_000436_hash printer_req_alloc 2 62687 _000436_hash NULL
--_000437_hash printer_write 3 60276 _000437_hash NULL
--_000438_hash prism2_info_scanresults 3 59729 _000438_hash NULL
--_000439_hash prism2_set_genericelement 3 29277 _000439_hash NULL
--_000440_hash __probe_kernel_read 3 61119 _000440_hash NULL
--_000441_hash __probe_kernel_write 3 29842 _000441_hash NULL
--_000442_hash proc_coredump_filter_write 3 25625 _000442_hash NULL
--_000443_hash _proc_do_string 2 6376 _000443_hash NULL
--_000444_hash process_vm_rw_pages 5-6 15954 _000444_hash NULL
--_000446_hash proc_loginuid_write 3 63648 _000446_hash NULL
--_000447_hash proc_pid_attr_write 3 63845 _000447_hash NULL
--_000448_hash proc_scsi_devinfo_write 3 32064 _000448_hash NULL
--_000449_hash proc_scsi_write 3 29142 _000449_hash NULL
--_000450_hash proc_scsi_write_proc 3 267 _000450_hash NULL
--_000451_hash pskb_expand_head 2-3 42881 _000451_hash NULL
--_000453_hash pstore_mkfile 5 50830 _000453_hash NULL
--_000454_hash pti_char_write 3 60960 _000454_hash NULL
--_000455_hash ptrace_writedata 4 45021 _000455_hash NULL
--_000456_hash pt_write 3 40159 _000456_hash NULL
--_000457_hash qdisc_class_hash_alloc 1 18262 _000457_hash NULL
--_000458_hash r3964_write 4 57662 _000458_hash NULL
--_000459_hash raw_seticmpfilter 3 6888 _000459_hash NULL
--_000460_hash raw_setsockopt 5 45800 _000460_hash NULL
--_000461_hash rawv6_seticmpfilter 5 12137 _000461_hash NULL
--_000462_hash ray_cs_essid_proc_write 3 17875 _000462_hash NULL
--_000463_hash rbd_add 3 16366 _000463_hash NULL
--_000464_hash rbd_snap_add 4 19678 _000464_hash NULL
--_000465_hash rdma_set_ib_paths 3 45592 _000465_hash NULL
--_000466_hash rds_page_copy_user 4 35691 _000466_hash NULL
--_000467_hash read 3 9397 _000467_hash NULL
--_000468_hash read_buf 2 20469 _000468_hash NULL
--_000469_hash read_cis_cache 4 29735 _000469_hash NULL
--_000470_hash realloc_buffer 2 25816 _000470_hash NULL
--_000471_hash receive_DataRequest 3 9904 _000471_hash NULL
--_000472_hash recent_mt_proc_write 3 8206 _000472_hash NULL
--_000473_hash regmap_access_read_file 3 37223 _000473_hash NULL
--_000474_hash regmap_bulk_write 4 59049 _000474_hash NULL
--_000475_hash regmap_map_read_file 3 37685 _000475_hash NULL
--_000476_hash regset_tls_set 4 18459 _000476_hash NULL
--_000477_hash reiserfs_add_entry 4 23062 _002792_hash NULL nohasharray
--_000478_hash remote_settings_file_write 3 22987 _000478_hash NULL
--_000479_hash request_key_auth_new 3 38092 _000479_hash NULL
--_000480_hash restore_i387_fxsave 2 17528 _000480_hash NULL
--_000481_hash revalidate 2 19043 _000481_hash NULL
--_000482_hash rfcomm_sock_setsockopt 5 18254 _000482_hash NULL
--_000483_hash rndis_add_response 2 58544 _000483_hash NULL
--_000484_hash rndis_set_oid 4 6547 _000484_hash NULL
--_000485_hash rngapi_reset 3 34366 _002137_hash NULL nohasharray
--_000486_hash roccat_common2_receive 4 50369 _000486_hash NULL
--_000487_hash roccat_common2_send 4 2422 _000487_hash NULL
--_000488_hash rpc_malloc 2 43573 _000488_hash NULL
--_000489_hash rt2x00debug_write_bbp 3 8212 _000489_hash NULL
--_000490_hash rt2x00debug_write_csr 3 64753 _000490_hash NULL
--_000491_hash rt2x00debug_write_eeprom 3 23091 _000491_hash NULL
--_000492_hash rt2x00debug_write_rf 3 38195 _000492_hash NULL
--_000493_hash rt2x00debug_write_rfcsr 3 41473 _000493_hash NULL
--_000494_hash rts51x_read_mem 4 26577 _002730_hash NULL nohasharray
--_000495_hash rts51x_read_status 4 11830 _000495_hash NULL
--_000496_hash rts51x_write_mem 4 17598 _000496_hash NULL
--_000497_hash rw_copy_check_uvector 3 45748 _003716_hash NULL nohasharray
--_000498_hash rxrpc_request_key 3 27235 _000498_hash NULL
--_000499_hash rxrpc_server_keyring 3 16431 _000499_hash NULL
--_000500_hash savemem 3 58129 _000500_hash NULL
--_000501_hash sb16_copy_from_user 10-7-6 55836 _000501_hash NULL
--_000504_hash sched_autogroup_write 3 10984 _000504_hash NULL
--_000505_hash scsi_mode_select 6 37330 _000505_hash NULL
--_000506_hash scsi_tgt_copy_sense 3 26933 _000506_hash NULL
--_000507_hash sctp_auth_create_key 1 51641 _000507_hash NULL
--_000508_hash sctp_getsockopt_delayed_ack 2 9232 _000508_hash NULL
--_000509_hash sctp_getsockopt_local_addrs 2 25178 _000509_hash NULL
--_000510_hash sctp_make_abort_user 3 29654 _000510_hash NULL
--_000511_hash sctp_setsockopt_active_key 3 43755 _000511_hash NULL
--_000512_hash sctp_setsockopt_adaptation_layer 3 26935 _003246_hash NULL nohasharray
--_000513_hash sctp_setsockopt_associnfo 3 51684 _000513_hash NULL
--_000514_hash sctp_setsockopt_auth_chunk 3 30843 _000514_hash NULL
--_000515_hash sctp_setsockopt_auth_key 3 3793 _000515_hash NULL
--_000516_hash sctp_setsockopt_autoclose 3 5775 _000516_hash NULL
--_000517_hash sctp_setsockopt_bindx 3 49870 _000517_hash NULL
--_000518_hash __sctp_setsockopt_connectx 3 46949 _000518_hash NULL
--_000519_hash sctp_setsockopt_context 3 31091 _000519_hash NULL
--_000520_hash sctp_setsockopt_default_send_param 3 49578 _000520_hash NULL
--_000521_hash sctp_setsockopt_delayed_ack 3 40129 _000521_hash NULL
--_000522_hash sctp_setsockopt_del_key 3 42304 _002709_hash NULL nohasharray
--_000523_hash sctp_setsockopt_events 3 18862 _000523_hash NULL
--_000524_hash sctp_setsockopt_hmac_ident 3 11687 _000524_hash NULL
--_000525_hash sctp_setsockopt_initmsg 3 1383 _000525_hash NULL
--_000526_hash sctp_setsockopt_maxburst 3 28041 _000526_hash NULL
--_000527_hash sctp_setsockopt_maxseg 3 11829 _000527_hash NULL
--_000528_hash sctp_setsockopt_peer_addr_params 3 734 _000528_hash NULL
--_000529_hash sctp_setsockopt_peer_primary_addr 3 13440 _000529_hash NULL
--_000530_hash sctp_setsockopt_rtoinfo 3 30941 _000530_hash NULL
--_000531_hash security_context_to_sid_core 2 29248 _000531_hash NULL
--_000532_hash sel_commit_bools_write 3 46077 _000532_hash NULL
--_000533_hash sel_write_avc_cache_threshold 3 2256 _000533_hash NULL
--_000534_hash sel_write_bool 3 46996 _000534_hash NULL
--_000535_hash sel_write_checkreqprot 3 60774 _000535_hash NULL
--_000536_hash sel_write_disable 3 10511 _000536_hash NULL
--_000537_hash sel_write_enforce 3 48998 _000537_hash NULL
--_000538_hash sel_write_load 3 63830 _000538_hash NULL
--_000539_hash send_bulk_static_data 3 61932 _000539_hash NULL
--_000540_hash set_aoe_iflist 2 42737 _000540_hash NULL
--_000541_hash setkey_unaligned 3 39474 _000541_hash NULL
--_000542_hash set_registers 3 53582 _000542_hash NULL
--_000543_hash setsockopt 5 54539 _000543_hash NULL
--_000544_hash setup_req 3 5848 _000544_hash NULL
--_000545_hash setxattr 4 37006 _000545_hash NULL
--_000546_hash sfq_alloc 1 2861 _000546_hash NULL
--_000547_hash sg_kmalloc 1 50240 _000547_hash NULL
--_000548_hash sgl_map_user_pages 2 30610 _000548_hash NULL
--_000549_hash shash_setkey_unaligned 3 8620 _000549_hash NULL
--_000550_hash shmem_xattr_alloc 2 61190 _000550_hash NULL
--_000551_hash sierra_setup_urb 5 46029 _000551_hash NULL
--_000552_hash simple_transaction_get 3 50633 _000552_hash NULL
--_000553_hash simple_write_to_buffer 2-5 3122 _000553_hash NULL
--_000555_hash sisusb_send_bulk_msg 3 17864 _000555_hash NULL
--_000556_hash skb_add_data 3 48363 _000556_hash NULL
--_000557_hash skb_do_copy_data_nocache 5 12465 _000557_hash NULL
--_000558_hash sl_alloc_bufs 2 50380 _000558_hash NULL
--_000559_hash sl_realloc_bufs 2 64086 _000559_hash NULL
--_000560_hash smk_set_cipso 3 20379 _000560_hash NULL
--_000561_hash smk_write_ambient 3 45691 _000561_hash NULL
--_000562_hash smk_write_direct 3 46363 _000562_hash NULL
--_000563_hash smk_write_doi 3 49621 _000563_hash NULL
--_000564_hash smk_write_logging 3 2618 _000564_hash NULL
--_000565_hash smk_write_mapped 3 13519 _000565_hash NULL
--_000566_hash smk_write_netlbladdr 3 42525 _000566_hash NULL
--_000567_hash smk_write_onlycap 3 14400 _000567_hash NULL
--_000568_hash smk_write_rules_list 3 18565 _000568_hash NULL
--_000569_hash snd_ctl_elem_user_tlv 3 11695 _000569_hash NULL
--_000570_hash snd_emu10k1_fx8010_read 5 9605 _000570_hash NULL
--_000571_hash snd_emu10k1_synth_copy_from_user 3-5 9061 _000571_hash NULL
--_000573_hash snd_gus_dram_poke 4 18525 _000573_hash NULL
--_000574_hash snd_hdsp_playback_copy 5 20676 _000574_hash NULL
--_000575_hash snd_info_entry_write 3 63474 _000575_hash NULL
--_000576_hash snd_korg1212_copy_from 6 36169 _000576_hash NULL
--_000577_hash snd_mem_proc_write 3 9786 _000577_hash NULL
--_000578_hash snd_midi_channel_init_set 1 30092 _000578_hash NULL
--_000579_hash snd_midi_event_new 1 9893 _000764_hash NULL nohasharray
--_000580_hash snd_opl4_mem_proc_write 5 9670 _000580_hash NULL
--_000581_hash snd_pcm_aio_read 3 13900 _000581_hash NULL
--_000582_hash snd_pcm_aio_write 3 28738 _000582_hash NULL
--_000583_hash snd_pcm_oss_write1 3 10872 _000583_hash NULL
--_000584_hash snd_pcm_oss_write2 3 27332 _000584_hash NULL
--_000585_hash snd_rawmidi_kernel_write1 4 56847 _000585_hash NULL
--_000586_hash snd_rme9652_playback_copy 5 20970 _000586_hash NULL
--_000587_hash snd_sb_csp_load_user 3 45190 _000587_hash NULL
--_000588_hash snd_usb_ctl_msg 8 8436 _000588_hash NULL
--_000589_hash sock_bindtodevice 3 50942 _000589_hash NULL
--_000590_hash sock_kmalloc 2 62205 _000590_hash NULL
--_000591_hash spidev_ioctl 2 12846 _000591_hash NULL
--_000592_hash spidev_write 3 44510 _000592_hash NULL
--_000593_hash squashfs_read_table 3 16945 _000593_hash NULL
--_000594_hash srpt_alloc_ioctx 2-3 51042 _000594_hash NULL
--_000596_hash srpt_alloc_ioctx_ring 2-4-3 49330 _000596_hash NULL
--_000597_hash st5481_setup_isocpipes 6-4 61340 _000597_hash NULL
--_000598_hash sta_agg_status_write 3 45164 _000598_hash NULL
--_000599_hash svc_setsockopt 5 36876 _000599_hash NULL
--_000600_hash sys_add_key 4 61288 _000600_hash NULL
--_000601_hash sys_modify_ldt 3 18824 _000601_hash NULL
--_000602_hash sys_semtimedop 3 4486 _000602_hash NULL
--_000603_hash sys_setdomainname 2 4373 _000603_hash NULL
--_000604_hash sys_sethostname 2 42962 _000604_hash NULL
--_000605_hash tomoyo_write_self 3 45161 _000605_hash NULL
--_000606_hash tower_write 3 8580 _000606_hash NULL
--_000607_hash tpm_write 3 50798 _000607_hash NULL
--_000608_hash trusted_instantiate 3 4710 _000608_hash NULL
--_000609_hash trusted_update 3 12664 _000609_hash NULL
--_000610_hash tty_buffer_alloc 2 45437 _000610_hash NULL
--_000611_hash __tun_chr_ioctl 4 22300 _000611_hash NULL
--_000612_hash ubi_more_leb_change_data 4 63534 _000612_hash NULL
--_000613_hash ubi_more_update_data 4 39189 _000613_hash NULL
--_000614_hash ubi_resize_volume 2 50172 _000614_hash NULL
--_000615_hash udf_alloc_i_data 2 35786 _000615_hash NULL
--_000616_hash uea_idma_write 3 64139 _000616_hash NULL
--_000617_hash uea_request 4 47613 _000617_hash NULL
--_000618_hash uea_send_modem_cmd 3 3888 _000618_hash NULL
--_000619_hash uio_write 3 43202 _000619_hash NULL
--_000620_hash um_idi_write 3 18293 _000620_hash NULL
--_000621_hash us122l_ctl_msg 8 13330 _000621_hash NULL
--_000622_hash usb_alloc_urb 1 43436 _000622_hash NULL
--_000623_hash usblp_new_writeurb 2 22894 _000623_hash NULL
--_000624_hash usblp_write 3 23178 _000624_hash NULL
--_000625_hash usbtest_alloc_urb 3-5 34446 _000625_hash NULL
--_000627_hash usbtmc_write 3 64340 _000627_hash NULL
--_000628_hash user_instantiate 3 26131 _000628_hash NULL
--_000629_hash user_update 3 41332 _000629_hash NULL
--_000630_hash uwb_rc_cmd_done 4 35892 _000630_hash NULL
--_000631_hash uwb_rc_neh_grok_event 3 55799 _000631_hash NULL
--_000632_hash v9fs_alloc_rdir_buf 2 42150 _000632_hash NULL
--_000633_hash vc_do_resize 3-4 48842 _000633_hash NULL
--_000635_hash vcs_write 3 3910 _000635_hash NULL
--_000636_hash vga_arb_write 3 36112 _000636_hash NULL
--_000637_hash vga_switcheroo_debugfs_write 3 33984 _000637_hash NULL
--_000638_hash vhci_get_user 3 45039 _000638_hash NULL
--_000639_hash video_proc_write 3 6724 _000639_hash NULL
--_000640_hash vlsi_alloc_ring 3-4 57003 _000640_hash NULL
--_000642_hash __vmalloc 1 61168 _000642_hash NULL
--_000643_hash vmalloc_32 1 1135 _000643_hash NULL
--_000644_hash vmalloc_32_user 1 37519 _000644_hash NULL
--_000645_hash vmalloc_exec 1 36132 _000645_hash NULL
--_000646_hash vmalloc_node 1 58700 _000646_hash NULL
--_000647_hash __vmalloc_node_flags 1 30352 _000647_hash NULL
--_000648_hash vmalloc_user 1 32308 _000648_hash NULL
--_000649_hash vol_cdev_direct_write 3 20751 _000649_hash NULL
--_000650_hash vp_request_msix_vectors 2 28849 _000650_hash NULL
--_000651_hash vring_add_indirect 3-4 20737 _000651_hash NULL
--_000653_hash vring_new_virtqueue 1 9671 _000653_hash NULL
--_000654_hash vxge_os_dma_malloc 2 46184 _000654_hash NULL
--_000655_hash vxge_os_dma_malloc_async 3 56348 _000655_hash NULL
--_000656_hash wdm_write 3 53735 _000656_hash NULL
--_000657_hash wiimote_hid_send 3 48528 _000657_hash NULL
--_000658_hash wlc_phy_loadsampletable_nphy 3 64367 _000658_hash NULL
--_000659_hash write 3 62671 _000659_hash NULL
--_000660_hash write_flush 3 50803 _000660_hash NULL
--_000661_hash write_rio 3 54837 _000661_hash NULL
--_000662_hash x25_asy_change_mtu 2 26928 _000662_hash NULL
--_000663_hash xdi_copy_from_user 4 8395 _000663_hash NULL
--_000664_hash xfrm_dst_alloc_copy 3 3034 _000664_hash NULL
--_000665_hash xfrm_user_policy 4 62573 _000665_hash NULL
--_000666_hash xfs_attrmulti_attr_set 4 59346 _000666_hash NULL
--_000667_hash xfs_handle_to_dentry 3 12135 _000667_hash NULL
--_000668_hash xip_file_read 3 58592 _000668_hash NULL
--_000669_hash __xip_file_write 3-4 2733 _000669_hash NULL
--_000671_hash xprt_rdma_allocate 2 31372 _000671_hash NULL
--_000672_hash zd_usb_iowrite16v_async 3 23984 _000672_hash NULL
--_000673_hash zd_usb_read_fw 4 22049 _000673_hash NULL
--_000674_hash zerocopy_sg_from_iovec 3 11828 _000674_hash NULL
--_000675_hash __a2mp_build 3 60987 _000675_hash NULL
--_000677_hash acpi_ex_allocate_name_string 2-1 7685 _001169_hash NULL nohasharray
--_000678_hash acpi_os_allocate_zeroed 1 37422 _000678_hash NULL
--_000679_hash acpi_ut_initialize_buffer 2 47143 _002830_hash NULL nohasharray
--_000680_hash ad7879_spi_xfer 3 36311 _000680_hash NULL
--_000681_hash add_new_gdb 3 27643 _000681_hash NULL
--_000682_hash add_numbered_child 5 14273 _000682_hash NULL
--_000683_hash add_res_range 4 21310 _000683_hash NULL
--_000684_hash addtgt 3 54703 _000684_hash NULL
--_000685_hash add_uuid 4 49831 _000685_hash NULL
--_000686_hash afs_cell_alloc 2 24052 _000686_hash NULL
--_000687_hash aggr_recv_addba_req_evt 4 38037 _000687_hash NULL
--_000688_hash agp_create_memory 1 1075 _000688_hash NULL
--_000689_hash agp_create_user_memory 1 62955 _000689_hash NULL
--_000690_hash alg_setsockopt 5 20985 _000690_hash NULL
--_000691_hash alloc_async 1 14208 _000691_hash NULL
--_000692_hash ___alloc_bootmem_nopanic 1 53626 _000692_hash NULL
--_000693_hash alloc_buf 1 34532 _000693_hash NULL
--_000694_hash alloc_chunk 1 49575 _000694_hash NULL
--_000695_hash alloc_context 1 41283 _000695_hash NULL
--_000696_hash alloc_ctrl_packet 1 44667 _000696_hash NULL
--_000697_hash alloc_data_packet 1 46698 _000697_hash NULL
--_000698_hash alloc_dca_provider 2 59670 _000698_hash NULL
--_000699_hash __alloc_dev_table 2 54343 _000699_hash NULL
--_000700_hash alloc_ep 1 17269 _000700_hash NULL
--_000701_hash __alloc_extent_buffer 3 15093 _000701_hash NULL
--_000702_hash alloc_group_attrs 2 9194 _000727_hash NULL nohasharray
--_000703_hash alloc_large_system_hash 2 22391 _000703_hash NULL
--_000704_hash alloc_netdev_mqs 1 30030 _000704_hash NULL
--_000705_hash __alloc_objio_seg 1 7203 _000705_hash NULL
--_000706_hash alloc_ring 2-4 15345 _000706_hash NULL
--_000707_hash alloc_ring 2-4 39151 _000707_hash NULL
--_000710_hash alloc_session 1-2 64171 _000710_hash NULL
--_000714_hash alloc_skb 1 55439 _000714_hash NULL
--_000715_hash alloc_skb_fclone 1 3467 _000715_hash NULL
--_000716_hash alloc_smp_req 1 51337 _000716_hash NULL
--_000717_hash alloc_smp_resp 1 3566 _000717_hash NULL
--_000718_hash alloc_ts_config 1 45775 _000718_hash NULL
--_000719_hash alloc_upcall 2 62186 _000719_hash NULL
--_000720_hash altera_drscan 2 48698 _000720_hash NULL
--_000721_hash altera_irscan 2 62396 _000721_hash NULL
--_000722_hash altera_set_dr_post 2 54291 _000722_hash NULL
--_000723_hash altera_set_dr_pre 2 64862 _000723_hash NULL
--_000724_hash altera_set_ir_post 2 20948 _000724_hash NULL
--_000725_hash altera_set_ir_pre 2 54103 _000725_hash NULL
--_000726_hash altera_swap_dr 2 50090 _000726_hash NULL
--_000727_hash altera_swap_ir 2 9194 _000727_hash &_000702_hash
--_000728_hash amd_create_gatt_pages 1 20537 _000728_hash NULL
--_000729_hash aoechr_write 3 62883 _003674_hash NULL nohasharray
--_000730_hash applesmc_create_nodes 2 49392 _000730_hash NULL
--_000731_hash array_zalloc 1-2 7519 _000731_hash NULL
--_000733_hash arvo_sysfs_read 6 31617 _000733_hash NULL
--_000734_hash arvo_sysfs_write 6 3311 _000734_hash NULL
--_000735_hash asd_store_update_bios 4 10165 _000735_hash NULL
--_000736_hash ata_host_alloc 2 46094 _000736_hash NULL
--_000737_hash atalk_sendmsg 4 21677 _000737_hash NULL
--_000738_hash ath6kl_cfg80211_connect_event 7-9-8 13443 _000738_hash NULL
--_000739_hash ath6kl_mgmt_tx 9 21153 _000739_hash NULL
--_000740_hash ath6kl_wmi_proc_events_vif 5 42549 _003190_hash NULL nohasharray
--_000741_hash ath6kl_wmi_roam_tbl_event_rx 3 43440 _000741_hash NULL
--_000742_hash ath6kl_wmi_send_mgmt_cmd 7 17347 _000742_hash NULL
--_000743_hash ath_descdma_setup 5 12257 _000743_hash NULL
--_000744_hash ath_rx_edma_init 2 65483 _000744_hash NULL
--_000745_hash ati_create_gatt_pages 1 4722 _003275_hash NULL nohasharray
--_000746_hash audit_expand 2 2098 _000746_hash NULL
--_000747_hash audit_init_entry 1 38644 _000747_hash NULL
--_000748_hash ax25_sendmsg 4 62770 _000748_hash NULL
--_000749_hash b1_alloc_card 1 36155 _000749_hash NULL
--_000750_hash b43_nphy_load_samples 3 36481 _000750_hash NULL
--_000751_hash batadv_orig_hash_add_if 2 10033 _000751_hash NULL
--_000752_hash batadv_orig_hash_del_if 2 48972 _000752_hash NULL
--_000753_hash batadv_tt_append_diff 4 20588 _000753_hash NULL
--_000754_hash batadv_tt_commit_changes 4 2008 _000754_hash NULL
--_000755_hash batadv_tt_prepare_packet_buff 4 1280 _000755_hash NULL
--_000756_hash bio_copy_user_iov 4 37660 _000756_hash NULL
--_000757_hash __bio_map_kern 3 47379 _000757_hash NULL
--_000758_hash bitmap_resize 2 33054 _000758_hash NULL
--_000759_hash blk_check_plugged 3 50736 _000759_hash NULL
--_000760_hash blk_register_region 1-2 51424 _000760_hash NULL
--_000762_hash bm_entry_write 3 28338 _000762_hash NULL
--_000763_hash bm_realloc_pages 2 9431 _000763_hash NULL
--_000764_hash bm_register_write 3 9893 _000764_hash &_000579_hash
--_000765_hash bm_status_write 3 12964 _000765_hash NULL
--_000766_hash br_mdb_rehash 2 42643 _000766_hash NULL
--_000767_hash btmrvl_sdio_host_to_card 3 12152 _000767_hash NULL
--_000768_hash btrfs_copy_from_user 1-3 43806 _000768_hash NULL
--_000770_hash btrfs_insert_delayed_dir_index 4 63720 _000770_hash NULL
--_000771_hash __btrfs_map_block 3 49839 _000771_hash NULL
--_000772_hash c4iw_init_resource 2-3 30393 _000772_hash NULL
--_000774_hash cache_downcall 3 13666 _000774_hash NULL
--_000775_hash cache_slow_downcall 2 8570 _000775_hash NULL
--_000776_hash caif_seqpkt_sendmsg 4 22961 _000776_hash NULL
--_000777_hash caif_stream_sendmsg 4 9110 _000777_hash NULL
--_000778_hash carl9170_cmd_buf 3 950 _000778_hash NULL
--_000779_hash cdev_add 2-3 38176 _000779_hash NULL
--_000781_hash cdrom_read_cdda 4 50478 _000781_hash NULL
--_000782_hash ceph_dns_resolve_name 2 62488 _000782_hash NULL
--_000783_hash ceph_msgpool_get 2 54258 _000783_hash NULL
--_000784_hash cfg80211_connect_result 4-6 56515 _000784_hash NULL
--_000786_hash cfg80211_disconnected 4 57 _000786_hash NULL
--_000787_hash cfg80211_inform_bss 8 19332 _000787_hash NULL
--_000788_hash cfg80211_inform_bss_frame 4 41078 _000788_hash NULL
--_000789_hash cfg80211_mlme_register_mgmt 5 19852 _000789_hash NULL
--_000790_hash cfg80211_roamed_bss 4-6 50198 _000790_hash NULL
--_000792_hash cgroup_file_write 3 52417 _000792_hash NULL
--_000793_hash cifs_readdata_alloc 1 26360 _000793_hash NULL
--_000794_hash cifs_readv_from_socket 3 19109 _000794_hash NULL
--_000795_hash cifs_writedata_alloc 1 32880 _003097_hash NULL nohasharray
--_000796_hash cnic_alloc_dma 3 34641 _000796_hash NULL
--_000797_hash cnic_init_id_tbl 2 41354 _000797_hash NULL
--_000798_hash configfs_write_file 3 61621 _000798_hash NULL
--_000799_hash construct_key 3 11329 _000799_hash NULL
--_000800_hash context_alloc 3 24645 _000800_hash NULL
--_000801_hash copy_to_user 3 57835 _000801_hash NULL
--_000802_hash cp210x_get_config 4 56229 _000802_hash NULL
--_000803_hash create_attr_set 1 22861 _000803_hash NULL
--_000804_hash create_bounce_buffer 3 39155 _000804_hash NULL
--_000805_hash create_gpadl_header 2 19064 _000805_hash NULL
--_000806_hash _create_sg_bios 4 31244 _000806_hash NULL
--_000807_hash cryptd_alloc_instance 2-3 18048 _000807_hash NULL
--_000809_hash crypto_ahash_setkey 3 55134 _000809_hash NULL
--_000810_hash crypto_alloc_instance2 3 25277 _000810_hash NULL
--_000811_hash crypto_shash_setkey 3 60483 _000811_hash NULL
--_000812_hash cxgb_alloc_mem 1 24007 _000812_hash NULL
--_000813_hash cxgbi_device_portmap_create 3 25747 _000813_hash NULL
--_000814_hash cxgbi_device_register 1-2 36746 _000814_hash NULL
--_000816_hash __cxio_init_resource_fifo 3 23447 _000816_hash NULL
--_000817_hash dccp_sendmsg 4 56058 _000817_hash NULL
--_000818_hash ddp_make_gl 1 12179 _000818_hash NULL
--_000819_hash depth_write 3 3021 _000819_hash NULL
--_000820_hash dev_irnet_write 3 11398 _000820_hash NULL
--_000821_hash dev_set_alias 3 50084 _000821_hash NULL
--_000822_hash dev_write 3 7708 _000822_hash NULL
--_000823_hash dfs_global_file_write 3 6112 _000823_hash NULL
--_000824_hash dgram_sendmsg 4 45679 _000824_hash NULL
--_000825_hash disconnect 4 32521 _000825_hash NULL
--_000826_hash dma_attach 6-7 50831 _000826_hash NULL
--_000828_hash dma_declare_coherent_memory 4-2 14244 _000828_hash NULL
--_000829_hash dn_sendmsg 4 38390 _000829_hash NULL
--_000830_hash dn_setsockopt 5 314 _000830_hash NULL
--_000831_hash do_arpt_set_ctl 4 51053 _000831_hash NULL
--_000832_hash do_dccp_setsockopt 5 54377 _003195_hash NULL nohasharray
--_000833_hash do_ip6t_set_ctl 4 60040 _000833_hash NULL
--_000834_hash do_ipt_set_ctl 4 56238 _000834_hash NULL
--_000835_hash do_jffs2_setxattr 5 25910 _000835_hash NULL
--_000836_hash do_msgsnd 4 1387 _000836_hash NULL
--_000837_hash do_pselect 1 62061 _000837_hash NULL
--_000838_hash do_raw_setsockopt 5 55215 _000838_hash NULL
--_000839_hash do_readv_writev 4 51849 _000839_hash NULL
--_000840_hash do_sync 1 9604 _000840_hash NULL
--_000841_hash dup_array 3 33551 _000841_hash NULL
--_000842_hash ecryptfs_decode_and_decrypt_filename 5 10379 _000842_hash NULL
--_000843_hash ecryptfs_encrypt_and_encode_filename 6 2109 _000843_hash NULL
--_000844_hash ecryptfs_send_message_locked 2 31801 _000844_hash NULL
--_000845_hash edac_device_alloc_ctl_info 1 5941 _000845_hash NULL
--_000846_hash edac_mc_alloc 4 3611 _000846_hash NULL
--_000847_hash edac_pci_alloc_ctl_info 1 63388 _000847_hash NULL
--_000848_hash efivar_create_sysfs_entry 2 19485 _000848_hash NULL
--_000849_hash enable_write 3 30456 _000849_hash NULL
--_000850_hash enclosure_register 3 57412 _000850_hash NULL
--_000851_hash enlarge_skb 2 44248 _002839_hash NULL nohasharray
--_000852_hash evdev_ioctl_handler 2 21705 _000852_hash NULL
--_000853_hash ext4_kvzalloc 1 47605 _000853_hash NULL
--_000854_hash extend_netdev_table 2 21453 _000854_hash NULL
--_000855_hash fcoe_ctlr_device_add 3 1793 _000855_hash NULL
--_000856_hash fd_do_readv 3 51297 _000856_hash NULL
--_000857_hash fd_do_writev 3 29329 _000857_hash NULL
--_000858_hash __feat_register_sp 6 64712 _000858_hash NULL
--_000859_hash __ffs_ep0_read_events 3 48868 _000859_hash NULL
--_000860_hash ffs_ep0_write 3 9438 _000860_hash NULL
--_000861_hash ffs_epfile_read 3 18775 _000861_hash NULL
--_000862_hash ffs_epfile_write 3 48014 _000862_hash NULL
--_000863_hash fib_info_hash_alloc 1 9075 _000863_hash NULL
--_000864_hash fillonedir 3 41746 _000864_hash NULL
--_000865_hash fs_devrw_entry 3 11924 _000865_hash NULL
--_000866_hash fs_path_prepare_for_add 2 61854 _000866_hash NULL
--_000867_hash fuse_fill_write_pages 4 53682 _000867_hash NULL
--_000868_hash fw_device_op_ioctl 2 11595 _000868_hash NULL
--_000869_hash fw_iso_buffer_init 3 54582 _000869_hash NULL
--_000870_hash fw_node_create 2 9559 _000870_hash NULL
--_000871_hash garmin_read_process 3 27509 _000871_hash NULL
--_000872_hash garp_request_join 4 7471 _000872_hash NULL
--_000873_hash generic_perform_write 3 54832 _000873_hash NULL
--_000874_hash gen_pool_add_virt 4 39913 _000874_hash NULL
--_000875_hash get_derived_key 4 61100 _000875_hash NULL
--_000876_hash get_new_cssid 2 51665 _000876_hash NULL
--_000877_hash getxattr 4 24398 _003758_hash NULL nohasharray
--_000878_hash gsm_control_reply 4 53333 _000878_hash NULL
--_000879_hash hcd_alloc_coherent 5 55862 _000879_hash NULL
--_000880_hash hci_sock_sendmsg 4 37420 _000880_hash NULL
--_000881_hash hidraw_ioctl 2 63658 _000881_hash NULL
--_000882_hash hidraw_write 3 31536 _000882_hash NULL
--_000883_hash hid_register_field 2-3 4874 _000883_hash NULL
--_000885_hash hid_report_raw_event 4 2762 _000885_hash NULL
--_000886_hash hpi_alloc_control_cache 1 35351 _000886_hash NULL
--_000887_hash hugetlbfs_read_actor 2-5-4 34547 _000887_hash NULL
--_000890_hash hvc_alloc 4 12579 _000890_hash NULL
--_000891_hash __hwahc_dev_set_key 5 46328 _000891_hash NULL
--_000892_hash i2400m_zrealloc_2x 3 54166 _001549_hash NULL nohasharray
--_000893_hash ib_alloc_device 1 26483 _000893_hash NULL
--_000894_hash ib_create_send_mad 5 1196 _000894_hash NULL
--_000895_hash ibmasm_new_command 2 25714 _000895_hash NULL
--_000896_hash ib_send_cm_drep 3 50186 _000896_hash NULL
--_000897_hash ib_send_cm_mra 4 60202 _003063_hash NULL nohasharray
--_000898_hash ib_send_cm_rtu 3 63138 _000898_hash NULL
--_000899_hash ide_core_cp_entry 3 22636 _000899_hash NULL
--_000900_hash ieee80211_if_write_smps 3 35550 _000900_hash NULL
--_000901_hash ieee80211_if_write_tkip_mic_test 3 58748 _000901_hash NULL
--_000902_hash ieee80211_if_write_tsf 3 36077 _000902_hash NULL
--_000903_hash ieee80211_if_write_uapsd_max_sp_len 3 14233 _000903_hash NULL
--_000904_hash ieee80211_if_write_uapsd_queues 3 51526 _000904_hash NULL
--_000905_hash ieee80211_key_alloc 3 19065 _000905_hash NULL
--_000906_hash ieee80211_send_probe_req 6-4 6924 _000906_hash NULL
--_000907_hash ieee80211_skb_resize 3 50211 _000907_hash NULL
--_000908_hash if_spi_host_to_card 4 62890 _000908_hash NULL
--_000909_hash if_writecmd 2 815 _000909_hash NULL
--_000910_hash init_bch 1-2 64130 _000910_hash NULL
--_000912_hash init_ipath 1 48187 _000912_hash NULL
--_000913_hash init_list_set 2-3 39188 _000913_hash NULL
--_000915_hash init_q 4 132 _000915_hash NULL
--_000916_hash init_state 2 60165 _000916_hash NULL
--_000917_hash init_tag_map 3 57515 _000917_hash NULL
--_000918_hash input_ff_create 2 21240 _000918_hash NULL
--_000919_hash input_mt_init_slots 2 31183 _000919_hash NULL
--_000920_hash interfaces 2 38859 _000920_hash NULL
--_000921_hash int_hardware_entry 3 36833 _000921_hash NULL
--_000922_hash int_hw_irq_en 3 46776 _000922_hash NULL
--_000923_hash int_tasklet_entry 3 52500 _000923_hash NULL
--_000924_hash ioat2_alloc_ring 2 11172 _000924_hash NULL
--_000925_hash ip_generic_getfrag 3-4 12187 _000925_hash NULL
--_000927_hash ip_options_get_alloc 1 7448 _000927_hash NULL
--_000928_hash ipr_alloc_ucode_buffer 1 40199 _000928_hash NULL
--_000929_hash ip_set_alloc 1 57953 _000929_hash NULL
--_000930_hash ip_setsockopt 5 33487 _000930_hash NULL
--_000931_hash ipv6_flowlabel_opt 3 58135 _001179_hash NULL nohasharray
--_000932_hash ipv6_renew_options 5 28867 _000932_hash NULL
--_000933_hash ipv6_setsockopt 5 29871 _000933_hash NULL
--_000934_hash ipxrtr_route_packet 4 54036 _000934_hash NULL
--_000935_hash irda_sendmsg 4 4388 _000935_hash NULL
--_000936_hash irda_sendmsg_dgram 4 38563 _000936_hash NULL
--_000937_hash irda_sendmsg_ultra 4 42047 _000937_hash NULL
--_000938_hash irias_add_octseq_attrib 4 29983 _000938_hash NULL
--_000939_hash irq_alloc_generic_chip 2 26650 _000939_hash NULL
--_000940_hash iscsi_alloc_session 3 49390 _000940_hash NULL
--_000941_hash iscsi_create_conn 2 50425 _000941_hash NULL
--_000942_hash iscsi_create_endpoint 1 15193 _000942_hash NULL
--_000943_hash iscsi_create_iface 5 38510 _000943_hash NULL
--_000944_hash iscsi_decode_text_input 4 58292 _000944_hash NULL
--_000945_hash iscsi_pool_init 2-4 54913 _000945_hash NULL
--_000947_hash iscsit_dump_data_payload 2 38683 _000947_hash NULL
--_000948_hash isdn_write 3 45863 _000948_hash NULL
--_000949_hash isku_receive 4 54130 _000949_hash NULL
--_000950_hash islpci_mgt_transaction 5 23610 _000950_hash NULL
--_000951_hash iso_alloc_urb 4-5 45206 _000951_hash NULL
--_000952_hash iso_sched_alloc 1 13377 _003325_hash NULL nohasharray
--_000953_hash iwl_trans_txq_alloc 3 36147 _000953_hash NULL
--_000954_hash ixgbe_alloc_q_vector 4-6 24439 _000954_hash NULL
--_000956_hash jbd2_journal_init_revoke 2 51088 _000956_hash NULL
--_000957_hash jffs2_write_dirent 5 37311 _000957_hash NULL
--_000958_hash journal_init_revoke 2 56933 _000958_hash NULL
--_000959_hash keyctl_instantiate_key 3 41855 _000959_hash NULL
--_000960_hash keyctl_instantiate_key_iov 3 16969 _000960_hash NULL
--_000961_hash __kfifo_from_user 3 20399 _000961_hash NULL
--_000962_hash kimage_crash_alloc 3 3233 _000962_hash NULL
--_000963_hash kimage_normal_alloc 3 31140 _000963_hash NULL
--_000964_hash kmem_realloc 2 37489 _000964_hash NULL
--_000965_hash kmem_zalloc 1 11510 _000965_hash NULL
--_000966_hash koneplus_sysfs_read 6 42792 _000966_hash NULL
--_000967_hash kvm_kvzalloc 1 52894 _000967_hash NULL
--_000968_hash kvm_read_guest_page_mmu 6 37611 _000968_hash NULL
--_000969_hash kvm_set_irq_routing 3 48704 _000969_hash NULL
--_000970_hash kvm_write_guest_cached 4 11106 _000970_hash NULL
--_000971_hash kvm_write_guest_page 5 63555 _002812_hash NULL nohasharray
--_000972_hash kzalloc_node 1 24352 _000972_hash NULL
--_000973_hash l2cap_skbuff_fromiovec 3-4 35003 _000973_hash NULL
--_000975_hash l2tp_ip_sendmsg 4 50411 _000975_hash NULL
--_000976_hash l2tp_session_create 1 25286 _000976_hash NULL
--_000977_hash lc_create 3 48662 _000977_hash NULL
--_000978_hash leaf_dealloc 3 29566 _000978_hash NULL
--_000979_hash linear_conf 2 23485 _003837_hash NULL nohasharray
--_000980_hash llc_ui_sendmsg 4 24987 _000980_hash NULL
--_000981_hash load_module 2 60056 _003010_hash NULL nohasharray
--_000982_hash lpfc_sli4_queue_alloc 3 62646 _000982_hash NULL
--_000983_hash mdiobus_alloc_size 1 52259 _000983_hash NULL
--_000984_hash mempool_create_node 1 3191 _000984_hash NULL
--_000985_hash mem_read 3 57631 _000985_hash NULL
--_000986_hash memstick_alloc_host 1 142 _000986_hash NULL
--_000987_hash mem_swapout_entry 3 32586 _000987_hash NULL
--_000988_hash mem_write 3 22232 _000988_hash NULL
--_000989_hash mesh_table_alloc 1 22305 _000989_hash NULL
--_000990_hash mfd_add_devices 4 16668 _000990_hash NULL
--_000991_hash mISDN_sock_sendmsg 4 41035 _000991_hash NULL
--_000992_hash mlx4_init_icm_table 4-5 2151 _000992_hash NULL
--_000994_hash mmc_alloc_host 1 48097 _000994_hash NULL
--_000995_hash mmc_test_alloc_mem 2-3 28102 _000995_hash NULL
--_000997_hash mon_bin_ioctl 3 2771 _000997_hash NULL
--_000998_hash mpi_alloc 1 18094 _000998_hash NULL
--_000999_hash mpihelp_mul_karatsuba_case 5-3 23918 _003061_hash NULL nohasharray
--_001000_hash __mptctl_ioctl 2 15875 _001000_hash NULL
--_001001_hash mtd_concat_create 2 14416 _001001_hash NULL
--_001002_hash mthca_alloc_cq_buf 3 46512 _001002_hash NULL
--_001003_hash mvumi_alloc_mem_resource 3 47750 _001003_hash NULL
--_001004_hash mwifiex_11n_create_rx_reorder_tbl 4 63806 _001004_hash NULL
--_001005_hash mwifiex_alloc_sdio_mpa_buffers 2-3 60961 _001005_hash NULL
--_001007_hash mwl8k_cmd_set_beacon 4 23110 _001007_hash NULL
--_001008_hash neigh_hash_alloc 1 17595 _001008_hash NULL
--_001009_hash __netdev_alloc_skb 2 18595 _001009_hash NULL
--_001010_hash __netlink_change_ngroups 2 46156 _001010_hash NULL
--_001011_hash netlink_sendmsg 4 33708 _001236_hash NULL nohasharray
--_001012_hash netxen_alloc_sds_rings 2 13417 _001012_hash NULL
--_001013_hash new_bind_ctl 2 35324 _001013_hash NULL
--_001014_hash new_dir 3 31919 _001014_hash NULL
--_001015_hash new_tape_buffer 2 32866 _001015_hash NULL
--_001016_hash nfc_llcp_build_tlv 3 19536 _001016_hash NULL
--_001017_hash nfc_llcp_send_i_frame 3 59130 _001017_hash NULL
--_001018_hash nf_ct_ext_create 3 51232 _001018_hash NULL
--_001019_hash nfs4_alloc_pages 1 48426 _001019_hash NULL
--_001020_hash nfs4_alloc_slots 1 2454 _003345_hash NULL nohasharray
--_001021_hash nfsctl_transaction_write 3 64800 _001021_hash NULL
--_001022_hash nfs_fscache_get_super_cookie 3 44355 _001850_hash NULL nohasharray
--_001023_hash nfs_idmap_request_key 3 30208 _001023_hash NULL
--_001024_hash nfs_pgarray_set 2 1085 _001024_hash NULL
--_001025_hash nl_pid_hash_zalloc 1 23314 _001025_hash NULL
--_001026_hash nr_sendmsg 4 53656 _001026_hash NULL
--_001027_hash nsm_create_handle 4 38060 _001027_hash NULL
--_001028_hash ntfs_copy_from_user_iovec 3-6 49829 _001028_hash NULL
--_001030_hash ntfs_file_buffered_write 4-6 41442 _001030_hash NULL
--_001032_hash __ntfs_malloc 1 34022 _001032_hash NULL
--_001033_hash nvme_alloc_queue 3 46865 _001033_hash NULL
--_001034_hash nvme_map_user_pages 3-4 41093 _001639_hash NULL nohasharray
--_001036_hash ocfs2_acl_from_xattr 2 21604 _001036_hash NULL
--_001037_hash ocfs2_control_message 3 19564 _001037_hash NULL
--_001038_hash _ore_get_io_state 3-5-4 2166 _001038_hash NULL
--_001041_hash orinoco_set_key 5-7 17878 _001041_hash NULL
--_001043_hash osdmap_set_max_osd 2 57630 _002267_hash NULL nohasharray
--_001044_hash _osd_realloc_seg 3 54352 _001044_hash NULL
--_001045_hash osst_execute 7-6 17607 _001045_hash NULL
--_001046_hash osst_write 3 31581 _001046_hash NULL
--_001047_hash otp_read 2-5-4 10594 _001047_hash NULL
--_001050_hash ovs_vport_alloc 1 33475 _001050_hash NULL
--_001051_hash p54_parse_rssical 3 64493 _001051_hash NULL
--_001052_hash p9_client_zc_rpc 7 14345 _001052_hash NULL
--_001053_hash packet_sendmsg_spkt 4 28885 _001053_hash NULL
--_001054_hash pair_device 4 61175 _003161_hash NULL nohasharray
--_001055_hash pccard_store_cis 6 18176 _001055_hash NULL
--_001056_hash pci_add_cap_save_buffer 3 3426 _001056_hash NULL
--_001057_hash pcnet32_realloc_rx_ring 3 36598 _001057_hash NULL
--_001058_hash pcnet32_realloc_tx_ring 3 38428 _001058_hash NULL
--_001059_hash pcpu_mem_zalloc 1 22948 _001059_hash NULL
--_001060_hash pep_sendmsg 4 62524 _001060_hash NULL
--_001061_hash pfkey_sendmsg 4 47394 _001061_hash NULL
--_001062_hash pidlist_resize 2 496 _001062_hash NULL
--_001063_hash pin_code_reply 4 46510 _001063_hash NULL
--_001064_hash ping_getfrag 3-4 8360 _001064_hash NULL
--_001066_hash pipe_set_size 2 5204 _001066_hash NULL
--_001067_hash pkt_bio_alloc 1 48284 _001067_hash NULL
--_001068_hash platform_create_bundle 4-6 12785 _001068_hash NULL
--_001070_hash pm8001_store_update_fw 4 55716 _001070_hash NULL
--_001071_hash pmcraid_alloc_sglist 1 9864 _001071_hash NULL
--_001072_hash pn533_dep_link_up 5 22154 _001072_hash NULL
--_001073_hash pn533_init_target_frame 3 65438 _001073_hash NULL
--_001074_hash pnp_alloc 1 24869 _001538_hash NULL nohasharray
--_001075_hash pn_sendmsg 4 12640 _001075_hash NULL
--_001076_hash pppoe_sendmsg 4 48039 _001076_hash NULL
--_001077_hash pppol2tp_sendmsg 4 56420 _001077_hash NULL
--_001078_hash prism2_info_hostscanresults 3 39657 _001078_hash NULL
--_001079_hash process_vm_rw 3-5 47533 _001079_hash NULL
--_001081_hash process_vm_rw_single_vec 1-2 26213 _001081_hash NULL
--_001083_hash proc_write 3 51003 _001083_hash NULL
--_001084_hash profile_load 3 58267 _001084_hash NULL
--_001085_hash profile_remove 3 8556 _001085_hash NULL
--_001086_hash profile_replace 3 14652 _001086_hash NULL
--_001087_hash pscsi_get_bio 1 56103 _001087_hash NULL
--_001088_hash __pskb_copy 2 9038 _001088_hash NULL
--_001089_hash __pskb_pull_tail 2 60287 _001089_hash NULL
--_001090_hash qla4xxx_alloc_work 2 44813 _001090_hash NULL
--_001091_hash qlcnic_alloc_msix_entries 2 46160 _001091_hash NULL
--_001092_hash qlcnic_alloc_sds_rings 2 26795 _001092_hash NULL
--_001093_hash queue_received_packet 5 9657 _001093_hash NULL
--_001094_hash raw_send_hdrinc 4 58803 _001094_hash NULL
--_001095_hash raw_sendmsg 4 23078 _003316_hash NULL nohasharray
--_001096_hash rawsock_sendmsg 4 60010 _001096_hash NULL
--_001097_hash rawv6_send_hdrinc 3 35425 _001097_hash NULL
--_001098_hash rawv6_setsockopt 5 56165 _001098_hash NULL
--_001099_hash rb_alloc 1 3102 _001099_hash NULL
--_001100_hash rbd_alloc_coll 1 33678 _001100_hash NULL
--_001101_hash rbd_create_rw_ops 1 55297 _001101_hash NULL
--_001102_hash rds_ib_inc_copy_to_user 3 55007 _001102_hash NULL
--_001103_hash rds_iw_inc_copy_to_user 3 29214 _001103_hash NULL
--_001104_hash rds_message_alloc 1 10517 _001104_hash NULL
--_001105_hash rds_message_copy_from_user 3 45510 _001105_hash NULL
--_001106_hash rds_message_inc_copy_to_user 3 26540 _001106_hash NULL
--_001107_hash regcache_rbtree_insert_to_block 5 58009 _001107_hash NULL
--_001108_hash _regmap_raw_write 4 42652 _001108_hash NULL
--_001109_hash regmap_register_patch 3 21681 _001109_hash NULL
--_001110_hash relay_alloc_page_array 1 52735 _001110_hash NULL
--_001111_hash remove_uuid 4 64505 _001111_hash NULL
--_001112_hash reshape_ring 2 29147 _001112_hash NULL
--_001113_hash RESIZE_IF_NEEDED 2 56286 _001113_hash NULL
--_001114_hash resize_info_buffer 2 62889 _001114_hash NULL
--_001115_hash resize_stripes 2 61650 _001115_hash NULL
--_001116_hash rfcomm_sock_sendmsg 4 37661 _003661_hash NULL nohasharray
--_001117_hash roccat_common2_send_with_status 4 50343 _001117_hash NULL
--_001118_hash rose_sendmsg 4 20249 _001118_hash NULL
--_001119_hash rsc_mgr_init 3 16299 _001119_hash NULL
--_001120_hash rxrpc_send_data 5 21553 _001120_hash NULL
--_001121_hash rxrpc_setsockopt 5 50286 _001121_hash NULL
--_001122_hash savu_sysfs_read 6 49473 _001122_hash NULL
--_001124_hash sco_send_frame 3 41815 _001124_hash NULL
--_001125_hash scsi_dispatch_cmd_entry 3 49848 _001125_hash NULL
--_001126_hash scsi_host_alloc 2 63041 _001126_hash NULL
--_001127_hash scsi_tgt_kspace_exec 8 9522 _001127_hash NULL
--_001128_hash sctp_sendmsg 4 61919 _001128_hash NULL
--_001129_hash sctp_setsockopt 5 44788 _001129_hash NULL
--_001130_hash sctp_setsockopt_connectx 3 6073 _001130_hash NULL
--_001131_hash sctp_setsockopt_connectx_old 3 22631 _001131_hash NULL
--_001132_hash sctp_tsnmap_grow 2 32784 _001132_hash NULL
--_001133_hash sctp_tsnmap_init 2 36446 _001133_hash NULL
--_001134_hash sctp_user_addto_chunk 2-3 62047 _001134_hash NULL
--_001136_hash security_context_to_sid 2 19839 _001136_hash NULL
--_001137_hash security_context_to_sid_default 2 3492 _003841_hash NULL nohasharray
--_001138_hash security_context_to_sid_force 2 20724 _001138_hash NULL
--_001139_hash self_check_write 5 50856 _001139_hash NULL
--_001140_hash selinux_transaction_write 3 59038 _001140_hash NULL
--_001141_hash sel_write_access 3 51704 _001141_hash NULL
--_001142_hash sel_write_create 3 11353 _001142_hash NULL
--_001143_hash sel_write_member 3 28800 _001143_hash NULL
--_001144_hash sel_write_relabel 3 55195 _001144_hash NULL
--_001145_hash sel_write_user 3 45060 _001145_hash NULL
--_001146_hash __seq_open_private 3 40715 _001146_hash NULL
--_001147_hash serverworks_create_gatt_pages 1 46582 _001147_hash NULL
--_001148_hash set_connectable 4 56458 _001148_hash NULL
--_001149_hash set_dev_class 4 39645 _001921_hash NULL nohasharray
--_001150_hash set_discoverable 4 48141 _001150_hash NULL
--_001151_hash set_fd_set 1 35249 _001151_hash NULL
--_001152_hash setkey 3 14987 _001152_hash NULL
--_001153_hash set_le 4 30581 _001153_hash NULL
--_001154_hash set_link_security 4 4502 _001154_hash NULL
--_001155_hash set_local_name 4 55757 _001155_hash NULL
--_001156_hash set_powered 4 12129 _001156_hash NULL
--_001157_hash set_ssp 4 62411 _001157_hash NULL
--_001158_hash sg_build_sgat 3 60179 _001158_hash &_000314_hash
--_001159_hash sg_read_oxfer 3 51724 _001159_hash NULL
--_001160_hash shmem_xattr_set 4 11843 _001160_hash NULL
--_001161_hash simple_alloc_urb 3 60420 _001161_hash NULL
--_001162_hash sisusb_send_bridge_packet 2 11649 _001162_hash NULL
--_001163_hash sisusb_send_packet 2 20891 _001163_hash NULL
--_001164_hash sisusb_write_mem_bulk 4 29678 _001164_hash NULL
--_001165_hash skb_add_data_nocache 4 4682 _001165_hash NULL
--_001166_hash skb_copy_datagram_from_iovec 2-5-4 52014 _001166_hash NULL
--_001169_hash skb_copy_expand 2-3 7685 _001169_hash &_000677_hash
--_001171_hash skb_copy_to_page_nocache 6 58624 _001171_hash NULL
--_001172_hash __skb_cow 2 39254 _001172_hash NULL
--_001173_hash skb_cow_data 2 11565 _001173_hash NULL
--_001174_hash skb_pad 2 17302 _001174_hash NULL
--_001175_hash skb_realloc_headroom 2 19516 _001175_hash NULL
--_001176_hash sk_chk_filter 2 42095 _001176_hash NULL
--_001177_hash skcipher_sendmsg 4 30290 _001177_hash NULL
--_001178_hash sl_change_mtu 2 7396 _001178_hash NULL
--_001179_hash slhc_init 1-2 58135 _001179_hash &_000931_hash
--_001181_hash sm501_create_subdev 3-4 48668 _001245_hash NULL nohasharray
--_001183_hash smk_user_access 3 24440 _001183_hash NULL
--_001184_hash smk_write_cipso2 3 1021 _001184_hash NULL
--_001185_hash smk_write_cipso 3 17989 _001185_hash NULL
--_001186_hash smk_write_load2 3 52155 _001186_hash NULL
--_001187_hash smk_write_load 3 26829 _001187_hash NULL
--_001188_hash smk_write_load_self2 3 591 _001188_hash NULL
--_001189_hash smk_write_load_self 3 7958 _001189_hash NULL
--_001190_hash snapshot_write 3 28351 _001190_hash NULL
--_001191_hash snd_ac97_pcm_assign 2 30218 _001191_hash NULL
--_001192_hash snd_card_create 4 64418 _001529_hash NULL nohasharray
--_001193_hash snd_emux_create_port 3 42533 _001193_hash NULL
--_001194_hash snd_gus_dram_write 4 38784 _001194_hash NULL
--_001195_hash snd_midi_channel_alloc_set 1 28153 _001195_hash NULL
--_001196_hash _snd_pcm_lib_alloc_vmalloc_buffer 2 17820 _001196_hash NULL
--_001197_hash snd_pcm_oss_sync1 2 45298 _001197_hash NULL
--_001198_hash snd_pcm_oss_write 3 38108 _001198_hash NULL
--_001199_hash snd_pcm_plugin_build 5 25505 _001199_hash NULL
--_001200_hash snd_rawmidi_kernel_write 3 25106 _001200_hash NULL
--_001201_hash snd_rawmidi_write 3 28008 _001201_hash NULL
--_001202_hash snd_rme32_playback_copy 5 43732 _001202_hash NULL
--_001203_hash snd_rme96_playback_copy 5 13111 _001203_hash NULL
--_001204_hash snd_seq_device_new 4 31753 _001204_hash NULL
--_001205_hash snd_seq_oss_readq_new 2 14283 _001205_hash NULL
--_001206_hash snd_vx_create 4 40948 _001206_hash NULL
--_001207_hash sock_setsockopt 5 50088 _001207_hash NULL
--_001208_hash sound_write 3 5102 _001208_hash NULL
--_001209_hash _sp2d_alloc 1-3-2 16944 _001209_hash NULL
--_001212_hash spi_alloc_master 2 45223 _001212_hash NULL
--_001213_hash spidev_message 3 5518 _001213_hash NULL
--_001214_hash spi_register_board_info 2 35651 _001214_hash NULL
--_001215_hash squashfs_cache_init 2 41656 _001215_hash NULL
--_001216_hash squashfs_read_data 6 59440 _001216_hash NULL
--_001217_hash squashfs_read_fragment_index_table 4 2506 _001217_hash NULL
--_001218_hash squashfs_read_id_index_table 4 61961 _001218_hash NULL
--_001219_hash squashfs_read_inode_lookup_table 4 64739 _001219_hash NULL
--_001220_hash srp_alloc_iu 2 44227 _001220_hash NULL
--_001221_hash srp_iu_pool_alloc 2 17920 _001221_hash NULL
--_001222_hash srp_ring_alloc 2 26760 _001222_hash NULL
--_001226_hash start_isoc_chain 2 565 _001226_hash NULL
--_001227_hash st_write 3 16874 _001227_hash NULL
--_001228_hash svc_pool_map_alloc_arrays 2 47181 _001228_hash NULL
--_001229_hash symtab_init 2 61050 _001229_hash NULL
--_001230_hash sys_bind 3 10799 _001230_hash NULL
--_001231_hash sys_connect 3 15291 _003816_hash NULL nohasharray
--_001232_hash sys_flistxattr 3 41407 _001232_hash NULL
--_001233_hash sys_fsetxattr 4 49736 _001233_hash NULL
--_001234_hash sysfs_write_file 3 57116 _001234_hash NULL
--_001235_hash sys_ipc 3 4889 _001235_hash NULL
--_001236_hash sys_keyctl 4 33708 _001236_hash &_001011_hash
--_001237_hash sys_listxattr 3 27833 _001237_hash NULL
--_001238_hash sys_llistxattr 3 4532 _001238_hash NULL
--_001239_hash sys_lsetxattr 4 61177 _001239_hash NULL
--_001240_hash sys_mq_timedsend 3 57661 _001240_hash NULL
--_001241_hash sys_sched_setaffinity 2 32046 _001241_hash NULL
--_001242_hash sys_select 1 38827 _001242_hash NULL
--_001243_hash sys_semop 3 39457 _001243_hash NULL
--_001244_hash sys_sendto 6 20809 _001244_hash NULL
--_001245_hash sys_setgroups 1 48668 _001245_hash &_001181_hash
--_001246_hash sys_setgroups16 1 48882 _001246_hash NULL
--_001247_hash sys_setxattr 4 37880 _001247_hash NULL
--_001248_hash t4_alloc_mem 1 32342 _001248_hash NULL
--_001249_hash tcf_hash_create 4 54360 _001249_hash NULL
--_001250_hash tcp_send_rcvq 3 11316 _001250_hash NULL
--_001251_hash __team_options_register 3 63941 _001251_hash NULL
--_001252_hash test_unaligned_bulk 3 52333 _001252_hash NULL
--_001253_hash tifm_alloc_adapter 1 10903 _001253_hash NULL
--_001254_hash timeout_write 3 50991 _001254_hash NULL
--_001255_hash timeradd_entry 3 49850 _001255_hash NULL
--_001256_hash tipc_link_send_sections_fast 4 37920 _001256_hash NULL
--_001257_hash tipc_subseq_alloc 1 5957 _001257_hash NULL
--_001258_hash tnode_alloc 1 49407 _001258_hash NULL
--_001259_hash tomoyo_commit_ok 2 20167 _001259_hash NULL
--_001260_hash tomoyo_scan_bprm 2-4 15642 _003488_hash NULL nohasharray
--_001262_hash tps6586x_writes 3 58689 _001262_hash NULL
--_001263_hash tty_buffer_find 2 2443 _001263_hash NULL
--_001264_hash tty_write 3 5494 _001264_hash NULL
--_001265_hash ubifs_setxattr 4 59650 _001477_hash NULL nohasharray
--_001266_hash ubi_self_check_all_ff 4 41959 _001266_hash NULL
--_001267_hash udf_sb_alloc_partition_maps 2 62313 _001267_hash NULL
--_001268_hash udplite_getfrag 3-4 14479 _001268_hash NULL
--_001270_hash ulong_write_file 3 26485 _001270_hash NULL
--_001271_hash unix_stream_sendmsg 4 61455 _001271_hash NULL
--_001272_hash unlink_queued 3-4 645 _001272_hash NULL
--_001273_hash update_pmkid 4 2481 _001273_hash NULL
--_001274_hash usb_alloc_coherent 2 65444 _001274_hash NULL
--_001275_hash vc_resize 2-3 3585 _001275_hash NULL
--_001277_hash vhci_write 3 2224 _001277_hash NULL
--_001278_hash __vhost_add_used_n 3 26554 _001278_hash NULL
--_001279_hash virtqueue_add_buf 3-4 59470 _001279_hash NULL
--_001281_hash vmalloc 1 15464 _001281_hash NULL
--_001282_hash vol_cdev_write 3 40915 _001282_hash NULL
--_001283_hash vxge_device_register 4 7752 _001283_hash NULL
--_001284_hash __vxge_hw_blockpool_malloc 2 5786 _001284_hash NULL
--_001285_hash __vxge_hw_channel_allocate 3 55462 _001285_hash NULL
--_001286_hash vzalloc 1 47421 _001286_hash NULL
--_001287_hash vzalloc_node 1 23424 _001287_hash NULL
--_001288_hash wa_nep_queue 2 8858 _001288_hash NULL
--_001289_hash __wa_xfer_setup_segs 2 56725 _001289_hash NULL
--_001290_hash wiphy_new 2 2482 _001290_hash NULL
--_001291_hash wm8350_block_write 3 19727 _001291_hash NULL
--_001292_hash wpan_phy_alloc 1 48056 _001292_hash NULL
--_001293_hash write_flush_pipefs 3 2021 _001293_hash NULL
--_001294_hash write_flush_procfs 3 44011 _001294_hash NULL
--_001295_hash wusb_ccm_mac 7 32199 _001295_hash NULL
--_001296_hash x25_sendmsg 4 12487 _001296_hash NULL
--_001297_hash xfrm_hash_alloc 1 10997 _001297_hash NULL
--_001298_hash _xfs_buf_get_pages 2 46811 _001298_hash NULL
--_001299_hash xfs_da_grow_inode_int 3 21785 _001299_hash NULL
--_001300_hash xfs_dir_cilookup_result 3 64288 _003160_hash NULL nohasharray
--_001301_hash xfs_idata_realloc 2 26199 _001301_hash NULL
--_001302_hash xfs_iext_add_indirect_multi 3 32400 _001302_hash NULL
--_001303_hash xfs_iext_inline_to_direct 2 12384 _001303_hash NULL
--_001304_hash xfs_iformat_local 4 49472 _001304_hash NULL
--_001305_hash xfs_iroot_realloc 2 46826 _001305_hash NULL
--_001306_hash xhci_alloc_stream_info 3 63902 _001306_hash NULL
--_001307_hash xlog_recover_add_to_trans 4 62839 _001307_hash NULL
--_001308_hash xprt_alloc 2 1475 _001308_hash NULL
--_001309_hash xt_alloc_table_info 1 57903 _001309_hash NULL
--_001310_hash _zd_iowrite32v_async_locked 3 39034 _001310_hash NULL
--_001311_hash zd_usb_iowrite16v 3 49744 _001311_hash NULL
--_001312_hash a2mp_send 4 41615 _001312_hash NULL
--_001313_hash acpi_ds_build_internal_package_obj 3 58271 _001313_hash NULL
--_001314_hash acpi_system_read_event 3 55362 _001314_hash NULL
--_001315_hash acpi_ut_create_buffer_object 1 42030 _001315_hash NULL
--_001316_hash acpi_ut_create_package_object 1 17594 _001316_hash NULL
--_001317_hash acpi_ut_create_string_object 1 15360 _001317_hash NULL
--_001318_hash ad7879_spi_multi_read 3 8218 _001318_hash NULL
--_001319_hash add_child 4 45201 _001319_hash NULL
--_001320_hash add_port 2 54941 _001320_hash NULL
--_001321_hash adu_read 3 24177 _001321_hash NULL
--_001322_hash afs_cell_create 2 27346 _001322_hash NULL
--_001323_hash agp_allocate_memory 2 58761 _001323_hash NULL
--_001324_hash agp_generic_alloc_user 1 9470 _001324_hash NULL
--_001325_hash alc_auto_create_extra_outs 2 18975 _001325_hash NULL
--_001326_hash alloc_agpphysmem_i8xx 1 39427 _001326_hash NULL
--_001327_hash allocate_cnodes 1 5329 _001327_hash NULL
--_001328_hash ___alloc_bootmem 1 11410 _001328_hash NULL
--_001329_hash __alloc_bootmem_low_node 2 25726 _001662_hash NULL nohasharray
--_001330_hash __alloc_bootmem_node 2 1992 _001330_hash NULL
--_001331_hash __alloc_bootmem_node_nopanic 2 6432 _001331_hash NULL
--_001332_hash __alloc_bootmem_nopanic 1 65397 _001332_hash NULL
--_001333_hash alloc_candev 1-2 7776 _001333_hash NULL
--_001335_hash _alloc_cdb_cont 2 23609 _001335_hash NULL
--_001336_hash alloc_dummy_extent_buffer 2 56374 _001336_hash NULL
--_001337_hash ____alloc_ei_netdev 1 51475 _001337_hash NULL
--_001338_hash alloc_etherdev_mqs 1 36450 _001338_hash NULL
--_001339_hash alloc_extent_buffer 3 52824 _001339_hash NULL
--_001340_hash alloc_fcdev 1 18780 _001340_hash NULL
--_001341_hash alloc_fddidev 1 15382 _001341_hash NULL
--_001342_hash _alloc_get_attr_desc 2 470 _001342_hash NULL
--_001343_hash alloc_hippi_dev 1 51320 _001343_hash NULL
--_001344_hash alloc_irdadev 1 19140 _001344_hash NULL
--_001345_hash alloc_ldt 2 21972 _001345_hash NULL
--_001346_hash alloc_ltalkdev 1 38071 _001346_hash NULL
--_001347_hash alloc_one_pg_vec_page 1 10747 _001347_hash NULL
--_001348_hash alloc_orinocodev 1 21371 _001348_hash NULL
--_001349_hash alloc_ring 2-4 18278 _001349_hash NULL
--_001351_hash _alloc_set_attr_list 4 48991 _001351_hash NULL
--_001353_hash alloc_tx 2 32143 _001353_hash NULL
--_001354_hash alloc_wr 1-2 24635 _001354_hash NULL
--_001356_hash async_setkey 3 35521 _001356_hash NULL
--_001357_hash ata_host_alloc_pinfo 3 17325 _001357_hash NULL
--_001360_hash ath6kl_connect_event 7-9-8 14267 _001360_hash NULL
--_001361_hash ath6kl_fwlog_block_read 3 49836 _001361_hash NULL
--_001362_hash ath6kl_fwlog_read 3 32101 _001362_hash NULL
--_001363_hash ath9k_wmi_cmd 4 327 _001363_hash NULL
--_001364_hash ath_rx_init 2 43564 _001364_hash NULL
--_001365_hash ath_tx_init 2 60515 _001365_hash NULL
--_001366_hash atm_alloc_charge 2 19517 _001914_hash NULL nohasharray
--_001367_hash atm_get_addr 3 31221 _001367_hash NULL
--_001368_hash audit_log_n_hex 3 45617 _001368_hash NULL
--_001369_hash audit_log_n_string 3 31705 _001369_hash NULL
--_001370_hash ax25_output 2 22736 _001370_hash NULL
--_001371_hash bcsp_prepare_pkt 3 12961 _001371_hash NULL
--_001372_hash bdx_rxdb_create 1 46525 _001372_hash NULL
--_001373_hash bdx_tx_db_init 2 41719 _001373_hash NULL
--_001374_hash bio_map_kern 3 64751 _001374_hash NULL
--_001375_hash bits_to_user 2-3 47733 _001375_hash NULL
--_001377_hash __blk_queue_init_tags 2 9778 _001377_hash NULL
--_001378_hash blk_queue_resize_tags 2 28670 _001378_hash NULL
--_001379_hash blk_rq_map_user_iov 5 16772 _001379_hash NULL
--_001380_hash bm_init 2 13529 _001380_hash NULL
--_001381_hash brcmf_alloc_wdev 1 60347 _001381_hash NULL
--_001382_hash __btrfs_buffered_write 3 35311 _002735_hash NULL nohasharray
--_001383_hash btrfs_insert_dir_item 4 59304 _001383_hash NULL
--_001384_hash btrfs_map_block 3 64379 _001384_hash NULL
--_001385_hash bt_skb_alloc 1 6404 _001385_hash NULL
--_001386_hash c4_add_card 3 54968 _001386_hash NULL
--_001387_hash cache_read 3 24790 _001387_hash NULL
--_001388_hash cache_write 3 13589 _001388_hash NULL
--_001389_hash calc_hmac 3 32010 _001389_hash NULL
--_001390_hash capinc_tty_write 3 28539 _001390_hash NULL
--_001391_hash ccid_getsockopt_builtin_ccids 2 53634 _001391_hash NULL
--_001392_hash ceph_copy_page_vector_to_user 3-4 31270 _001392_hash NULL
--_001394_hash ceph_parse_server_name 2 60318 _001394_hash NULL
--_001395_hash ceph_read_dir 3 17005 _001395_hash NULL
--_001396_hash cfg80211_roamed 5-7 32632 _001396_hash NULL
--_001398_hash cfpkt_add_body 3 44630 _001398_hash NULL
--_001399_hash cfpkt_create_pfx 1-2 23594 _001399_hash NULL
--_001401_hash cmd_complete 6 51629 _001401_hash NULL
--_001402_hash cmtp_add_msgpart 4 9252 _001402_hash NULL
--_001403_hash cmtp_send_interopmsg 7 376 _001403_hash NULL
--_001404_hash coda_psdev_read 3 35029 _001404_hash NULL
--_001405_hash construct_key_and_link 4 8321 _001405_hash NULL
--_001406_hash copy_counters_to_user 5 17027 _001406_hash NULL
--_001407_hash copy_entries_to_user 1 52367 _001407_hash NULL
--_001408_hash copy_from_buf 2-4 27308 _001408_hash NULL
--_001410_hash copy_oldmem_page 3-1 26164 _001410_hash NULL
--_001411_hash copy_to_user_fromio 3 57432 _001411_hash NULL
--_001412_hash cryptd_hash_setkey 3 42781 _001412_hash NULL
--_001413_hash crypto_authenc_esn_setkey 3 6985 _001413_hash NULL
--_001414_hash crypto_authenc_setkey 3 80 _001414_hash NULL
--_001415_hash cxgb3_get_cpl_reply_skb 2 10620 _001415_hash NULL
--_001416_hash cxgbi_ddp_reserve 4 30091 _001416_hash NULL
--_001417_hash cxio_init_resource_fifo 3 28764 _001417_hash NULL
--_001418_hash cxio_init_resource_fifo_random 3 47151 _001418_hash NULL
--_001419_hash datablob_hmac_append 3 40038 _001419_hash NULL
--_001420_hash datablob_hmac_verify 4 24786 _001420_hash NULL
--_001421_hash dataflash_read_fact_otp 3-2 33204 _001421_hash NULL
--_001422_hash dataflash_read_user_otp 3-2 14536 _001422_hash &_000207_hash
--_001423_hash dccp_feat_register_sp 5 17914 _001423_hash NULL
--_001424_hash dccp_setsockopt 5 60367 _001424_hash NULL
--_001425_hash __dev_alloc_skb 1 28681 _001425_hash NULL
--_001426_hash disk_expand_part_tbl 2 30561 _001426_hash NULL
--_001427_hash diva_os_alloc_message_buffer 1 64568 _001427_hash NULL
--_001428_hash diva_os_copy_to_user 4 48508 _001428_hash NULL
--_001429_hash diva_os_malloc 2 16406 _001429_hash NULL
--_001430_hash dmam_declare_coherent_memory 4-2 43679 _001430_hash NULL
--_001431_hash dm_vcalloc 1-2 16814 _001431_hash NULL
--_001433_hash dn_alloc_skb 2 6631 _001433_hash NULL
--_001434_hash do_proc_readlink 3 14096 _001434_hash NULL
--_001435_hash do_readlink 2 43518 _001435_hash NULL
--_001436_hash __do_replace 5 37227 _001436_hash NULL
--_001437_hash do_sigpending 2 9766 _001437_hash NULL
--_001438_hash drbd_bm_resize 2 20522 _001438_hash NULL
--_001439_hash drbd_setsockopt 5 16280 _001439_hash &_000383_hash
--_001440_hash dump_midi 3 51040 _001440_hash NULL
--_001441_hash ecryptfs_filldir 3 6622 _001441_hash NULL
--_001442_hash ecryptfs_send_message 2 18322 _001442_hash NULL
--_001443_hash ep0_read 3 38095 _001443_hash NULL
--_001444_hash evdev_ioctl 2 22371 _001444_hash NULL
--_001445_hash ext4_add_new_descs 3 19509 _001445_hash NULL
--_001446_hash fat_ioctl_filldir 3 36621 _001446_hash NULL
--_001447_hash _fc_frame_alloc 1 43568 _001447_hash NULL
--_001448_hash fc_host_post_vendor_event 3 30903 _001448_hash NULL
--_001449_hash fd_copyout 3 59323 _001449_hash NULL
--_001450_hash f_hidg_read 3 6238 _001450_hash NULL
--_001451_hash filldir 3 55137 _001451_hash NULL
--_001452_hash filldir64 3 46469 _001452_hash NULL
--_001453_hash find_skb 2 20431 _001453_hash NULL
--_001454_hash from_buffer 3 18625 _001454_hash NULL
--_001455_hash fsm_init 2 16134 _001455_hash NULL
--_001456_hash fs_path_add 3 15648 _001456_hash NULL
--_001457_hash fs_path_add_from_extent_buffer 4 27702 _001457_hash NULL
--_001458_hash fuse_perform_write 4 18457 _001458_hash NULL
--_001459_hash gem_alloc_skb 2 51715 _001459_hash NULL
--_001460_hash generic_file_buffered_write 4 25464 _001460_hash NULL
--_001461_hash gen_pool_add 3 21776 _001461_hash NULL
--_001462_hash get_packet 3 41914 _001462_hash NULL
--_001463_hash get_packet 3 5747 _001463_hash NULL
--_001464_hash get_packet_pg 4 28023 _001464_hash NULL
--_001465_hash get_skb 2 63008 _001465_hash NULL
--_001466_hash get_subdir 3 62581 _001466_hash NULL
--_001467_hash gsm_control_message 4 18209 _001467_hash NULL
--_001468_hash gsm_control_modem 3 55303 _001468_hash NULL
--_001469_hash gsm_control_rls 3 3353 _001469_hash NULL
--_001470_hash handle_received_packet 3 22457 _001470_hash NULL
--_001471_hash hash_setkey 3 48310 _001471_hash NULL
--_001472_hash hdlcdrv_register 2 6792 _001472_hash NULL
--_001473_hash hiddev_ioctl 2 36816 _001473_hash NULL
--_001474_hash hid_input_report 4 32458 _001474_hash NULL
--_001475_hash hidp_queue_report 3 1881 _001475_hash NULL
--_001476_hash __hidp_send_ctrl_message 4 28303 _001476_hash NULL
--_001477_hash hidraw_read 3 59650 _001477_hash &_001265_hash
--_001478_hash HiSax_readstatus 2 15752 _001478_hash NULL
--_001480_hash __hwahc_op_set_gtk 4 42038 _001480_hash NULL
--_001481_hash __hwahc_op_set_ptk 5 36510 _001481_hash NULL
--_001482_hash hycapi_rx_capipkt 3 11602 _001482_hash NULL
--_001483_hash i2400m_net_rx 5 27170 _001483_hash NULL
--_001484_hash ib_copy_to_udata 3 27525 _001484_hash NULL
--_001485_hash idetape_chrdev_read 3 2097 _001485_hash NULL
--_001486_hash ieee80211_alloc_hw 1 43829 _001486_hash NULL
--_001487_hash ieee80211_bss_info_update 4 13991 _001487_hash NULL
--_001488_hash igmpv3_newpack 2 35912 _001488_hash NULL
--_001489_hash ilo_read 3 32531 _001489_hash NULL
--_001490_hash init_map_ipmac 3-4 63896 _001490_hash NULL
--_001492_hash init_tid_tabs 2-4-3 13252 _001492_hash NULL
--_001495_hash iowarrior_read 3 53483 _001495_hash NULL
--_001496_hash ip_options_get 4 56538 _001496_hash NULL
--_001497_hash ipv6_getsockopt_sticky 5 56711 _001497_hash NULL
--_001498_hash ipwireless_send_packet 4 8328 _001498_hash NULL
--_001499_hash ipx_sendmsg 4 1362 _001499_hash NULL
--_001500_hash irq_domain_add_linear 2 29236 _001500_hash NULL
--_001501_hash iscsi_conn_setup 2 35159 _001501_hash NULL
--_001502_hash iscsi_create_session 3 51647 _001502_hash NULL
--_001503_hash iscsi_host_alloc 2 36671 _001503_hash NULL
--_001504_hash iscsi_if_send_reply 7 52219 _001504_hash NULL
--_001505_hash iscsi_offload_mesg 5 58425 _001505_hash NULL
--_001506_hash iscsi_ping_comp_event 5 38263 _001506_hash NULL
--_001507_hash iscsi_post_host_event 4 13473 _001507_hash NULL
--_001508_hash iscsi_recv_pdu 4 16755 _001508_hash NULL
--_001509_hash iscsi_session_setup 4-5 196 _001509_hash NULL
--_001511_hash iscsit_find_cmd_from_itt_or_dump 3 17194 _003122_hash NULL nohasharray
--_001512_hash isdn_net_ciscohdlck_alloc_skb 2 55209 _001951_hash NULL nohasharray
--_001513_hash isdn_ppp_ccp_xmit_reset 6 63297 _001513_hash NULL
--_001514_hash isdn_ppp_read 4 50356 _001514_hash NULL
--_001515_hash isdn_ppp_skb_push 2 5236 _001515_hash NULL
--_001516_hash isku_sysfs_read 6 58806 _001516_hash NULL
--_001517_hash isku_sysfs_write 6 49767 _001517_hash NULL
--_001520_hash jbd2_alloc 1 41359 _001520_hash NULL
--_001521_hash jffs2_do_link 6 42048 _001521_hash NULL
--_001522_hash jffs2_do_unlink 4 62020 _001522_hash NULL
--_001523_hash jffs2_security_setxattr 4 62107 _001523_hash NULL
--_001524_hash jffs2_trusted_setxattr 4 17048 _001524_hash NULL
--_001525_hash jffs2_user_setxattr 4 10182 _001525_hash NULL
--_001526_hash joydev_ioctl_common 2 49359 _001526_hash NULL
--_001527_hash kernel_setsockopt 5 35913 _001527_hash NULL
--_001528_hash keyctl_describe_key 3 36853 _001528_hash NULL
--_001529_hash keyctl_get_security 3 64418 _001529_hash &_001192_hash
--_001530_hash keyring_read 3 13438 _001530_hash NULL
--_001531_hash kfifo_copy_to_user 3 20646 _001531_hash NULL
--_001532_hash kmem_zalloc_large 1 56128 _001532_hash NULL
--_001533_hash kmp_init 2 41373 _001533_hash NULL
--_001534_hash koneplus_sysfs_write 6 35993 _001534_hash NULL
--_001535_hash kvm_clear_guest_page 4 2308 _001535_hash NULL
--_001536_hash kvm_read_nested_guest_page 5 13337 _001536_hash NULL
--_001537_hash _l2_alloc_skb 1 11883 _001537_hash NULL
--_001538_hash l2cap_create_basic_pdu 3 24869 _001538_hash &_001074_hash
--_001539_hash l2cap_create_connless_pdu 3 37327 _001539_hash NULL
--_001540_hash l2cap_create_iframe_pdu 3 40055 _001540_hash NULL
--_001541_hash l3_alloc_skb 1 32289 _001541_hash NULL
--_001542_hash __lgwrite 4 57669 _001542_hash NULL
--_001543_hash libfc_host_alloc 2 7917 _001543_hash NULL
--_001544_hash llc_alloc_frame 4 64366 _001544_hash NULL
--_001545_hash llcp_sock_sendmsg 4 1092 _001545_hash NULL
--_001546_hash mac_drv_rx_init 2 48898 _001546_hash NULL
--_001547_hash macvtap_get_user 4 28185 _001547_hash NULL
--_001548_hash mdc800_device_read 3 22896 _001548_hash NULL
--_001549_hash memcpy_toiovec 3 54166 _001549_hash &_000892_hash
--_001550_hash memcpy_toiovecend 3-4 19736 _001550_hash NULL
--_001552_hash mempool_create 1 29437 _001552_hash NULL
--_001553_hash mgmt_event 4 12810 _001553_hash NULL
--_001554_hash mgt_set_varlen 4 60916 _001554_hash NULL
--_001555_hash mI_alloc_skb 1 24770 _001555_hash NULL
--_001556_hash mlx4_en_create_rx_ring 3 62498 _001556_hash NULL
--_001557_hash mlx4_en_create_tx_ring 4 48501 _001557_hash NULL
--_001558_hash mlx4_init_cmpt_table 3 11569 _001558_hash NULL
--_001559_hash mon_bin_get_event 4 52863 _001559_hash NULL
--_001560_hash mousedev_read 3 47123 _001560_hash NULL
--_001561_hash move_addr_to_user 2 2868 _001561_hash NULL
--_001562_hash mpihelp_mul 5-3 27805 _001562_hash NULL
--_001564_hash mpi_set_buffer 3 65294 _001564_hash NULL
--_001565_hash mptctl_ioctl 2 12355 _001565_hash NULL
--_001566_hash msnd_fifo_alloc 2 23179 _001566_hash NULL
--_001567_hash mtdswap_init 2 55719 _001567_hash NULL
--_001568_hash mthca_alloc_resize_buf 3 60394 _001568_hash NULL
--_001569_hash mthca_init_cq 2 60011 _001569_hash NULL
--_001570_hash nci_skb_alloc 2 49757 _001570_hash NULL
--_001571_hash neigh_hash_grow 2 17283 _001571_hash NULL
--_001572_hash netdev_alloc_skb 2 62437 _001572_hash NULL
--_001573_hash __netdev_alloc_skb_ip_align 2 55067 _001573_hash NULL
--_001574_hash netlink_change_ngroups 2 16457 _001574_hash NULL
--_001575_hash new_skb 1 21148 _001575_hash NULL
--_001576_hash nfc_alloc_recv_skb 1 10244 _001576_hash NULL
--_001577_hash nfcwilink_skb_alloc 1 16167 _001577_hash NULL
--_001578_hash __nf_nat_mangle_tcp_packet 5-7 8190 _001578_hash NULL
--_001580_hash nf_nat_mangle_udp_packet 5-7 13321 _001580_hash NULL
--_001582_hash nfqnl_mangle 4-2 36226 _001582_hash NULL
--_001583_hash nfs4_realloc_slot_table 2 22859 _001583_hash NULL
--_001584_hash nfs_idmap_get_key 2 39616 _001584_hash NULL
--_001585_hash nfs_readdata_alloc 2 65015 _001585_hash NULL
--_001586_hash nfs_writedata_alloc 2 12133 _001586_hash NULL
--_001587_hash nfulnl_alloc_skb 2 65207 _001587_hash NULL
--_001588_hash ni65_alloc_mem 3 10664 _001588_hash NULL
--_001589_hash nsm_get_handle 4 52089 _001589_hash NULL
--_001590_hash ntfs_malloc_nofs 1 49572 _001590_hash NULL
--_001591_hash ntfs_malloc_nofs_nofail 1 63631 _001591_hash NULL
--_001592_hash nvme_create_queue 3 170 _001592_hash NULL
--_001593_hash ocfs2_control_write 3 54737 _001593_hash NULL
--_001595_hash orinoco_add_extscan_result 3 18207 _001595_hash NULL
--_001596_hash osd_req_read_sg_kern 5 6378 _001596_hash NULL
--_001597_hash osd_req_write_sg_kern 5 10514 _001597_hash NULL
--_001599_hash override_release 2 52032 _001599_hash NULL
--_001600_hash p9_client_read 5 19750 _001600_hash NULL
--_001601_hash packet_snd 3 13634 _001601_hash NULL
--_001602_hash pcbit_stat 2 27364 _001602_hash NULL
--_001603_hash pcpu_extend_area_map 2 12589 _001603_hash NULL
--_001604_hash pep_alloc_skb 3 46303 _001604_hash NULL
--_001605_hash pg_read 3 17276 _001605_hash NULL
--_001606_hash picolcd_debug_eeprom_read 3 14549 _001606_hash NULL
--_001607_hash pkt_alloc_packet_data 1 37928 _001607_hash NULL
--_001608_hash pmcraid_build_passthrough_ioadls 2 62034 _001608_hash NULL
--_001609_hash pn_raw_send 2 54330 _001609_hash NULL
--_001610_hash posix_clock_register 2 5662 _001610_hash NULL
--_001611_hash printer_read 3 54851 _001611_hash NULL
--_001612_hash __proc_file_read 3 54978 _001612_hash NULL
--_001613_hash pskb_may_pull 2 22546 _001613_hash NULL
--_001614_hash __pskb_pull 2 42602 _001614_hash NULL
--_001615_hash ptp_read 4 63251 _001615_hash NULL
--_001616_hash pt_read 3 49136 _001616_hash NULL
--_001617_hash put_cmsg 4 36589 _001617_hash NULL
--_001618_hash px_raw_event 4 49371 _001618_hash NULL
--_001619_hash qla4xxx_post_aen_work 3 46953 _001619_hash NULL
--_001620_hash qla4xxx_post_ping_evt_work 4 8074 _001819_hash NULL nohasharray
--_001621_hash raid5_resize 2 63306 _001621_hash NULL
--_001622_hash rawv6_sendmsg 4 20080 _001622_hash NULL
--_001623_hash rds_message_map_pages 2 31487 _001623_hash NULL
--_001624_hash rds_sendmsg 4 40976 _001624_hash NULL
--_001625_hash read_flush 3 43851 _001625_hash NULL
--_001626_hash read_profile 3 27859 _001626_hash NULL
--_001627_hash read_vmcore 3 26501 _001627_hash NULL
--_001628_hash redirected_tty_write 3 65297 _001628_hash NULL
--_001629_hash refill_pool 2 19477 _001629_hash NULL
--_001630_hash __register_chrdev 2-3 54223 _001630_hash NULL
--_001632_hash regmap_raw_write 4 53803 _001632_hash NULL
--_001633_hash reiserfs_allocate_list_bitmaps 3 21732 _001633_hash NULL
--_001634_hash reiserfs_resize 2 34377 _001634_hash NULL
--_001635_hash request_key_auth_read 3 24109 _001635_hash NULL
--_001636_hash rfcomm_wmalloc 2 58090 _001636_hash NULL
--_001637_hash rfkill_fop_read 3 54711 _001637_hash NULL
--_001638_hash rng_dev_read 3 41581 _001638_hash NULL
--_001639_hash roccat_read 3 41093 _001639_hash &_001034_hash
--_001640_hash rx 4 57944 _001640_hash NULL
--_001641_hash rxrpc_client_sendmsg 5 23236 _001641_hash NULL
--_001642_hash rxrpc_kernel_send_data 3 60083 _001642_hash NULL
--_001643_hash rxrpc_server_sendmsg 4 37331 _001643_hash NULL
--_001644_hash savu_sysfs_write 6 42273 _001644_hash NULL
--_001645_hash sco_sock_sendmsg 4 62542 _001645_hash NULL
--_001646_hash scsi_nl_send_vendor_msg 5 16394 _001646_hash NULL
--_001647_hash scsi_register 2 49094 _001647_hash NULL
--_001648_hash sctp_datamsg_from_user 4 55342 _001648_hash NULL
--_001649_hash sctp_getsockopt_events 2 3607 _001649_hash NULL
--_001650_hash sctp_getsockopt_maxburst 2 42941 _001650_hash NULL
--_001651_hash sctp_getsockopt_maxseg 2 10737 _001651_hash NULL
--_001652_hash sctp_make_chunk 4 12986 _001652_hash NULL
--_001653_hash sctpprobe_read 3 17741 _001653_hash NULL
--_001654_hash sctp_tsnmap_mark 2 35929 _001654_hash NULL
--_001655_hash sctp_ulpevent_new 1 33377 _001655_hash NULL
--_001656_hash sdhci_alloc_host 2 7509 _001656_hash NULL
--_001657_hash selinux_inode_post_setxattr 4 26037 _001657_hash NULL
--_001658_hash selinux_inode_setsecurity 4 18148 _001658_hash NULL
--_001659_hash selinux_inode_setxattr 4 10708 _001659_hash NULL
--_001660_hash selinux_secctx_to_secid 2 63744 _001660_hash NULL
--_001661_hash selinux_setprocattr 4 55611 _001661_hash NULL
--_001662_hash sel_write_context 3 25726 _001662_hash &_001329_hash
--_001663_hash send_command 4 10832 _001663_hash NULL
--_001664_hash seq_copy_in_user 3 18543 _001664_hash NULL
--_001665_hash seq_open_net 4 8968 _001779_hash NULL nohasharray
--_001666_hash seq_open_private 3 61589 _001666_hash NULL
--_001667_hash set_arg 3 42824 _001667_hash NULL
--_001668_hash sg_read 3 25799 _001668_hash NULL
--_001669_hash shash_async_setkey 3 10720 _003506_hash NULL nohasharray
--_001670_hash shash_compat_setkey 3 12267 _001670_hash NULL
--_001671_hash shmem_setxattr 4 55867 _001671_hash NULL
--_001672_hash simple_read_from_buffer 2-5 55957 _001672_hash NULL
--_001674_hash sisusb_clear_vram 2-3 57466 _001674_hash NULL
--_001676_hash sisusbcon_do_font_op 9 52271 _001676_hash NULL
--_001677_hash sisusb_copy_memory 4 35016 _001677_hash NULL
--_001678_hash sisusb_write 3 44834 _001678_hash NULL
--_001680_hash skb_cow 2 26138 _001680_hash NULL
--_001681_hash skb_cow_head 2 52495 _001681_hash NULL
--_001682_hash skb_make_writable 2 24783 _001682_hash NULL
--_001683_hash skb_padto 2 50759 _001683_hash NULL
--_001684_hash sk_stream_alloc_skb 2 57622 _001684_hash NULL
--_001685_hash smk_write_access2 3 19170 _001685_hash NULL
--_001686_hash smk_write_access 3 49561 _001686_hash NULL
--_001687_hash snd_es1938_capture_copy 5 25930 _001687_hash NULL
--_001688_hash snd_gus_dram_peek 4 9062 _001688_hash NULL
--_001689_hash snd_hdsp_capture_copy 5 4011 _001689_hash NULL
--_001690_hash snd_korg1212_copy_to 6 92 _001690_hash NULL
--_001691_hash snd_opl4_mem_proc_read 5 63774 _001691_hash NULL
--_001692_hash snd_pcm_oss_read1 3 63771 _001692_hash NULL
--_001693_hash snd_pcm_plugin_alloc 2 12580 _001693_hash NULL
--_001694_hash snd_rawmidi_kernel_read1 4 36740 _001694_hash NULL
--_001695_hash snd_rme9652_capture_copy 5 10287 _001695_hash NULL
--_001696_hash sock_alloc_send_pskb 2 21246 _001696_hash NULL
--_001697_hash sock_rmalloc 2 59740 _002491_hash NULL nohasharray
--_001698_hash sock_wmalloc 2 16472 _001698_hash NULL
--_001699_hash solos_param_store 4 34755 _001699_hash NULL
--_001702_hash srp_target_alloc 3 37288 _001702_hash NULL
--_001703_hash store_ifalias 4 35088 _001703_hash NULL
--_001704_hash store_msg 3 56417 _001704_hash NULL
--_001705_hash str_to_user 2 11411 _001705_hash NULL
--_001706_hash subbuf_read_actor 3 2071 _001706_hash NULL
--_001707_hash sys_fgetxattr 4 25166 _001707_hash NULL
--_001708_hash sys_gethostname 2 49698 _001708_hash NULL
--_001709_hash sys_getxattr 4 37418 _001709_hash NULL
--_001710_hash sys_init_module 2 36047 _001710_hash NULL
--_001711_hash sys_kexec_load 2 14222 _001711_hash NULL
--_001712_hash sys_lgetxattr 4 45531 _001712_hash NULL
--_001713_hash syslog_print 2 307 _001713_hash NULL
--_001714_hash sys_msgsnd 3 44537 _001714_hash &_000139_hash
--_001715_hash sys_process_vm_readv 3-5 19090 _003104_hash NULL nohasharray
--_001717_hash sys_process_vm_writev 3-5 4928 _001717_hash NULL
--_001719_hash sys_pselect6 1 57449 _001719_hash NULL
--_001720_hash sys_sched_getaffinity 2 60033 _001720_hash NULL
--_001721_hash sys_setsockopt 5 35320 _001721_hash NULL
--_001722_hash t3_init_l2t 1 8261 _001722_hash NULL
--_001723_hash t4vf_pktgl_to_skb 2 39005 _001723_hash NULL
--_001724_hash tcp_collapse 5-6 63294 _001724_hash NULL
--_001726_hash tcp_sendmsg 4 30296 _001726_hash NULL
--_001727_hash team_options_register 3 20091 _001727_hash NULL
--_001728_hash tipc_buf_acquire 1 60437 _001728_hash NULL
--_001729_hash tipc_cfg_reply_alloc 1 27606 _001729_hash NULL
--_001730_hash tipc_send2name 6 16809 _001730_hash NULL
--_001731_hash tipc_send2port 5 63935 _001731_hash NULL
--_001732_hash tipc_send 4 51238 _001732_hash NULL
--_001733_hash tnode_new 3 44757 _002769_hash NULL nohasharray
--_001734_hash tomoyo_read_self 3 33539 _001734_hash NULL
--_001735_hash tomoyo_update_domain 2 5498 _001735_hash NULL
--_001736_hash tomoyo_update_policy 2 40458 _001736_hash NULL
--_001737_hash tpm_read 3 50344 _001737_hash NULL
--_001738_hash TSS_rawhmac 3 17486 _001738_hash NULL
--_001739_hash __tty_buffer_request_room 2 27700 _001739_hash NULL
--_001740_hash tun_get_user 4 39099 _001740_hash NULL
--_001741_hash ubi_dump_flash 4 46381 _001741_hash NULL
--_001742_hash ubi_io_write 4-5 15870 _003453_hash NULL nohasharray
--_001744_hash udp_setsockopt 5 25985 _001744_hash NULL
--_001745_hash udpv6_setsockopt 5 18487 _001745_hash NULL
--_001746_hash uio_read 3 49300 _001746_hash NULL
--_001747_hash ulog_alloc_skb 1 23427 _001747_hash NULL
--_001748_hash unix_dgram_sendmsg 4 45699 _001748_hash NULL
--_001749_hash unlink1 3 63059 _001749_hash NULL
--_001751_hash usbdev_read 3 45114 _001751_hash NULL
--_001752_hash usblp_ioctl 2 30203 _001752_hash NULL
--_001753_hash usblp_read 3 57342 _003832_hash NULL nohasharray
--_001754_hash usbtmc_read 3 32377 _001754_hash NULL
--_001755_hash _usb_writeN_sync 4 31682 _001755_hash NULL
--_001756_hash user_read 3 51881 _001756_hash NULL
--_001757_hash vcs_read 3 8017 _001757_hash NULL
--_001758_hash vdma_mem_alloc 1 6171 _001758_hash NULL
--_001759_hash venus_create 4 20555 _001759_hash NULL
--_001760_hash venus_link 5 32165 _001760_hash NULL
--_001761_hash venus_lookup 4 8121 _001761_hash NULL
--_001762_hash venus_mkdir 4 8967 _001762_hash NULL
--_001763_hash venus_remove 4 59781 _001763_hash NULL
--_001764_hash venus_rename 4-5 17707 _003784_hash NULL nohasharray
--_001766_hash venus_rmdir 4 45564 _001766_hash NULL
--_001767_hash venus_symlink 4-6 23570 _001767_hash NULL
--_001769_hash vfs_readlink 3 54368 _001769_hash NULL
--_001770_hash vfs_readv 3 38011 _001770_hash NULL
--_001771_hash vfs_writev 3 25278 _001771_hash NULL
--_001772_hash vga_arb_read 3 4886 _001772_hash NULL
--_001773_hash vgacon_adjust_height 2 28124 _001773_hash NULL
--_001774_hash vhci_put_user 4 12604 _001774_hash NULL
--_001775_hash vhost_add_used_n 3 10760 _001775_hash NULL
--_001776_hash virtnet_send_command 5-6 61993 _001776_hash NULL
--_001778_hash vmbus_establish_gpadl 3 4495 _001778_hash NULL
--_001779_hash vol_cdev_read 3 8968 _001779_hash &_001665_hash
--_001780_hash wdm_read 3 6549 _001780_hash NULL
--_001781_hash write_adapter_mem 3 3234 _001781_hash NULL
--_001782_hash wusb_prf 7 54261 _001782_hash &_000065_hash
--_001783_hash xdi_copy_to_user 4 48900 _001783_hash NULL
--_001784_hash xfs_buf_associate_memory 3 17915 _001784_hash NULL
--_001785_hash xfs_buf_get_maps 2 4581 _001785_hash NULL
--_001786_hash xfs_buf_get_uncached 2 51477 _001786_hash NULL
--_001787_hash xfs_buf_item_get_format 2 189 _001787_hash NULL
--_001788_hash xfs_buf_map_from_irec 5 2368 _002641_hash NULL nohasharray
--_001789_hash xfs_dir2_block_to_sf 3 37868 _001789_hash NULL
--_001790_hash xfs_dir2_leaf_getdents 3 23841 _001790_hash NULL
--_001791_hash xfs_dir2_sf_addname_hard 3 54254 _001791_hash NULL
--_001792_hash xfs_efd_init 3 5463 _001792_hash NULL
--_001793_hash xfs_efi_init 2 5476 _001793_hash NULL
--_001794_hash xfs_iext_realloc_direct 2 20521 _001794_hash NULL
--_001795_hash xfs_iext_realloc_indirect 2 59211 _001795_hash NULL
--_001796_hash xfs_inumbers_fmt 3 12817 _001796_hash NULL
--_001797_hash xhci_alloc_streams 5 37586 _001797_hash NULL
--_001798_hash xlog_recover_add_to_cont_trans 4 44102 _001798_hash NULL
--_001799_hash xz_dec_lzma2_create 2 36353 _002713_hash NULL nohasharray
--_001800_hash _zd_iowrite32v_locked 3 44725 _001800_hash NULL
--_001801_hash a2mp_chan_alloc_skb_cb 2 27159 _001801_hash NULL
--_001802_hash aat2870_reg_read_file 3 12221 _001802_hash NULL
--_001803_hash add_partition 2 55588 _001803_hash NULL
--_001804_hash add_sctp_bind_addr 3 12269 _001804_hash NULL
--_001805_hash _add_sg_continuation_descriptor 3 54721 _001805_hash NULL
--_001806_hash afs_cell_lookup 2 8482 _001806_hash NULL
--_001807_hash afs_send_simple_reply 3 63940 _001807_hash NULL
--_001808_hash agp_allocate_memory_wrap 1 16576 _001808_hash NULL
--_001809_hash __alloc_bootmem 1 31498 _001809_hash NULL
--_001810_hash __alloc_bootmem_low 1 43423 _003425_hash NULL nohasharray
--_001811_hash __alloc_bootmem_node_high 2 65076 _001811_hash NULL
--_001812_hash alloc_cc770dev 1 48186 _001812_hash NULL
--_001813_hash __alloc_ei_netdev 1 29338 _001813_hash NULL
--_001814_hash __alloc_eip_netdev 1 51549 _001814_hash NULL
--_001815_hash alloc_libipw 1 22708 _001815_hash NULL
--_001816_hash _alloc_mISDN_skb 3 52232 _001816_hash NULL
--_001817_hash alloc_pg_vec 2 8533 _001817_hash NULL
--_001818_hash alloc_sja1000dev 1 17868 _001818_hash NULL
--_001819_hash alloc_targets 2 8074 _001819_hash &_001620_hash
--_001822_hash ath6kl_disconnect_timeout_read 3 3650 _001822_hash NULL
--_001823_hash ath6kl_endpoint_stats_read 3 41554 _001823_hash NULL
--_001824_hash ath6kl_fwlog_mask_read 3 2050 _001824_hash NULL
--_001825_hash ath6kl_keepalive_read 3 44303 _001825_hash NULL
--_001826_hash ath6kl_listen_int_read 3 10355 _001826_hash NULL
--_001827_hash ath6kl_lrssi_roam_read 3 61022 _001827_hash NULL
--_001828_hash ath6kl_regdump_read 3 14393 _001828_hash NULL
--_001829_hash ath6kl_regread_read 3 25884 _001829_hash NULL
--_001830_hash ath6kl_regwrite_read 3 48747 _001830_hash NULL
--_001831_hash ath6kl_roam_table_read 3 26166 _001831_hash NULL
--_001832_hash ath9k_debugfs_read_buf 3 25316 _001832_hash NULL
--_001833_hash ath9k_multi_regread 4 65056 _001833_hash NULL
--_001834_hash ath_rxbuf_alloc 2 24745 _001834_hash NULL
--_001835_hash atk_debugfs_ggrp_read 3 29522 _001835_hash NULL
--_001836_hash audit_log_n_untrustedstring 3 9548 _001836_hash NULL
--_001837_hash ax25_send_frame 2 19964 _001837_hash NULL
--_001838_hash b43_debugfs_read 3 24425 _001838_hash NULL
--_001839_hash b43legacy_debugfs_read 3 2473 _001839_hash NULL
--_001840_hash batadv_bla_is_backbone_gw 3 58488 _001840_hash NULL
--_001841_hash batadv_check_management_packet 3 52993 _001841_hash NULL
--_001842_hash batadv_check_unicast_packet 2 10866 _001842_hash NULL
--_001843_hash batadv_interface_rx 4 8568 _001843_hash NULL
--_001844_hash batadv_skb_head_push 2 11360 _001844_hash NULL
--_001845_hash bchannel_get_rxbuf 2 37213 _001845_hash NULL
--_001846_hash bcm_recvmsg 4 43992 _001846_hash NULL
--_001847_hash bfad_debugfs_read 3 13119 _001847_hash NULL
--_001848_hash bfad_debugfs_read_regrd 3 57830 _001848_hash NULL
--_001849_hash blk_init_tags 1 30592 _001849_hash NULL
--_001850_hash blk_queue_init_tags 2 44355 _001850_hash &_001022_hash
--_001851_hash blk_rq_map_kern 4 47004 _001851_hash NULL
--_001852_hash bm_entry_read 3 10976 _001852_hash NULL
--_001853_hash bm_status_read 3 19583 _001853_hash NULL
--_001854_hash bnad_debugfs_read 3 50665 _001854_hash NULL
--_001855_hash bnad_debugfs_read_regrd 3 51308 _001855_hash NULL
--_001856_hash bnx2i_send_nl_mesg 4 53353 _001856_hash NULL
--_001857_hash brcmf_debugfs_sdio_counter_read 3 58369 _001857_hash NULL
--_001858_hash brcmf_sdio_assert_info 4 52653 _001858_hash NULL
--_001859_hash brcmf_sdio_dump_console 4 37455 _001859_hash NULL
--_001860_hash brcmf_sdio_trap_info 4 48510 _001860_hash NULL
--_001861_hash btmrvl_curpsmode_read 3 46939 _001861_hash NULL
--_001862_hash btmrvl_gpiogap_read 3 4718 _001862_hash NULL
--_001863_hash btmrvl_hscfgcmd_read 3 56303 _001863_hash NULL
--_001864_hash btmrvl_hscmd_read 3 1614 _001864_hash NULL
--_001865_hash btmrvl_hsmode_read 3 1647 _001865_hash NULL
--_001866_hash btmrvl_hsstate_read 3 920 _001866_hash NULL
--_001867_hash btmrvl_pscmd_read 3 24308 _001867_hash NULL
--_001868_hash btmrvl_psmode_read 3 22395 _001868_hash NULL
--_001869_hash btmrvl_psstate_read 3 50683 _001869_hash NULL
--_001870_hash btmrvl_txdnldready_read 3 413 _001870_hash NULL
--_001871_hash btrfs_add_link 5 9973 _001871_hash NULL
--_001872_hash __btrfs_direct_write 4 22273 _001872_hash NULL
--_001873_hash btrfs_discard_extent 2 38547 _001873_hash NULL
--_001874_hash btrfs_file_aio_write 4 21520 _001874_hash NULL
--_001875_hash btrfs_find_create_tree_block 3 55812 _001875_hash NULL
--_001876_hash btrfsic_map_block 2 56751 _001876_hash NULL
--_001877_hash cache_read_pipefs 3 47615 _001877_hash NULL
--_001878_hash cache_read_procfs 3 52882 _001878_hash NULL
--_001879_hash cache_write_pipefs 3 48270 _001879_hash NULL
--_001880_hash cache_write_procfs 3 22491 _001880_hash NULL
--_001881_hash caif_stream_recvmsg 4 13173 _001881_hash NULL
--_001882_hash carl9170_alloc 1 27 _001882_hash NULL
--_001883_hash carl9170_debugfs_read 3 47738 _001883_hash NULL
--_001884_hash ceph_msgpool_init 4 34599 _001884_hash NULL
--_001885_hash cfpkt_add_trail 3 27260 _001885_hash NULL
--_001886_hash cfpkt_create 1 18197 _001886_hash NULL
--_001887_hash cfpkt_pad_trail 2 55511 _003606_hash NULL nohasharray
--_001888_hash cfpkt_split 2 47541 _001888_hash NULL
--_001889_hash cgroup_read_s64 5 19570 _001889_hash NULL
--_001890_hash cgroup_read_u64 5 45532 _001890_hash NULL
--_001891_hash channel_type_read 3 47308 _001891_hash NULL
--_001892_hash check_header 2 56930 _001892_hash NULL
--_001893_hash codec_list_read_file 3 24910 _001893_hash NULL
--_001894_hash configfs_read_file 3 1683 _001894_hash NULL
--_001895_hash console_store 4 36007 _001895_hash NULL
--_001896_hash cpuset_common_file_read 5 8800 _001896_hash NULL
--_001897_hash create_subvol 4 30836 _001897_hash NULL
--_001898_hash cxio_hal_init_resource 2-7-6 29771 _001898_hash &_000295_hash
--_001901_hash cxio_hal_init_rhdl_resource 1 25104 _001901_hash NULL
--_001902_hash dai_list_read_file 3 25421 _001902_hash NULL
--_001903_hash dapm_bias_read_file 3 64715 _001903_hash NULL
--_001904_hash dapm_widget_power_read_file 3 59950 _001983_hash NULL nohasharray
--_001907_hash dbgfs_frame 3 45917 _001907_hash NULL
--_001908_hash dbgfs_state 3 38894 _001908_hash NULL
--_001909_hash dccp_manip_pkt 2 30229 _001909_hash NULL
--_001910_hash ddp_ppod_write_idata 5 25610 _001910_hash NULL
--_001911_hash debugfs_read 3 62535 _001911_hash NULL
--_001912_hash debug_output 3 18575 _001912_hash NULL
--_001913_hash debug_read 3 19322 _001913_hash NULL
--_001914_hash dev_alloc_skb 1 19517 _001914_hash &_001366_hash
--_001915_hash dfs_file_read 3 18116 _001915_hash NULL
--_001916_hash diva_alloc_dma_map 2 23798 _001916_hash NULL
--_001917_hash diva_xdi_write 4 63975 _001917_hash NULL
--_001918_hash dma_memcpy_pg_to_iovec 6 1725 _001918_hash NULL
--_001919_hash dma_memcpy_to_iovec 5 12173 _001919_hash NULL
--_001920_hash dma_show_regs 3 35266 _001920_hash NULL
--_001921_hash dm_exception_table_init 2 39645 _001921_hash &_001149_hash
--_001922_hash dn_nsp_do_disc 2-6 49474 _001922_hash NULL
--_001924_hash dn_recvmsg 4 17213 _001924_hash NULL
--_001925_hash dns_resolver_read 3 54658 _001925_hash NULL
--_001926_hash do_msgrcv 4 5590 _001926_hash NULL
--_001927_hash do_syslog 3 56807 _001927_hash NULL
--_001928_hash dpcm_state_read_file 3 65489 _001928_hash NULL
--_001929_hash dsp_cmx_send_member 2 15625 _001929_hash NULL
--_001930_hash fallback_on_nodma_alloc 2 35332 _001930_hash NULL
--_001931_hash fc_frame_alloc 2 1596 _001931_hash NULL
--_001932_hash fc_frame_alloc_fill 2 59394 _001932_hash NULL
--_001933_hash filter_read 3 61692 _001933_hash NULL
--_001934_hash __finish_unordered_dir 4 33198 _001934_hash NULL
--_001935_hash format_devstat_counter 3 32550 _001935_hash NULL
--_001936_hash fragmentation_threshold_read 3 61718 _001936_hash NULL
--_001937_hash fuse_conn_limit_read 3 20084 _001937_hash NULL
--_001938_hash fuse_conn_waiting_read 3 49762 _001938_hash NULL
--_001939_hash fuse_file_aio_write 4 46399 _001939_hash NULL
--_001940_hash generic_readlink 3 32654 _001940_hash NULL
--_001941_hash gre_manip_pkt 2 38785 _001941_hash NULL
--_001942_hash handle_eviocgbit 3 44193 _001942_hash NULL
--_001943_hash handle_response 5 55951 _001943_hash NULL
--_001944_hash handle_response_icmp 7 39574 _001944_hash NULL
--_001945_hash hash_recvmsg 4 50924 _001945_hash NULL
--_001946_hash hci_send_cmd 3 43810 _001946_hash NULL
--_001947_hash hci_si_event 3 1404 _001947_hash NULL
--_001948_hash help 4 14971 _001948_hash NULL
--_001949_hash hfcpci_empty_bfifo 4 62323 _001949_hash NULL
--_001950_hash hidp_send_ctrl_message 4 43702 _001950_hash NULL
--_001951_hash ht40allow_map_read 3 55209 _001951_hash &_001512_hash
--_001952_hash hwflags_read 3 52318 _001952_hash NULL
--_001953_hash hysdn_conf_read 3 42324 _001953_hash NULL
--_001954_hash hysdn_sched_rx 3 60533 _001954_hash NULL
--_001955_hash i2400m_rx_stats_read 3 57706 _001955_hash NULL
--_001956_hash i2400m_tx_stats_read 3 28527 _001956_hash NULL
--_001957_hash icmp_manip_pkt 2 48801 _001957_hash NULL
--_001958_hash idmouse_read 3 63374 _001958_hash NULL
--_001959_hash ieee80211_if_read 3 6785 _001959_hash NULL
--_001960_hash ieee80211_rx_bss_info 3 61630 _001960_hash NULL
--_001961_hash ikconfig_read_current 3 1658 _001961_hash NULL
--_001962_hash il3945_sta_dbgfs_stats_table_read 3 48802 _001962_hash NULL
--_001963_hash il3945_ucode_general_stats_read 3 46111 _001963_hash NULL
--_001964_hash il3945_ucode_rx_stats_read 3 3048 _001964_hash NULL
--_001965_hash il3945_ucode_tx_stats_read 3 36016 _001965_hash NULL
--_001966_hash il4965_rs_sta_dbgfs_rate_scale_data_read 3 37792 _001966_hash NULL
--_001967_hash il4965_rs_sta_dbgfs_scale_table_read 3 38564 _001967_hash NULL
--_001968_hash il4965_rs_sta_dbgfs_stats_table_read 3 49206 _001968_hash NULL
--_001969_hash il4965_ucode_general_stats_read 3 56277 _001969_hash NULL
--_001970_hash il4965_ucode_rx_stats_read 3 61948 _001970_hash NULL
--_001971_hash il4965_ucode_tx_stats_read 3 12064 _001971_hash NULL
--_001972_hash il_dbgfs_chain_noise_read 3 38044 _001972_hash NULL
--_001973_hash il_dbgfs_channels_read 3 25005 _001973_hash NULL
--_001974_hash il_dbgfs_disable_ht40_read 3 42386 _001974_hash NULL
--_001975_hash il_dbgfs_fh_reg_read 3 40993 _001975_hash NULL
--_001976_hash il_dbgfs_force_reset_read 3 57517 _001976_hash NULL
--_001977_hash il_dbgfs_interrupt_read 3 3351 _001977_hash NULL
--_001978_hash il_dbgfs_missed_beacon_read 3 59956 _001978_hash NULL
--_001979_hash il_dbgfs_nvm_read 3 12288 _001979_hash NULL
--_001980_hash il_dbgfs_power_save_status_read 3 43165 _001980_hash NULL
--_001981_hash il_dbgfs_qos_read 3 33615 _001981_hash NULL
--_001982_hash il_dbgfs_rxon_filter_flags_read 3 19281 _001982_hash NULL
--_001983_hash il_dbgfs_rxon_flags_read 3 59950 _001983_hash &_001904_hash
--_001984_hash il_dbgfs_rx_queue_read 3 11221 _001984_hash NULL
--_001985_hash il_dbgfs_rx_stats_read 3 15243 _001985_hash NULL
--_001986_hash il_dbgfs_sensitivity_read 3 2370 _001986_hash NULL
--_001987_hash il_dbgfs_sram_read 3 62296 _001987_hash NULL
--_001988_hash il_dbgfs_stations_read 3 21532 _001988_hash NULL
--_001989_hash il_dbgfs_status_read 3 58388 _001989_hash NULL
--_001990_hash il_dbgfs_tx_queue_read 3 55668 _001990_hash NULL
--_001991_hash il_dbgfs_tx_stats_read 3 32913 _001991_hash NULL
--_001992_hash ima_show_htable_value 2 57136 _001992_hash NULL
--_001994_hash intel_fake_agp_alloc_by_type 1 1 _001994_hash NULL
--_001995_hash ip4ip6_err 5 36772 _001995_hash NULL
--_001996_hash ip6_append_data 4-5 36490 _003601_hash NULL nohasharray
--_001997_hash ip6ip6_err 5 18308 _001997_hash NULL
--_001998_hash __ip_append_data 7-8 36191 _001998_hash NULL
--_001999_hash ip_vs_icmp_xmit 4 59624 _001999_hash NULL
--_002000_hash ip_vs_icmp_xmit_v6 4 20464 _002000_hash NULL
--_002001_hash ipw_write 3 59807 _002001_hash NULL
--_002002_hash irda_recvmsg_stream 4 35280 _002002_hash NULL
--_002003_hash irq_domain_add_simple 2 46734 _002003_hash NULL
--_002004_hash __iscsi_complete_pdu 4 10726 _002004_hash NULL
--_002005_hash iscsi_nop_out_rsp 4 51117 _002005_hash NULL
--_002006_hash iscsi_tcp_conn_setup 2 16376 _002006_hash NULL
--_002007_hash iwl_dbgfs_bt_traffic_read 3 35534 _002007_hash NULL
--_002008_hash iwl_dbgfs_calib_disabled_read 3 22649 _002008_hash NULL
--_002009_hash iwl_dbgfs_chain_noise_read 3 46355 _002009_hash NULL
--_002010_hash iwl_dbgfs_channels_read 3 6784 _002010_hash NULL
--_002011_hash iwl_dbgfs_current_sleep_command_read 3 2081 _002011_hash NULL
--_002012_hash iwl_dbgfs_disable_ht40_read 3 35761 _002012_hash NULL
--_002013_hash iwl_dbgfs_fh_reg_read 3 879 _002013_hash &_000406_hash
--_002014_hash iwl_dbgfs_interrupt_read 3 23574 _002014_hash NULL
--_002015_hash iwl_dbgfs_log_event_read 3 2107 _002015_hash NULL
--_002016_hash iwl_dbgfs_missed_beacon_read 3 50584 _002016_hash NULL
--_002017_hash iwl_dbgfs_nvm_read 3 23845 _002017_hash NULL
--_002018_hash iwl_dbgfs_plcp_delta_read 3 55407 _002018_hash NULL
--_002019_hash iwl_dbgfs_power_save_status_read 3 54392 _002019_hash NULL
--_002020_hash iwl_dbgfs_protection_mode_read 3 13943 _002020_hash NULL
--_002021_hash iwl_dbgfs_qos_read 3 11753 _002021_hash NULL
--_002022_hash iwl_dbgfs_reply_tx_error_read 3 19205 _002022_hash NULL
--_002023_hash iwl_dbgfs_rf_reset_read 3 26512 _002023_hash NULL
--_002024_hash iwl_dbgfs_rx_handlers_read 3 18708 _002024_hash NULL
--_002025_hash iwl_dbgfs_rxon_filter_flags_read 3 28832 _002025_hash NULL
--_002026_hash iwl_dbgfs_rxon_flags_read 3 20795 _002026_hash NULL
--_002027_hash iwl_dbgfs_rx_queue_read 3 19943 _002027_hash NULL
--_002028_hash iwl_dbgfs_sensitivity_read 3 63116 _002731_hash NULL nohasharray
--_002029_hash iwl_dbgfs_sleep_level_override_read 3 3038 _002029_hash NULL
--_002030_hash iwl_dbgfs_sram_read 3 44505 _002030_hash NULL
--_002031_hash iwl_dbgfs_stations_read 3 9309 _002031_hash NULL
--_002032_hash iwl_dbgfs_status_read 3 5171 _002032_hash NULL
--_002033_hash iwl_dbgfs_temperature_read 3 29224 _002033_hash NULL
--_002034_hash iwl_dbgfs_thermal_throttling_read 3 38779 _002034_hash NULL
--_002035_hash iwl_dbgfs_tx_queue_read 3 4635 _002035_hash NULL
--_002036_hash iwl_dbgfs_ucode_bt_stats_read 3 42820 _002036_hash NULL
--_002037_hash iwl_dbgfs_ucode_general_stats_read 3 49199 _002037_hash NULL
--_002038_hash iwl_dbgfs_ucode_rx_stats_read 3 58023 _002038_hash NULL
--_002039_hash iwl_dbgfs_ucode_tracing_read 3 47983 _002039_hash &_000356_hash
--_002040_hash iwl_dbgfs_ucode_tx_stats_read 3 31611 _002040_hash NULL
--_002041_hash iwl_dbgfs_wowlan_sram_read 3 540 _002041_hash NULL
--_002042_hash joydev_ioctl 2 33343 _002042_hash NULL
--_002043_hash kernel_readv 3 35617 _002043_hash NULL
--_002044_hash key_algorithm_read 3 57946 _002044_hash NULL
--_002045_hash key_icverrors_read 3 20895 _002045_hash NULL
--_002046_hash key_key_read 3 3241 _002046_hash NULL
--_002047_hash key_replays_read 3 62746 _002047_hash NULL
--_002048_hash key_rx_spec_read 3 12736 _002048_hash NULL
--_002049_hash key_tx_spec_read 3 4862 _002049_hash NULL
--_002050_hash __kfifo_to_user 3 36555 _002568_hash NULL nohasharray
--_002051_hash __kfifo_to_user_r 3 39123 _002051_hash NULL
--_002052_hash kmem_zalloc_greedy 2-3 65268 _002052_hash NULL
--_002054_hash l1oip_socket_recv 6 56537 _002054_hash NULL
--_002055_hash l2cap_build_cmd 4 48676 _002055_hash NULL
--_002056_hash l2cap_chan_send 3 49995 _002056_hash NULL
--_002057_hash l2cap_segment_sdu 4 48772 _002057_hash NULL
--_002058_hash l2down_create 4 21755 _002058_hash NULL
--_002059_hash l2tp_xmit_skb 3 42672 _002059_hash NULL
--_002060_hash l2up_create 3 6430 _002060_hash NULL
--_002061_hash lbs_debugfs_read 3 30721 _002061_hash NULL
--_002062_hash lbs_dev_info 3 51023 _002062_hash NULL
--_002063_hash lbs_host_sleep_read 3 31013 _002063_hash NULL
--_002064_hash lbs_rdbbp_read 3 45805 _002064_hash NULL
--_002065_hash lbs_rdmac_read 3 418 _002065_hash NULL
--_002066_hash lbs_rdrf_read 3 41431 _002066_hash NULL
--_002067_hash lbs_sleepparams_read 3 10840 _002067_hash NULL
--_002068_hash lbs_threshold_read 5 21046 _002068_hash NULL
--_002069_hash ldisc_receive 4 41516 _002069_hash NULL
--_002070_hash libfc_vport_create 2 4415 _002070_hash NULL
--_002073_hash lkdtm_debugfs_read 3 45752 _002073_hash NULL
--_002074_hash llcp_sock_recvmsg 4 13556 _002074_hash NULL
--_002075_hash long_retry_limit_read 3 59766 _002075_hash NULL
--_002076_hash lpfc_debugfs_dif_err_read 3 36303 _002076_hash NULL
--_002077_hash lpfc_debugfs_read 3 16566 _002077_hash NULL
--_002078_hash lpfc_idiag_baracc_read 3 58466 _002972_hash NULL nohasharray
--_002079_hash lpfc_idiag_ctlacc_read 3 33943 _002079_hash NULL
--_002080_hash lpfc_idiag_drbacc_read 3 15948 _002080_hash NULL
--_002081_hash lpfc_idiag_extacc_read 3 48301 _002081_hash NULL
--_002082_hash lpfc_idiag_mbxacc_read 3 28061 _002082_hash NULL
--_002083_hash lpfc_idiag_pcicfg_read 3 50334 _002083_hash NULL
--_002084_hash lpfc_idiag_queacc_read 3 13950 _002084_hash NULL
--_002085_hash lpfc_idiag_queinfo_read 3 55662 _002085_hash NULL
--_002086_hash lro_gen_skb 6 2644 _002086_hash NULL
--_002087_hash mac80211_format_buffer 2 41010 _002087_hash NULL
--_002088_hash macvtap_alloc_skb 2-4-3 50629 _002088_hash NULL
--_002091_hash macvtap_put_user 4 55609 _002091_hash NULL
--_002092_hash macvtap_sendmsg 4 30629 _002092_hash NULL
--_002093_hash mangle_packet 6-8 27864 _002093_hash NULL
--_002095_hash manip_pkt 3 7741 _002095_hash NULL
--_002096_hash mempool_create_kmalloc_pool 1 41650 _002096_hash NULL
--_002097_hash mempool_create_page_pool 1 30189 _002097_hash NULL
--_002098_hash mempool_create_slab_pool 1 62907 _002098_hash NULL
--_002099_hash mgmt_device_found 10 14146 _002099_hash NULL
--_002100_hash minstrel_stats_read 3 17290 _002100_hash NULL
--_002101_hash mmc_ext_csd_read 3 13205 _002101_hash NULL
--_002102_hash mon_bin_read 3 6841 _002102_hash NULL
--_002103_hash mon_stat_read 3 25238 _002103_hash NULL
--_002105_hash mqueue_read_file 3 6228 _002105_hash NULL
--_002106_hash mwifiex_debug_read 3 53074 _002106_hash NULL
--_002107_hash mwifiex_getlog_read 3 54269 _002107_hash NULL
--_002108_hash mwifiex_info_read 3 53447 _002108_hash NULL
--_002109_hash mwifiex_rdeeprom_read 3 51429 _002109_hash NULL
--_002110_hash mwifiex_regrdwr_read 3 34472 _002110_hash NULL
--_002111_hash named_prepare_buf 2 24532 _002111_hash NULL
--_002112_hash nci_send_cmd 3 58206 _002112_hash NULL
--_002113_hash netdev_alloc_skb_ip_align 2 40811 _002113_hash NULL
--_002114_hash netpoll_send_udp 3 58955 _002114_hash NULL
--_002115_hash nfcwilink_send_bts_cmd 3 10802 _002115_hash NULL
--_002116_hash nf_nat_mangle_tcp_packet 5-7 8643 _002116_hash NULL
--_002119_hash nfsd_vfs_read 6 62605 _002616_hash NULL nohasharray
--_002120_hash nfsd_vfs_write 6 54577 _002120_hash NULL
--_002121_hash nfs_idmap_lookup_id 2 10660 _002121_hash NULL
--_002122_hash ntfs_rl_realloc 3 56831 _002122_hash &_000370_hash
--_002123_hash ntfs_rl_realloc_nofail 3 32173 _002123_hash NULL
--_002124_hash o2hb_debug_read 3 37851 _002124_hash NULL
--_002125_hash o2net_debug_read 3 52105 _002125_hash NULL
--_002126_hash ocfs2_control_read 3 56405 _002126_hash NULL
--_002127_hash ocfs2_debug_read 3 14507 _002127_hash NULL
--_002128_hash oom_adjust_read 3 25127 _002128_hash NULL
--_002129_hash oom_score_adj_read 3 39921 _002426_hash NULL nohasharray
--_002130_hash oprofilefs_str_to_user 3 42182 _002130_hash NULL
--_002131_hash oprofilefs_ulong_to_user 3 11582 _002131_hash NULL
--_002132_hash osd_req_add_get_attr_list 3 49278 _002132_hash NULL
--_002133_hash _osd_req_list_objects 6 4204 _002133_hash NULL
--_002134_hash osd_req_read_kern 5 59990 _002134_hash NULL
--_002135_hash osd_req_write_kern 5 53486 _002135_hash NULL
--_002136_hash osst_read 3 40237 _002136_hash NULL
--_002137_hash p54_alloc_skb 3 34366 _002137_hash &_000485_hash
--_002138_hash p54_init_common 1 23850 _002138_hash NULL
--_002139_hash packet_alloc_skb 2-5-4 62602 _002139_hash NULL
--_002142_hash packet_sendmsg 4 24954 _002142_hash NULL
--_002143_hash page_readlink 3 23346 _002143_hash NULL
--_002144_hash pcf50633_write_block 3 2124 _002144_hash NULL
--_002145_hash pcpu_alloc_alloc_info 1-2 45813 _002145_hash NULL
--_002147_hash pep_indicate 5 38611 _002147_hash NULL
--_002148_hash pep_reply 5 50582 _002148_hash NULL
--_002149_hash pipe_handler_request 5 50774 _003582_hash NULL nohasharray
--_002150_hash platform_list_read_file 3 34734 _002150_hash NULL
--_002151_hash pm860x_bulk_write 3 43875 _002151_hash NULL
--_002152_hash pm_qos_power_read 3 55891 _002152_hash NULL
--_002153_hash port_show_regs 3 5904 _002153_hash NULL
--_002154_hash proc_coredump_filter_read 3 39153 _002154_hash NULL
--_002155_hash proc_fdinfo_read 3 62043 _002155_hash NULL
--_002156_hash proc_file_read 3 53905 _002156_hash NULL
--_002157_hash proc_info_read 3 63344 _002157_hash NULL
--_002158_hash proc_loginuid_read 3 15631 _002158_hash NULL
--_002159_hash proc_pid_attr_read 3 10173 _002159_hash NULL
--_002160_hash proc_pid_readlink 3 52186 _002160_hash NULL
--_002161_hash proc_read 3 43614 _002161_hash NULL
--_002162_hash proc_self_readlink 3 38094 _002162_hash NULL
--_002163_hash proc_sessionid_read 3 6911 _002299_hash NULL nohasharray
--_002164_hash provide_user_output 3 41105 _002164_hash NULL
--_002165_hash pskb_network_may_pull 2 35336 _002165_hash NULL
--_002166_hash pskb_pull 2 65005 _002166_hash NULL
--_002167_hash pstore_file_read 3 57288 _002167_hash NULL
--_002168_hash ql_process_mac_rx_page 4 15543 _002168_hash NULL
--_002169_hash ql_process_mac_rx_skb 4 6689 _002169_hash NULL
--_002170_hash queues_read 3 24877 _002170_hash NULL
--_002171_hash raw_recvmsg 4 17277 _002171_hash NULL
--_002172_hash rcname_read 3 25919 _002172_hash NULL
--_002173_hash read_4k_modal_eeprom 3 30212 _002173_hash NULL
--_002174_hash read_9287_modal_eeprom 3 59327 _002174_hash NULL
--_002175_hash reada_find_extent 2 63486 _002175_hash NULL
--_002176_hash read_def_modal_eeprom 3 14041 _002176_hash NULL
--_002177_hash read_enabled_file_bool 3 37744 _002177_hash NULL
--_002178_hash read_file_ani 3 23161 _002178_hash NULL
--_002179_hash read_file_antenna 3 13574 _002179_hash NULL
--_002180_hash read_file_base_eeprom 3 42168 _002180_hash NULL
--_002181_hash read_file_beacon 3 32595 _002181_hash NULL
--_002182_hash read_file_blob 3 57406 _002182_hash NULL
--_002183_hash read_file_bool 3 4180 _002183_hash NULL
--_002184_hash read_file_credit_dist_stats 3 54367 _002184_hash NULL
--_002185_hash read_file_debug 3 58256 _002185_hash NULL
--_002186_hash read_file_disable_ani 3 6536 _002186_hash NULL
--_002187_hash read_file_dma 3 9530 _002187_hash NULL
--_002188_hash read_file_dump_nfcal 3 18766 _002188_hash NULL
--_002189_hash read_file_frameerrors 3 64001 _002189_hash NULL
--_002190_hash read_file_interrupt 3 61742 _002197_hash NULL nohasharray
--_002191_hash read_file_misc 3 9948 _002191_hash NULL
--_002192_hash read_file_modal_eeprom 3 39909 _002192_hash NULL
--_002193_hash read_file_queue 3 40895 _002193_hash NULL
--_002194_hash read_file_rcstat 3 22854 _002194_hash NULL
--_002195_hash read_file_recv 3 48232 _002195_hash NULL
--_002196_hash read_file_regidx 3 33370 _002196_hash NULL
--_002197_hash read_file_regval 3 61742 _002197_hash &_002190_hash
--_002198_hash read_file_reset 3 52310 _002198_hash NULL
--_002199_hash read_file_rx_chainmask 3 41605 _002199_hash NULL
--_002200_hash read_file_slot 3 50111 _002200_hash NULL
--_002201_hash read_file_stations 3 35795 _002201_hash NULL
--_002202_hash read_file_tgt_int_stats 3 20697 _002202_hash NULL
--_002203_hash read_file_tgt_rx_stats 3 33944 _002203_hash NULL
--_002204_hash read_file_tgt_stats 3 8959 _002204_hash NULL
--_002205_hash read_file_tgt_tx_stats 3 51847 _002205_hash NULL
--_002206_hash read_file_tx_chainmask 3 3829 _002206_hash NULL
--_002207_hash read_file_war_stats 3 292 _002207_hash NULL
--_002208_hash read_file_xmit 3 21487 _002208_hash NULL
--_002209_hash read_flush_pipefs 3 20171 _002209_hash NULL
--_002210_hash read_flush_procfs 3 27642 _002210_hash NULL
--_002211_hash read_from_oldmem 2 3337 _002211_hash NULL
--_002212_hash read_oldmem 3 55658 _002212_hash NULL
--_002213_hash receive_packet 2 12367 _002213_hash NULL
--_002214_hash regmap_name_read_file 3 39379 _002214_hash NULL
--_002215_hash repair_io_failure 4 4815 _002215_hash NULL
--_002216_hash request_key_and_link 4 42693 _002216_hash NULL
--_002217_hash res_counter_read 4 33499 _002217_hash NULL
--_002218_hash rfcomm_tty_write 3 51603 _002218_hash NULL
--_002219_hash rs_sta_dbgfs_rate_scale_data_read 3 47165 _002219_hash NULL
--_002220_hash rs_sta_dbgfs_scale_table_read 3 40262 _002220_hash NULL
--_002221_hash rs_sta_dbgfs_stats_table_read 3 56573 _002221_hash NULL
--_002222_hash rts_threshold_read 3 44384 _002222_hash NULL
--_002223_hash rxrpc_sendmsg 4 29049 _002223_hash NULL
--_002224_hash scrub_setup_recheck_block 3-4 56245 _002224_hash NULL
--_002226_hash scsi_adjust_queue_depth 3 12802 _002226_hash NULL
--_002227_hash sctp_make_abort 3 34459 _002227_hash NULL
--_002228_hash sctp_make_asconf 3 4078 _002228_hash NULL
--_002229_hash sctp_make_asconf_ack 3 31726 _002229_hash NULL
--_002230_hash sctp_make_datafrag_empty 3 34737 _002230_hash NULL
--_002231_hash sctp_make_fwdtsn 3 53265 _002231_hash NULL
--_002232_hash sctp_make_heartbeat_ack 4 34411 _002232_hash NULL
--_002233_hash sctp_make_init 4 58401 _002233_hash NULL
--_002234_hash sctp_make_init_ack 4 3335 _002234_hash NULL
--_002235_hash sctp_make_op_error_space 3 5528 _002235_hash NULL
--_002236_hash sctp_manip_pkt 2 40620 _002236_hash NULL
--_002237_hash selinux_inode_notifysecctx 3 36896 _002237_hash NULL
--_002238_hash sel_read_avc_cache_threshold 3 33942 _002238_hash NULL
--_002239_hash sel_read_avc_hash_stats 3 1984 _002239_hash NULL
--_002240_hash sel_read_bool 3 24236 _002240_hash NULL
--_002241_hash sel_read_checkreqprot 3 33068 _002241_hash NULL
--_002242_hash sel_read_class 3 12669 _002960_hash NULL nohasharray
--_002243_hash sel_read_enforce 3 2828 _002243_hash NULL
--_002244_hash sel_read_handle_status 3 56139 _002244_hash NULL
--_002245_hash sel_read_handle_unknown 3 57933 _002245_hash NULL
--_002246_hash sel_read_initcon 3 32362 _002246_hash NULL
--_002247_hash sel_read_mls 3 25369 _002247_hash NULL
--_002248_hash sel_read_perm 3 42302 _002248_hash NULL
--_002249_hash sel_read_policy 3 55947 _002249_hash NULL
--_002250_hash sel_read_policycap 3 28544 _002250_hash NULL
--_002251_hash sel_read_policyvers 3 55 _002827_hash NULL nohasharray
--_002252_hash send_mpa_reject 3 7135 _002252_hash NULL
--_002253_hash send_mpa_reply 3 32372 _002253_hash NULL
--_002254_hash send_msg 4 37323 _002254_hash NULL
--_002255_hash send_packet 4 52960 _002255_hash NULL
--_002256_hash set_rxd_buffer_pointer 8 9950 _002256_hash NULL
--_002257_hash sge_rx 3 50594 _002257_hash NULL
--_002258_hash short_retry_limit_read 3 4687 _002258_hash NULL
--_002259_hash simple_attr_read 3 24738 _002259_hash NULL
--_002260_hash simple_transaction_read 3 17076 _002260_hash NULL
--_002261_hash sisusbcon_bmove 5-7-6 21873 _002261_hash NULL
--_002264_hash sisusbcon_clear 3-5-4 64329 _002264_hash NULL
--_002267_hash sisusbcon_putcs 3 57630 _002267_hash &_001043_hash
--_002268_hash sisusbcon_scroll 5-3-2 31315 _002268_hash NULL
--_002269_hash sisusbcon_scroll_area 3-4 25899 _002269_hash NULL
--_002271_hash skb_copy_datagram_const_iovec 2-5-4 48102 _002271_hash NULL
--_002274_hash skb_copy_datagram_iovec 2-4 5806 _002274_hash NULL
--_002276_hash skb_gro_header_slow 2 34958 _002276_hash NULL
--_002277_hash smk_read_ambient 3 61220 _002277_hash NULL
--_002278_hash smk_read_direct 3 15803 _002278_hash NULL
--_002279_hash smk_read_doi 3 30813 _002279_hash NULL
--_002280_hash smk_read_logging 3 37804 _002280_hash NULL
--_002281_hash smk_read_mapped 3 7562 _002281_hash NULL
--_002282_hash smk_read_onlycap 3 3855 _002282_hash NULL
--_002283_hash smp_build_cmd 3 45853 _002283_hash NULL
--_002284_hash snapshot_read 3 22601 _002284_hash NULL
--_002285_hash snd_cs4281_BA0_read 5 6847 _002285_hash NULL
--_002286_hash snd_cs4281_BA1_read 5 20323 _002286_hash NULL
--_002287_hash snd_cs46xx_io_read 5 45734 _002287_hash NULL
--_002288_hash snd_gus_dram_read 4 56686 _002288_hash NULL
--_002289_hash snd_mixart_BA0_read 5 45069 _002289_hash NULL
--_002290_hash snd_mixart_BA1_read 5 5082 _002290_hash NULL
--_002291_hash snd_pcm_oss_read 3 28317 _002291_hash NULL
--_002292_hash snd_pcm_plug_alloc 2 42339 _002292_hash NULL
--_002293_hash snd_rawmidi_kernel_read 3 4328 _002293_hash NULL
--_002294_hash snd_rawmidi_read 3 56337 _002294_hash NULL
--_002295_hash snd_rme32_capture_copy 5 39653 _002295_hash NULL
--_002296_hash snd_rme96_capture_copy 5 58484 _002296_hash NULL
--_002297_hash snd_soc_hw_bulk_write_raw 4 14245 _002297_hash NULL
--_002298_hash sock_alloc_send_skb 2 23720 _002298_hash NULL
--_002299_hash spi_show_regs 3 6911 _002299_hash &_002163_hash
--_002300_hash sta_agg_status_read 3 14058 _002300_hash NULL
--_002301_hash sta_connected_time_read 3 17435 _002301_hash NULL
--_002302_hash sta_flags_read 3 56710 _002302_hash NULL
--_002303_hash sta_ht_capa_read 3 10366 _002303_hash NULL
--_002304_hash sta_last_seq_ctrl_read 3 19106 _002304_hash NULL
--_002305_hash sta_num_ps_buf_frames_read 3 1488 _002305_hash NULL
--_002306_hash st_read 3 51251 _002306_hash NULL
--_002307_hash supply_map_read_file 3 10608 _002307_hash NULL
--_002308_hash sysfs_read_file 3 42113 _002308_hash NULL
--_002309_hash sys_preadv 3 17100 _002309_hash NULL
--_002310_hash sys_pwritev 3 41722 _002310_hash NULL
--_002311_hash sys_readv 3 50664 _002311_hash NULL
--_002312_hash sys_rt_sigpending 2 24961 _002312_hash NULL
--_002313_hash sys_writev 3 28384 _002313_hash NULL
--_002314_hash tcf_csum_skb_nextlayer 3 64025 _002314_hash NULL
--_002315_hash tcp_fragment 3 20436 _002315_hash NULL
--_002316_hash tcp_manip_pkt 2 14202 _002316_hash NULL
--_002317_hash teiup_create 3 43201 _002317_hash NULL
--_002318_hash test_iso_queue 5 62534 _002318_hash NULL
--_002319_hash tg3_run_loopback 2 30093 _002319_hash NULL
--_002320_hash tipc_msg_build 4 12326 _002320_hash NULL
--_002321_hash TSS_authhmac 3 12839 _002321_hash NULL
--_002322_hash TSS_checkhmac1 5 31429 _002322_hash NULL
--_002323_hash TSS_checkhmac2 5-7 40520 _002323_hash NULL
--_002325_hash tty_audit_log 8 47280 _002325_hash NULL
--_002326_hash tty_buffer_request_room 2 23228 _002326_hash NULL
--_002327_hash tty_insert_flip_string_fixed_flag 4 37428 _002327_hash NULL
--_002328_hash tty_insert_flip_string_flags 4 30969 _002328_hash NULL
--_002329_hash tty_prepare_flip_string 3 39955 _002329_hash NULL
--_002330_hash tty_prepare_flip_string_flags 4 59240 _002330_hash NULL
--_002331_hash tun_alloc_skb 2-4-3 41216 _002331_hash NULL
--_002334_hash tun_sendmsg 4 10337 _002334_hash NULL
--_002335_hash u32_array_read 3 2219 _002335_hash NULL
--_002336_hash ubi_io_write_data 4-5 40305 _002336_hash NULL
--_002338_hash udplite_manip_pkt 2 62433 _002338_hash NULL
--_002339_hash udp_manip_pkt 2 50770 _002339_hash NULL
--_002340_hash uhci_debug_read 3 5911 _002340_hash NULL
--_002341_hash um_idi_read 3 850 _002341_hash NULL
--_002342_hash unix_seqpacket_sendmsg 4 27893 _002342_hash NULL
--_002343_hash unix_stream_recvmsg 4 35210 _002343_hash NULL
--_002344_hash unlink_simple 3 47506 _002344_hash NULL
--_002345_hash use_pool 2 64607 _002345_hash NULL
--_002346_hash v9fs_fid_readn 4 60544 _002346_hash NULL
--_002347_hash v9fs_file_read 3 40858 _002347_hash NULL
--_002348_hash vhci_read 3 47878 _002348_hash NULL
--_002349_hash vhost_add_used_and_signal_n 4 8038 _002349_hash NULL
--_002350_hash vmbus_open 2-3 12154 _002350_hash NULL
--_002352_hash vxge_rx_alloc 3 52024 _002352_hash NULL
--_002353_hash waiters_read 3 40902 _002353_hash NULL
--_002354_hash wm8994_bulk_write 3 13615 _002354_hash NULL
--_002355_hash write_pbl 4 59583 _002355_hash NULL
--_002356_hash wusb_prf_256 7 29203 _002356_hash NULL
--_002357_hash wusb_prf_64 7 51065 _002357_hash NULL
--_002358_hash _xfs_buf_alloc 3 38058 _002358_hash NULL
--_002359_hash xfs_buf_read_uncached 3 42844 _002359_hash NULL
--_002360_hash xfs_file_buffered_aio_write 4 11492 _002360_hash NULL
--_002361_hash xfs_iext_add 3 41422 _002361_hash NULL
--_002362_hash xfs_iext_remove_direct 3 40744 _002362_hash NULL
--_002363_hash xfs_readdir 3 41200 _002363_hash NULL
--_002364_hash xfs_trans_get_efd 3 51148 _002364_hash NULL
--_002365_hash xfs_trans_get_efi 2 7898 _002365_hash NULL
--_002366_hash xlog_bread_offset 3 60030 _002366_hash NULL
--_002367_hash xlog_get_bp 2 23229 _002367_hash NULL
--_002368_hash xz_dec_init 2 29029 _002368_hash NULL
--_002369_hash aac_change_queue_depth 2 825 _002369_hash NULL
--_002370_hash add_rx_skb 3 8257 _002370_hash NULL
--_002371_hash afs_extract_data 5 50261 _002371_hash NULL
--_002372_hash arcmsr_adjust_disk_queue_depth 2 16756 _002372_hash NULL
--_002373_hash atalk_recvmsg 4 22053 _002373_hash NULL
--_002374_hash ath6kl_buf_alloc 1 57304 _002374_hash NULL
--_002376_hash atomic_read_file 3 16227 _002376_hash NULL
--_002377_hash ax25_recvmsg 4 64441 _002377_hash NULL
--_002378_hash batadv_add_packet 3 12136 _002378_hash NULL
--_002379_hash batadv_iv_ogm_aggregate_new 2 54761 _002379_hash NULL
--_002380_hash batadv_tt_response_fill_table 1 39236 _002380_hash NULL
--_002381_hash beiscsi_process_async_pdu 7 39834 _002381_hash NULL
--_002382_hash bioset_create 1 5580 _002382_hash NULL
--_002383_hash bioset_integrity_create 2 62708 _002383_hash NULL
--_002384_hash biovec_create_pools 2 9575 _002384_hash NULL
--_002385_hash bnx2fc_process_l2_frame_compl 3 65072 _002385_hash NULL
--_002386_hash brcmf_sdbrcm_died_dump 3 15841 _002386_hash NULL
--_002387_hash brcmu_pkt_buf_get_skb 1 5556 _002387_hash NULL
--_002388_hash br_send_bpdu 3 29669 _002388_hash NULL
--_002389_hash btrfs_error_discard_extent 2 50444 _002389_hash NULL
--_002390_hash __btrfs_free_reserved_extent 2 31207 _002390_hash NULL
--_002391_hash btrfsic_cmp_log_and_dev_bytenr 2 49628 _002391_hash NULL
--_002392_hash btrfsic_create_link_to_next_block 4 58246 _002392_hash NULL
--_002393_hash btrfs_init_new_buffer 4 55761 _002393_hash NULL
--_002394_hash btrfs_mksubvol 3 58240 _002394_hash NULL
--_002395_hash bt_skb_send_alloc 2 6581 _002395_hash NULL
--_002396_hash bt_sock_recvmsg 4 12316 _002396_hash NULL
--_002397_hash bt_sock_stream_recvmsg 4 52518 _002397_hash NULL
--_002398_hash c4iw_reject_cr 3 28174 _002398_hash NULL
--_002399_hash caif_seqpkt_recvmsg 4 32241 _002399_hash NULL
--_002400_hash carl9170_rx_copy_data 2 21656 _002400_hash NULL
--_002401_hash cfpkt_append 3 61206 _002401_hash NULL
--_002402_hash cfpkt_setlen 2 49343 _002402_hash NULL
--_002403_hash cgroup_file_read 3 28804 _002403_hash NULL
--_002404_hash cosa_net_setup_rx 2 38594 _002404_hash NULL
--_002405_hash cpu_type_read 3 36540 _002405_hash NULL
--_002406_hash cxgb4_pktgl_to_skb 2 61899 _002406_hash NULL
--_002408_hash dccp_recvmsg 4 16056 _002408_hash NULL
--_002409_hash ddp_clear_map 4 46152 _002409_hash NULL
--_002410_hash ddp_set_map 4 751 _002410_hash NULL
--_002411_hash depth_read 3 31112 _002411_hash NULL
--_002412_hash dfs_global_file_read 3 7787 _002412_hash NULL
--_002413_hash dgram_recvmsg 4 23104 _002413_hash NULL
--_002414_hash diva_init_dma_map 3 58336 _002414_hash NULL
--_002415_hash divas_write 3 63901 _002415_hash NULL
--_002416_hash dma_push_rx 2 39973 _002416_hash NULL
--_002417_hash dma_skb_copy_datagram_iovec 3-5 21516 _002417_hash NULL
--_002419_hash dm_table_create 3 35687 _002419_hash NULL
--_002420_hash dn_alloc_send_pskb 2 4465 _002420_hash NULL
--_002421_hash dn_nsp_return_disc 2 60296 _002421_hash NULL
--_002422_hash dn_nsp_send_disc 2 23469 _002422_hash NULL
--_002423_hash dsp_tone_hw_message 3 17678 _002423_hash NULL
--_002424_hash e1000_check_copybreak 3 62448 _002424_hash NULL
--_002425_hash enable_read 3 2117 _002425_hash &_000224_hash
--_002426_hash exofs_read_kern 6 39921 _002426_hash &_002129_hash
--_002427_hash fast_rx_path 3 59214 _002427_hash NULL
--_002428_hash fc_change_queue_depth 2 36841 _002428_hash NULL
--_002429_hash fc_fcp_frame_alloc 2 12624 _002429_hash NULL
--_002430_hash fcoe_ctlr_send_keep_alive 3 15308 _002430_hash NULL
--_002431_hash frequency_read 3 64031 _003698_hash NULL nohasharray
--_002432_hash ftdi_process_packet 5 45005 _002432_hash NULL
--_002433_hash fuse_conn_congestion_threshold_read 3 51028 _002433_hash NULL
--_002434_hash fuse_conn_max_background_read 3 10855 _002434_hash NULL
--_002435_hash fwnet_incoming_packet 3 40380 _002435_hash NULL
--_002436_hash fwnet_pd_new 4 39947 _003402_hash NULL nohasharray
--_002437_hash get_alua_req 3 4166 _002437_hash NULL
--_002438_hash get_rdac_req 3 45882 _002438_hash NULL
--_002439_hash got_frame 2 16028 _002439_hash NULL
--_002440_hash gsm_mux_rx_netchar 3 33336 _002440_hash NULL
--_002441_hash hci_sock_recvmsg 4 7072 _002441_hash NULL
--_002442_hash hdlcdev_rx 3 997 _002442_hash NULL
--_002443_hash hdlc_empty_fifo 2 18397 _002443_hash NULL
--_002444_hash hfc_empty_fifo 2 57972 _002444_hash NULL
--_002445_hash hfcpci_empty_fifo 4 2427 _002445_hash NULL
--_002446_hash hfcsusb_rx_frame 3 52745 _002446_hash NULL
--_002447_hash hidp_output_raw_report 3 5629 _002447_hash NULL
--_002448_hash hpsa_change_queue_depth 2 15449 _002448_hash NULL
--_002449_hash hptiop_adjust_disk_queue_depth 2 20122 _002449_hash NULL
--_002450_hash hscx_empty_fifo 2 13360 _002450_hash NULL
--_002451_hash hysdn_rx_netpkt 3 16136 _002451_hash NULL
--_002452_hash i2o_pool_alloc 4 55485 _002452_hash NULL
--_002453_hash ide_queue_pc_tail 5 11673 _002453_hash NULL
--_002454_hash ide_raw_taskfile 4 42355 _002454_hash NULL
--_002455_hash idetape_queue_rw_tail 3 29562 _002455_hash NULL
--_002456_hash ieee80211_amsdu_to_8023s 5 15561 _002456_hash NULL
--_002457_hash ieee80211_fragment 4 33112 _002457_hash NULL
--_002458_hash ieee80211_if_read_aid 3 9705 _002458_hash NULL
--_002459_hash ieee80211_if_read_auto_open_plinks 3 38268 _002459_hash &_000374_hash
--_002460_hash ieee80211_if_read_ave_beacon 3 64924 _002460_hash NULL
--_002461_hash ieee80211_if_read_bssid 3 35161 _002461_hash NULL
--_002462_hash ieee80211_if_read_channel_type 3 23884 _002462_hash NULL
--_002463_hash ieee80211_if_read_dot11MeshConfirmTimeout 3 60670 _002463_hash NULL
--_002464_hash ieee80211_if_read_dot11MeshForwarding 3 13940 _002464_hash NULL
--_002465_hash ieee80211_if_read_dot11MeshGateAnnouncementProtocol 3 14486 _002465_hash NULL
--_002466_hash ieee80211_if_read_dot11MeshHoldingTimeout 3 47356 _002466_hash NULL
--_002467_hash ieee80211_if_read_dot11MeshHWMPactivePathTimeout 3 7368 _002467_hash NULL
--_002468_hash ieee80211_if_read_dot11MeshHWMPactivePathToRootTimeout 3 17618 _002468_hash NULL
--_002469_hash ieee80211_if_read_dot11MeshHWMPconfirmationInterval 3 57722 _002469_hash NULL
--_002470_hash ieee80211_if_read_dot11MeshHWMPmaxPREQretries 3 59829 _002470_hash NULL
--_002471_hash ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime 3 1589 _002471_hash NULL
--_002472_hash ieee80211_if_read_dot11MeshHWMPperrMinInterval 3 17346 _002472_hash NULL
--_002473_hash ieee80211_if_read_dot11MeshHWMPpreqMinInterval 3 24208 _002473_hash NULL
--_002474_hash ieee80211_if_read_dot11MeshHWMPRannInterval 3 2249 _002474_hash NULL
--_002475_hash ieee80211_if_read_dot11MeshHWMProotInterval 3 27873 _002475_hash NULL
--_002476_hash ieee80211_if_read_dot11MeshHWMPRootMode 3 51441 _002476_hash NULL
--_002477_hash ieee80211_if_read_dot11MeshMaxPeerLinks 3 23878 _002477_hash NULL
--_002478_hash ieee80211_if_read_dot11MeshMaxRetries 3 12756 _002478_hash NULL
--_002479_hash ieee80211_if_read_dot11MeshRetryTimeout 3 52168 _002479_hash NULL
--_002480_hash ieee80211_if_read_dot11MeshTTL 3 58307 _002480_hash NULL
--_002481_hash ieee80211_if_read_dropped_frames_congestion 3 32603 _002481_hash NULL
--_002482_hash ieee80211_if_read_dropped_frames_no_route 3 33383 _002482_hash NULL
--_002483_hash ieee80211_if_read_dropped_frames_ttl 3 44500 _002483_hash NULL
--_002484_hash ieee80211_if_read_drop_unencrypted 3 37053 _002484_hash NULL
--_002485_hash ieee80211_if_read_dtim_count 3 38419 _002485_hash NULL
--_002486_hash ieee80211_if_read_element_ttl 3 18869 _002486_hash NULL
--_002487_hash ieee80211_if_read_estab_plinks 3 32533 _002487_hash NULL
--_002488_hash ieee80211_if_read_flags 3 57470 _002919_hash NULL nohasharray
--_002489_hash ieee80211_if_read_fwded_frames 3 36520 _002489_hash NULL
--_002490_hash ieee80211_if_read_fwded_mcast 3 39571 _002490_hash &_000162_hash
--_002491_hash ieee80211_if_read_fwded_unicast 3 59740 _002491_hash &_001697_hash
--_002492_hash ieee80211_if_read_ht_opmode 3 29044 _002492_hash NULL
--_002493_hash ieee80211_if_read_last_beacon 3 31257 _002493_hash NULL
--_002494_hash ieee80211_if_read_min_discovery_timeout 3 13946 _002494_hash NULL
--_002495_hash ieee80211_if_read_num_buffered_multicast 3 12716 _002495_hash NULL
--_002496_hash ieee80211_if_read_num_mcast_sta 3 12419 _002496_hash NULL
--_002497_hash ieee80211_if_read_num_sta_ps 3 34722 _002497_hash NULL
--_002498_hash ieee80211_if_read_path_refresh_time 3 25545 _002498_hash NULL
--_002499_hash ieee80211_if_read_peer 3 45233 _002499_hash NULL
--_002500_hash ieee80211_if_read_rc_rateidx_mask_2ghz 3 61570 _002500_hash NULL
--_002501_hash ieee80211_if_read_rc_rateidx_mask_5ghz 3 27183 _002501_hash NULL
--_002502_hash ieee80211_if_read_rc_rateidx_mcs_mask_2ghz 3 37675 _002502_hash NULL
--_002503_hash ieee80211_if_read_rc_rateidx_mcs_mask_5ghz 3 44423 _002503_hash NULL
--_002504_hash ieee80211_if_read_rssi_threshold 3 49260 _002504_hash NULL
--_002505_hash ieee80211_if_read_smps 3 27416 _002505_hash NULL
--_002506_hash ieee80211_if_read_state 3 9813 _002707_hash NULL nohasharray
--_002507_hash ieee80211_if_read_tkip_mic_test 3 19565 _002507_hash NULL
--_002508_hash ieee80211_if_read_tsf 3 16420 _002508_hash NULL
--_002509_hash ieee80211_if_read_uapsd_max_sp_len 3 15067 _002509_hash NULL
--_002510_hash ieee80211_if_read_uapsd_queues 3 55150 _002510_hash NULL
--_002511_hash ieee80211_mgmt_tx 9 46860 _002511_hash NULL
--_002512_hash ieee80211_probereq_get 4-6 29069 _002512_hash NULL
--_002514_hash ieee80211_rx_mgmt_beacon 3 24430 _002514_hash NULL
--_002515_hash ieee80211_rx_mgmt_probe_resp 3 6918 _002515_hash NULL
--_002516_hash ieee80211_send_auth 5 24121 _002516_hash NULL
--_002517_hash ieee80211_set_probe_resp 3 10077 _002517_hash NULL
--_002518_hash ieee80211_tdls_mgmt 8 9581 _002518_hash NULL
--_002519_hash ima_show_htable_violations 3 10619 _002519_hash NULL
--_002520_hash ima_show_measurements_count 3 23536 _002520_hash NULL
--_002521_hash insert_one_name 7 61668 _002521_hash NULL
--_002522_hash ip6_ufo_append_data 5-7-6 4780 _002522_hash NULL
--_002525_hash ip_append_data 5-6 16942 _002525_hash NULL
--_002526_hash ip_make_skb 5-6 13129 _002526_hash NULL
--_002527_hash ip_nat_sdp_port 6 52938 _002527_hash NULL
--_002528_hash ip_nat_sip_expect 7 45693 _002528_hash NULL
--_002529_hash ipr_change_queue_depth 2 6431 _002529_hash NULL
--_002530_hash ip_recv_error 3 23109 _002530_hash NULL
--_002531_hash ip_ufo_append_data 6-8-7 12775 _002531_hash NULL
--_002534_hash ipv6_recv_error 3 56347 _002534_hash NULL
--_002535_hash ipv6_recv_rxpmtu 3 7142 _002535_hash NULL
--_002536_hash ipw_packet_received_skb 2 1230 _002536_hash NULL
--_002537_hash ipx_recvmsg 4 44366 _002537_hash NULL
--_002538_hash irda_recvmsg_dgram 4 32631 _002538_hash NULL
--_002539_hash iscsi_change_queue_depth 2 23416 _002539_hash NULL
--_002540_hash iscsi_complete_pdu 4 48372 _002540_hash NULL
--_002541_hash iwch_reject_cr 3 23901 _002541_hash NULL
--_002542_hash ixgb_check_copybreak 3 5847 _002542_hash NULL
--_002543_hash key_conf_hw_key_idx_read 3 25003 _002543_hash NULL
--_002544_hash key_conf_keyidx_read 3 42443 _002544_hash NULL
--_002545_hash key_conf_keylen_read 3 49758 _002545_hash NULL
--_002546_hash key_flags_read 3 25931 _002546_hash NULL
--_002547_hash key_ifindex_read 3 31411 _002547_hash NULL
--_002548_hash key_tx_rx_count_read 3 44742 _002548_hash NULL
--_002549_hash kmsg_read 3 46514 _002549_hash NULL
--_002550_hash l1oip_socket_parse 4 4507 _002550_hash NULL
--_002551_hash l2cap_send_cmd 4 14548 _002551_hash NULL
--_002552_hash l2cap_sock_sendmsg 4 63427 _002552_hash NULL
--_002553_hash l2tp_ip6_recvmsg 4 62874 _002553_hash NULL
--_002554_hash l2tp_ip6_sendmsg 4 7461 _002554_hash NULL
--_002555_hash l2tp_ip_recvmsg 4 22681 _002555_hash NULL
--_002556_hash lbs_bcnmiss_read 3 8678 _002556_hash NULL
--_002557_hash lbs_failcount_read 3 31063 _002557_hash NULL
--_002558_hash lbs_highrssi_read 3 64089 _002558_hash NULL
--_002559_hash lbs_highsnr_read 3 5931 _002559_hash NULL
--_002560_hash lbs_lowrssi_read 3 32242 _002560_hash NULL
--_002561_hash lbs_lowsnr_read 3 29571 _002561_hash NULL
--_002563_hash llc_ui_recvmsg 4 3826 _002563_hash NULL
--_002564_hash lowpan_fragment_xmit 3-4 22095 _002564_hash NULL
--_002566_hash lpfc_change_queue_depth 2 25905 _002566_hash NULL
--_002568_hash macvtap_do_read 4 36555 _002568_hash &_002050_hash
--_002569_hash mangle_sdp_packet 9 36279 _002569_hash NULL
--_002570_hash map_addr 6 4666 _002570_hash NULL
--_002571_hash mcs_unwrap_fir 3 25733 _002571_hash NULL
--_002572_hash mcs_unwrap_mir 3 9455 _002572_hash NULL
--_002573_hash megaraid_change_queue_depth 2 64815 _002573_hash NULL
--_002574_hash megasas_change_queue_depth 2 32747 _002574_hash NULL
--_002575_hash mld_newpack 2 50950 _002575_hash NULL
--_002576_hash mptscsih_change_queue_depth 2 26036 _002576_hash NULL
--_002577_hash named_distribute 4 48544 _002577_hash NULL
--_002578_hash NCR_700_change_queue_depth 2 31742 _002578_hash NULL
--_002579_hash netlink_recvmsg 4 61600 _002579_hash NULL
--_002580_hash nfc_alloc_send_skb 4 3167 _002580_hash NULL
--_002581_hash nf_nat_ftp 5 47948 _002581_hash NULL
--_002582_hash nfsctl_transaction_read 3 48250 _002582_hash NULL
--_002583_hash nfsd_read 5 19568 _002583_hash NULL
--_002584_hash nfsd_read_file 6 62241 _002584_hash NULL
--_002585_hash nfsd_write 6 54809 _002585_hash NULL
--_002586_hash nfs_map_group_to_gid 3 15892 _002586_hash NULL
--_002587_hash nfs_map_name_to_uid 3 51132 _002587_hash NULL
--_002588_hash nr_recvmsg 4 12649 _002588_hash NULL
--_002589_hash ntfs_rl_append 2-4 6037 _002589_hash NULL
--_002591_hash ntfs_rl_insert 2-4 4931 _002591_hash NULL
--_002593_hash ntfs_rl_replace 2-4 14136 _002593_hash NULL
--_002595_hash ntfs_rl_split 2-4 52328 _002595_hash NULL
--_002597_hash osd_req_list_collection_objects 5 36664 _002597_hash NULL
--_002598_hash osd_req_list_partition_objects 5 56464 _002598_hash NULL
--_002599_hash osd_req_read_sg 5 47905 _002599_hash NULL
--_002600_hash osd_req_write_sg 5 50908 _002600_hash NULL
--_002602_hash p54_download_eeprom 4 43842 _002602_hash NULL
--_002604_hash packet_recv_error 3 16669 _002604_hash NULL
--_002605_hash packet_recvmsg 4 47700 _002605_hash NULL
--_002606_hash pep_recvmsg 4 19402 _002606_hash NULL
--_002607_hash pfkey_recvmsg 4 53604 _002607_hash NULL
--_002608_hash ping_recvmsg 4 25597 _002608_hash NULL
--_002609_hash pmcraid_change_queue_depth 2 9116 _002609_hash NULL
--_002610_hash pn_recvmsg 4 30887 _002610_hash NULL
--_002611_hash pointer_size_read 3 51863 _002611_hash NULL
--_002612_hash power_read 3 15939 _002612_hash NULL
--_002613_hash pppoe_recvmsg 4 15073 _002613_hash NULL
--_002614_hash pppol2tp_recvmsg 4 57742 _002993_hash NULL nohasharray
--_002615_hash ppp_tx_cp 5 62044 _002615_hash NULL
--_002616_hash prism2_send_mgmt 4 62605 _002616_hash &_002119_hash
--_002617_hash prism2_sta_send_mgmt 5 43916 _002617_hash NULL
--_002618_hash prison_create 1 43623 _002618_hash NULL
--_002619_hash qla2x00_adjust_sdev_qdepth_up 2 20097 _002619_hash NULL
--_002620_hash qla2x00_change_queue_depth 2 24742 _002620_hash NULL
--_002621_hash _queue_data 4 54983 _002621_hash NULL
--_002622_hash raw_recvmsg 4 52529 _002622_hash NULL
--_002623_hash rawsock_recvmsg 4 12144 _002623_hash NULL
--_002624_hash rawv6_recvmsg 4 30265 _002624_hash NULL
--_002625_hash rds_tcp_data_recv 3 53476 _002625_hash NULL
--_002626_hash reada_add_block 2 54247 _002626_hash NULL
--_002627_hash readahead_tree_block 3 36285 _002627_hash NULL
--_002628_hash reada_tree_block_flagged 3 18402 _002628_hash NULL
--_002629_hash read_dma 3 55086 _002629_hash NULL
--_002630_hash read_fifo 3 826 _002630_hash NULL
--_002631_hash read_tree_block 3 841 _002631_hash NULL
--_002632_hash receive_copy 3 12216 _002632_hash NULL
--_002633_hash recover_peb 6-7 29238 _002633_hash NULL
--_002635_hash recv_msg 4 48709 _002635_hash NULL
--_002636_hash recv_stream 4 30138 _002636_hash NULL
--_002637_hash _req_append_segment 2 41031 _002637_hash NULL
--_002638_hash request_key_async 4 6990 _002638_hash NULL
--_002639_hash request_key_async_with_auxdata 4 46624 _002639_hash NULL
--_002640_hash request_key_with_auxdata 4 24515 _002640_hash NULL
--_002641_hash rose_recvmsg 4 2368 _002641_hash &_001788_hash
--_002642_hash rtl8169_try_rx_copy 3 705 _002642_hash NULL
--_002643_hash _rtl92s_firmware_downloadcode 3 14021 _002643_hash NULL
--_002644_hash rx_data 4 60442 _002644_hash NULL
--_002645_hash rxrpc_recvmsg 4 26233 _002645_hash NULL
--_002646_hash sas_change_queue_depth 2 18555 _002646_hash NULL
--_002647_hash scsi_activate_tcq 2 42640 _002647_hash NULL
--_002648_hash scsi_deactivate_tcq 2 47086 _002648_hash NULL
--_002649_hash scsi_execute 5 33596 _002649_hash NULL
--_002650_hash _scsih_adjust_queue_depth 2 1083 _002650_hash NULL
--_002651_hash scsi_init_shared_tag_map 2 59812 _002651_hash NULL
--_002652_hash scsi_track_queue_full 2 44239 _002652_hash NULL
--_002653_hash sctp_abort_pkt_new 5 55218 _002653_hash NULL
--_002654_hash sctp_make_abort_violation 4 27959 _002654_hash NULL
--_002655_hash sctp_make_op_error 5-6 7057 _002655_hash NULL
--_002657_hash sctp_recvmsg 4 23265 _002657_hash NULL
--_002658_hash send_stream 4 3397 _002658_hash NULL
--_002659_hash sis190_try_rx_copy 3 57069 _002659_hash NULL
--_002664_hash skb_copy_and_csum_datagram_iovec 2 24466 _002664_hash NULL
--_002666_hash skge_rx_get 3 40598 _002666_hash NULL
--_002667_hash smp_send_cmd 3 512 _002667_hash NULL
--_002668_hash snd_gf1_mem_proc_dump 5 16926 _003499_hash NULL nohasharray
--_002669_hash sta_dev_read 3 14782 _002669_hash NULL
--_002670_hash sta_inactive_ms_read 3 25690 _002670_hash NULL
--_002671_hash sta_last_signal_read 3 31818 _002671_hash NULL
--_002672_hash stats_dot11ACKFailureCount_read 3 45558 _002672_hash NULL
--_002673_hash stats_dot11FCSErrorCount_read 3 28154 _002673_hash NULL
--_002674_hash stats_dot11RTSFailureCount_read 3 43948 _002674_hash NULL
--_002675_hash stats_dot11RTSSuccessCount_read 3 33065 _002675_hash NULL
--_002676_hash storvsc_connect_to_vsp 2 22 _002676_hash NULL
--_002677_hash sys_msgrcv 3 959 _002677_hash NULL
--_002678_hash sys_syslog 3 10746 _002678_hash NULL
--_002679_hash tcf_csum_ipv4_icmp 3 9258 _002679_hash NULL
--_002680_hash tcf_csum_ipv4_igmp 3 60446 _002680_hash NULL
--_002681_hash tcf_csum_ipv4_tcp 4 39713 _002681_hash NULL
--_002682_hash tcf_csum_ipv4_udp 4 30777 _002682_hash NULL
--_002683_hash tcf_csum_ipv6_icmp 4 11738 _002683_hash NULL
--_002684_hash tcf_csum_ipv6_tcp 4 54877 _002684_hash NULL
--_002685_hash tcf_csum_ipv6_udp 4 25241 _002685_hash NULL
--_002686_hash tcm_loop_change_queue_depth 2 42454 _002686_hash NULL
--_002687_hash tcp_copy_to_iovec 3 28344 _002687_hash NULL
--_002688_hash tcp_mark_head_lost 2 35895 _002688_hash NULL
--_002689_hash tcp_match_skb_to_sack 4 23568 _002689_hash NULL
--_002690_hash timeout_read 3 47915 _002690_hash NULL
--_002691_hash tipc_multicast 5 49144 _002691_hash NULL
--_002692_hash tipc_port_recv_sections 4 42890 _002692_hash NULL
--_002693_hash tipc_port_reject_sections 5 55229 _002693_hash NULL
--_002694_hash total_ps_buffered_read 3 16365 _002694_hash NULL
--_002695_hash tso_fragment 3 29050 _002695_hash NULL
--_002696_hash tty_insert_flip_string 3 34042 _002696_hash NULL
--_002698_hash tun_put_user 4 59849 _002698_hash NULL
--_002699_hash twa_change_queue_depth 2 48808 _002699_hash NULL
--_002700_hash tw_change_queue_depth 2 11116 _002700_hash NULL
--_002701_hash twl_change_queue_depth 2 41342 _002701_hash NULL
--_002702_hash ubi_eba_atomic_leb_change 5 60379 _002702_hash NULL
--_002703_hash ubi_eba_write_leb 5-6 36029 _002703_hash NULL
--_002705_hash ubi_eba_write_leb_st 5 44343 _002705_hash NULL
--_002706_hash udp_recvmsg 4 42558 _002706_hash NULL
--_002707_hash udpv6_recvmsg 4 9813 _002707_hash &_002506_hash
--_002708_hash udpv6_sendmsg 4 22316 _002708_hash NULL
--_002709_hash ulong_read_file 3 42304 _002709_hash &_000522_hash
--_002710_hash unix_dgram_recvmsg 4 14952 _002710_hash NULL
--_002711_hash user_power_read 3 39414 _002711_hash NULL
--_002712_hash v9fs_direct_read 3 45546 _002712_hash NULL
--_002713_hash v9fs_file_readn 4 36353 _002713_hash &_001799_hash
--_002714_hash vcc_recvmsg 4 37198 _002714_hash NULL
--_002715_hash velocity_rx_copy 2 34583 _002715_hash NULL
--_002716_hash W6692_empty_Bfifo 2 47804 _002716_hash NULL
--_002717_hash wep_iv_read 3 54744 _002717_hash NULL
--_002718_hash x25_recvmsg 4 42777 _002718_hash NULL
--_002719_hash xfs_buf_get_map 3 24522 _002719_hash NULL
--_002720_hash xfs_file_aio_write 4 33234 _002720_hash NULL
--_002721_hash xfs_iext_insert 3 18667 _002741_hash NULL nohasharray
--_002722_hash xfs_iext_remove 3 50909 _002722_hash NULL
--_002723_hash xlog_do_recovery_pass 3 21618 _002723_hash NULL
--_002724_hash xlog_find_verify_log_record 2 18870 _002724_hash NULL
--_002725_hash zd_mac_rx 3 38296 _002725_hash NULL
--_002726_hash aircable_process_packet 5 46639 _002726_hash NULL
--_002727_hash ath6kl_wmi_get_new_buf 1 52304 _002727_hash NULL
--_002728_hash batadv_iv_ogm_queue_add 3 46319 _002728_hash NULL
--_002729_hash batadv_receive_client_update_packet 3 41578 _002729_hash NULL
--_002730_hash batadv_receive_server_sync_packet 3 26577 _002730_hash &_000494_hash
--_002731_hash brcmf_alloc_pkt_and_read 2 63116 _002731_hash &_002028_hash
--_002732_hash brcmf_sdcard_recv_buf 6 38179 _002732_hash NULL
--_002733_hash brcmf_sdcard_rwdata 5 65041 _002733_hash NULL
--_002734_hash brcmf_sdcard_send_buf 6 7713 _002734_hash NULL
--_002735_hash brcmf_sdio_forensic_read 3 35311 _002735_hash &_001382_hash
--_002736_hash btrfs_alloc_free_block 3 8986 _002736_hash NULL
--_002737_hash btrfs_free_and_pin_reserved_extent 2 53016 _002737_hash NULL
--_002738_hash btrfs_free_reserved_extent 2 9867 _002738_hash NULL
--_002739_hash carl9170_handle_mpdu 3 11056 _002739_hash NULL
--_002740_hash do_trimming 3 26952 _002740_hash NULL
--_002741_hash edge_tty_recv 4 18667 _002741_hash &_002721_hash
--_002742_hash fwnet_receive_packet 9 50537 _002742_hash NULL
--_002743_hash gigaset_if_receive 3 4861 _002743_hash NULL
--_002744_hash gsm_dlci_data 3 14155 _002744_hash NULL
--_002745_hash handle_rx_packet 3 58993 _002745_hash NULL
--_002746_hash HDLC_irq 2 8709 _002746_hash NULL
--_002747_hash hdlc_rpr_irq 2 10240 _002747_hash NULL
--_002749_hash ifx_spi_insert_flip_string 3 51752 _002749_hash NULL
--_002753_hash ip_nat_sdp_media 8 23386 _002753_hash NULL
--_002754_hash ip_send_unicast_reply 6 38714 _002754_hash NULL
--_002756_hash ipwireless_network_packet_received 4 51277 _002756_hash NULL
--_002757_hash ipwireless_tty_received 3 49154 _002757_hash NULL
--_002758_hash iscsi_iser_recv 4 41948 _002758_hash NULL
--_002759_hash l2cap_bredr_sig_cmd 3 49065 _002759_hash NULL
--_002760_hash l2cap_sock_alloc_skb_cb 2 33532 _002760_hash NULL
--_002761_hash l2cap_sock_recvmsg 4 59886 _002761_hash NULL
--_002762_hash llcp_allocate_pdu 3 19866 _002762_hash NULL
--_002763_hash macvtap_recvmsg 4 63949 _002763_hash NULL
--_002764_hash osd_req_list_dev_partitions 4 60027 _002764_hash NULL
--_002765_hash osd_req_list_partition_collections 5 38223 _002765_hash NULL
--_002766_hash osst_do_scsi 4 44410 _002766_hash NULL
--_002767_hash ping_sendmsg 4 3782 _002767_hash NULL
--_002768_hash ppp_cp_event 6 2965 _002768_hash NULL
--_002769_hash pty_write 3 44757 _002769_hash &_001733_hash
--_002770_hash push_rx 3 28939 _002770_hash NULL
--_002772_hash qla2x00_handle_queue_full 2 24365 _002772_hash NULL
--_002773_hash qla4xxx_change_queue_depth 2 1268 _002773_hash NULL
--_002774_hash rfcomm_sock_recvmsg 4 22227 _002774_hash NULL
--_002775_hash scsi_execute_req 5 42088 _002775_hash NULL
--_002776_hash _scsih_change_queue_depth 2 26230 _002776_hash NULL
--_002777_hash sctp_sf_abort_violation 6 38380 _002777_hash NULL
--_002778_hash send_to_tty 3 45141 _002778_hash NULL
--_002780_hash sky2_receive 2 13407 _002780_hash NULL
--_002781_hash spi_execute 5 28736 _002781_hash NULL
--_002782_hash submit_inquiry 3 42108 _002782_hash NULL
--_002783_hash tcp_dma_try_early_copy 3 4457 _002783_hash NULL
--_002784_hash tcp_sacktag_walk 6 49703 _002784_hash NULL
--_002785_hash tcp_write_xmit 2 64602 _002785_hash NULL
--_002786_hash ti_recv 4 22027 _002786_hash NULL
--_002787_hash tun_do_read 4 50800 _002787_hash NULL
--_002788_hash ubi_leb_change 4 10289 _002788_hash NULL
--_002789_hash ubi_leb_write 4-5 5478 _002789_hash NULL
--_002791_hash udp_sendmsg 4 4492 _002791_hash NULL
--_002792_hash unix_seqpacket_recvmsg 4 23062 _002792_hash &_000477_hash
--_002793_hash v9fs_cached_file_read 3 2514 _002793_hash NULL
--_002794_hash write_leb 5 36957 _002794_hash NULL
--_002795_hash xfs_buf_read_map 3 40226 _002795_hash NULL
--_002796_hash xfs_trans_get_buf_map 4 2927 _002796_hash NULL
--_002797_hash xlog_do_log_recovery 3 17550 _002797_hash NULL
--_002798_hash ath6kl_wmi_add_wow_pattern_cmd 4 12842 _002798_hash NULL
--_002799_hash ath6kl_wmi_beginscan_cmd 8 25462 _002799_hash NULL
--_002800_hash ath6kl_wmi_send_probe_response_cmd 6 31728 _002800_hash NULL
--_002801_hash ath6kl_wmi_set_appie_cmd 5 39266 _002801_hash NULL
--_002802_hash ath6kl_wmi_set_ie_cmd 6 37260 _002802_hash NULL
--_002803_hash ath6kl_wmi_startscan_cmd 8 33674 _002803_hash NULL
--_002804_hash ath6kl_wmi_test_cmd 3 27312 _002804_hash NULL
--_002805_hash brcmf_sdbrcm_membytes 3-5 37324 _002805_hash NULL
--_002807_hash brcmf_sdbrcm_read_control 3 22721 _002807_hash NULL
--_002808_hash brcmf_tx_frame 3 20978 _002808_hash NULL
--_002809_hash __carl9170_rx 3 56784 _002809_hash NULL
--_002810_hash ch_do_scsi 4 31171 _002810_hash NULL
--_002811_hash dbg_leb_change 4 23555 _002811_hash NULL
--_002812_hash dbg_leb_write 4-5 63555 _002812_hash &_000971_hash
--_002814_hash gluebi_write 3 27905 _002814_hash NULL
--_002815_hash hdlc_irq_one 2 3944 _002815_hash NULL
--_002819_hash iser_rcv_completion 2 8048 _002819_hash NULL
--_002820_hash lock_loop 1 61681 _002820_hash NULL
--_002821_hash process_rcvd_data 3 6679 _002821_hash NULL
--_002822_hash brcmf_sdbrcm_bus_txctl 3 42492 _002822_hash NULL
--_002823_hash carl9170_rx 3 13272 _002823_hash NULL
--_002824_hash carl9170_rx_stream 3 1334 _002824_hash NULL
--_002826_hash mpt_lan_receive_post_turbo 2 13592 _002826_hash NULL
--_002827_hash padzero 1 55 _002827_hash &_002251_hash
--_002828_hash scsi_mode_sense 5 16835 _002828_hash NULL
--_002829_hash scsi_vpd_inquiry 4 30040 _002829_hash NULL
--_002830_hash ses_recv_diag 4 47143 _002830_hash &_000679_hash
--_002831_hash ses_send_diag 4 64527 _002831_hash NULL
--_002832_hash tcp_push_one 2 48816 _002832_hash NULL
--_002833_hash __tcp_push_pending_frames 2 48148 _002833_hash NULL
--_002834_hash trim_bitmaps 3 24158 _002834_hash NULL
--_002835_hash tun_recvmsg 4 48463 _002835_hash NULL
--_002836_hash ubifs_leb_change 4 17789 _002836_hash NULL
--_002837_hash ubifs_leb_write 4-5 22679 _002837_hash NULL
--_002839_hash xfs_buf_readahead_map 3 44248 _002839_hash &_000851_hash
--_002840_hash xfs_trans_read_buf_map 5 37487 _002840_hash NULL
--_002841_hash xlog_do_recover 3 59789 _002841_hash NULL
--_002842_hash btrfs_trim_block_group 3 28963 _002842_hash NULL
--_002843_hash do_write_orph_node 2 64343 _002843_hash NULL
--_002844_hash fix_unclean_leb 3 23188 _002844_hash NULL
--_002845_hash fixup_leb 3 43256 _002845_hash NULL
--_002846_hash recover_head 3 17904 _002846_hash NULL
--_002847_hash scsi_get_vpd_page 4 51951 _002847_hash NULL
--_002848_hash sd_do_mode_sense 5 11507 _002848_hash NULL
--_002849_hash tcp_push 3 10680 _002849_hash NULL
--_002850_hash ubifs_wbuf_write_nolock 3 64946 _002850_hash NULL
--_002851_hash ubifs_write_node 3-5 11258 _002851_hash NULL
--_002852_hash ubifs_recover_leb 3 60639 _002852_hash NULL
--_002853_hash write_head 4 30481 _002853_hash NULL
--_002854_hash write_node 4 33121 _002854_hash NULL
--_002855_hash ubifs_recover_log_leb 3 12079 _002855_hash NULL
--_002856_hash replay_log_leb 3 18704 _002856_hash NULL
--_002857_hash alloc_cpu_rmap 1 65363 _002857_hash NULL
--_002858_hash alloc_ebda_hpc 1-2 50046 _002858_hash NULL
--_002860_hash alloc_sched_domains 1 28972 _002860_hash NULL
--_002861_hash amthi_read 4 45831 _002861_hash NULL
--_002862_hash bcm_char_read 3 31750 _002862_hash NULL
--_002863_hash BcmCopySection 5 2035 _002863_hash NULL
--_002864_hash buffer_from_user 3 51826 _002864_hash NULL
--_002865_hash buffer_to_user 3 35439 _002865_hash NULL
--_002866_hash card_send_command 3 40757 _002866_hash NULL
--_002867_hash chd_dec_fetch_cdata 3 50926 _002867_hash NULL
--_002868_hash copy_nodes_to_user 2 63807 _002868_hash NULL
--_002869_hash create_log 2 8225 _002869_hash NULL
--_002870_hash crystalhd_create_dio_pool 2 3427 _002870_hash NULL
--_002871_hash crystalhd_user_data 3 18407 _002871_hash NULL
--_002872_hash do_pages_stat 2 4437 _002872_hash NULL
--_002873_hash do_read_log_to_user 4 3236 _002873_hash NULL
--_002874_hash do_write_log_from_user 3 39362 _002874_hash NULL
--_002875_hash evm_read_key 3 54674 _002875_hash NULL
--_002876_hash evm_write_key 3 27715 _002876_hash NULL
--_002877_hash fir16_create 3 5574 _002877_hash NULL
--_002878_hash get_nodes 3 39012 _002878_hash NULL
--_002879_hash __iio_allocate_kfifo 2-3 55738 _002879_hash NULL
--_002881_hash __iio_allocate_sw_ring_buffer 3 4843 _002881_hash NULL
--_002882_hash iio_debugfs_read_reg 3 60908 _002882_hash NULL
--_002883_hash iio_debugfs_write_reg 3 22742 _002883_hash NULL
--_002884_hash iio_device_alloc 1 41440 _002884_hash NULL
--_002885_hash iio_event_chrdev_read 3 54757 _002885_hash NULL
--_002886_hash iio_read_first_n_kfifo 2 57910 _002886_hash NULL
--_002887_hash iio_read_first_n_sw_rb 2 51911 _002887_hash NULL
--_002888_hash ioapic_setup_resources 1 35255 _002888_hash NULL
--_002889_hash keymap_store 4 45406 _002889_hash NULL
--_002890_hash line6_alloc_sysex_buffer 4 28225 _002890_hash NULL
--_002891_hash line6_dumpreq_initbuf 3 53123 _002891_hash NULL
--_002892_hash line6_midibuf_init 2 52425 _002892_hash NULL
--_002893_hash _malloc 1 54077 _002893_hash NULL
--_002894_hash mei_read 3 6507 _002894_hash NULL
--_002895_hash mei_write 3 4005 _002895_hash NULL
--_002896_hash msg_set 3 51725 _002896_hash NULL
--_002897_hash newpart 6 47485 _002897_hash NULL
--_002898_hash OS_kmalloc 1 36909 _002898_hash NULL
--_002899_hash OS_mem_token_alloc 1 14276 _002899_hash NULL
--_002900_hash packet_came 3 18072 _002900_hash NULL
--_002901_hash pcpu_alloc_bootmem 2 62074 _002901_hash NULL
--_002902_hash pcpu_build_alloc_info 1-3-2 41443 _002902_hash NULL
--_002905_hash pcpu_get_vm_areas 3 50085 _002905_hash NULL
--_002906_hash resource_from_user 3 30341 _002906_hash NULL
--_002907_hash rtsx_read_cfg_seq 3-5 48139 _002907_hash NULL
--_002909_hash rtsx_write_cfg_seq 3-5 27485 _002909_hash NULL
--_002911_hash sca3000_read_data 4 57064 _002911_hash NULL
--_002912_hash sca3000_read_first_n_hw_rb 2 11479 _002912_hash NULL
--_002913_hash send_midi_async 3 57463 _002913_hash NULL
--_002914_hash sep_create_dcb_dmatables_context 6 37551 _002914_hash NULL
--_002915_hash sep_create_dcb_dmatables_context_kernel 6 49728 _002915_hash NULL
--_002916_hash sep_create_msgarea_context 4 33829 _002916_hash NULL
--_002917_hash sep_lli_table_secure_dma 2-3 64042 _002917_hash NULL
--_002919_hash sep_lock_user_pages 2-3 57470 _002919_hash &_002488_hash
--_002921_hash sep_prepare_input_output_dma_table_in_dcb 4-5-2-3 63087 _002921_hash NULL
--_002923_hash sep_read 3 17161 _002923_hash NULL
--_002924_hash TransmitTcb 4 12989 _002924_hash NULL
--_002925_hash ValidateDSDParamsChecksum 3 63654 _002925_hash NULL
--_002926_hash Wb35Reg_BurstWrite 4 62327 _002926_hash NULL
--_002927_hash alloc_irq_cpu_rmap 1 28459 _002927_hash NULL
--_002928_hash InterfaceTransmitPacket 3 42058 _002928_hash NULL
--_002929_hash line6_dumpreq_init 3 34473 _002929_hash NULL
--_002931_hash pcpu_embed_first_chunk 1-3-2 24224 _002931_hash NULL
--_002933_hash pcpu_fc_alloc 2 11818 _002933_hash NULL
--_002934_hash pcpu_page_first_chunk 1 20712 _002934_hash NULL
--_002935_hash pod_alloc_sysex_buffer 3 31651 _002935_hash NULL
--_002936_hash r8712_usbctrl_vendorreq 6 48489 _002936_hash NULL
--_002937_hash r871x_set_wpa_ie 3 7000 _002937_hash NULL
--_002938_hash sep_prepare_input_dma_table 2-3 2009 _002938_hash NULL
--_002940_hash sep_prepare_input_output_dma_table 2-4-3 63429 _002940_hash NULL
--_002943_hash sys_get_mempolicy 3 30379 _002943_hash NULL
--_002944_hash sys_mbind 5 7990 _002944_hash NULL
--_002945_hash sys_migrate_pages 2 39825 _002945_hash NULL
--_002946_hash sys_move_pages 2 42626 _002946_hash NULL
--_002947_hash sys_set_mempolicy 3 32608 _002947_hash NULL
--_002948_hash variax_alloc_sysex_buffer 3 15237 _002948_hash NULL
--_002949_hash vme_user_read 3 55338 _002949_hash NULL
--_002950_hash vme_user_write 3 15587 _002950_hash NULL
--_002954_hash variax_set_raw2 4 32374 _002954_hash NULL
--_002955_hash copy_in_user 3 57502 _002955_hash NULL
--_002956_hash __earlyonly_bootmem_alloc 2 23824 _002956_hash NULL
--_002957_hash rfc4106_set_key 3 54519 _002957_hash NULL
--_002958_hash sparse_early_usemaps_alloc_pgdat_section 2 62304 _002958_hash NULL
--_002959_hash sparse_early_usemaps_alloc_node 4 9269 _002959_hash NULL
--_002960_hash sparse_mem_maps_populate_node 4 12669 _002960_hash &_002242_hash
--_002961_hash vmemmap_alloc_block 1 43245 _002961_hash NULL
--_002962_hash sparse_early_mem_maps_alloc_node 4 36971 _002962_hash NULL
--_002963_hash vmemmap_alloc_block_buf 1 61126 _002963_hash NULL
--_002964_hash alloc_mr 1 45935 _002964_hash NULL
--_002965_hash atomic_counters_read 3 48827 _002965_hash NULL
--_002966_hash atomic_stats_read 3 36228 _002966_hash NULL
--_002967_hash capabilities_read 3 58457 _002967_hash NULL
--_002968_hash compat_core_sys_select 1 65285 _002968_hash NULL
--_002969_hash compat_dccp_setsockopt 5 51263 _002969_hash NULL
--_002970_hash compat_do_arpt_set_ctl 4 12184 _002970_hash NULL
--_002971_hash compat_do_ip6t_set_ctl 4 3184 _002971_hash NULL
--_002972_hash compat_do_ipt_set_ctl 4 58466 _002972_hash &_002078_hash
--_002973_hash compat_filldir 3 32999 _002973_hash NULL
--_002974_hash compat_filldir64 3 35354 _002974_hash NULL
--_002975_hash compat_fillonedir 3 15620 _002975_hash NULL
--_002976_hash compat_ip_setsockopt 5 13870 _003094_hash NULL nohasharray
--_002977_hash compat_ipv6_setsockopt 5 20468 _002977_hash NULL
--_002978_hash compat_mpctl_ioctl 2 45671 _002978_hash NULL
--_002979_hash compat_raw_setsockopt 5 30634 _002979_hash NULL
--_002980_hash compat_rawv6_setsockopt 5 4967 _002980_hash NULL
--_002981_hash compat_rw_copy_check_uvector 3 22001 _003263_hash NULL nohasharray
--_002982_hash compat_sock_setsockopt 5 23 _002982_hash NULL
--_002983_hash compat_sys_get_mempolicy 3 31109 _002983_hash NULL
--_002984_hash compat_sys_kexec_load 2 35674 _002984_hash NULL
--_002985_hash compat_sys_keyctl 4 9639 _002985_hash NULL
--_002986_hash compat_sys_mbind 5 36256 _002986_hash NULL
--_002987_hash compat_sys_migrate_pages 2 3157 _002987_hash NULL
--_002988_hash compat_sys_move_pages 2 5861 _002988_hash NULL
--_002989_hash compat_sys_mq_timedsend 3 31060 _002989_hash NULL
--_002990_hash compat_sys_msgrcv 2 7482 _002990_hash NULL
--_002991_hash compat_sys_msgsnd 2 10738 _002991_hash NULL
--_002992_hash compat_sys_semtimedop 3 3606 _002992_hash NULL
--_002993_hash compat_sys_set_mempolicy 3 57742 _002993_hash &_002614_hash
--_002994_hash __copy_in_user 3 34790 _002994_hash NULL
--_002995_hash dev_counters_read 3 19216 _002995_hash NULL
--_002996_hash dev_names_read 3 38509 _002996_hash NULL
--_002997_hash driver_names_read 3 60399 _002997_hash NULL
--_002998_hash driver_stats_read 3 8944 _002998_hash NULL
--_002999_hash evdev_ioctl_compat 2 13851 _002999_hash NULL
--_003000_hash evtchn_read 3 3569 _003000_hash NULL
--_003001_hash evtchn_write 3 43278 _003001_hash NULL
--_003002_hash fat_compat_ioctl_filldir 3 36328 _003002_hash NULL
--_003003_hash flash_read 3 57843 _003003_hash NULL
--_003004_hash flash_write 3 62354 _003004_hash NULL
--_003005_hash fw_device_op_compat_ioctl 2 42804 _003005_hash NULL
--_003006_hash gather_array 3 56641 _003006_hash NULL
--_003007_hash ghash_async_setkey 3 60001 _003007_hash NULL
--_003008_hash gntdev_alloc_map 2 35145 _003008_hash NULL
--_003009_hash gnttab_map 2 56439 _003009_hash NULL
--_003010_hash gru_alloc_gts 2-3 60056 _003010_hash &_000981_hash
--_003012_hash hiddev_compat_ioctl 2 41255 _003012_hash NULL
--_003013_hash init_cdev 1 8274 _003013_hash NULL
--_003014_hash init_per_cpu 1 17880 _003014_hash NULL
--_003015_hash ipath_create_cq 2 45586 _003015_hash NULL
--_003016_hash ipath_get_base_info 3 7043 _003016_hash NULL
--_003017_hash ipath_init_qp_table 2 25167 _003017_hash NULL
--_003018_hash ipath_resize_cq 2 712 _003018_hash NULL
--_003019_hash joydev_compat_ioctl 2 8765 _003019_hash NULL
--_003020_hash mon_bin_compat_ioctl 3 50234 _003020_hash NULL
--_003021_hash options_write 3 47243 _003021_hash NULL
--_003022_hash portcntrs_1_read 3 47253 _003022_hash NULL
--_003023_hash portcntrs_2_read 3 56586 _003023_hash NULL
--_003024_hash portnames_read 3 41958 _003024_hash NULL
--_003025_hash ptc_proc_write 3 12076 _003025_hash NULL
--_003026_hash put_cmsg_compat 4 35937 _003026_hash NULL
--_003027_hash qib_alloc_devdata 2 51819 _003027_hash NULL
--_003028_hash qib_alloc_fast_reg_page_list 2 10507 _003028_hash NULL
--_003029_hash qib_cdev_init 1 34778 _003029_hash NULL
--_003030_hash qib_create_cq 2 27497 _003030_hash NULL
--_003031_hash qib_diag_write 3 62133 _003031_hash NULL
--_003032_hash qib_get_base_info 3 11369 _003032_hash NULL
--_003033_hash qib_resize_cq 2 53090 _003033_hash NULL
--_003034_hash qsfp_1_read 3 21915 _003034_hash NULL
--_003035_hash qsfp_2_read 3 31491 _003035_hash NULL
--_003036_hash queue_reply 3 22416 _003036_hash NULL
--_003037_hash spidev_compat_ioctl 2 63778 _003037_hash NULL
--_003038_hash split 2 11691 _003038_hash NULL
--_003039_hash stats_read_ul 3 32751 _003039_hash NULL
--_003040_hash sys32_ipc 3 7238 _003040_hash NULL
--_003041_hash sys32_rt_sigpending 2 25814 _003041_hash NULL
--_003042_hash tunables_read 3 36385 _003042_hash NULL
--_003043_hash tunables_write 3 59563 _003043_hash NULL
--_003044_hash xenbus_file_write 3 6282 _003044_hash NULL
--_003045_hash xlbd_reserve_minors 1-2 18365 _003045_hash NULL
--_003047_hash xpc_kmalloc_cacheline_aligned 1 42895 _003047_hash NULL
--_003048_hash xpc_kzalloc_cacheline_aligned 1 65433 _003048_hash NULL
--_003049_hash xsd_read 3 15653 _003049_hash NULL
--_003050_hash compat_do_readv_writev 4 49102 _003050_hash NULL
--_003051_hash compat_keyctl_instantiate_key_iov 3 57431 _003088_hash NULL nohasharray
--_003052_hash compat_process_vm_rw 3-5 22254 _003052_hash NULL
--_003054_hash compat_sys_select 1 16131 _003054_hash NULL
--_003055_hash compat_sys_setsockopt 5 3326 _003055_hash NULL
--_003056_hash compat_udp_setsockopt 5 38840 _003056_hash NULL
--_003057_hash compat_udpv6_setsockopt 5 42981 _003057_hash NULL
--_003058_hash do_compat_pselect 1 10398 _003058_hash NULL
--_003059_hash gnttab_expand 1 15817 _003059_hash NULL
--_003060_hash ipath_cdev_init 1 37752 _003060_hash NULL
--_003061_hash ipath_reg_phys_mr 3 23918 _003061_hash &_000999_hash
--_003062_hash qib_alloc_fast_reg_mr 2 12526 _003062_hash NULL
--_003063_hash qib_reg_phys_mr 3 60202 _003063_hash &_000897_hash
--_003064_hash compat_readv 3 30273 _003064_hash NULL
--_003065_hash compat_sys_process_vm_readv 3-5 15374 _003065_hash NULL
--_003067_hash compat_sys_process_vm_writev 3-5 41194 _003067_hash NULL
--_003069_hash compat_sys_pselect6 1 14105 _003069_hash NULL
--_003070_hash compat_writev 3 60063 _003070_hash NULL
--_003071_hash get_free_entries 1 46030 _003071_hash NULL
--_003072_hash compat_sys_preadv64 3 24283 _003072_hash NULL
--_003073_hash compat_sys_pwritev64 3 51151 _003073_hash NULL
--_003074_hash compat_sys_readv 3 20911 _003074_hash NULL
--_003075_hash compat_sys_writev 3 5784 _003075_hash NULL
--_003076_hash gnttab_alloc_grant_references 1 18240 _003076_hash NULL
--_003077_hash compat_sys_preadv 3 583 _003077_hash NULL
--_003078_hash compat_sys_pwritev 3 17886 _003078_hash NULL
--_003079_hash aes_decrypt_fail_read 3 54815 _003079_hash NULL
--_003080_hash aes_decrypt_interrupt_read 3 19910 _003080_hash NULL
--_003081_hash aes_decrypt_packets_read 3 10155 _003081_hash NULL
--_003082_hash aes_encrypt_fail_read 3 32562 _003082_hash NULL
--_003083_hash aes_encrypt_interrupt_read 3 39919 _003083_hash NULL
--_003084_hash aes_encrypt_packets_read 3 48666 _003084_hash NULL
--_003085_hash agp_remap 2 30665 _003085_hash NULL
--_003086_hash alloc_apertures 1 56561 _003086_hash NULL
--_003087_hash allocate_probes 1 40204 _003087_hash NULL
--_003088_hash alloc_ftrace_hash 1 57431 _003088_hash &_003051_hash
--_003089_hash alloc_page_cgroup 1 2919 _003089_hash NULL
--_003090_hash __alloc_preds 2 9492 _003090_hash NULL
--_003091_hash __alloc_pred_stack 2 26687 _003091_hash NULL
--_003092_hash alloc_sched_domains 1 47756 _003092_hash NULL
--_003093_hash alloc_trace_probe 6 38720 _003093_hash NULL
--_003094_hash alloc_trace_uprobe 3 13870 _003094_hash &_002976_hash
--_003095_hash ath6kl_sdio_alloc_prep_scat_req 2 51986 _003095_hash NULL
--_003096_hash ath6kl_usb_post_recv_transfers 2 32892 _003096_hash NULL
--_003097_hash ath6kl_usb_submit_ctrl_in 6 32880 _003097_hash &_000795_hash
--_003098_hash ath6kl_usb_submit_ctrl_out 6 9978 _003098_hash NULL
--_003099_hash av7110_ipack_init 2 46655 _003099_hash NULL
--_003100_hash av7110_vbi_write 3 34384 _003100_hash NULL
--_003101_hash bin_uuid 3 28999 _003101_hash NULL
--_003102_hash blk_dropped_read 3 4168 _003102_hash NULL
--_003103_hash blk_msg_write 3 13655 _003103_hash NULL
--_003104_hash brcmf_usbdev_qinit 2 19090 _003104_hash &_001715_hash
--_003105_hash brcmf_usb_dl_cmd 4 53130 _003105_hash NULL
--_003106_hash ci_ll_init 3 12930 _003106_hash NULL
--_003107_hash ci_ll_write 4 3740 _003107_hash NULL
--_003108_hash conf_read 3 55786 _003108_hash NULL
--_003109_hash __copy_from_user_inatomic_nocache 3 49921 _003109_hash NULL
--_003110_hash cx24116_writeregN 4 41975 _003110_hash NULL
--_003111_hash cyttsp_probe 4 1940 _003111_hash NULL
--_003112_hash dccpprobe_read 3 52549 _003112_hash NULL
--_003113_hash ddb_input_read 3 9743 _003113_hash NULL
--_003114_hash ddb_output_write 3 31902 _003114_hash NULL
--_003115_hash __devres_alloc 2 25598 _003115_hash NULL
--_003116_hash dma_rx_errors_read 3 52045 _003116_hash NULL
--_003117_hash dma_rx_requested_read 3 65354 _003117_hash NULL
--_003118_hash dma_tx_errors_read 3 46060 _003118_hash NULL
--_003119_hash dma_tx_requested_read 3 16110 _003203_hash NULL nohasharray
--_003120_hash do_dmabuf_dirty_sou 7 3017 _003120_hash NULL
--_003121_hash do_surface_dirty_sou 7 39678 _003121_hash NULL
--_003122_hash driver_state_read 3 17194 _003122_hash &_001511_hash
--_003123_hash drm_agp_bind_pages 3 56748 _003123_hash NULL
--_003124_hash drm_buffer_alloc 2 44405 _003124_hash NULL
--_003125_hash drm_calloc_large 1-2 65421 _003125_hash NULL
--_003127_hash drm_fb_helper_init 3-4 19044 _003127_hash NULL
--_003129_hash drm_ht_create 2 18853 _003129_hash NULL
--_003130_hash drm_ioctl 2 42813 _003130_hash NULL
--_003131_hash drm_malloc_ab 1-2 16831 _003131_hash NULL
--_003133_hash drm_mode_crtc_set_gamma_size 2 31881 _003133_hash NULL
--_003134_hash drm_plane_init 6 28731 _003134_hash NULL
--_003135_hash drm_property_create 4 51239 _003135_hash NULL
--_003136_hash drm_property_create_blob 2 7414 _003136_hash NULL
--_003137_hash drm_vblank_init 2 11362 _003137_hash NULL
--_003138_hash drm_vmalloc_dma 1 14550 _003138_hash NULL
--_003139_hash dvb_aplay 3 56296 _003139_hash NULL
--_003140_hash dvb_ca_en50221_init 4 45718 _003140_hash NULL
--_003141_hash dvb_ca_en50221_io_write 3 43533 _003141_hash NULL
--_003142_hash dvb_dmxdev_set_buffer_size 2 55643 _003142_hash NULL
--_003143_hash dvbdmx_write 3 19423 _003143_hash NULL
--_003144_hash dvb_dvr_set_buffer_size 2 9840 _003144_hash NULL
--_003145_hash dvb_net_sec 3 37884 _003145_hash NULL
--_003146_hash dvb_play 3 50814 _003146_hash NULL
--_003147_hash dvb_ringbuffer_pkt_read_user 2-5-3 4303 _003147_hash NULL
--_003150_hash dvb_ringbuffer_read_user 3 56702 _003150_hash NULL
--_003151_hash dvb_usercopy 2 14036 _003151_hash NULL
--_003152_hash dw210x_op_rw 6 39915 _003152_hash NULL
--_003153_hash edt_ft5x06_debugfs_raw_data_read 3 28002 _003153_hash NULL
--_003154_hash em_canid_change 3 14150 _003154_hash NULL
--_003155_hash event_calibration_read 3 21083 _003155_hash NULL
--_003156_hash event_enable_read 3 7074 _003156_hash NULL
--_003157_hash event_filter_read 3 23494 _003157_hash NULL
--_003158_hash event_filter_write 3 56609 _003158_hash NULL
--_003159_hash event_heart_beat_read 3 48961 _003159_hash NULL
--_003160_hash event_id_read 3 64288 _003160_hash &_001300_hash
--_003161_hash event_oom_late_read 3 61175 _003161_hash &_001054_hash
--_003162_hash event_phy_transmit_error_read 3 10471 _003162_hash NULL
--_003163_hash event_rx_mem_empty_read 3 40363 _003163_hash NULL
--_003164_hash event_rx_mismatch_read 3 38518 _003164_hash NULL
--_003165_hash event_rx_pool_read 3 25792 _003165_hash NULL
--_003166_hash event_tx_stuck_read 3 19305 _003166_hash NULL
--_003167_hash excessive_retries_read 3 60425 _003167_hash NULL
--_003168_hash flexcop_device_kmalloc 1 54793 _003168_hash NULL
--_003169_hash fm_send_cmd 5 39639 _003169_hash NULL
--_003170_hash __fprog_create 2 41263 _003170_hash NULL
--_003171_hash fq_codel_zalloc 1 15378 _003171_hash NULL
--_003172_hash ftrace_pid_write 3 39710 _003172_hash NULL
--_003173_hash ftrace_profile_read 3 21327 _003173_hash NULL
--_003174_hash fw_stats_raw_read 3 1369 _003174_hash NULL
--_003175_hash get_info 3 55681 _003175_hash NULL
--_003176_hash __get_vm_area_node 1 55305 _003176_hash NULL
--_003177_hash gpio_power_read 3 36059 _003177_hash NULL
--_003178_hash h5_prepare_pkt 4 12085 _003178_hash NULL
--_003179_hash hsc_msg_alloc 1 60990 _003179_hash NULL
--_003180_hash hsc_write 3 55875 _003180_hash NULL
--_003181_hash hsi_alloc_controller 1 41802 _003181_hash NULL
--_003182_hash hsi_register_board_info 2 13820 _003182_hash NULL
--_003183_hash hugetlb_cgroup_read 5 49259 _003183_hash NULL
--_003184_hash i915_cache_sharing_read 3 24775 _003184_hash NULL
--_003185_hash i915_cache_sharing_write 3 57961 _003185_hash NULL
--_003186_hash i915_max_freq_read 3 20581 _003186_hash NULL
--_003187_hash i915_max_freq_write 3 11350 _003187_hash NULL
--_003188_hash i915_min_freq_read 3 38470 _003188_hash NULL
--_003189_hash i915_min_freq_write 3 10981 _003189_hash NULL
--_003190_hash i915_ring_stop_read 3 42549 _003190_hash &_000740_hash
--_003191_hash i915_ring_stop_write 3 59010 _003191_hash NULL
--_003192_hash i915_wedged_read 3 35474 _003192_hash NULL
--_003193_hash i915_wedged_write 3 47771 _003193_hash NULL
--_003194_hash ieee802154_alloc_device 1 13767 _003194_hash NULL
--_003195_hash intel_sdvo_write_cmd 4 54377 _003195_hash &_000832_hash
--_003196_hash isr_cmd_cmplt_read 3 53439 _003196_hash NULL
--_003197_hash isr_commands_read 3 41398 _003197_hash NULL
--_003198_hash isr_decrypt_done_read 3 49490 _003198_hash NULL
--_003199_hash isr_dma0_done_read 3 8574 _003199_hash NULL
--_003200_hash isr_dma1_done_read 3 48159 _003200_hash NULL
--_003201_hash isr_fiqs_read 3 34687 _003201_hash NULL
--_003202_hash isr_host_acknowledges_read 3 54136 _003202_hash NULL
--_003203_hash isr_hw_pm_mode_changes_read 3 16110 _003203_hash &_003119_hash
--_003204_hash isr_irqs_read 3 9181 _003204_hash NULL
--_003205_hash isr_low_rssi_read 3 64789 _003205_hash NULL
--_003206_hash isr_pci_pm_read 3 30271 _003206_hash NULL
--_003207_hash isr_rx_headers_read 3 38325 _003207_hash NULL
--_003208_hash isr_rx_mem_overflow_read 3 43025 _003208_hash NULL
--_003209_hash isr_rx_procs_read 3 31804 _003209_hash NULL
--_003210_hash isr_rx_rdys_read 3 35283 _003210_hash NULL
--_003211_hash isr_tx_exch_complete_read 3 16103 _003211_hash NULL
--_003212_hash isr_tx_procs_read 3 23084 _003212_hash NULL
--_003213_hash isr_wakeups_read 3 49607 _003213_hash NULL
--_003214_hash LoadBitmap 2 19658 _003214_hash NULL
--_003215_hash mem_cgroup_read 5 22461 _003215_hash NULL
--_003216_hash mic_calc_failure_read 3 59700 _003216_hash NULL
--_003217_hash mic_rx_pkts_read 3 27972 _003217_hash NULL
--_003218_hash __module_alloc 1 50004 _003218_hash NULL
--_003219_hash module_alloc_update_bounds_rw 1 63233 _003219_hash NULL
--_003220_hash module_alloc_update_bounds_rx 1 58634 _003220_hash NULL
--_003221_hash mwifiex_usb_submit_rx_urb 2 54558 _003221_hash NULL
--_003222_hash nfc_hci_hcp_message_tx 6 14534 _003222_hash NULL
--_003223_hash nfc_hci_set_param 5 40697 _003223_hash NULL
--_003224_hash nfc_shdlc_alloc_skb 2 12741 _003224_hash NULL
--_003225_hash opera1_xilinx_rw 5 31453 _003225_hash NULL
--_003226_hash persistent_ram_vmap 1-2 709 _003226_hash NULL
--_003228_hash prctl_set_mm 3 64538 _003228_hash NULL
--_003229_hash probe_kernel_write 3 17481 _003229_hash NULL
--_003230_hash proc_fault_inject_read 3 36802 _003230_hash NULL
--_003231_hash proc_fault_inject_write 3 21058 _003231_hash NULL
--_003232_hash ps_pspoll_max_apturn_read 3 6699 _003232_hash NULL
--_003233_hash ps_pspoll_timeouts_read 3 11776 _003233_hash NULL
--_003234_hash ps_pspoll_utilization_read 3 5361 _003234_hash NULL
--_003235_hash ps_upsd_max_apturn_read 3 19918 _003235_hash NULL
--_003236_hash ps_upsd_max_sptime_read 3 63362 _003236_hash NULL
--_003237_hash ps_upsd_timeouts_read 3 28924 _003237_hash NULL
--_003238_hash ps_upsd_utilization_read 3 51669 _003238_hash NULL
--_003239_hash ptp_filter_init 2 36780 _003239_hash NULL
--_003240_hash pwr_disable_ps_read 3 13176 _003240_hash NULL
--_003241_hash pwr_elp_enter_read 3 5324 _003241_hash NULL
--_003242_hash pwr_enable_ps_read 3 17686 _003242_hash NULL
--_003243_hash pwr_fix_tsf_ps_read 3 26627 _003243_hash NULL
--_003244_hash pwr_missing_bcns_read 3 25824 _003244_hash NULL
--_003245_hash pwr_power_save_off_read 3 18355 _003245_hash NULL
--_003246_hash pwr_ps_enter_read 3 26935 _003246_hash &_000512_hash
--_003247_hash pwr_rcvd_awake_beacons_read 3 50505 _003247_hash NULL
--_003248_hash pwr_rcvd_beacons_read 3 52836 _003248_hash NULL
--_003249_hash pwr_tx_without_ps_read 3 48423 _003249_hash NULL
--_003250_hash pwr_tx_with_ps_read 3 60851 _003250_hash NULL
--_003251_hash pwr_wake_on_host_read 3 26321 _003251_hash NULL
--_003252_hash pwr_wake_on_timer_exp_read 3 22640 _003252_hash NULL
--_003253_hash rb_simple_read 3 45972 _003253_hash NULL
--_003254_hash read_file_dfs 3 43145 _003254_hash NULL
--_003255_hash retry_count_read 3 52129 _003255_hash NULL
--_003256_hash rx_dropped_read 3 44799 _003256_hash NULL
--_003257_hash rx_fcs_err_read 3 62844 _003257_hash NULL
--_003258_hash rx_hdr_overflow_read 3 64407 _003258_hash NULL
--_003259_hash rx_hw_stuck_read 3 57179 _003259_hash NULL
--_003260_hash rx_out_of_mem_read 3 10157 _003260_hash NULL
--_003261_hash rx_path_reset_read 3 23801 _003261_hash NULL
--_003262_hash rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read 3 55106 _003262_hash NULL
--_003263_hash rxpipe_descr_host_int_trig_rx_data_read 3 22001 _003263_hash &_002981_hash
--_003264_hash rxpipe_missed_beacon_host_int_trig_rx_data_read 3 63405 _003264_hash NULL
--_003265_hash rxpipe_rx_prep_beacon_drop_read 3 2403 _003265_hash NULL
--_003266_hash rxpipe_tx_xfr_host_int_trig_rx_data_read 3 35538 _003266_hash NULL
--_003267_hash rx_reset_counter_read 3 58001 _003267_hash NULL
--_003268_hash rx_xfr_hint_trig_read 3 40283 _003268_hash NULL
--_003269_hash saa7146_vmalloc_build_pgtable 2 19780 _003269_hash NULL
--_003270_hash sched_feat_write 3 55202 _003270_hash NULL
--_003271_hash sd_alloc_ctl_entry 1 29708 _003271_hash NULL
--_003272_hash shmem_pread_fast 3 34147 _003272_hash NULL
--_003273_hash shmem_pread_slow 3 3198 _003273_hash NULL
--_003274_hash shmem_pwrite_slow 3 31741 _003274_hash NULL
--_003275_hash show_header 3 4722 _003275_hash &_000745_hash
--_003276_hash stack_max_size_read 3 1445 _003276_hash NULL
--_003277_hash subsystem_filter_read 3 62310 _003277_hash NULL
--_003278_hash subsystem_filter_write 3 13022 _003278_hash NULL
--_003279_hash swap_cgroup_swapon 2 13614 _003279_hash NULL
--_003280_hash system_enable_read 3 25815 _003280_hash NULL
--_003281_hash tda10048_writeregbulk 4 11050 _003281_hash NULL
--_003282_hash tlbflush_read_file 3 64661 _003282_hash NULL
--_003283_hash trace_options_core_read 3 47390 _003283_hash NULL
--_003284_hash trace_options_read 3 11419 _003284_hash NULL
--_003285_hash trace_parser_get_init 2 31379 _003285_hash NULL
--_003286_hash traceprobe_probes_write 3 64969 _003286_hash NULL
--_003287_hash trace_seq_to_user 3 65398 _003287_hash NULL
--_003288_hash tracing_buffers_read 3 11124 _003288_hash NULL
--_003289_hash tracing_clock_write 3 27961 _003289_hash NULL
--_003290_hash tracing_cpumask_read 3 7010 _003290_hash NULL
--_003291_hash tracing_ctrl_read 3 46922 _003291_hash NULL
--_003292_hash tracing_entries_read 3 8345 _003292_hash NULL
--_003293_hash tracing_max_lat_read 3 8890 _003293_hash NULL
--_003294_hash tracing_read_dyn_info 3 45468 _003294_hash NULL
--_003295_hash tracing_readme_read 3 16493 _003295_hash NULL
--_003296_hash tracing_saved_cmdlines_read 3 21434 _003296_hash NULL
--_003297_hash tracing_set_trace_read 3 44122 _003297_hash NULL
--_003298_hash tracing_set_trace_write 3 57096 _003298_hash NULL
--_003299_hash tracing_stats_read 3 34537 _003299_hash NULL
--_003300_hash tracing_total_entries_read 3 62817 _003300_hash NULL
--_003301_hash tracing_trace_options_write 3 153 _003301_hash NULL
--_003302_hash tstats_write 3 60432 _003302_hash &_000009_hash
--_003303_hash ttm_bo_fbdev_io 4 9805 _003303_hash NULL
--_003304_hash ttm_bo_io 5 47000 _003304_hash NULL
--_003305_hash ttm_dma_page_pool_free 2 34135 _003305_hash NULL
--_003306_hash ttm_page_pool_free 2 61661 _003306_hash NULL
--_003307_hash ttusb2_msg 4 3100 _003307_hash NULL
--_003308_hash tx_internal_desc_overflow_read 3 47300 _003308_hash NULL
--_003309_hash tx_queue_len_read 3 1463 _003309_hash NULL
--_003310_hash tx_queue_status_read 3 44978 _003310_hash NULL
--_003311_hash u_memcpya 2-3 30139 _003311_hash NULL
--_003313_hash usb_allocate_stream_buffers 3 8964 _003313_hash NULL
--_003314_hash vifs_state_read 3 33762 _003314_hash NULL
--_003315_hash vmalloc_to_sg 2 58354 _003315_hash NULL
--_003316_hash vm_map_ram 2 23078 _003316_hash &_001095_hash
--_003317_hash vmw_execbuf_process 5 22885 _003317_hash NULL
--_003318_hash vmw_fifo_reserve 2 12141 _003318_hash NULL
--_003319_hash vmw_kms_present 9 38130 _003319_hash NULL
--_003320_hash vmw_kms_readback 6 5727 _003320_hash NULL
--_003321_hash wep_addr_key_count_read 3 20174 _003321_hash NULL
--_003322_hash wep_decrypt_fail_read 3 58567 _003322_hash NULL
--_003323_hash wep_default_key_count_read 3 43035 _003323_hash NULL
--_003324_hash wep_interrupt_read 3 41492 _003324_hash NULL
--_003325_hash wep_key_not_found_read 3 13377 _003325_hash &_000952_hash
--_003326_hash wep_packets_read 3 18751 _003326_hash NULL
--_003327_hash wl1251_cmd_template_set 4 6172 _003327_hash NULL
--_003328_hash wl1271_format_buffer 2 20834 _003328_hash NULL
--_003329_hash wl1271_rx_filter_alloc_field 5 46721 _003329_hash NULL
--_003330_hash wl12xx_cmd_build_probe_req 6-8 54946 _003330_hash NULL
--_003332_hash wlcore_alloc_hw 1 7785 _003332_hash NULL
--_003333_hash aggr_size_rx_size_read 3 33526 _003333_hash NULL
--_003334_hash aggr_size_tx_agg_vs_rate_read 3 21438 _003334_hash NULL
--_003335_hash alloc_and_copy_ftrace_hash 1 29368 _003335_hash NULL
--_003336_hash alloc_bulk_urbs_generic 5 12127 _003336_hash NULL
--_003337_hash alloc_ieee80211 1 20063 _003337_hash NULL
--_003338_hash alloc_ieee80211_rsl 1 34564 _003338_hash NULL
--_003339_hash alloc_perm_bits 2 1532 _003339_hash NULL
--_003340_hash alloc_private 2 22399 _003340_hash NULL
--_003341_hash alloc_rtllib 1 51136 _003341_hash NULL
--_003342_hash alloc_rx_desc_ring 2 18016 _003342_hash NULL
--_003343_hash arcfb_write 3 8702 _003343_hash NULL
--_003344_hash ath6kl_usb_bmi_read 3 48745 _003344_hash NULL
--_003345_hash ath6kl_usb_bmi_write 3 2454 _003345_hash &_001020_hash
--_003346_hash ath6kl_usb_ctrl_msg_exchange 4 33327 _003346_hash NULL
--_003347_hash au0828_init_isoc 2-3 61917 _003347_hash NULL
--_003349_hash auok190xfb_write 3 37001 _003349_hash NULL
--_003350_hash beacon_interval_read 3 7091 _003350_hash NULL
--_003351_hash brcmf_usb_attach 1-2 44656 _003351_hash NULL
--_003353_hash broadsheetfb_write 3 39976 _003353_hash NULL
--_003354_hash broadsheet_spiflash_rewrite_sector 2 54864 _003354_hash NULL
--_003355_hash ci13xxx_add_device 3 14456 _003355_hash NULL
--_003356_hash cmpk_message_handle_tx 4 54024 _003356_hash NULL
--_003357_hash comedi_alloc_subdevices 2 29207 _003357_hash NULL
--_003358_hash comedi_buf_alloc 3 24822 _003358_hash NULL
--_003359_hash comedi_read 3 13199 _003359_hash NULL
--_003360_hash comedi_write 3 47926 _003360_hash NULL
--_003361_hash create_trace_probe 1 20175 _003361_hash NULL
--_003362_hash create_trace_uprobe 1 13184 _003362_hash NULL
--_003363_hash cx18_copy_buf_to_user 4 22735 _003363_hash NULL
--_003364_hash cx231xx_init_bulk 2-3 47024 _003364_hash NULL
--_003366_hash cx231xx_init_isoc 2-3 56453 _003366_hash NULL
--_003368_hash cx231xx_init_vbi_isoc 2-3 28053 _003368_hash NULL
--_003370_hash da9052_group_write 3 4534 _003370_hash NULL
--_003371_hash debug_debug1_read 3 8856 _003371_hash NULL
--_003372_hash debug_debug2_read 3 30526 _003372_hash NULL
--_003373_hash debug_debug3_read 3 56894 _003373_hash NULL
--_003374_hash debug_debug4_read 3 61367 _003374_hash NULL
--_003375_hash debug_debug5_read 3 2291 _003375_hash NULL
--_003376_hash debug_debug6_read 3 33168 _003376_hash NULL
--_003377_hash dev_read 3 56369 _003377_hash NULL
--_003378_hash do_dmabuf_dirty_ldu 6 52241 _003378_hash NULL
--_003379_hash drm_compat_ioctl 2 51717 _003379_hash NULL
--_003380_hash drm_mode_create_tv_properties 2 23122 _003380_hash NULL
--_003381_hash drm_property_create_bitmask 5 30195 _003381_hash NULL
--_003382_hash drm_property_create_enum 5 29201 _003382_hash NULL
--_003383_hash dsp_buffer_alloc 2 11684 _003383_hash NULL
--_003384_hash dt3155_alloc_coherent 2 58073 _003384_hash NULL
--_003385_hash dtim_interval_read 3 654 _003385_hash NULL
--_003386_hash dvb_audio_write 3 51275 _003386_hash NULL
--_003387_hash dvb_ca_en50221_io_ioctl 2 26490 _003387_hash NULL
--_003388_hash dvb_ca_write 3 41171 _003388_hash NULL
--_003389_hash dvb_demux_ioctl 2 42733 _003389_hash NULL
--_003390_hash dvb_dmxdev_buffer_read 4 20682 _003390_hash NULL
--_003391_hash dvb_dvr_ioctl 2 49182 _003391_hash NULL
--_003392_hash dvb_generic_ioctl 2 21810 _003392_hash NULL
--_003393_hash dvb_net_ioctl 2 61559 _003393_hash NULL
--_003394_hash dvb_net_sec_callback 2 28786 _003394_hash NULL
--_003396_hash dvb_video_write 3 754 _003396_hash NULL
--_003397_hash dynamic_ps_timeout_read 3 10110 _003397_hash NULL
--_003398_hash easycap_alsa_vmalloc 2 14426 _003398_hash NULL
--_003399_hash em28xx_alloc_isoc 4 46892 _003399_hash NULL
--_003400_hash error_error_bar_retry_read 3 64305 _003400_hash NULL
--_003401_hash error_error_frame_cts_nul_flid_read 3 17262 _003401_hash NULL
--_003402_hash error_error_frame_read 3 39947 _003402_hash &_002436_hash
--_003403_hash error_error_null_Frame_tx_start_read 3 55024 _003403_hash NULL
--_003404_hash error_error_numll_frame_cts_start_read 3 47781 _003404_hash NULL
--_003405_hash ext_sd_execute_read_data 9 48589 _003405_hash NULL
--_003406_hash ext_sd_execute_write_data 9 8175 _003406_hash NULL
--_003407_hash fast_user_write 5 20494 _003407_hash NULL
--_003408_hash f_audio_buffer_alloc 1 41110 _003408_hash NULL
--_003409_hash fb_alloc_cmap_gfp 2 20792 _003409_hash NULL
--_003410_hash fbcon_do_set_font 2-3 4079 _003410_hash NULL
--_003412_hash fb_read 3 33506 _003412_hash NULL
--_003413_hash fb_sys_read 3 13778 _003413_hash NULL
--_003414_hash fb_sys_write 3 33130 _003414_hash NULL
--_003415_hash fb_write 3 46924 _003415_hash NULL
--_003416_hash firmwareUpload 3 32794 _003416_hash NULL
--_003417_hash fmc_send_cmd 5 20435 _003417_hash NULL
--_003418_hash fops_read 3 40672 _003418_hash NULL
--_003419_hash forced_ps_read 3 31685 _003419_hash NULL
--_003420_hash frame_alloc 4 15981 _003420_hash NULL
--_003421_hash framebuffer_alloc 1 59145 _003421_hash NULL
--_003422_hash ftrace_write 3 29551 _003422_hash NULL
--_003423_hash fw_download_code 3 13249 _003423_hash NULL
--_003424_hash fwSendNullPacket 2 54618 _003424_hash NULL
--_003425_hash gdm_wimax_netif_rx 3 43423 _003425_hash &_001810_hash
--_003426_hash get_vm_area 1 18080 _003426_hash NULL
--_003427_hash __get_vm_area 1 61599 _003427_hash NULL
--_003428_hash get_vm_area_caller 1 10527 _003428_hash NULL
--_003429_hash __get_vm_area_caller 1 56416 _003828_hash NULL nohasharray
--_003430_hash gspca_dev_probe2 4 59833 _003430_hash NULL
--_003431_hash hdpvr_read 3 9273 _003431_hash NULL
--_003432_hash hecubafb_write 3 26942 _003432_hash NULL
--_003433_hash i915_compat_ioctl 2 3656 _003433_hash NULL
--_003434_hash i915_gem_execbuffer_relocate_slow 7 25355 _003434_hash NULL
--_003435_hash ieee80211_alloc_txb 1-2 52477 _003435_hash NULL
--_003437_hash ieee80211_authentication_req 3 63973 _003437_hash NULL
--_003438_hash ieee80211_wx_set_gen_ie 3 51399 _003438_hash NULL
--_003439_hash ieee80211_wx_set_gen_ie_rsl 3 3521 _003458_hash NULL nohasharray
--_003440_hash intel_sdvo_set_value 4 2311 _003440_hash NULL
--_003441_hash ir_lirc_transmit_ir 3 64403 _003441_hash NULL
--_003442_hash irq_blk_threshold_read 3 33666 _003442_hash NULL
--_003443_hash irq_pkt_threshold_read 3 33356 _003443_hash &_000154_hash
--_003444_hash irq_timeout_read 3 54653 _003444_hash NULL
--_003445_hash ivtv_buf_copy_from_user 4 25502 _003445_hash NULL
--_003446_hash ivtv_copy_buf_to_user 4 6159 _003446_hash NULL
--_003447_hash ivtvfb_write 3 40023 _003447_hash NULL
--_003448_hash kgdb_hex2mem 3 24755 _003448_hash NULL
--_003449_hash lirc_buffer_init 2-3 53282 _003449_hash NULL
--_003451_hash lirc_write 3 20604 _003451_hash NULL
--_003452_hash mce_request_packet 3 1073 _003452_hash NULL
--_003453_hash media_entity_init 2-4 15870 _003453_hash &_001742_hash
--_003455_hash mem_fw_gen_free_mem_blks_read 3 11413 _003455_hash NULL
--_003456_hash mem_fwlog_free_mem_blks_read 3 59616 _003456_hash NULL
--_003457_hash mem_rx_free_mem_blks_read 3 675 _003457_hash NULL
--_003458_hash mem_tx_free_mem_blks_read 3 3521 _003458_hash &_003439_hash
--_003459_hash metronomefb_write 3 8823 _003459_hash NULL
--_003460_hash mga_compat_ioctl 2 52170 _003460_hash NULL
--_003461_hash mmio_read 4 40348 _003461_hash NULL
--_003462_hash netlink_send 5 38434 _003462_hash NULL
--_003463_hash nfc_hci_execute_cmd 5 43882 _003463_hash NULL
--_003464_hash nfc_hci_send_event 5 21452 _003464_hash NULL
--_003465_hash nfc_hci_send_response 5 56462 _003465_hash NULL
--_003466_hash ni_gpct_device_construct 5 610 _003466_hash NULL
--_003467_hash nouveau_compat_ioctl 2 28305 _003467_hash NULL
--_003468_hash odev_update 2 50169 _003468_hash NULL
--_003469_hash opera1_usb_i2c_msgxfer 4 64521 _003469_hash NULL
--_003470_hash OSDSetBlock 2-4 38986 _003470_hash NULL
--_003472_hash oz_add_farewell 5 20652 _003472_hash NULL
--_003473_hash oz_cdev_read 3 20659 _003473_hash NULL
--_003474_hash oz_cdev_write 3 33852 _003474_hash NULL
--_003475_hash oz_ep_alloc 2 5587 _003475_hash NULL
--_003476_hash oz_events_read 3 47535 _003476_hash NULL
--_003477_hash persistent_ram_buffer_map 1-2 11332 _003477_hash NULL
--_003479_hash pipeline_cs_rx_packet_in_read 3 37089 _003479_hash NULL
--_003480_hash pipeline_cs_rx_packet_out_read 3 58926 _003480_hash NULL
--_003481_hash pipeline_csum_to_rx_xfer_swi_read 3 15403 _003481_hash NULL
--_003482_hash pipeline_dec_packet_in_fifo_full_read 3 33052 _003482_hash NULL
--_003483_hash pipeline_dec_packet_in_read 3 47076 _003483_hash NULL
--_003484_hash pipeline_dec_packet_out_read 3 54052 _003484_hash NULL
--_003485_hash pipeline_defrag_to_csum_swi_read 3 63037 _003485_hash NULL
--_003486_hash pipeline_enc_rx_stat_fifo_int_read 3 7107 _003486_hash NULL
--_003487_hash pipeline_enc_tx_stat_fifo_int_read 3 14680 _003487_hash NULL
--_003488_hash pipeline_hs_tx_stat_fifo_int_read 3 15642 _003488_hash &_001260_hash
--_003489_hash pipeline_pipeline_fifo_full_read 3 34095 _003489_hash NULL
--_003490_hash pipeline_post_proc_swi_read 3 24108 _003490_hash NULL
--_003491_hash pipeline_pre_proc_swi_read 3 3898 _003491_hash NULL
--_003492_hash pipeline_pre_to_defrag_swi_read 3 56321 _003492_hash NULL
--_003493_hash pipeline_rx_complete_stat_fifo_int_read 3 40671 _003493_hash NULL
--_003494_hash pipeline_sec_frag_swi_read 3 30294 _003494_hash NULL
--_003495_hash pipeline_tcp_rx_stat_fifo_int_read 3 26745 _003495_hash NULL
--_003496_hash pipeline_tcp_tx_stat_fifo_int_read 3 32589 _003496_hash NULL
--_003497_hash play_iframe 3 8219 _003497_hash NULL
--_003498_hash probes_write 3 29711 _003498_hash NULL
--_003499_hash psb_unlocked_ioctl 2 16926 _003499_hash &_002668_hash
--_003500_hash ps_poll_ps_poll_max_ap_turn_read 3 53140 _003500_hash NULL
--_003501_hash ps_poll_ps_poll_timeouts_read 3 5934 _003501_hash NULL
--_003502_hash ps_poll_ps_poll_utilization_read 3 39383 _003502_hash NULL
--_003503_hash ps_poll_upsd_max_ap_turn_read 3 42050 _003503_hash NULL
--_003504_hash ps_poll_upsd_timeouts_read 3 36755 _003504_hash NULL
--_003505_hash ps_poll_upsd_utilization_read 3 28519 _003505_hash NULL
--_003506_hash pvr2_ioread_read 3 10720 _003506_hash &_001669_hash
--_003507_hash pvr2_ioread_set_sync_key 3 59882 _003507_hash NULL
--_003508_hash pvr2_stream_buffer_count 2 33719 _003508_hash NULL
--_003509_hash pwr_connection_out_of_sync_read 3 35061 _003509_hash NULL
--_003510_hash pwr_cont_miss_bcns_spread_read 3 39250 _003515_hash NULL nohasharray
--_003511_hash pwr_missing_bcns_cnt_read 3 45113 _003511_hash NULL
--_003512_hash pwr_rcvd_awake_bcns_cnt_read 3 12632 _003512_hash NULL
--_003513_hash pwr_rcvd_bcns_cnt_read 3 4774 _003513_hash NULL
--_003514_hash qc_capture 3 19298 _003514_hash NULL
--_003515_hash r128_compat_ioctl 2 39250 _003515_hash &_003510_hash
--_003516_hash radeon_compat_ioctl 2 59150 _003516_hash NULL
--_003517_hash radeon_kms_compat_ioctl 2 51371 _003517_hash NULL
--_003518_hash Realloc 2 34961 _003518_hash NULL
--_003519_hash redrat3_transmit_ir 3 64244 _003519_hash NULL
--_003520_hash reg_w_buf 3 27724 _003520_hash NULL
--_003521_hash reg_w_ixbuf 4 34736 _003521_hash NULL
--_003522_hash rtllib_alloc_txb 1-2 21687 _003522_hash NULL
--_003524_hash rtllib_authentication_req 3 26713 _003524_hash NULL
--_003525_hash rtllib_wx_set_gen_ie 3 59808 _003525_hash NULL
--_003526_hash rts51x_transfer_data_partial 6 5735 _003526_hash NULL
--_003527_hash rvmalloc 1 46873 _003527_hash NULL
--_003528_hash rx_decrypt_key_not_found_read 3 37820 _003528_hash NULL
--_003529_hash rx_defrag_called_read 3 1897 _003529_hash NULL
--_003530_hash rx_defrag_decrypt_failed_read 3 41411 _003530_hash NULL
--_003531_hash rx_defrag_init_called_read 3 35935 _003531_hash NULL
--_003532_hash rx_defrag_in_process_called_read 3 59338 _003532_hash NULL
--_003533_hash rx_defrag_need_decrypt_read 3 42253 _003533_hash NULL
--_003534_hash rx_defrag_need_defrag_read 3 28117 _003534_hash NULL
--_003535_hash rx_defrag_tkip_called_read 3 21031 _003535_hash NULL
--_003536_hash rx_filter_accum_arp_pend_requests_read 3 11003 _003536_hash NULL
--_003537_hash rx_filter_arp_filter_read 3 61914 _003537_hash NULL
--_003538_hash rx_filter_beacon_filter_read 3 49279 _003538_hash NULL
--_003539_hash rx_filter_data_filter_read 3 30098 _003539_hash NULL
--_003540_hash rx_filter_dup_filter_read 3 37238 _003540_hash NULL
--_003541_hash rx_filter_ibss_filter_read 3 50167 _003541_hash NULL
--_003542_hash rx_filter_max_arp_queue_dep_read 3 5851 _003542_hash NULL
--_003543_hash rx_filter_mc_filter_read 3 25712 _003543_hash NULL
--_003544_hash rx_filter_protection_filter_read 3 39282 _003544_hash NULL
--_003545_hash rx_rate_rx_frames_per_rates_read 3 7282 _003545_hash NULL
--_003546_hash rx_rx_beacon_early_term_read 3 21559 _003546_hash NULL
--_003547_hash rx_rx_checksum_result_read 3 50617 _003547_hash NULL
--_003548_hash rx_rx_cmplt_read 3 14753 _003548_hash NULL
--_003549_hash rx_rx_cmplt_task_read 3 35226 _003549_hash NULL
--_003550_hash rx_rx_defrag_end_read 3 505 _003550_hash NULL
--_003551_hash rx_rx_defrag_read 3 2010 _003551_hash NULL
--_003552_hash rx_rx_done_read 3 65217 _003552_hash NULL
--_003553_hash rx_rx_dropped_frame_read 3 23748 _003553_hash NULL
--_003554_hash rx_rx_frame_checksum_read 3 40140 _003554_hash NULL
--_003555_hash rx_rx_hdr_overflow_read 3 35002 _003555_hash NULL
--_003556_hash rx_rx_out_of_mpdu_nodes_read 3 64668 _003556_hash NULL
--_003557_hash rx_rx_phy_hdr_read 3 20950 _003557_hash NULL
--_003558_hash rx_rx_pre_complt_read 3 41653 _003558_hash NULL
--_003559_hash rx_rx_timeout_read 3 62389 _003559_hash NULL
--_003560_hash rx_rx_timeout_wa_read 3 50204 _003560_hash NULL
--_003561_hash rx_rx_tkip_replays_read 3 60193 _003561_hash NULL
--_003562_hash rx_rx_wa_ba_not_expected_read 3 61341 _003562_hash NULL
--_003563_hash rx_rx_wa_density_dropped_frame_read 3 26095 _003563_hash NULL
--_003564_hash rx_streaming_always_read 3 49401 _003564_hash NULL
--_003565_hash rx_streaming_interval_read 3 55291 _003565_hash NULL
--_003566_hash saa7164_buffer_alloc_user 2 9627 _003566_hash NULL
--_003567_hash send_control_msg 6 48498 _003567_hash NULL
--_003568_hash SendTxCommandPacket 3 42901 _003568_hash NULL
--_003569_hash setup_window 2-7-5-4 59178 _003569_hash NULL
--_003573_hash shmem_pwrite_fast 3 46842 _003573_hash NULL
--_003574_hash sleep_auth_read 3 19159 _003574_hash NULL
--_003575_hash sn9c102_read 3 29305 _003575_hash NULL
--_003576_hash snd_pcm_alloc_vmalloc_buffer 2 44595 _003576_hash NULL
--_003577_hash split_scan_timeout_read 3 20029 _003577_hash NULL
--_003578_hash stk_prepare_sio_buffers 2 57168 _003578_hash NULL
--_003579_hash store_debug_level 3 35652 _003579_hash NULL
--_003580_hash suspend_dtim_interval_read 3 64971 _003580_hash NULL
--_003581_hash sys_prctl 4 8766 _003581_hash NULL
--_003582_hash tm6000_read_write_usb 7 50774 _003582_hash &_002149_hash
--_003583_hash tracing_read_pipe 3 35312 _003583_hash NULL
--_003584_hash ts_read 3 44687 _003584_hash NULL
--_003585_hash ts_write 3 64336 _003585_hash NULL
--_003586_hash tt3650_ci_msg 4 57219 _003586_hash NULL
--_003587_hash ttm_object_device_init 2 10321 _003587_hash NULL
--_003588_hash ttm_object_file_init 2 27804 _003588_hash NULL
--_003589_hash tx_frag_bad_mblk_num_read 3 28064 _003589_hash NULL
--_003590_hash tx_frag_cache_hit_read 3 29639 _003590_hash NULL
--_003591_hash tx_frag_cache_miss_read 3 28394 _003591_hash NULL
--_003592_hash tx_frag_called_read 3 1748 _003592_hash NULL
--_003593_hash tx_frag_failed_read 3 43540 _003593_hash NULL
--_003594_hash tx_frag_init_called_read 3 48377 _003594_hash NULL
--_003595_hash tx_frag_in_process_called_read 3 1290 _003595_hash NULL
--_003596_hash tx_frag_key_not_found_read 3 22971 _003596_hash NULL
--_003597_hash tx_frag_mpdu_alloc_failed_read 3 41167 _003597_hash NULL
--_003598_hash tx_frag_need_fragmentation_read 3 50153 _003598_hash NULL
--_003599_hash tx_frag_tkip_called_read 3 31575 _003599_hash NULL
--_003600_hash tx_tx_burst_programmed_read 3 20320 _003600_hash NULL
--_003601_hash tx_tx_checksum_result_read 3 36490 _003601_hash &_001996_hash
--_003602_hash tx_tx_cmplt_read 3 35854 _003602_hash NULL
--_003603_hash tx_tx_data_prepared_read 3 43497 _003603_hash NULL
--_003604_hash tx_tx_data_programmed_read 3 36871 _003604_hash NULL
--_003605_hash tx_tx_done_data_read 3 6799 _003605_hash NULL
--_003606_hash tx_tx_done_int_template_read 3 55511 _003606_hash &_001887_hash
--_003607_hash tx_tx_done_template_read 3 35104 _003607_hash &_000106_hash
--_003608_hash tx_tx_exch_expiry_read 3 8749 _003608_hash NULL
--_003609_hash tx_tx_exch_pending_read 3 53018 _003609_hash NULL
--_003610_hash tx_tx_exch_read 3 52986 _003610_hash NULL
--_003611_hash tx_tx_frame_checksum_read 3 41553 _003611_hash NULL
--_003612_hash tx_tx_imm_resp_read 3 55964 _003612_hash NULL
--_003613_hash tx_tx_prepared_descs_read 3 9221 _003613_hash NULL
--_003614_hash tx_tx_retry_data_read 3 1926 _003614_hash NULL
--_003615_hash tx_tx_retry_template_read 3 57623 _003615_hash NULL
--_003616_hash tx_tx_start_data_read 3 53219 _003616_hash NULL
--_003617_hash tx_tx_start_fw_gen_read 3 58648 _003617_hash NULL
--_003618_hash tx_tx_start_int_templates_read 3 58324 _003618_hash NULL
--_003619_hash tx_tx_start_null_frame_read 3 6281 _003619_hash NULL
--_003620_hash tx_tx_starts_read 3 3617 _003620_hash NULL
--_003621_hash tx_tx_start_templates_read 3 17164 _003621_hash NULL
--_003622_hash tx_tx_template_prepared_read 3 30424 _003622_hash NULL
--_003623_hash tx_tx_template_programmed_read 3 30461 _003623_hash NULL
--_003624_hash udi_log_event 3 58105 _003624_hash NULL
--_003625_hash udl_prime_create 2 57159 _003625_hash NULL
--_003626_hash uf_create_device_nodes 2 24948 _003626_hash NULL
--_003627_hash uf_sme_queue_message 3 15697 _003627_hash NULL
--_003628_hash ufx_alloc_urb_list 3 10349 _003628_hash NULL
--_003629_hash unifi_net_data_malloc 3 24716 _003629_hash NULL
--_003630_hash unifi_read 3 14899 _003630_hash NULL
--_003631_hash unifi_write 3 65012 _003631_hash NULL
--_003632_hash usb_buffer_alloc 2 36276 _003632_hash NULL
--_003633_hash usbvision_rvmalloc 1 19655 _003633_hash NULL
--_003634_hash usbvision_v4l2_read 3 34386 _003634_hash NULL
--_003635_hash uvc_alloc_buffers 2-3 9656 _003635_hash NULL
--_003637_hash uvc_alloc_entity 3-4 20836 _003637_hash NULL
--_003639_hash uvc_debugfs_stats_read 3 56651 _003639_hash NULL
--_003640_hash uvc_simplify_fraction 3 31303 _003640_hash NULL
--_003641_hash v4l2_ctrl_new 7 24927 _003641_hash NULL
--_003642_hash v4l2_event_subscribe 3 53687 _003642_hash NULL
--_003643_hash v4l_stk_read 3 39672 _003643_hash NULL
--_003644_hash __vb2_perform_fileio 3 63033 _003644_hash NULL
--_003645_hash vfd_write 3 14717 _003645_hash NULL
--_003646_hash vfio_config_do_rw 3 46091 _003646_hash NULL
--_003647_hash vfio_msi_enable 2 20906 _003647_hash NULL
--_003648_hash viafb_dvp0_proc_write 3 23023 _003648_hash NULL
--_003649_hash viafb_dvp1_proc_write 3 48864 _003649_hash NULL
--_003650_hash viafb_vt1636_proc_write 3 16018 _003650_hash NULL
--_003651_hash __videobuf_alloc_vb 1 27062 _003651_hash NULL
--_003652_hash __videobuf_alloc_vb 1 5665 _003652_hash NULL
--_003653_hash __videobuf_copy_to_user 4 15423 _003653_hash NULL
--_003654_hash videobuf_dma_init_kernel 3 6963 _003654_hash NULL
--_003655_hash videobuf_pages_to_sg 2 3708 _003655_hash NULL
--_003656_hash videobuf_vmalloc_to_sg 2 4548 _003656_hash NULL
--_003657_hash video_usercopy 2 62151 _003657_hash NULL
--_003658_hash virtscsi_alloc_tgt 2 6643 _003658_hash NULL
--_003659_hash vmw_cursor_update_image 3-4 16332 _003659_hash NULL
--_003661_hash vmw_framebuffer_dmabuf_dirty 6 37661 _003661_hash &_001116_hash
--_003662_hash vmw_framebuffer_surface_dirty 6 48132 _003662_hash NULL
--_003663_hash vmw_gmr2_bind 3 21305 _003663_hash NULL
--_003664_hash vmw_unlocked_ioctl 2 19212 _003664_hash NULL
--_003665_hash w9966_v4l_read 3 31148 _003665_hash NULL
--_003666_hash wl1273_fm_fops_write 3 60621 _003666_hash NULL
--_003667_hash zoran_write 3 22404 _003667_hash NULL
--_003668_hash alloc_vm_area 1 15989 _003668_hash NULL
--_003669_hash cx18_copy_mdl_to_user 4 45549 _003669_hash NULL
--_003670_hash dlfb_ops_write 3 64150 _003670_hash NULL
--_003671_hash dvb_demux_read 3 13981 _003671_hash NULL
--_003672_hash dvb_dmxdev_read_sec 4 7892 _003672_hash NULL
--_003673_hash dvb_dvr_read 3 17073 _003673_hash NULL
--_003674_hash em28xx_init_isoc 4 62883 _003674_hash &_000729_hash
--_003675_hash fb_alloc_cmap 2 6554 _003675_hash NULL
--_003676_hash gspca_dev_probe 4 2570 _003676_hash NULL
--_003677_hash ieee80211_auth_challenge 3 18810 _003677_hash NULL
--_003678_hash ieee80211_rtl_auth_challenge 3 61897 _003678_hash NULL
--_003679_hash init_pci_cap_msi_perm 2 59033 _003679_hash NULL
--_003680_hash __ioremap_caller 1-2 21800 _003680_hash NULL
--_003682_hash ivtv_read 3 57796 _003682_hash NULL
--_003683_hash ivtv_v4l2_write 3 39226 _003683_hash NULL
--_003684_hash mce_async_out 3 58056 _003684_hash NULL
--_003685_hash mce_flush_rx_buffer 2 14976 _003685_hash NULL
--_003686_hash ms_read_multiple_pages 4-5 8052 _003686_hash NULL
--_003688_hash ms_write_multiple_pages 5-6 10362 _003688_hash NULL
--_003690_hash nfc_hci_send_cmd 5 55714 _003690_hash NULL
--_003691_hash persistent_ram_new 1-2 40501 _003691_hash NULL
--_003693_hash picolcd_fb_write 3 2318 _003693_hash NULL
--_003694_hash process_bulk_data_command 4 38906 _003694_hash NULL
--_003695_hash pvr2_v4l2_read 3 18006 _003695_hash NULL
--_003696_hash qcam_read 3 13977 _003696_hash NULL
--_003697_hash register_unifi_sdio 2 55239 _003697_hash NULL
--_003698_hash resize_async_buffer 4 64031 _003698_hash &_002431_hash
--_003699_hash rtllib_auth_challenge 3 12493 _003699_hash NULL
--_003702_hash stk_allocate_buffers 2 16291 _003702_hash NULL
--_003703_hash subdev_ioctl 2 28417 _003703_hash NULL
--_003704_hash _sys_packet_req 4 46793 _003704_hash NULL
--_003705_hash tm6000_i2c_recv_regs16 5 2949 _003705_hash NULL
--_003706_hash tm6000_i2c_recv_regs 5 46215 _003706_hash NULL
--_003707_hash tm6000_i2c_send_regs 5 20250 _003707_hash NULL
--_003708_hash tt3650_ci_msg_locked 4 8013 _003708_hash NULL
--_003709_hash ufx_ops_write 3 54848 _003709_hash NULL
--_003710_hash update_macheader 7 1775 _003710_hash NULL
--_003711_hash usbdux_attach_common 4 51764 _003750_hash NULL nohasharray
--_003712_hash usbduxfast_attach_common 4 52538 _003712_hash NULL
--_003713_hash usbduxsigma_attach_common 4 40847 _003713_hash NULL
--_003714_hash uvc_v4l2_ioctl 2 8411 _003714_hash NULL
--_003715_hash v4l2_ctrl_new_int_menu 4 41151 _003715_hash NULL
--_003716_hash v4l2_ctrl_new_std 5 45748 _003716_hash &_000497_hash
--_003717_hash v4l2_ctrl_new_std_menu 4 6221 _003717_hash NULL
--_003718_hash vb2_read 3 42703 _003718_hash NULL
--_003719_hash vb2_write 3 31948 _003719_hash NULL
--_003720_hash vfio_pci_set_msi_trigger 3-4 26507 _003720_hash NULL
--_003722_hash viafb_iga1_odev_proc_write 3 36241 _003722_hash NULL
--_003723_hash viafb_iga2_odev_proc_write 3 2363 _003723_hash NULL
--_003724_hash __videobuf_alloc_cached 1 12740 _003724_hash NULL
--_003725_hash __videobuf_alloc_uncached 1 55711 _003725_hash NULL
--_003726_hash __videobuf_copy_stream 4 44769 _003726_hash NULL
--_003727_hash videobuf_read_one 3 31637 _003727_hash NULL
--_003728_hash video_ioctl2 2 21380 _003728_hash NULL
--_003729_hash vmap 2 15025 _003729_hash NULL
--_003730_hash vmw_cursor_update_dmabuf 3-4 32045 _003730_hash NULL
--_003732_hash vmw_gmr_bind 3 44130 _003732_hash NULL
--_003733_hash xd_read_multiple_pages 4-5 11422 _003733_hash NULL
--_003735_hash xd_write_multiple_pages 5-6 53633 _003735_hash NULL
--_003737_hash xenfb_write 3 43412 _003737_hash NULL
--_003738_hash arch_gnttab_map_shared 3 41306 _003738_hash NULL
--_003739_hash arch_gnttab_map_status 3 49812 _003739_hash NULL
--_003740_hash bttv_read 3 11432 _003740_hash NULL
--_003741_hash cx18_read 3 23699 _003741_hash NULL
--_003742_hash cx2341x_ctrl_new_menu 3 49700 _003742_hash NULL
--_003743_hash cx2341x_ctrl_new_std 4 57061 _003743_hash NULL
--_003744_hash cx25821_video_ioctl 2 30188 _003744_hash NULL
--_003745_hash dt3155_read 3 59226 _003745_hash NULL
--_003746_hash ioremap_cache 1-2 47189 _003746_hash NULL
--_003748_hash ioremap_nocache 1-2 2439 _003748_hash NULL
--_003750_hash ioremap_prot 1-2 51764 _003750_hash &_003711_hash
--_003752_hash ioremap_wc 1-2 62695 _003752_hash NULL
--_003754_hash ivtv_read_pos 3 34400 _003754_hash &_000312_hash
--_003755_hash mcam_v4l_read 3 36513 _003755_hash NULL
--_003756_hash ms_rw_multi_sector 3-4 7459 _003756_hash NULL
--_003758_hash pvr2_v4l2_ioctl 2 24398 _003758_hash &_000877_hash
--_003759_hash ramoops_init_prz 5 12134 _003759_hash NULL
--_003761_hash ttm_bo_kmap_ttm 3 5922 _003761_hash NULL
--_003762_hash uf_ap_process_data_pdu 7 25860 _003762_hash NULL
--_003763_hash vb2_fop_read 3 24080 _003763_hash NULL
--_003764_hash vb2_fop_write 3 30420 _003764_hash NULL
--_003765_hash videobuf_read_stream 3 14956 _003765_hash NULL
--_003766_hash video_read 3 28148 _003766_hash NULL
--_003767_hash vmw_du_crtc_cursor_set 4-5 28479 _003767_hash NULL
--_003769_hash xd_rw 3-4 49020 _003769_hash NULL
--_003771_hash zoran_ioctl 2 30465 _003771_hash NULL
--_003772_hash zr364xx_read 3 2354 _003772_hash NULL
--_003773_hash acpi_os_ioremap 1-2 49523 _003773_hash NULL
--_003775_hash au0828_v4l2_read 3 40220 _003775_hash NULL
--_003776_hash ca91cx42_alloc_resource 2 10502 _003776_hash NULL
--_003778_hash cx18_read_pos 3 4683 _003778_hash NULL
--_003779_hash cx18_v4l2_read 3 21196 _003779_hash NULL
--_003780_hash cx231xx_v4l2_read 3 55014 _003780_hash NULL
--_003781_hash devm_ioremap_nocache 2-3 2036 _003781_hash NULL
--_003783_hash do_test 1 15766 _003783_hash NULL
--_003784_hash __einj_error_trigger 1 17707 _003784_hash &_001764_hash
--_003785_hash em28xx_v4l2_read 3 16701 _003785_hash NULL
--_003786_hash init_chip_wc_pat 2 62768 _003786_hash NULL
--_003787_hash intel_render_ring_init_dri 2-3 45446 _003787_hash NULL
--_003789_hash io_mapping_create_wc 1-2 1354 _003789_hash NULL
--_003791_hash iommu_map_mmio_space 1 30919 _003791_hash NULL
--_003792_hash ioremap 1-2 23172 _003792_hash NULL
--_003794_hash ivtv_v4l2_read 3 1964 _003794_hash NULL
--_003795_hash mga_ioremap 1-2 8571 _003795_hash NULL
--_003797_hash mpeg_read 3 6708 _003797_hash NULL
--_003798_hash msix_map_region 3 3411 _003798_hash NULL
--_003799_hash ms_rw 3-4 17220 _003799_hash NULL
--_003801_hash pci_iomap 3 47575 _003801_hash NULL
--_003802_hash pd_video_read 3 24510 _003802_hash NULL
--_003803_hash sfi_map_memory 1-2 5183 _003803_hash NULL
--_003805_hash solo_enc_read 3 33553 _003805_hash NULL
--_003806_hash solo_v4l2_read 3 59247 _003806_hash NULL
--_003807_hash timblogiw_read 3 48305 _003807_hash NULL
--_003808_hash tm6000_read 3 4151 _003808_hash NULL
--_003809_hash tsi148_alloc_resource 2 24563 _003809_hash NULL
--_003810_hash ttm_bo_ioremap 2-3 31082 _003810_hash NULL
--_003812_hash ttm_bo_kmap 3-2 60118 _003812_hash NULL
--_003813_hash vb2_vmalloc_get_userptr 3 31374 _003813_hash NULL
--_003814_hash vbi_read 3 63673 _003814_hash NULL
--_003815_hash viacam_read 3 54526 _003815_hash NULL
--_003816_hash xlate_dev_mem_ptr 1 15291 _003816_hash &_001231_hash
--_003817_hash a4t_cs_init 3 27734 _003817_hash NULL
--_003818_hash aac_nark_ioremap 2 50163 _003818_hash &_000323_hash
--_003819_hash aac_rkt_ioremap 2 3333 _003819_hash NULL
--_003820_hash aac_rx_ioremap 2 52410 _003820_hash NULL
--_003821_hash aac_sa_ioremap 2 13596 _003821_hash &_000299_hash
--_003822_hash aac_src_ioremap 2 41688 _003822_hash NULL
--_003823_hash aac_srcv_ioremap 2 6659 _003823_hash NULL
--_003824_hash acpi_map 1-2 58725 _003824_hash NULL
--_003826_hash acpi_os_read_memory 1-3 54186 _003826_hash NULL
--_003828_hash acpi_os_write_memory 1-3 56416 _003828_hash &_003429_hash
--_003830_hash atyfb_setup_generic 3 49151 _003830_hash NULL
--_003831_hash ca91cx42_master_set 4 23146 _003831_hash NULL
--_003832_hash check_mirror 1-2 57342 _003832_hash &_001753_hash
--_003834_hash cycx_setup 4 47562 _003834_hash NULL
--_003835_hash devm_ioremap 2-3 29235 _003835_hash NULL
--_003837_hash divasa_remap_pci_bar 3-4 23485 _003837_hash &_000979_hash
--_003839_hash doc_probe 1 23285 _003839_hash NULL
--_003840_hash DoC_Probe 1 57534 _003840_hash NULL
--_003841_hash efi_ioremap 1-2 3492 _003841_hash &_001137_hash
--_003843_hash ems_pcmcia_add_card 2 62627 _003843_hash NULL
--_003844_hash isp1760_register 1-2 628 _003844_hash NULL
--_003846_hash mid_get_vbt_data_r0 2 10876 _003846_hash NULL
--_003847_hash mid_get_vbt_data_r10 2 6308 _003847_hash NULL
--_003848_hash mid_get_vbt_data_r1 2 26170 _003848_hash NULL
--_003849_hash mthca_map_reg 2-3 5664 _003849_hash NULL
--_003851_hash mthca_setup_cmd_doorbells 2 53954 _003851_hash NULL
--_003852_hash netxen_nic_map_indirect_address_128M 2 42257 _003852_hash NULL
--_003853_hash pcim_iomap 3 58334 _003853_hash NULL
--_003854_hash persistent_ram_iomap 1-2 47156 _003854_hash NULL
--_003856_hash read_vbt_r0 1 503 _003856_hash NULL
--_003857_hash read_vbt_r10 1 60679 _003857_hash NULL
--_003858_hash register_device 2-3 60015 _003858_hash NULL
--_003860_hash remap_pci_mem 1-2 15966 _003860_hash NULL
--_003862_hash rtl_port_map 1-2 2385 _003862_hash NULL
--_003864_hash sfi_map_table 1 5462 _003864_hash NULL
--_003865_hash sriov_enable_migration 2 14889 _003865_hash NULL
--_003866_hash ssb_bus_scan 2 36578 _003866_hash NULL
--_003867_hash ssb_ioremap 2 5228 _003867_hash NULL
--_003868_hash tpci200_slot_map_space 2 3848 _003868_hash NULL
--_003869_hash tpm_tis_init 2-3 15304 _003869_hash NULL
--_003871_hash tsi148_master_set 4 14685 _003871_hash NULL
--_003872_hash acpi_os_map_memory 1-2 11161 _003872_hash NULL
--_003874_hash com90xx_found 3 13974 _003874_hash NULL
--_003875_hash netxen_nic_hw_read_wx_128M 2 26858 _003875_hash NULL
--_003876_hash netxen_nic_hw_write_wx_128M 2 33488 _003876_hash NULL
--_003877_hash sfi_check_table 1 6772 _003877_hash NULL
--_003878_hash sfi_sysfs_install_table 1 51688 _003878_hash NULL
--_003879_hash sriov_enable 2 59689 _003879_hash NULL
--_003880_hash ssb_bus_register 3 65183 _003880_hash NULL
--_003881_hash acpi_ex_system_memory_space_handler 2 31192 _003881_hash NULL
--_003882_hash acpi_tb_check_xsdt 1 21862 _003882_hash NULL
--_003883_hash acpi_tb_install_table 1 12988 _003883_hash NULL
--_003884_hash acpi_tb_parse_root_table 1 53455 _003884_hash NULL
--_003885_hash check_vendor_extension 1 3254 _003885_hash NULL
--_003886_hash pci_enable_sriov 2 35745 _003886_hash NULL
--_003887_hash ssb_bus_pcmciabus_register 3 56020 _003887_hash NULL
--_003888_hash ssb_bus_ssbbus_register 2 2217 _003888_hash NULL
--_003889_hash lpfc_sli_probe_sriov_nr_virtfn 2 26004 _003889_hash NULL
--_003890_hash alloc_vm_area 1 36149 _003890_hash NULL
--_003891_hash cma_create_area 2 38642 _003891_hash NULL
--_003893_hash fbcon_prepare_logo 5 6246 _003893_hash NULL
--_003894_hash io_mapping_map_wc 2 19284 _003894_hash NULL
--_003895_hash nfs_dns_resolve_name 3 25036 _003895_hash NULL
--_003896_hash nfs_parse_server_name 2 1899 _003896_hash NULL
-+intel_fake_agp_alloc_by_type_1 intel_fake_agp_alloc_by_type 1 1 NULL
-+ipwireless_tty_received_49154 ipwireless_tty_received 3 49154 NULL
-+batadv_orig_node_del_if_4 batadv_orig_node_del_if 2 4 NULL
-+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
-+xfs_efd_init_5463 xfs_efd_init 3 5463 NULL
-+recent_mt_proc_write_8206 recent_mt_proc_write 3 8206 NULL
-+sctp_tsnmap_grow_32784 sctp_tsnmap_grow 2 32784 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
-+xfs_dir2_leaf_getdents_23841 xfs_dir2_leaf_getdents 3 23841 NULL
-+ad7879_spi_multi_read_8218 ad7879_spi_multi_read 3 8218 NULL
-+carl9170_alloc_27 carl9170_alloc 1 27 NULL
-+dvb_dvr_ioctl_49182 dvb_dvr_ioctl 2 49182 NULL
-+il_dbgfs_fh_reg_read_40993 il_dbgfs_fh_reg_read 3 40993 NULL
-+ieee80211_if_read_tsf_16420 ieee80211_if_read_tsf 3 16420 NULL
-+vmap_15025 vmap 2 15025 NULL
-+rxrpc_server_keyring_16431 rxrpc_server_keyring 3 16431 NULL
-+mac80211_format_buffer_41010 mac80211_format_buffer 2 41010 NULL
-+il4965_rs_sta_dbgfs_stats_table_read_49206 il4965_rs_sta_dbgfs_stats_table_read 3 49206 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
-+alloc_wr_24635 alloc_wr 1-2 24635 NULL
-+read_file_blob_57406 read_file_blob 3 57406 NULL
-+add_rx_skb_8257 add_rx_skb 3 8257 NULL
-+xprt_rdma_allocate_31372 xprt_rdma_allocate 2 31372 NULL
-+enclosure_register_57412 enclosure_register 3 57412 NULL
-+context_alloc_24645 context_alloc 3 24645 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
-+prison_create_43623 prison_create 1 43623 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
-+shmem_pread_fast_34147 shmem_pread_fast 3 34147 NULL
-+compat_keyctl_instantiate_key_iov_57431 compat_keyctl_instantiate_key_iov 3 57431 NULL nohasharray
-+alloc_ftrace_hash_57431 alloc_ftrace_hash 1 57431 &compat_keyctl_instantiate_key_iov_57431
-+sock_wmalloc_16472 sock_wmalloc 2 16472 NULL
-+snd_korg1212_copy_to_92 snd_korg1212_copy_to 6 92 NULL
-+load_msg_95 load_msg 2 95 NULL
-+rds_sendmsg_40976 rds_sendmsg 4 40976 NULL
-+new_tape_buffer_32866 new_tape_buffer 2 32866 NULL
-+ubi_leb_write_5478 ubi_leb_write 4-5 5478 NULL
-+sys_pselect6_57449 sys_pselect6 1 57449 NULL
-+biovec_create_pools_9575 biovec_create_pools 2 9575 NULL
-+ieee80211_if_read_rssi_threshold_49260 ieee80211_if_read_rssi_threshold 3 49260 NULL
-+tracing_readme_read_16493 tracing_readme_read 3 16493 NULL
-+ath6kl_usb_submit_ctrl_in_32880 ath6kl_usb_submit_ctrl_in 6 32880 NULL nohasharray
-+cifs_writedata_alloc_32880 cifs_writedata_alloc 1 32880 &ath6kl_usb_submit_ctrl_in_32880
-+cfg80211_inform_bss_frame_41078 cfg80211_inform_bss_frame 4 41078 NULL
-+send_midi_async_57463 send_midi_async 3 57463 NULL
-+sisusb_clear_vram_57466 sisusb_clear_vram 2-3 57466 NULL
-+ath6kl_usb_post_recv_transfers_32892 ath6kl_usb_post_recv_transfers 2 32892 NULL
-+osd_req_add_get_attr_list_49278 osd_req_add_get_attr_list 3 49278 NULL
-+rx_filter_beacon_filter_read_49279 rx_filter_beacon_filter_read 3 49279 NULL
-+construct_key_and_link_8321 construct_key_and_link 4 8321 NULL
-+ath6kl_set_ap_probe_resp_ies_50539 ath6kl_set_ap_probe_resp_ies 3 50539 NULL
-+init_q_132 init_q 4 132 NULL
-+roccat_read_41093 roccat_read 3 41093 NULL nohasharray
-+nvme_map_user_pages_41093 nvme_map_user_pages 3-4 41093 &roccat_read_41093
-+ipwireless_send_packet_8328 ipwireless_send_packet 4 8328 NULL
-+unifi_net_data_malloc_24716 unifi_net_data_malloc 3 24716 NULL
-+memstick_alloc_host_142 memstick_alloc_host 1 142 NULL
-+il_dbgfs_tx_stats_read_32913 il_dbgfs_tx_stats_read 3 32913 NULL
-+uio_read_49300 uio_read 3 49300 NULL
-+f_audio_buffer_alloc_41110 f_audio_buffer_alloc 1 41110 NULL
-+tracing_entries_read_8345 tracing_entries_read 3 8345 NULL
-+bnad_debugfs_write_regwr_57500 bnad_debugfs_write_regwr 3 57500 NULL
-+firmwareUpload_32794 firmwareUpload 3 32794 NULL
-+copy_in_user_57502 copy_in_user 3 57502 NULL
-+simple_attr_read_24738 simple_attr_read 3 24738 NULL
-+play_iframe_8219 play_iframe 3 8219 NULL
-+qla2x00_change_queue_depth_24742 qla2x00_change_queue_depth 2 24742 NULL
-+ping_getfrag_8360 ping_getfrag 3-4 8360 NULL
-+ath_rxbuf_alloc_24745 ath_rxbuf_alloc 2 24745 NULL
-+nvme_create_queue_170 nvme_create_queue 3 170 NULL
-+init_tag_map_57515 init_tag_map 3 57515 NULL
-+il_dbgfs_force_reset_read_57517 il_dbgfs_force_reset_read 3 57517 NULL
-+srpt_alloc_ioctx_ring_49330 srpt_alloc_ioctx_ring 2-4-3 49330 NULL
-+kgdb_hex2mem_24755 kgdb_hex2mem 3 24755 NULL
-+lpfc_debugfs_read_16566 lpfc_debugfs_read 3 16566 NULL
-+xfs_buf_item_get_format_189 xfs_buf_item_get_format 2 189 NULL
-+DoC_Probe_57534 DoC_Probe 1 57534 NULL
-+cfpkt_setlen_49343 cfpkt_setlen 2 49343 NULL
-+agp_allocate_memory_wrap_16576 agp_allocate_memory_wrap 1 16576 NULL
-+mI_alloc_skb_24770 mI_alloc_skb 1 24770 NULL
-+iscsi_session_setup_196 iscsi_session_setup 4-5 196 NULL
-+create_log_8225 create_log 2 8225 NULL
-+xdi_copy_from_user_8395 xdi_copy_from_user 4 8395 NULL
-+joydev_ioctl_common_49359 joydev_ioctl_common 2 49359 NULL
-+datablob_hmac_verify_24786 datablob_hmac_verify 4 24786 NULL
-+dvb_ca_write_41171 dvb_ca_write 3 41171 NULL
-+cache_read_24790 cache_read 3 24790 NULL
-+px_raw_event_49371 px_raw_event 4 49371 NULL
-+compat_filldir_32999 compat_filldir 3 32999 NULL
-+hci_si_event_1404 hci_si_event 3 1404 NULL
-+compat_sys_process_vm_writev_41194 compat_sys_process_vm_writev 3-5 41194 NULL
-+dfs_file_write_41196 dfs_file_write 3 41196 NULL
-+afs_cell_create_27346 afs_cell_create 2 27346 NULL
-+iscsi_alloc_session_49390 iscsi_alloc_session 3 49390 NULL
-+applesmc_create_nodes_49392 applesmc_create_nodes 2 49392 NULL
-+snd_usb_ctl_msg_8436 snd_usb_ctl_msg 8 8436 NULL
-+comedi_buf_alloc_24822 comedi_buf_alloc 3 24822 NULL
-+rx_streaming_always_read_49401 rx_streaming_always_read 3 49401 NULL
-+tnode_alloc_49407 tnode_alloc 1 49407 NULL
-+tun_alloc_skb_41216 tun_alloc_skb 2-4-3 41216 NULL
-+proc_scsi_write_proc_267 proc_scsi_write_proc 3 267 NULL
-+iscsi_tcp_conn_setup_16376 iscsi_tcp_conn_setup 2 16376 NULL
-+sk_stream_alloc_skb_57622 sk_stream_alloc_skb 2 57622 NULL
-+tx_tx_retry_template_read_57623 tx_tx_retry_template_read 3 57623 NULL
-+iwl_dbgfs_ucode_general_stats_read_49199 iwl_dbgfs_ucode_general_stats_read 3 49199 NULL
-+mfd_add_devices_16668 mfd_add_devices 4 16668 NULL
-+packet_recv_error_16669 packet_recv_error 3 16669 NULL
-+bitmap_resize_33054 bitmap_resize 2 33054 NULL
-+mem_read_57631 mem_read 3 57631 NULL
-+afs_cell_lookup_8482 afs_cell_lookup 2 8482 NULL
-+nvme_alloc_iod_56027 nvme_alloc_iod 1 56027 NULL
-+read_file_war_stats_292 read_file_war_stats 3 292 NULL
-+pnp_alloc_24869 pnp_alloc 1 24869 NULL nohasharray
-+l2cap_create_basic_pdu_24869 l2cap_create_basic_pdu 3 24869 &pnp_alloc_24869 nohasharray
-+put_data_to_circ_buf_24869 put_data_to_circ_buf 3 24869 &l2cap_create_basic_pdu_24869
-+hiddev_compat_ioctl_41255 hiddev_compat_ioctl 2 41255 NULL
-+bnx2fc_cmd_mgr_alloc_24873 bnx2fc_cmd_mgr_alloc 2-3 24873 NULL
-+sel_read_checkreqprot_33068 sel_read_checkreqprot 3 33068 NULL
-+queues_read_24877 queues_read 3 24877 NULL
-+__fprog_create_41263 __fprog_create 2 41263 NULL
-+syslog_print_307 syslog_print 2 307 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
-+dn_setsockopt_314 dn_setsockopt 5 314 NULL
-+read_buf_20469 read_buf 2 20469 NULL
-+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
-+savu_sysfs_read_49473 savu_sysfs_read 6 49473 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
-+ath9k_wmi_cmd_327 ath9k_wmi_cmd 4 327 NULL
-+codec_list_read_file_24910 codec_list_read_file 3 24910 NULL
-+isr_decrypt_done_read_49490 isr_decrypt_done_read 3 49490 NULL
-+alloc_pg_vec_8533 alloc_pg_vec 2 8533 NULL
-+amd_create_gatt_pages_20537 amd_create_gatt_pages 1 20537 NULL
-+ieee80211_fragment_33112 ieee80211_fragment 4 33112 NULL
-+arch_gnttab_map_shared_41306 arch_gnttab_map_shared 3 41306 NULL
-+v4l2_ctrl_new_24927 v4l2_ctrl_new 7 24927 NULL
-+write_node_33121 write_node 4 33121 NULL
-+fb_sys_write_33130 fb_sys_write 3 33130 NULL
-+profile_remove_8556 profile_remove 3 8556 NULL
-+evm_read_key_54674 evm_read_key 3 54674 NULL
-+iscsi_recv_pdu_16755 iscsi_recv_pdu 4 16755 NULL
-+user_update_41332 user_update 3 41332 NULL
-+batadv_interface_rx_8568 batadv_interface_rx 4 8568 NULL
-+ieee80211_if_read_dot11MeshHWMPconfirmationInterval_57722 ieee80211_if_read_dot11MeshHWMPconfirmationInterval 3 57722 NULL
-+mga_ioremap_8571 mga_ioremap 1-2 8571 NULL
-+isr_dma0_done_read_8574 isr_dma0_done_read 3 8574 NULL
-+sys_rt_sigpending_24961 sys_rt_sigpending 2 24961 NULL
-+blk_rq_map_user_iov_16772 blk_rq_map_user_iov 5 16772 NULL
-+cnic_init_id_tbl_41354 cnic_init_id_tbl 2 41354 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
-+jbd2_alloc_41359 jbd2_alloc 1 41359 NULL
-+debug_debug6_read_33168 debug_debug6_read 3 33168 NULL
-+sctp_make_op_error_space_5528 sctp_make_op_error_space 3 5528 NULL
-+smk_write_access_49561 smk_write_access 3 49561 NULL
-+llc_ui_sendmsg_24987 llc_ui_sendmsg 4 24987 NULL
-+kmp_init_41373 kmp_init 2 41373 NULL
-+t3_init_l2t_8261 t3_init_l2t 1 8261 NULL
-+lbs_rdmac_read_418 lbs_rdmac_read 3 418 NULL
-+get_server_iovec_16804 get_server_iovec 2 16804 NULL
-+alloc_chunk_49575 alloc_chunk 1 49575 NULL
-+tipc_send2name_16809 tipc_send2name 6 16809 NULL
-+sctp_setsockopt_default_send_param_49578 sctp_setsockopt_default_send_param 3 49578 NULL
-+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
-+il_dbgfs_channels_read_25005 il_dbgfs_channels_read 3 25005 NULL
-+dm_vcalloc_16814 dm_vcalloc 1-2 16814 NULL
-+it821x_firmware_command_8628 it821x_firmware_command 3 8628 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
-+nf_nat_mangle_tcp_packet_8643 nf_nat_mangle_tcp_packet 5-7 8643 NULL
-+ivtv_read_57796 ivtv_read 3 57796 NULL
-+isr_wakeups_read_49607 isr_wakeups_read 3 49607 NULL
-+nfs_dns_resolve_name_25036 nfs_dns_resolve_name 3 25036 NULL
-+xfs_iext_add_41422 xfs_iext_add 3 41422 NULL
-+heap_init_49617 heap_init 2 49617 NULL
-+xfs_file_aio_write_33234 xfs_file_aio_write 4 33234 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
-+btrfsic_cmp_log_and_dev_bytenr_49628 btrfsic_cmp_log_and_dev_bytenr 2 49628 NULL
-+iio_device_alloc_41440 iio_device_alloc 1 41440 NULL
-+ntfs_file_buffered_write_41442 ntfs_file_buffered_write 4-6 41442 NULL
-+pcpu_build_alloc_info_41443 pcpu_build_alloc_info 1-3-2 41443 NULL
-+bfad_debugfs_read_regrd_57830 bfad_debugfs_read_regrd 3 57830 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
-+flash_read_57843 flash_read 3 57843 NULL
-+read_vbt_r0_503 read_vbt_r0 1 503 NULL
-+rx_rx_defrag_end_read_505 rx_rx_defrag_end_read 3 505 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
-+gsm_control_reply_53333 gsm_control_reply 4 53333 NULL
-+smp_send_cmd_512 smp_send_cmd 3 512 NULL
-+rt2x00debug_write_rfcsr_41473 rt2x00debug_write_rfcsr 3 41473 NULL
-+rfcomm_sock_sendmsg_37661 rfcomm_sock_sendmsg 4 37661 NULL nohasharray
-+vmw_framebuffer_dmabuf_dirty_37661 vmw_framebuffer_dmabuf_dirty 6 37661 &rfcomm_sock_sendmsg_37661
-+HDLC_irq_8709 HDLC_irq 2 8709 NULL
-+stats_read_ul_32751 stats_read_ul 3 32751 NULL
-+ctrl_out_8712 ctrl_out 3-5 8712 NULL
-+cxio_hal_init_rhdl_resource_25104 cxio_hal_init_rhdl_resource 1 25104 NULL
-+copy_to_user_fromio_57432 copy_to_user_fromio 3 57432 NULL
-+snd_rawmidi_kernel_write_25106 snd_rawmidi_kernel_write 3 25106 NULL
-+aa_simple_write_to_buffer_49683 aa_simple_write_to_buffer 4-3 49683 NULL
-+wep_interrupt_read_41492 wep_interrupt_read 3 41492 NULL
-+trim_bitmaps_24158 trim_bitmaps 3 24158 NULL
-+hpfs_translate_name_41497 hpfs_translate_name 3 41497 NULL
-+mcs7830_get_reg_33308 mcs7830_get_reg 3 33308 NULL
-+psb_unlocked_ioctl_16926 psb_unlocked_ioctl 2 16926 NULL nohasharray
-+snd_gf1_mem_proc_dump_16926 snd_gf1_mem_proc_dump 5 16926 &psb_unlocked_ioctl_16926
-+iwl_dbgfs_reply_tx_error_read_19205 iwl_dbgfs_reply_tx_error_read 3 19205 NULL
-+sys_gethostname_49698 sys_gethostname 2 49698 NULL
-+cx2341x_ctrl_new_menu_49700 cx2341x_ctrl_new_menu 3 49700 NULL
-+vhci_read_47878 vhci_read 3 47878 NULL
-+devres_alloc_551 devres_alloc 2 551 NULL
-+TSS_authhmac_12839 TSS_authhmac 3 12839 NULL
-+ldisc_receive_41516 ldisc_receive 4 41516 NULL
-+tx_tx_exch_expiry_read_8749 tx_tx_exch_expiry_read 3 8749 NULL
-+ip_append_data_16942 ip_append_data 5-6 16942 NULL
-+xt_alloc_table_info_57903 xt_alloc_table_info 1 57903 NULL
-+_sp2d_alloc_16944 _sp2d_alloc 1-3-2 16944 NULL
-+squashfs_read_table_16945 squashfs_read_table 3 16945 NULL
-+emi26_writememory_57908 emi26_writememory 4 57908 NULL
-+start_isoc_chain_565 start_isoc_chain 2 565 NULL
-+iio_read_first_n_kfifo_57910 iio_read_first_n_kfifo 2 57910 NULL
-+gsm_mux_rx_netchar_33336 gsm_mux_rx_netchar 3 33336 NULL
-+audit_unpack_string_13748 audit_unpack_string 3 13748 NULL
-+joydev_compat_ioctl_8765 joydev_compat_ioctl 2 8765 NULL
-+sys_prctl_8766 sys_prctl 4 8766 NULL
-+joydev_ioctl_33343 joydev_ioctl 2 33343 NULL
-+sep_create_dcb_dmatables_context_kernel_49728 sep_create_dcb_dmatables_context_kernel 6 49728 NULL
-+insert_one_name_61668 insert_one_name 7 61668 NULL
-+compat_sys_preadv_583 compat_sys_preadv 3 583 NULL
-+sys_fsetxattr_49736 sys_fsetxattr 4 49736 NULL
-+keyctl_instantiate_key_iov_16969 keyctl_instantiate_key_iov 3 16969 NULL
-+create_xattr_datum_33356 create_xattr_datum 5 33356 NULL nohasharray
-+irq_pkt_threshold_read_33356 irq_pkt_threshold_read 3 33356 &create_xattr_datum_33356
-+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
-+tx_tx_frame_checksum_read_41553 tx_tx_frame_checksum_read 3 41553 NULL
-+ath6kl_endpoint_stats_read_41554 ath6kl_endpoint_stats_read 3 41554 NULL
-+i2cdev_write_23310 i2cdev_write 3 23310 NULL
-+rx_rx_checksum_result_read_50617 rx_rx_checksum_result_read 3 50617 NULL
-+rx_57944 rx 4 57944 NULL
-+sctp_getsockopt_local_addrs_25178 sctp_getsockopt_local_addrs 2 25178 NULL
-+nci_skb_alloc_49757 nci_skb_alloc 2 49757 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
-+ip_set_alloc_57953 ip_set_alloc 1 57953 NULL
-+fuse_conn_waiting_read_49762 fuse_conn_waiting_read 3 49762 NULL
-+mempool_create_slab_pool_62907 mempool_create_slab_pool 1 62907 NULL
-+fast_rx_path_59214 fast_rx_path 3 59214 NULL
-+isku_sysfs_write_49767 isku_sysfs_write 6 49767 NULL
-+i915_cache_sharing_write_57961 i915_cache_sharing_write 3 57961 NULL
-+batadv_receive_client_update_packet_41578 batadv_receive_client_update_packet 3 41578 NULL
-+ceph_read_dir_17005 ceph_read_dir 3 17005 NULL
-+handle_response_icmp_39574 handle_response_icmp 7 39574 NULL
-+iwl_dbgfs_nvm_read_23845 iwl_dbgfs_nvm_read 3 23845 NULL
-+hfc_empty_fifo_57972 hfc_empty_fifo 2 57972 NULL
-+metronomefb_write_8823 metronomefb_write 3 8823 NULL
-+copy_counters_to_user_17027 copy_counters_to_user 5 17027 NULL
-+unlink_queued_645 unlink_queued 3-4 645 NULL
-+_add_sg_continuation_descriptor_54721 _add_sg_continuation_descriptor 3 54721 NULL
-+_osd_req_list_objects_4204 _osd_req_list_objects 6 4204 NULL
-+nfs4_acl_new_49806 nfs4_acl_new 1 49806 NULL
-+a2mp_send_41615 a2mp_send 4 41615 NULL
-+ceph_copy_user_to_page_vector_656 ceph_copy_user_to_page_vector 3-4 656 NULL
-+rx_reset_counter_read_58001 rx_reset_counter_read 3 58001 NULL
-+arch_gnttab_map_status_49812 arch_gnttab_map_status 3 49812 NULL
-+mon_stat_read_25238 mon_stat_read 3 25238 NULL
-+jffs2_trusted_setxattr_17048 jffs2_trusted_setxattr 4 17048 NULL
-+regcache_rbtree_insert_to_block_58009 regcache_rbtree_insert_to_block 5 58009 NULL
-+wa_nep_queue_8858 wa_nep_queue 2 8858 NULL
-+macvtap_alloc_skb_50629 macvtap_alloc_skb 2-4-3 50629 NULL
-+mem_rx_free_mem_blks_read_675 mem_rx_free_mem_blks_read 3 675 NULL
-+ntfs_copy_from_user_iovec_49829 ntfs_copy_from_user_iovec 3-6 49829 NULL
-+add_uuid_49831 add_uuid 4 49831 NULL
-+ath6kl_fwlog_block_read_49836 ath6kl_fwlog_block_read 3 49836 NULL
-+__btrfs_map_block_49839 __btrfs_map_block 3 49839 NULL
-+dvb_dvr_read_17073 dvb_dvr_read 3 17073 NULL
-+mempool_create_kmalloc_pool_41650 mempool_create_kmalloc_pool 1 41650 NULL
-+simple_transaction_read_17076 simple_transaction_read 3 17076 NULL
-+rx_rx_pre_complt_read_41653 rx_rx_pre_complt_read 3 41653 NULL
-+scsi_dispatch_cmd_entry_49848 scsi_dispatch_cmd_entry 3 49848 NULL
-+timeradd_entry_49850 timeradd_entry 3 49850 NULL
-+crypto_alloc_instance2_25277 crypto_alloc_instance2 3 25277 NULL
-+vfs_writev_25278 vfs_writev 3 25278 NULL
-+rtl8169_try_rx_copy_705 rtl8169_try_rx_copy 3 705 NULL
-+alloc_async_14208 alloc_async 1 14208 NULL
-+ovs_vport_alloc_33475 ovs_vport_alloc 1 33475 NULL
-+persistent_ram_vmap_709 persistent_ram_vmap 1-2 709 NULL
-+l2tp_session_create_25286 l2tp_session_create 1 25286 NULL
-+create_entry_33479 create_entry 2 33479 NULL
-+mce_async_out_58056 mce_async_out 3 58056 NULL
-+alloc_sja1000dev_17868 alloc_sja1000dev 1 17868 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
-+netxen_nic_hw_write_wx_128M_33488 netxen_nic_hw_write_wx_128M 2 33488 NULL
-+aac_src_ioremap_41688 aac_src_ioremap 2 41688 NULL
-+dt3155_alloc_coherent_58073 dt3155_alloc_coherent 2 58073 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
-+ath9k_debugfs_read_buf_25316 ath9k_debugfs_read_buf 3 25316 NULL
-+rfcomm_wmalloc_58090 rfcomm_wmalloc 2 58090 NULL
-+mwifiex_get_common_rates_17131 mwifiex_get_common_rates 3 17131 NULL
-+musb_test_mode_write_33518 musb_test_mode_write 3 33518 NULL
-+ddp_set_map_751 ddp_set_map 4 751 NULL
-+driver_stats_read_8944 driver_stats_read 3 8944 NULL
-+ahash_setkey_unaligned_33521 ahash_setkey_unaligned 3 33521 NULL
-+dvb_video_write_754 dvb_video_write 3 754 NULL
-+nes_alloc_fast_reg_page_list_33523 nes_alloc_fast_reg_page_list 2 33523 NULL
-+ieee80211_if_read_flags_57470 ieee80211_if_read_flags 3 57470 NULL nohasharray
-+sep_lock_user_pages_57470 sep_lock_user_pages 2-3 57470 &ieee80211_if_read_flags_57470
-+aggr_size_rx_size_read_33526 aggr_size_rx_size_read 3 33526 NULL
-+bdx_tx_db_init_41719 bdx_tx_db_init 2 41719 NULL
-+udi_log_event_58105 udi_log_event 3 58105 NULL
-+sys_pwritev_41722 sys_pwritev 3 41722 NULL
-+l2cap_sock_alloc_skb_cb_33532 l2cap_sock_alloc_skb_cb 2 33532 NULL
-+ib_send_cm_mra_60202 ib_send_cm_mra 4 60202 NULL nohasharray
-+qib_reg_phys_mr_60202 qib_reg_phys_mr 3 60202 &ib_send_cm_mra_60202
-+read_file_tgt_stats_8959 read_file_tgt_stats 3 8959 NULL
-+__copy_from_user_inatomic_nocache_49921 __copy_from_user_inatomic_nocache 3 49921 NULL
-+tomoyo_read_self_33539 tomoyo_read_self 3 33539 NULL
-+usb_allocate_stream_buffers_8964 usb_allocate_stream_buffers 3 8964 NULL
-+tcm_loop_change_queue_depth_42454 tcm_loop_change_queue_depth 2 42454 NULL
-+venus_mkdir_8967 venus_mkdir 4 8967 NULL
-+seq_open_net_8968 seq_open_net 4 8968 NULL nohasharray
-+vol_cdev_read_8968 vol_cdev_read 3 8968 &seq_open_net_8968
-+sep_read_17161 sep_read 3 17161 NULL
-+befs_nls2utf_17163 befs_nls2utf 3 17163 NULL
-+tx_tx_start_templates_read_17164 tx_tx_start_templates_read 3 17164 NULL
-+dup_array_33551 dup_array 3 33551 NULL
-+solo_enc_read_33553 solo_enc_read 3 33553 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
-+btrfs_alloc_free_block_8986 btrfs_alloc_free_block 3 8986 NULL
-+batadv_tt_realloc_packet_buff_49960 batadv_tt_realloc_packet_buff 4 49960 NULL
-+driver_state_read_17194 driver_state_read 3 17194 NULL nohasharray
-+iscsit_find_cmd_from_itt_or_dump_17194 iscsit_find_cmd_from_itt_or_dump 3 17194 &driver_state_read_17194
-+if_writecmd_815 if_writecmd 2 815 NULL
-+aac_change_queue_depth_825 aac_change_queue_depth 2 825 NULL
-+read_fifo_826 read_fifo 3 826 NULL
-+scsi_execute_33596 scsi_execute 5 33596 NULL
-+dn_recvmsg_17213 dn_recvmsg 4 17213 NULL
-+ms_rw_17220 ms_rw 3-4 17220 NULL
-+read_tree_block_841 read_tree_block 3 841 NULL
-+hsi_alloc_controller_41802 hsi_alloc_controller 1 41802 NULL
-+l2cap_chan_send_49995 l2cap_chan_send 3 49995 NULL
-+dai_list_read_file_25421 dai_list_read_file 3 25421 NULL
-+__pskb_copy_9038 __pskb_copy 2 9038 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
-+sco_send_frame_41815 sco_send_frame 3 41815 NULL
-+nci_send_cmd_58206 nci_send_cmd 3 58206 NULL
-+snd_emu10k1_synth_copy_from_user_9061 snd_emu10k1_synth_copy_from_user 3-5 9061 NULL
-+snd_gus_dram_peek_9062 snd_gus_dram_peek 4 9062 NULL
-+provide_user_output_41105 provide_user_output 3 41105 NULL
-+error_error_frame_cts_nul_flid_read_17262 error_error_frame_cts_nul_flid_read 3 17262 NULL
-+o2net_send_message_vec_879 o2net_send_message_vec 4 879 NULL nohasharray
-+iwl_dbgfs_fh_reg_read_879 iwl_dbgfs_fh_reg_read 3 879 &o2net_send_message_vec_879
-+fib_info_hash_alloc_9075 fib_info_hash_alloc 1 9075 NULL
-+alloc_ep_17269 alloc_ep 1 17269 NULL
-+ath6kl_wmi_beginscan_cmd_25462 ath6kl_wmi_beginscan_cmd 8 25462 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
-+irq_blk_threshold_read_33666 irq_blk_threshold_read 3 33666 NULL
-+neigh_hash_grow_17283 neigh_hash_grow 2 17283 NULL
-+btrfsic_create_link_to_next_block_58246 btrfsic_create_link_to_next_block 4 58246 NULL
-+sctp_sf_abort_violation_38380 sctp_sf_abort_violation 6 38380 NULL
-+minstrel_stats_read_17290 minstrel_stats_read 3 17290 NULL
-+rbd_alloc_coll_33678 rbd_alloc_coll 1 33678 NULL
-+read_file_debug_58256 read_file_debug 3 58256 NULL
-+caif_stream_sendmsg_9110 caif_stream_sendmsg 4 9110 NULL
-+tracing_trace_options_write_153 tracing_trace_options_write 3 153 NULL
-+btmrvl_hsstate_read_920 btmrvl_hsstate_read 3 920 NULL
-+profile_load_58267 profile_load 3 58267 NULL
-+pmcraid_change_queue_depth_9116 pmcraid_change_queue_depth 2 9116 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
-+pcpu_get_vm_areas_50085 pcpu_get_vm_areas 3 50085 NULL
-+sock_setsockopt_50088 sock_setsockopt 5 50088 NULL
-+oom_adjust_write_41116 oom_adjust_write 3 41116 NULL
-+altera_swap_dr_50090 altera_swap_dr 2 50090 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
-+iscsi_decode_text_input_58292 iscsi_decode_text_input 4 58292 NULL
-+carl9170_cmd_buf_950 carl9170_cmd_buf 3 950 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
-+ceph_get_direct_page_vector_41917 ceph_get_direct_page_vector 2 41917 NULL
-+read_file_slot_50111 read_file_slot 3 50111 NULL
-+iwl_dbgfs_rxon_filter_flags_read_28832 iwl_dbgfs_rxon_filter_flags_read 3 28832 NULL
-+ieee80211_if_read_dot11MeshHWMPperrMinInterval_17346 ieee80211_if_read_dot11MeshHWMPperrMinInterval 3 17346 NULL
-+ath6kl_wmi_send_mgmt_cmd_17347 ath6kl_wmi_send_mgmt_cmd 7 17347 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
-+tx_tx_start_int_templates_read_58324 tx_tx_start_int_templates_read 3 58324 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
-+vifs_state_read_33762 vifs_state_read 3 33762 NULL
-+btmrvl_psstate_read_50683 btmrvl_psstate_read 3 50683 NULL
-+hdlcdev_rx_997 hdlcdev_rx 3 997 NULL
-+portnames_read_41958 portnames_read 3 41958 NULL
-+ubi_self_check_all_ff_41959 ubi_self_check_all_ff 4 41959 NULL
-+hashtab_create_33769 hashtab_create 3 33769 NULL
-+alloc_group_attrs_9194 alloc_group_attrs 2 9194 NULL nohasharray
-+altera_swap_ir_9194 altera_swap_ir 2 9194 &alloc_group_attrs_9194
-+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
-+odev_update_50169 odev_update 2 50169 NULL
-+ubi_resize_volume_50172 ubi_resize_volume 2 50172 NULL
-+smk_write_cipso2_1021 smk_write_cipso2 3 1021 NULL
-+__devres_alloc_25598 __devres_alloc 2 25598 NULL
-+brcmf_debugfs_sdio_counter_read_58369 brcmf_debugfs_sdio_counter_read 3 58369 NULL
-+netpoll_send_udp_58955 netpoll_send_udp 3 58955 NULL
-+tx_tx_prepared_descs_read_9221 tx_tx_prepared_descs_read 3 9221 NULL
-+ib_send_cm_drep_50186 ib_send_cm_drep 3 50186 NULL
-+do_write_orph_node_64343 do_write_orph_node 2 64343 NULL
-+sctp_getsockopt_delayed_ack_9232 sctp_getsockopt_delayed_ack 2 9232 NULL
-+il_dbgfs_status_read_58388 il_dbgfs_status_read 3 58388 NULL
-+cfg80211_roamed_bss_50198 cfg80211_roamed_bss 4-6 50198 NULL
-+lguest_map_42008 lguest_map 1-2 42008 NULL
-+proc_coredump_filter_write_25625 proc_coredump_filter_write 3 25625 NULL
-+sta_connected_time_read_17435 sta_connected_time_read 3 17435 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
-+sep_create_msgarea_context_33829 sep_create_msgarea_context 4 33829 NULL
-+vp_request_msix_vectors_28849 vp_request_msix_vectors 2 28849 NULL
-+tcf_csum_ipv4_icmp_9258 tcf_csum_ipv4_icmp 3 9258 NULL
-+acpi_ut_create_buffer_object_42030 acpi_ut_create_buffer_object 1 42030 NULL
-+mce_request_packet_1073 mce_request_packet 3 1073 NULL
-+agp_create_memory_1075 agp_create_memory 1 1075 NULL
-+sparse_early_usemaps_alloc_node_9269 sparse_early_usemaps_alloc_node 4 9269 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
-+_scsih_adjust_queue_depth_1083 _scsih_adjust_queue_depth 2 1083 NULL
-+oz_cdev_write_33852 oz_cdev_write 3 33852 NULL
-+nfs_pgarray_set_1085 nfs_pgarray_set 2 1085 NULL
-+irda_sendmsg_ultra_42047 irda_sendmsg_ultra 4 42047 NULL
-+sg_kmalloc_50240 sg_kmalloc 1 50240 NULL
-+ps_poll_upsd_max_ap_turn_read_42050 ps_poll_upsd_max_ap_turn_read 3 42050 NULL
-+llcp_sock_sendmsg_1092 llcp_sock_sendmsg 4 1092 NULL
-+probe_kernel_write_17481 probe_kernel_write 3 17481 NULL
-+InterfaceTransmitPacket_42058 InterfaceTransmitPacket 3 42058 NULL
-+kvm_write_guest_cached_11106 kvm_write_guest_cached 4 11106 NULL
-+TSS_rawhmac_17486 TSS_rawhmac 3 17486 NULL
-+afs_extract_data_50261 afs_extract_data 5 50261 NULL
-+capabilities_read_58457 capabilities_read 3 58457 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
-+lpfc_idiag_baracc_read_58466 lpfc_idiag_baracc_read 3 58466 NULL nohasharray
-+compat_do_ipt_set_ctl_58466 compat_do_ipt_set_ctl 4 58466 &lpfc_idiag_baracc_read_58466
-+scsi_execute_req_42088 scsi_execute_req 5 42088 NULL
-+hcd_buffer_alloc_27495 hcd_buffer_alloc 2 27495 NULL
-+key_algorithm_read_57946 key_algorithm_read 3 57946 NULL
-+rxrpc_setsockopt_50286 rxrpc_setsockopt 5 50286 NULL
-+sk_chk_filter_42095 sk_chk_filter 2 42095 NULL
-+rx_filter_mc_filter_read_25712 rx_filter_mc_filter_read 3 25712 NULL
-+ibmasm_new_command_25714 ibmasm_new_command 2 25714 NULL
-+snd_rme96_capture_copy_58484 snd_rme96_capture_copy 5 58484 NULL
-+event_tx_stuck_read_19305 event_tx_stuck_read 3 19305 NULL
-+batadv_bla_is_backbone_gw_58488 batadv_bla_is_backbone_gw 3 58488 NULL
-+v4l2_ctrl_new_int_menu_41151 v4l2_ctrl_new_int_menu 4 41151 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
-+compat_mpctl_ioctl_45671 compat_mpctl_ioctl 2 45671 NULL
-+mcs_unwrap_fir_25733 mcs_unwrap_fir 3 25733 NULL
-+xlog_do_log_recovery_17550 xlog_do_log_recovery 3 17550 NULL
-+__copy_to_user_17551 __copy_to_user 3 17551 NULL
-+cxgbi_device_portmap_create_25747 cxgbi_device_portmap_create 3 25747 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
-+read_file_tgt_rx_stats_33944 read_file_tgt_rx_stats 3 33944 NULL
-+iwl_dbgfs_ucode_tracing_read_47983 iwl_dbgfs_ucode_tracing_read 3 47983 NULL nohasharray
-+mempool_resize_47983 mempool_resize 2 47983 &iwl_dbgfs_ucode_tracing_read_47983
-+lpfc_idiag_pcicfg_read_50334 lpfc_idiag_pcicfg_read 3 50334 NULL
-+v9fs_alloc_rdir_buf_42150 v9fs_alloc_rdir_buf 2 42150 NULL
-+roccat_common2_send_with_status_50343 roccat_common2_send_with_status 4 50343 NULL
-+ipc_alloc_1192 ipc_alloc 1 1192 NULL
-+x25_sendmsg_12487 x25_sendmsg 4 12487 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
-+read_file_base_eeprom_42168 read_file_base_eeprom 3 42168 NULL
-+printer_write_60276 printer_write 3 60276 NULL
-+acpi_ut_create_package_object_17594 acpi_ut_create_package_object 1 17594 NULL
-+neigh_hash_alloc_17595 neigh_hash_alloc 1 17595 NULL
-+rts51x_write_mem_17598 rts51x_write_mem 4 17598 NULL
-+vga_switcheroo_debugfs_write_33984 vga_switcheroo_debugfs_write 3 33984 NULL
-+roccat_common2_receive_50369 roccat_common2_receive 4 50369 NULL
-+blk_init_tags_30592 blk_init_tags 1 30592 NULL
-+oprofilefs_str_to_user_42182 oprofilefs_str_to_user 3 42182 NULL
-+osst_execute_17607 osst_execute 7-6 17607 NULL
-+sl_alloc_bufs_50380 sl_alloc_bufs 2 50380 NULL
-+ipw_packet_received_skb_1230 ipw_packet_received_skb 2 1230 NULL
-+ieee80211_if_read_dot11MeshHWMPactivePathToRootTimeout_17618 ieee80211_if_read_dot11MeshHWMPactivePathToRootTimeout 3 17618 NULL
-+rx_rx_frame_checksum_read_40140 rx_rx_frame_checksum_read 3 40140 NULL
-+sys32_rt_sigpending_25814 sys32_rt_sigpending 2 25814 NULL
-+bm_realloc_pages_9431 bm_realloc_pages 2 9431 NULL
-+realloc_buffer_25816 realloc_buffer 2 25816 NULL
-+skb_make_writable_24783 skb_make_writable 2 24783 NULL
-+ffs_ep0_write_9438 ffs_ep0_write 3 9438 NULL
-+xip_file_read_58592 xip_file_read 3 58592 NULL
-+tty_buffer_request_room_23228 tty_buffer_request_room 2 23228 NULL
-+kmalloc_array_9444 kmalloc_array 1-2 9444 NULL
-+__ntfs_malloc_34022 __ntfs_malloc 1 34022 NULL
-+l2tp_ip_sendmsg_50411 l2tp_ip_sendmsg 4 50411 NULL
-+mcs_unwrap_mir_9455 mcs_unwrap_mir 3 9455 NULL
-+ppp_write_34034 ppp_write 3 34034 NULL
-+qla4xxx_change_queue_depth_1268 qla4xxx_change_queue_depth 2 1268 NULL
-+iscsi_create_conn_50425 iscsi_create_conn 2 50425 NULL
-+tty_insert_flip_string_34042 tty_insert_flip_string 3 34042 NULL
-+packet_setsockopt_17662 packet_setsockopt 5 17662 NULL
-+skb_copy_to_page_nocache_58624 skb_copy_to_page_nocache 6 58624 NULL
-+uf_ap_process_data_pdu_25860 uf_ap_process_data_pdu 7 25860 NULL
-+module_alloc_update_bounds_rx_58634 module_alloc_update_bounds_rx 1 58634 NULL
-+kimage_normal_alloc_31140 kimage_normal_alloc 3 31140 NULL
-+btmrvl_hsmode_write_42252 btmrvl_hsmode_write 3 42252 NULL
-+rx_defrag_need_decrypt_read_42253 rx_defrag_need_decrypt_read 3 42253 NULL
-+dsp_tone_hw_message_17678 dsp_tone_hw_message 3 17678 NULL
-+netxen_nic_map_indirect_address_128M_42257 netxen_nic_map_indirect_address_128M 2 42257 NULL
-+ulog_alloc_skb_23427 ulog_alloc_skb 1 23427 NULL
-+__alloc_preds_9492 __alloc_preds 2 9492 NULL
-+pgctrl_write_50453 pgctrl_write 3 50453 NULL
-+pwr_enable_ps_read_17686 pwr_enable_ps_read 3 17686 NULL
-+tx_tx_start_fw_gen_read_58648 tx_tx_start_fw_gen_read 3 58648 NULL
-+ath6kl_regread_read_25884 ath6kl_regread_read 3 25884 NULL
-+ib_copy_to_udata_27525 ib_copy_to_udata 3 27525 NULL
-+savu_sysfs_write_42273 savu_sysfs_write 6 42273 NULL
-+uvc_v4l2_ioctl_8411 uvc_v4l2_ioctl 2 8411 NULL
-+lp_write_9511 lp_write 3 9511 NULL
-+__einj_error_trigger_17707 __einj_error_trigger 1 17707 NULL nohasharray
-+venus_rename_17707 venus_rename 4-5 17707 &__einj_error_trigger_17707
-+cdrom_read_cdda_50478 cdrom_read_cdda 4 50478 NULL
-+nfs_readdir_make_qstr_12509 nfs_readdir_make_qstr 3 12509 NULL
-+lpfc_change_queue_depth_25905 lpfc_change_queue_depth 2 25905 NULL
-+scsi_tgt_kspace_exec_9522 scsi_tgt_kspace_exec 8 9522 NULL
-+do_jffs2_setxattr_25910 do_jffs2_setxattr 5 25910 NULL
-+do_xip_mapping_read_60297 do_xip_mapping_read 5 60297 NULL
-+read_file_dma_9530 read_file_dma 3 9530 NULL
-+sel_read_perm_42302 sel_read_perm 3 42302 NULL
-+rcname_read_25919 rcname_read 3 25919 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
-+tps6586x_writes_58689 tps6586x_writes 3 58689 NULL
-+il_dbgfs_rx_stats_read_15243 il_dbgfs_rx_stats_read 3 15243 NULL
-+exofs_read_lookup_dev_table_17733 exofs_read_lookup_dev_table 3 17733 NULL
-+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
-+sctpprobe_read_17741 sctpprobe_read 3 17741 NULL
-+ipx_sendmsg_1362 ipx_sendmsg 4 1362 NULL
-+hysdn_conf_read_42324 hysdn_conf_read 3 42324 NULL
-+islpci_mgt_transmit_34133 islpci_mgt_transmit 5 34133 NULL
-+pipeline_dec_packet_in_fifo_full_read_33052 pipeline_dec_packet_in_fifo_full_read 3 33052 NULL
-+fw_node_create_9559 fw_node_create 2 9559 NULL
-+fw_stats_raw_read_1369 fw_stats_raw_read 3 1369 NULL
-+mid_get_vbt_data_r1_26170 mid_get_vbt_data_r1 2 26170 NULL
-+kobj_map_9566 kobj_map 2-3 9566 NULL
-+snd_pcm_plug_alloc_42339 snd_pcm_plug_alloc 2 42339 NULL
-+acpi_map_58725 acpi_map 1-2 58725 NULL
-+sctp_setsockopt_initmsg_1383 sctp_setsockopt_initmsg 3 1383 NULL
-+fwnet_receive_packet_50537 fwnet_receive_packet 9 50537 NULL
-+do_msgsnd_1387 do_msgsnd 4 1387 NULL
-+ieee80211_tdls_mgmt_9581 ieee80211_tdls_mgmt 8 9581 NULL
-+l2tp_xmit_skb_42672 l2tp_xmit_skb 3 42672 NULL
-+ide_raw_taskfile_42355 ide_raw_taskfile 4 42355 NULL
-+udp_recvmsg_42558 udp_recvmsg 4 42558 NULL
-+file_read_actor_1401 file_read_actor 4 1401 NULL
-+av7110_ipack_init_46655 av7110_ipack_init 2 46655 NULL
-+ieee80211_if_write_tkip_mic_test_58748 ieee80211_if_write_tkip_mic_test 3 58748 NULL
-+ubifs_leb_change_17789 ubifs_leb_change 4 17789 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 9605 NULL
-+scsi_host_alloc_63041 scsi_host_alloc 2 63041 NULL
-+agp_allocate_memory_58761 agp_allocate_memory 2 58761 NULL
-+__do_config_autodelink_58763 __do_config_autodelink 3 58763 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
-+afs_cell_alloc_24052 afs_cell_alloc 2 24052 NULL
-+il_dbgfs_disable_ht40_read_42386 il_dbgfs_disable_ht40_read 3 42386 NULL
-+lpfc_sli_probe_sriov_nr_virtfn_26004 lpfc_sli_probe_sriov_nr_virtfn 2 26004 NULL
-+osd_req_write_kern_53486 osd_req_write_kern 5 53486 NULL
-+pep_reply_50582 pep_reply 5 50582 NULL
-+iwl_dbgfs_missed_beacon_read_50584 iwl_dbgfs_missed_beacon_read 3 50584 NULL
-+saa7164_buffer_alloc_user_9627 saa7164_buffer_alloc_user 2 9627 NULL
-+_snd_pcm_lib_alloc_vmalloc_buffer_17820 _snd_pcm_lib_alloc_vmalloc_buffer 2 17820 NULL
-+xfs_readdir_41200 xfs_readdir 3 41200 NULL
-+sge_rx_50594 sge_rx 3 50594 NULL
-+stack_max_size_read_1445 stack_max_size_read 3 1445 NULL
-+compat_sys_keyctl_9639 compat_sys_keyctl 4 9639 NULL
-+skb_padto_50759 skb_padto 2 50759 NULL
-+irq_domain_add_linear_29236 irq_domain_add_linear 2 29236 NULL
-+raw_send_hdrinc_58803 raw_send_hdrinc 4 58803 NULL
-+mptscsih_change_queue_depth_26036 mptscsih_change_queue_depth 2 26036 NULL
-+selinux_inode_post_setxattr_26037 selinux_inode_post_setxattr 4 26037 NULL
-+isku_sysfs_read_58806 isku_sysfs_read 6 58806 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
-+ep_read_58813 ep_read 3 58813 NULL
-+xprt_alloc_1475 xprt_alloc 2 1475 NULL
-+gsm_data_alloc_42437 gsm_data_alloc 3 42437 NULL
-+snd_opl4_mem_proc_write_9670 snd_opl4_mem_proc_write 5 9670 NULL
-+vring_new_virtqueue_9671 vring_new_virtqueue 1 9671 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
-+dns_query_9676 dns_query 3 9676 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
-+ray_cs_essid_proc_write_17875 ray_cs_essid_proc_write 3 17875 NULL
-+ocfs2_debug_read_14507 ocfs2_debug_read 3 14507 NULL
-+orinoco_set_key_17878 orinoco_set_key 5-7 17878 NULL
-+bl_pipe_downcall_34264 bl_pipe_downcall 3 34264 NULL
-+command_write_58841 command_write 3 58841 NULL
-+compat_sys_pwritev_17886 compat_sys_pwritev 3 17886 NULL
-+sys_readv_50664 sys_readv 3 50664 NULL
-+bnad_debugfs_read_50665 bnad_debugfs_read 3 50665 NULL
-+ath6kl_wmi_send_action_cmd_58860 ath6kl_wmi_send_action_cmd 7 58860 NULL
-+usbvision_v4l2_read_34386 usbvision_v4l2_read 3 34386 NULL
-+rx_rx_wa_density_dropped_frame_read_26095 rx_rx_wa_density_dropped_frame_read 3 26095 NULL
-+recover_head_17904 recover_head 3 17904 NULL
-+dccp_feat_register_sp_17914 dccp_feat_register_sp 5 17914 NULL
-+xfs_buf_associate_memory_17915 xfs_buf_associate_memory 3 17915 NULL
-+brcmf_sdbrcm_bus_txctl_42492 brcmf_sdbrcm_bus_txctl 3 42492 NULL
-+srp_iu_pool_alloc_17920 srp_iu_pool_alloc 2 17920 NULL
-+gs_alloc_req_58883 gs_alloc_req 2 58883 NULL
-+pvr2_v4l2_read_18006 pvr2_v4l2_read 3 18006 NULL
-+cs553x_init_one_58886 cs553x_init_one 3 58886 NULL
-+ddb_input_read_9743 ddb_input_read 3 9743 NULL
-+user_instantiate_26131 user_instantiate 3 26131 NULL
-+skb_cow_26138 skb_cow 2 26138 NULL
-+smk_write_netlbladdr_42525 smk_write_netlbladdr 3 42525 NULL
-+snd_emux_create_port_42533 snd_emux_create_port 3 42533 NULL
-+do_sigpending_9766 do_sigpending 2 9766 NULL
-+hysdn_conf_write_52145 hysdn_conf_write 3 52145 NULL
-+pipeline_cs_rx_packet_out_read_58926 pipeline_cs_rx_packet_out_read 3 58926 NULL
-+blk_check_plugged_50736 blk_check_plugged 3 50736 NULL
-+__blk_queue_init_tags_9778 __blk_queue_init_tags 2 9778 NULL
-+copy_oldmem_page_26164 copy_oldmem_page 3-1 26164 NULL
-+i915_ring_stop_read_42549 i915_ring_stop_read 3 42549 NULL nohasharray
-+ath6kl_wmi_proc_events_vif_42549 ath6kl_wmi_proc_events_vif 5 42549 &i915_ring_stop_read_42549
-+ath6kl_roam_table_read_26166 ath6kl_roam_table_read 3 26166 NULL
-+vmalloc_32_1135 vmalloc_32 1 1135 NULL
-+snd_mem_proc_write_9786 snd_mem_proc_write 3 9786 NULL
-+fc_frame_alloc_1596 fc_frame_alloc 2 1596 NULL
-+rngapi_reset_34366 rngapi_reset 3 34366 NULL nohasharray
-+p54_alloc_skb_34366 p54_alloc_skb 3 34366 &rngapi_reset_34366
-+alloc_rx_desc_ring_18016 alloc_rx_desc_ring 2 18016 NULL
-+smk_write_cipso_17989 smk_write_cipso 3 17989 NULL
-+packet_buffer_init_1607 packet_buffer_init 2 1607 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
-+udp_manip_pkt_50770 udp_manip_pkt 2 50770 NULL
-+snd_pcm_oss_write2_27332 snd_pcm_oss_write2 3 27332 NULL
-+udpv6_recvmsg_9813 udpv6_recvmsg 4 9813 NULL nohasharray
-+ieee80211_if_read_state_9813 ieee80211_if_read_state 3 9813 &udpv6_recvmsg_9813
-+tm6000_read_write_usb_50774 tm6000_read_write_usb 7 50774 NULL nohasharray
-+pipe_handler_request_50774 pipe_handler_request 5 50774 &tm6000_read_write_usb_50774
-+xfs_idata_realloc_26199 xfs_idata_realloc 2 26199 NULL
-+mce_write_26201 mce_write 3 26201 NULL
-+iwch_alloc_fastreg_pbl_40153 iwch_alloc_fastreg_pbl 2 40153 NULL
-+bio_alloc_map_data_50782 bio_alloc_map_data 1-2 50782 NULL
-+carl9170_debugfs_write_50857 carl9170_debugfs_write 3 50857 NULL
-+iwl_calib_set_34400 iwl_calib_set 3 34400 NULL nohasharray
-+ivtv_read_pos_34400 ivtv_read_pos 3 34400 &iwl_calib_set_34400
-+max3107_handlerx_58978 max3107_handlerx 2 58978 NULL
-+smk_write_load2_52155 smk_write_load2 3 52155 NULL
-+process_vm_rw_single_vec_26213 process_vm_rw_single_vec 1-2 26213 NULL
-+pci_enable_sriov_35745 pci_enable_sriov 2 35745 NULL
-+__pskb_pull_42602 __pskb_pull 2 42602 NULL
-+sctp_make_heartbeat_ack_34411 sctp_make_heartbeat_ack 4 34411 NULL
-+tpm_write_50798 tpm_write 3 50798 NULL
-+btmrvl_hsmode_read_1647 btmrvl_hsmode_read 3 1647 NULL
-+tun_do_read_50800 tun_do_read 4 50800 NULL
-+handle_rx_packet_58993 handle_rx_packet 3 58993 NULL
-+write_flush_50803 write_flush 3 50803 NULL
-+_scsih_change_queue_depth_26230 _scsih_change_queue_depth 2 26230 NULL
-+rxrpc_recvmsg_26233 rxrpc_recvmsg 4 26233 NULL
-+ikconfig_read_current_1658 ikconfig_read_current 3 1658 NULL
-+posix_acl_alloc_48063 posix_acl_alloc 1 48063 NULL
-+dvb_play_50814 dvb_play 3 50814 NULL
-+cryptd_alloc_instance_18048 cryptd_alloc_instance 2-3 18048 NULL
-+sys_move_pages_42626 sys_move_pages 2 42626 NULL
-+ddebug_proc_write_18055 ddebug_proc_write 3 18055 NULL
-+pmcraid_alloc_sglist_9864 pmcraid_alloc_sglist 1 9864 NULL
-+btrfs_free_reserved_extent_9867 btrfs_free_reserved_extent 2 9867 NULL
-+pstore_mkfile_50830 pstore_mkfile 5 50830 NULL
-+dma_attach_50831 dma_attach 6-7 50831 NULL
-+scsi_activate_tcq_42640 scsi_activate_tcq 2 42640 NULL
-+br_mdb_rehash_42643 br_mdb_rehash 2 42643 NULL
-+packet_came_18072 packet_came 3 18072 NULL
-+init_pci_cap_msi_perm_59033 init_pci_cap_msi_perm 2 59033 NULL
-+kvm_read_guest_page_18074 kvm_read_guest_page 5 18074 NULL
-+sctp_make_abort_34459 sctp_make_abort 3 34459 NULL
-+_regmap_raw_write_42652 _regmap_raw_write 4 42652 NULL
-+selinux_transaction_write_59038 selinux_transaction_write 3 59038 NULL
-+get_vm_area_18080 get_vm_area 1 18080 NULL
-+dvb_dvr_set_buffer_size_9840 dvb_dvr_set_buffer_size 2 9840 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
-+self_check_write_50856 self_check_write 5 50856 NULL
-+regmap_bulk_write_59049 regmap_bulk_write 4 59049 NULL
-+i2o_parm_field_get_34477 i2o_parm_field_get 5 34477 NULL
-+mpi_alloc_18094 mpi_alloc 1 18094 NULL
-+coda_psdev_write_1711 coda_psdev_write 3 1711 NULL
-+receive_DataRequest_9904 receive_DataRequest 3 9904 NULL
-+get_packet_5747 get_packet 3 5747 NULL
-+osdmap_set_max_osd_57630 osdmap_set_max_osd 2 57630 NULL nohasharray
-+sisusbcon_putcs_57630 sisusbcon_putcs 3 57630 &osdmap_set_max_osd_57630
-+udf_alloc_i_data_35786 udf_alloc_i_data 2 35786 NULL
-+dfs_file_read_18116 dfs_file_read 3 18116 NULL
-+request_key_and_link_42693 request_key_and_link 4 42693 NULL
-+vb2_read_42703 vb2_read 3 42703 NULL
-+pwr_wake_on_host_read_26321 pwr_wake_on_host_read 3 26321 NULL
-+dm_write_2513 dm_write 3 2513 NULL
-+hvc_alloc_12579 hvc_alloc 4 12579 NULL
-+tx_frag_called_read_1748 tx_frag_called_read 3 1748 NULL
-+irda_sendmsg_4388 irda_sendmsg 4 4388 NULL
-+osd_req_write_sg_50908 osd_req_write_sg 5 50908 NULL
-+xfs_iext_remove_50909 xfs_iext_remove 3 50909 NULL
-+set_rxd_buffer_pointer_9950 set_rxd_buffer_pointer 8 9950 NULL
-+erst_dbg_write_46715 erst_dbg_write 3 46715 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
-+hash_recvmsg_50924 hash_recvmsg 4 50924 NULL
-+dvb_demux_ioctl_42733 dvb_demux_ioctl 2 42733 NULL
-+chd_dec_fetch_cdata_50926 chd_dec_fetch_cdata 3 50926 NULL
-+update_macheader_1775 update_macheader 7 1775 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
-+btrfs_add_link_9973 btrfs_add_link 5 9973 NULL
-+stats_dot11RTSSuccessCount_read_33065 stats_dot11RTSSuccessCount_read 3 33065 NULL
-+cifs_readdata_alloc_26360 cifs_readdata_alloc 1 26360 NULL
-+ath6kl_usb_submit_ctrl_out_9978 ath6kl_usb_submit_ctrl_out 6 9978 NULL
-+dup_to_netobj_26363 dup_to_netobj 3 26363 NULL
-+sock_bindtodevice_50942 sock_bindtodevice 3 50942 NULL
-+pccard_store_cis_18176 pccard_store_cis 6 18176 NULL
-+fcoe_ctlr_device_add_1793 fcoe_ctlr_device_add 3 1793 NULL
-+alloc_ieee80211_rsl_34564 alloc_ieee80211_rsl 1 34564 NULL
-+mld_newpack_50950 mld_newpack 2 50950 NULL
-+iscsi_pool_init_54913 iscsi_pool_init 2-4 54913 NULL
-+framebuffer_alloc_59145 framebuffer_alloc 1 59145 NULL
-+i915_ring_stop_write_59010 i915_ring_stop_write 3 59010 NULL
-+radeon_compat_ioctl_59150 radeon_compat_ioctl 2 59150 NULL
-+cfpkt_create_18197 cfpkt_create 1 18197 NULL
-+velocity_rx_copy_34583 velocity_rx_copy 2 34583 NULL
-+error_error_frame_read_39947 error_error_frame_read 3 39947 NULL nohasharray
-+fwnet_pd_new_39947 fwnet_pd_new 4 39947 &error_error_frame_read_39947
-+x25_recvmsg_42777 x25_recvmsg 4 42777 NULL
-+init_send_hfcd_34586 init_send_hfcd 1 34586 NULL
-+proc_pid_readlink_52186 proc_pid_readlink 3 52186 NULL
-+orinoco_add_extscan_result_18207 orinoco_add_extscan_result 3 18207 NULL
-+gsm_control_message_18209 gsm_control_message 4 18209 NULL
-+do_ipv6_setsockopt_18215 do_ipv6_setsockopt 5 18215 NULL
-+koneplus_sysfs_read_42792 koneplus_sysfs_read 6 42792 NULL
-+setup_window_59178 setup_window 2-7-5-4 59178 NULL
-+timeout_write_50991 timeout_write 3 50991 NULL
-+batadv_orig_hash_add_if_10033 batadv_orig_hash_add_if 2 10033 NULL
-+fw_device_op_compat_ioctl_42804 fw_device_op_compat_ioctl 2 42804 NULL
-+RESIZE_IF_NEEDED_56286 RESIZE_IF_NEEDED 2 56286 NULL
-+proc_write_51003 proc_write 3 51003 NULL
-+drm_ioctl_42813 drm_ioctl 2 42813 NULL
-+gnttab_alloc_grant_references_18240 gnttab_alloc_grant_references 1 18240 NULL
-+iwl_dbgfs_ucode_bt_stats_read_42820 iwl_dbgfs_ucode_bt_stats_read 3 42820 NULL
-+set_arg_42824 set_arg 3 42824 NULL
-+xfs_iext_realloc_indirect_59211 xfs_iext_realloc_indirect 2 59211 NULL
-+brcmf_alloc_wdev_60347 brcmf_alloc_wdev 1 60347 NULL
-+rfcomm_sock_setsockopt_18254 rfcomm_sock_setsockopt 5 18254 NULL
-+lbs_dev_info_51023 lbs_dev_info 3 51023 NULL
-+cnic_alloc_dma_34641 cnic_alloc_dma 3 34641 NULL
-+fuse_conn_congestion_threshold_read_51028 fuse_conn_congestion_threshold_read 3 51028 NULL
-+usbtest_alloc_urb_34446 usbtest_alloc_urb 3-5 34446 NULL
-+qdisc_class_hash_alloc_18262 qdisc_class_hash_alloc 1 18262 NULL
-+hidp_queue_report_1881 hidp_queue_report 3 1881 NULL
-+dt3155_read_59226 dt3155_read 3 59226 NULL
-+xfs_buf_read_uncached_42844 xfs_buf_read_uncached 3 42844 NULL
-+dev_config_8506 dev_config 3 8506 NULL
-+dump_midi_51040 dump_midi 3 51040 NULL
-+srpt_alloc_ioctx_51042 srpt_alloc_ioctx 2-3 51042 NULL
-+gfs2_alloc_sort_buffer_18275 gfs2_alloc_sort_buffer 1 18275 NULL
-+skb_copy_datagram_const_iovec_48102 skb_copy_datagram_const_iovec 2-5-4 48102 NULL
-+alloc_ring_18278 alloc_ring 2-4 18278 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
-+nfs_parse_server_name_1899 nfs_parse_server_name 2 1899 NULL
-+do_arpt_set_ctl_51053 do_arpt_set_ctl 4 51053 NULL
-+em28xx_v4l2_read_16701 em28xx_v4l2_read 3 16701 NULL
-+configfs_read_file_1683 configfs_read_file 3 1683 NULL
-+ulong_write_file_26485 ulong_write_file 3 26485 NULL
-+wusb_prf_64_51065 wusb_prf_64 7 51065 NULL
-+dvb_ca_en50221_io_ioctl_26490 dvb_ca_en50221_io_ioctl 2 26490 NULL
-+dynamic_ps_timeout_read_10110 dynamic_ps_timeout_read 3 10110 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
-+tx_tx_retry_data_read_1926 tx_tx_retry_data_read 3 1926 NULL
-+garp_attr_create_3883 garp_attr_create 3 3883 NULL
-+tipc_port_recv_sections_42890 tipc_port_recv_sections 4 42890 NULL
-+vfio_pci_set_msi_trigger_26507 vfio_pci_set_msi_trigger 3-4 26507 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
-+cyttsp_probe_1940 cyttsp_probe 4 1940 NULL
-+SendTxCommandPacket_42901 SendTxCommandPacket 3 42901 NULL
-+btmrvl_hscfgcmd_read_56303 btmrvl_hscfgcmd_read 3 56303 NULL
-+ima_show_measurements_count_23536 ima_show_measurements_count 3 23536 NULL
-+ieee80211_if_read_num_sta_ps_34722 ieee80211_if_read_num_sta_ps 3 34722 NULL
-+alloc_ring_15345 alloc_ring 2-4 15345 NULL
-+btrfs_insert_dir_item_59304 btrfs_insert_dir_item 4 59304 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
-+iscsi_nop_out_rsp_51117 iscsi_nop_out_rsp 4 51117 NULL
-+platform_list_read_file_34734 platform_list_read_file 3 34734 NULL
-+hidg_alloc_ep_req_10159 hidg_alloc_ep_req 2 10159 NULL
-+reg_w_ixbuf_34736 reg_w_ixbuf 4 34736 NULL
-+sctp_make_datafrag_empty_34737 sctp_make_datafrag_empty 3 34737 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
-+__vhost_add_used_n_26554 __vhost_add_used_n 3 26554 NULL
-+fd_copyout_59323 fd_copyout 3 59323 NULL
-+nfs_map_name_to_uid_51132 nfs_map_name_to_uid 3 51132 NULL
-+proc_pid_attr_read_10173 proc_pid_attr_read 3 10173 NULL
-+read_9287_modal_eeprom_59327 read_9287_modal_eeprom 3 59327 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
-+jffs2_user_setxattr_10182 jffs2_user_setxattr 4 10182 NULL
-+__alloc_bootmem_node_1992 __alloc_bootmem_node 2 1992 NULL
-+rx_defrag_in_process_called_read_59338 rx_defrag_in_process_called_read 3 59338 NULL
-+xfs_trans_get_efd_51148 xfs_trans_get_efd 3 51148 NULL
-+ib_send_cm_rtu_63138 ib_send_cm_rtu 3 63138 NULL
-+compat_sys_pwritev64_51151 compat_sys_pwritev64 3 51151 NULL
-+rts51x_read_mem_26577 rts51x_read_mem 4 26577 NULL nohasharray
-+batadv_receive_server_sync_packet_26577 batadv_receive_server_sync_packet 3 26577 &rts51x_read_mem_26577
-+xfs_attrmulti_attr_set_59346 xfs_attrmulti_attr_set 4 59346 NULL
-+set_registers_53582 set_registers 3 53582 NULL
-+batadv_tt_commit_changes_2008 batadv_tt_commit_changes 4 2008 NULL
-+sep_prepare_input_dma_table_2009 sep_prepare_input_dma_table 2-3 2009 NULL
-+qib_cdev_init_34778 qib_cdev_init 1 34778 NULL
-+read_flush_procfs_27642 read_flush_procfs 3 27642 NULL
-+reada_tree_block_flagged_18402 reada_tree_block_flagged 3 18402 NULL
-+add_new_gdb_27643 add_new_gdb 3 27643 NULL
-+write_flush_pipefs_2021 write_flush_pipefs 3 2021 NULL
-+__copy_in_user_34790 __copy_in_user 3 34790 NULL
-+crystalhd_user_data_18407 crystalhd_user_data 3 18407 NULL
-+nfs_idmap_get_desc_42990 nfs_idmap_get_desc 2-4 42990 NULL
-+mwifiex_regrdwr_read_34472 mwifiex_regrdwr_read 3 34472 NULL
-+BcmCopySection_2035 BcmCopySection 5 2035 NULL
-+devm_ioremap_nocache_2036 devm_ioremap_nocache 2-3 2036 NULL
-+line6_dumpreq_init_34473 line6_dumpreq_init 3 34473 NULL
-+hdlc_rpr_irq_10240 hdlc_rpr_irq 2 10240 NULL
-+batadv_orig_node_add_if_18433 batadv_orig_node_add_if 2 18433 NULL
-+ath6kl_fwlog_mask_read_2050 ath6kl_fwlog_mask_read 3 2050 NULL
-+pwr_fix_tsf_ps_read_26627 pwr_fix_tsf_ps_read 3 26627 NULL
-+nfc_alloc_recv_skb_10244 nfc_alloc_recv_skb 1 10244 NULL
-+pm8001_store_update_fw_55716 pm8001_store_update_fw 4 55716 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
-+hest_ghes_dev_register_46766 hest_ghes_dev_register 1 46766 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
-+irq_alloc_generic_chip_26650 irq_alloc_generic_chip 2 26650 NULL
-+regset_tls_set_18459 regset_tls_set 4 18459 NULL
-+nf_ct_ext_create_51232 nf_ct_ext_create 3 51232 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
-+tipc_send_51238 tipc_send 4 51238 NULL
-+drm_property_create_51239 drm_property_create 4 51239 NULL
-+snd_rme9652_capture_copy_10287 snd_rme9652_capture_copy 5 10287 NULL
-+squashfs_read_data_59440 squashfs_read_data 6 59440 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
-+fs_path_ensure_buf_59445 fs_path_ensure_buf 2 59445 NULL
-+udpv6_setsockopt_18487 udpv6_setsockopt 5 18487 NULL
-+restore_i387_fxsave_17528 restore_i387_fxsave 2 17528 NULL
-+iwl_dbgfs_log_event_read_2107 iwl_dbgfs_log_event_read 3 2107 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
-+rtsx_read_cfg_seq_48139 rtsx_read_cfg_seq 3-5 48139 NULL
-+__find_xattr_2117 __find_xattr 6 2117 NULL nohasharray
-+enable_read_2117 enable_read 3 2117 &__find_xattr_2117
-+dvb_audio_write_51275 dvb_audio_write 3 51275 NULL
-+pcf50633_write_block_2124 pcf50633_write_block 3 2124 NULL
-+ipwireless_network_packet_received_51277 ipwireless_network_packet_received 4 51277 NULL
-+ieee80211_if_write_34894 ieee80211_if_write 3 34894 NULL
-+c4_add_card_54968 c4_add_card 3 54968 NULL
-+pkt_add_39897 pkt_add 3 39897 NULL
-+rtllib_authentication_req_26713 rtllib_authentication_req 3 26713 NULL
-+snd_gus_dram_poke_18525 snd_gus_dram_poke 4 18525 NULL
-+check_load_and_stores_2143 check_load_and_stores 2 2143 NULL
-+fd_do_readv_51297 fd_do_readv 3 51297 NULL
-+__btrfs_direct_write_22273 __btrfs_direct_write 4 22273 NULL
-+mlx4_init_icm_table_2151 mlx4_init_icm_table 4-5 2151 NULL
-+bnad_debugfs_read_regrd_51308 bnad_debugfs_read_regrd 3 51308 NULL
-+ufx_alloc_urb_list_10349 ufx_alloc_urb_list 3 10349 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
-+ath6kl_listen_int_read_10355 ath6kl_listen_int_read 3 10355 NULL
-+_ore_get_io_state_2166 _ore_get_io_state 3-5-4 2166 NULL
-+nr_recvmsg_12649 nr_recvmsg 4 12649 NULL
-+alloc_hippi_dev_51320 alloc_hippi_dev 1 51320 NULL
-+pipeline_tcp_rx_stat_fifo_int_read_26745 pipeline_tcp_rx_stat_fifo_int_read 3 26745 NULL
-+ms_write_multiple_pages_10362 ms_write_multiple_pages 5-6 10362 NULL
-+sas_change_queue_depth_18555 sas_change_queue_depth 2 18555 NULL
-+i2400m_rx_stats_read_57706 i2400m_rx_stats_read 3 57706 NULL
-+sta_ht_capa_read_10366 sta_ht_capa_read 3 10366 NULL
-+refill_pool_19477 refill_pool 2 19477 NULL
-+smk_write_rules_list_18565 smk_write_rules_list 3 18565 NULL
-+srp_ring_alloc_26760 srp_ring_alloc 2 26760 NULL
-+read_file_dfs_43145 read_file_dfs 3 43145 NULL
-+ecryptfs_decode_and_decrypt_filename_10379 ecryptfs_decode_and_decrypt_filename 5 10379 NULL
-+__proc_file_read_54978 __proc_file_read 3 54978 NULL
-+skb_gro_header_slow_34958 skb_gro_header_slow 2 34958 NULL
-+debug_output_18575 debug_output 3 18575 NULL
-+btrfs_map_block_64379 btrfs_map_block 3 64379 NULL
-+Realloc_34961 Realloc 2 34961 NULL
-+journal_init_revoke_56933 journal_init_revoke 2 56933 NULL
-+il_dbgfs_power_save_status_read_43165 il_dbgfs_power_save_status_read 3 43165 NULL
-+do_compat_pselect_10398 do_compat_pselect 1 10398 NULL
-+rx_path_reset_read_23801 rx_path_reset_read 3 23801 NULL
-+__netdev_alloc_skb_18595 __netdev_alloc_skb 2 18595 NULL
-+slabinfo_write_18600 slabinfo_write 3 18600 NULL
-+ssb_bus_ssbbus_register_2217 ssb_bus_ssbbus_register 2 2217 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
-+ath6kl_set_assoc_req_ies_43185 ath6kl_set_assoc_req_ies 3 43185 NULL
-+acpi_os_ioremap_49523 acpi_os_ioremap 1-2 49523 NULL
-+rb_alloc_3102 rb_alloc 1 3102 NULL
-+arcmsr_adjust_disk_queue_depth_16756 arcmsr_adjust_disk_queue_depth 2 16756 NULL
-+rx_rx_hdr_overflow_read_35002 rx_rx_hdr_overflow_read 3 35002 NULL
-+l2cap_skbuff_fromiovec_35003 l2cap_skbuff_fromiovec 3-4 35003 NULL
-+write_pbl_59583 write_pbl 4 59583 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
-+ieee80211_wx_set_gen_ie_51399 ieee80211_wx_set_gen_ie 3 51399 NULL
-+iso_callback_43208 iso_callback 3 43208 NULL
-+ieee80211_if_read_dot11MeshHWMPRannInterval_2249 ieee80211_if_read_dot11MeshHWMPRannInterval 3 2249 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
-+cmtp_send_interopmsg_376 cmtp_send_interopmsg 7 376 NULL
-+do_update_counters_2259 do_update_counters 4 2259 NULL
-+coda_psdev_read_35029 coda_psdev_read 3 35029 NULL
-+cache_slow_downcall_8570 cache_slow_downcall 2 8570 NULL
-+ecryptfs_miscdev_write_26847 ecryptfs_miscdev_write 3 26847 NULL
-+blk_register_region_51424 blk_register_region 1-2 51424 NULL
-+ath6kl_wmi_bssinfo_event_rx_2275 ath6kl_wmi_bssinfo_event_rx 3 2275 NULL
-+mwifiex_rdeeprom_read_51429 mwifiex_rdeeprom_read 3 51429 NULL
-+mtrr_write_59622 mtrr_write 3 59622 NULL
-+event_phy_transmit_error_read_10471 event_phy_transmit_error_read 3 10471 NULL
-+ip_vs_icmp_xmit_59624 ip_vs_icmp_xmit 4 59624 NULL
-+netxen_nic_hw_read_wx_128M_26858 netxen_nic_hw_read_wx_128M 2 26858 NULL
-+edge_tty_recv_18667 edge_tty_recv 4 18667 NULL nohasharray
-+xfs_iext_insert_18667 xfs_iext_insert 3 18667 &edge_tty_recv_18667
-+btmrvl_gpiogap_write_35053 btmrvl_gpiogap_write 3 35053 NULL
-+tty_buffer_alloc_45437 tty_buffer_alloc 2 45437 NULL
-+ieee80211_if_read_dot11MeshHWMPRootMode_51441 ieee80211_if_read_dot11MeshHWMPRootMode 3 51441 NULL
-+debug_debug5_read_2291 debug_debug5_read 3 2291 NULL
-+twl_change_queue_depth_41342 twl_change_queue_depth 2 41342 NULL
-+fixup_leb_43256 fixup_leb 3 43256 NULL
-+dvb_usercopy_14036 dvb_usercopy 2 14036 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
-+ca91cx42_alloc_resource_10502 ca91cx42_alloc_resource 2 10502 NULL
-+intel_sdvo_set_value_2311 intel_sdvo_set_value 4 2311 NULL
-+qib_alloc_fast_reg_page_list_10507 qib_alloc_fast_reg_page_list 2 10507 NULL
-+evtchn_write_43278 evtchn_write 3 43278 NULL
-+sel_write_disable_10511 sel_write_disable 3 10511 NULL
-+store_ifalias_35088 store_ifalias 4 35088 NULL
-+tx_tx_template_prepared_read_30424 tx_tx_template_prepared_read 3 30424 NULL
-+osd_req_write_sg_kern_10514 osd_req_write_sg_kern 5 10514 NULL
-+____alloc_ei_netdev_51475 ____alloc_ei_netdev 1 51475 NULL
-+iwl_dbgfs_rx_handlers_read_18708 iwl_dbgfs_rx_handlers_read 3 18708 NULL
-+rds_message_alloc_10517 rds_message_alloc 1 10517 NULL
-+ceph_alloc_page_vector_18710 ceph_alloc_page_vector 1 18710 NULL
-+tower_write_8580 tower_write 3 8580 NULL
-+get_vm_area_caller_10527 get_vm_area_caller 1 10527 NULL
-+capi_write_35104 capi_write 3 35104 NULL nohasharray
-+tx_tx_done_template_read_35104 tx_tx_done_template_read 3 35104 &capi_write_35104
-+_xfs_buf_get_pages_46811 _xfs_buf_get_pages 2 46811 NULL
-+sys_semtimedop_4486 sys_semtimedop 3 4486 NULL
-+ide_settings_proc_write_35110 ide_settings_proc_write 3 35110 NULL
-+read_file_misc_9948 read_file_misc 3 9948 NULL
-+x25_asy_change_mtu_26928 x25_asy_change_mtu 2 26928 NULL
-+zr364xx_read_2354 zr364xx_read 3 2354 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
-+pppoe_recvmsg_15073 pppoe_recvmsg 4 15073 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
-+o2hb_debug_create_18744 o2hb_debug_create 4 18744 NULL
-+tcp_send_rcvq_11316 tcp_send_rcvq 3 11316 NULL
-+viafb_iga2_odev_proc_write_2363 viafb_iga2_odev_proc_write 3 2363 NULL
-+hecubafb_write_26942 hecubafb_write 3 26942 NULL
-+wep_packets_read_18751 wep_packets_read 3 18751 NULL
-+xfs_buf_map_from_irec_2368 xfs_buf_map_from_irec 5 2368 NULL nohasharray
-+rose_recvmsg_2368 rose_recvmsg 4 2368 &xfs_buf_map_from_irec_2368
-+il_dbgfs_sensitivity_read_2370 il_dbgfs_sensitivity_read 3 2370 NULL
-+ieee80211_if_write_uapsd_queues_51526 ieee80211_if_write_uapsd_queues 3 51526 NULL
-+do_trimming_26952 do_trimming 3 26952 NULL
-+udp_sendmsg_4492 udp_sendmsg 4 4492 NULL
-+read_file_dump_nfcal_18766 read_file_dump_nfcal 3 18766 NULL
-+prism2_info_scanresults_59729 prism2_info_scanresults 3 59729 NULL
-+ffs_epfile_read_18775 ffs_epfile_read 3 18775 NULL
-+alloc_buf_34532 alloc_buf 1 34532 NULL
-+alloc_fcdev_18780 alloc_fcdev 1 18780 NULL
-+__alloc_eip_netdev_51549 __alloc_eip_netdev 1 51549 NULL
-+icn_writecmd_38629 icn_writecmd 2 38629 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
-+supply_map_read_file_10608 supply_map_read_file 3 10608 NULL
-+isdn_v110_open_2418 isdn_v110_open 3 2418 NULL
-+roccat_common2_send_2422 roccat_common2_send 4 2422 NULL
-+ieee80211_auth_challenge_18810 ieee80211_auth_challenge 3 18810 NULL
-+hfcpci_empty_fifo_2427 hfcpci_empty_fifo 4 2427 NULL
-+cxgb3_get_cpl_reply_skb_10620 cxgb3_get_cpl_reply_skb 2 10620 NULL
-+xfs_iroot_realloc_46826 xfs_iroot_realloc 2 46826 NULL
-+venus_remove_59781 venus_remove 4 59781 NULL
-+ioremap_nocache_2439 ioremap_nocache 1-2 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
-+aac_convert_sgraw2_51598 aac_convert_sgraw2 4 51598 NULL
-+rfcomm_tty_write_51603 rfcomm_tty_write 3 51603 NULL
-+xenfb_write_43412 xenfb_write 3 43412 NULL
-+cosa_write_1774 cosa_write 3 1774 NULL
-+nfs4_alloc_slots_2454 nfs4_alloc_slots 1 2454 NULL nohasharray
-+ath6kl_usb_bmi_write_2454 ath6kl_usb_bmi_write 3 2454 &nfs4_alloc_slots_2454
-+rx_rx_cmplt_task_read_35226 rx_rx_cmplt_task_read 3 35226 NULL
-+mtf_test_write_18844 mtf_test_write 3 18844 NULL
-+__alloc_bootmem_low_43423 __alloc_bootmem_low 1 43423 NULL nohasharray
-+gdm_wimax_netif_rx_43423 gdm_wimax_netif_rx 3 43423 &__alloc_bootmem_low_43423
-+rtllib_wx_set_gen_ie_59808 rtllib_wx_set_gen_ie 3 59808 NULL
-+sisusb_send_packet_20891 sisusb_send_packet 2 20891 NULL
-+nfs_idmap_lookup_id_10660 nfs_idmap_lookup_id 2 10660 NULL
-+xlog_recover_add_to_cont_trans_44102 xlog_recover_add_to_cont_trans 4 44102 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
-+cmd_complete_51629 cmd_complete 6 51629 NULL
-+sctp_setsockopt_events_18862 sctp_setsockopt_events 3 18862 NULL
-+btmrvl_txdnldready_read_413 btmrvl_txdnldready_read 3 413 NULL
-+ath6kl_wmi_roam_tbl_event_rx_43440 ath6kl_wmi_roam_tbl_event_rx 3 43440 NULL
-+set_fd_set_35249 set_fd_set 1 35249 NULL
-+wiphy_new_2482 wiphy_new 2 2482 NULL
-+ieee80211_if_read_dot11MeshHWMPmaxPREQretries_59829 ieee80211_if_read_dot11MeshHWMPmaxPREQretries 3 59829 NULL
-+__videobuf_alloc_vb_27062 __videobuf_alloc_vb 1 27062 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
-+key_icverrors_read_20895 key_icverrors_read 3 20895 NULL
-+iscsi_create_session_51647 iscsi_create_session 3 51647 NULL
-+dma_show_regs_35266 dma_show_regs 3 35266 NULL
-+tun_put_user_59849 tun_put_user 4 59849 NULL
-+squashfs_read_fragment_index_table_2506 squashfs_read_fragment_index_table 4 2506 NULL
-+alloc_fdmem_27083 alloc_fdmem 1 27083 NULL
-+irda_recvmsg_stream_35280 irda_recvmsg_stream 4 35280 NULL
-+get_new_cssid_51665 get_new_cssid 2 51665 NULL
-+v9fs_cached_file_read_2514 v9fs_cached_file_read 3 2514 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
-+ntfs_malloc_nofs_49572 ntfs_malloc_nofs 1 49572 NULL
-+brcmf_sdio_dump_console_37455 brcmf_sdio_dump_console 4 37455 NULL
-+nfc_llcp_send_i_frame_59130 nfc_llcp_send_i_frame 3 59130 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
-+ceph_setxattr_18913 ceph_setxattr 4 18913 NULL
-+sctp_setsockopt_associnfo_51684 sctp_setsockopt_associnfo 3 51684 NULL
-+__iscsi_complete_pdu_10726 __iscsi_complete_pdu 4 10726 NULL
-+sfi_sysfs_install_table_51688 sfi_sysfs_install_table 1 51688 NULL
-+tx_tx_data_prepared_read_43497 tx_tx_data_prepared_read 3 43497 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
-+brcmf_sdio_forensic_read_35311 brcmf_sdio_forensic_read 3 35311 NULL nohasharray
-+__btrfs_buffered_write_35311 __btrfs_buffered_write 3 35311 &brcmf_sdio_forensic_read_35311
-+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
-+ffs_prepare_buffer_59892 ffs_prepare_buffer 2 59892 NULL
-+sel_write_access_51704 sel_write_access 3 51704 NULL
-+sys_syslog_10746 sys_syslog 3 10746 NULL
-+alloc_one_pg_vec_page_10747 alloc_one_pg_vec_page 1 10747 NULL
-+new_bind_ctl_35324 new_bind_ctl 2 35324 NULL
-+do_readlink_43518 do_readlink 2 43518 NULL
-+gem_alloc_skb_51715 gem_alloc_skb 2 51715 NULL
-+fallback_on_nodma_alloc_35332 fallback_on_nodma_alloc 2 35332 NULL
-+i915_max_freq_write_11350 i915_max_freq_write 3 11350 NULL
-+btmrvl_hscfgcmd_write_27143 btmrvl_hscfgcmd_write 3 27143 NULL
-+vhost_add_used_n_10760 vhost_add_used_n 3 10760 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
-+tx_frag_failed_read_43540 tx_frag_failed_read 3 43540 NULL
-+__finish_unordered_dir_33198 __finish_unordered_dir 4 33198 NULL
-+hpi_alloc_control_cache_35351 hpi_alloc_control_cache 1 35351 NULL
-+hid_parse_report_51737 hid_parse_report 3 51737 NULL
-+compat_filldir64_35354 compat_filldir64 3 35354 NULL
-+alc_auto_create_extra_outs_18975 alc_auto_create_extra_outs 2 18975 NULL
-+i2400m_net_rx_27170 i2400m_net_rx 5 27170 NULL
-+l3_alloc_skb_32289 l3_alloc_skb 1 32289 NULL
-+ifx_spi_insert_flip_string_51752 ifx_spi_insert_flip_string 3 51752 NULL
-+ath_rx_init_43564 ath_rx_init 2 43564 NULL
-+il_dbgfs_rxon_flags_read_59950 il_dbgfs_rxon_flags_read 3 59950 NULL nohasharray
-+dapm_widget_power_read_file_59950 dapm_widget_power_read_file 3 59950 &il_dbgfs_rxon_flags_read_59950
-+sys_bind_10799 sys_bind 3 10799 NULL
-+_fc_frame_alloc_43568 _fc_frame_alloc 1 43568 NULL
-+nfcwilink_send_bts_cmd_10802 nfcwilink_send_bts_cmd 3 10802 NULL
-+il_dbgfs_missed_beacon_read_59956 il_dbgfs_missed_beacon_read 3 59956 NULL
-+rpc_malloc_43573 rpc_malloc 2 43573 NULL
-+dataflash_read_fact_otp_33204 dataflash_read_fact_otp 3-2 33204 NULL
-+smk_write_logging_2618 smk_write_logging 3 2618 NULL
-+nfc_alloc_send_skb_3167 nfc_alloc_send_skb 4 3167 NULL
-+__vxge_hw_channel_allocate_55462 __vxge_hw_channel_allocate 3 55462 NULL
-+batadv_skb_head_push_11360 batadv_skb_head_push 2 11360 NULL
-+drm_vblank_init_11362 drm_vblank_init 2 11362 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
-+__i2400mu_send_barker_23652 __i2400mu_send_barker 3 23652 NULL
-+proc_read_43614 proc_read 3 43614 NULL
-+rawv6_send_hdrinc_35425 rawv6_send_hdrinc 3 35425 NULL
-+revalidate_19043 revalidate 2 19043 NULL
-+drm_fb_helper_init_19044 drm_fb_helper_init 3-4 19044 NULL
-+fuse_conn_max_background_read_10855 fuse_conn_max_background_read 3 10855 NULL
-+xlbd_reserve_minors_18365 xlbd_reserve_minors 1-2 18365 NULL
-+rawsock_sendmsg_60010 rawsock_sendmsg 4 60010 NULL
-+mthca_init_cq_60011 mthca_init_cq 2 60011 NULL
-+buffer_to_user_35439 buffer_to_user 3 35439 NULL
-+vmalloc_15464 vmalloc 1 15464 NULL
-+batadv_check_unicast_packet_10866 batadv_check_unicast_packet 2 10866 NULL
-+do_kimage_alloc_64827 do_kimage_alloc 3 64827 NULL
-+snd_pcm_oss_write1_10872 snd_pcm_oss_write1 3 10872 NULL
-+ieee80211_key_alloc_19065 ieee80211_key_alloc 3 19065 NULL
-+osd_req_list_dev_partitions_60027 osd_req_list_dev_partitions 4 60027 NULL
-+cfpkt_add_trail_27260 cfpkt_add_trail 3 27260 NULL
-+xlog_bread_offset_60030 xlog_bread_offset 3 60030 NULL
-+sys_sched_getaffinity_60033 sys_sched_getaffinity 2 60033 NULL
-+read_file_tgt_tx_stats_51847 read_file_tgt_tx_stats 3 51847 NULL
-+do_ip6t_set_ctl_60040 do_ip6t_set_ctl 4 60040 NULL
-+do_readv_writev_51849 do_readv_writev 4 51849 NULL
-+adu_write_30487 adu_write 3 30487 NULL
-+test_unaligned_bulk_52333 test_unaligned_bulk 3 52333 NULL
-+get_scq_10897 get_scq 2 10897 NULL
-+sys_process_vm_readv_19090 sys_process_vm_readv 3-5 19090 NULL nohasharray
-+brcmf_usbdev_qinit_19090 brcmf_usbdev_qinit 2 19090 &sys_process_vm_readv_19090
-+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 nohasharray
-+gru_alloc_gts_60056 gru_alloc_gts 2-3 60056 &load_module_60056
-+videobuf_vmalloc_to_sg_4548 videobuf_vmalloc_to_sg 2 4548 NULL
-+get_indirect_ea_51869 get_indirect_ea 4 51869 NULL
-+dmam_declare_coherent_memory_43679 dmam_declare_coherent_memory 4-2 43679 NULL
-+nfsd_read_19568 nfsd_read 5 19568 NULL
-+sta_last_seq_ctrl_read_19106 sta_last_seq_ctrl_read 3 19106 NULL
-+iscsit_dump_data_payload_38683 iscsit_dump_data_payload 2 38683 NULL
-+cifs_readv_from_socket_19109 cifs_readv_from_socket 3 19109 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 2-4 27308 NULL
-+__xip_file_write_2733 __xip_file_write 3-4 2733 NULL
-+cryptd_hash_setkey_42781 cryptd_hash_setkey 3 42781 NULL
-+ath6kl_wmi_test_cmd_27312 ath6kl_wmi_test_cmd 3 27312 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
-+async_setkey_35521 async_setkey 3 35521 NULL
-+set_dev_class_39645 set_dev_class 4 39645 NULL nohasharray
-+dm_exception_table_init_39645 dm_exception_table_init 2 39645 &set_dev_class_39645
-+send_msg_37323 send_msg 4 37323 NULL
-+alloc_irdadev_19140 alloc_irdadev 1 19140 NULL
-+iio_read_first_n_sw_rb_51911 iio_read_first_n_sw_rb 2 51911 NULL
-+hid_report_raw_event_2762 hid_report_raw_event 4 2762 NULL
-+l2cap_create_iframe_pdu_40055 l2cap_create_iframe_pdu 3 40055 NULL
-+iwl_dbgfs_bt_traffic_read_35534 iwl_dbgfs_bt_traffic_read 3 35534 NULL
-+rxpipe_tx_xfr_host_int_trig_rx_data_read_35538 rxpipe_tx_xfr_host_int_trig_rx_data_read 3 35538 NULL
-+mon_bin_ioctl_2771 mon_bin_ioctl 3 2771 NULL
-+snd_rme32_playback_copy_43732 snd_rme32_playback_copy 5 43732 NULL
-+ttm_bo_kmap_60118 ttm_bo_kmap 3-2 60118 NULL
-+sleep_auth_read_19159 sleep_auth_read 3 19159 NULL
-+alloc_context_3194 alloc_context 1 3194 NULL
-+ieee80211_if_write_smps_35550 ieee80211_if_write_smps 3 35550 NULL
-+bm_entry_read_10976 bm_entry_read 3 10976 NULL
-+smk_write_access2_19170 smk_write_access2 3 19170 NULL
-+pcbit_stat_27364 pcbit_stat 2 27364 NULL
-+i915_min_freq_write_10981 i915_min_freq_write 3 10981 NULL
-+sched_autogroup_write_10984 sched_autogroup_write 3 10984 NULL
-+gigaset_initcs_43753 gigaset_initcs 2 43753 NULL
-+sctp_setsockopt_active_key_43755 sctp_setsockopt_active_key 3 43755 NULL
-+scsi_get_vpd_page_51951 scsi_get_vpd_page 4 51951 NULL
-+handle_request_10024 handle_request 9 10024 NULL
-+xfrm_hash_alloc_10997 xfrm_hash_alloc 1 10997 NULL
-+altera_set_ir_post_20948 altera_set_ir_post 2 20948 NULL
-+rx_filter_accum_arp_pend_requests_read_11003 rx_filter_accum_arp_pend_requests_read 3 11003 NULL
-+init_state_60165 init_state 2 60165 NULL
-+udpv6_sendmsg_22316 udpv6_sendmsg 4 22316 NULL
-+sel_read_enforce_2828 sel_read_enforce 3 2828 NULL
-+__copy_to_user_inatomic_19214 __copy_to_user_inatomic 3 19214 NULL
-+dev_counters_read_19216 dev_counters_read 3 19216 NULL
-+ath6kl_sdio_alloc_prep_scat_req_51986 ath6kl_sdio_alloc_prep_scat_req 2 51986 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
-+read_dma_55086 read_dma 3 55086 NULL
-+ieee80211_if_read_smps_27416 ieee80211_if_read_smps 3 27416 NULL
-+calc_hmac_32010 calc_hmac 3 32010 NULL
-+dwc3_mode_write_51997 dwc3_mode_write 3 51997 NULL
-+btrfs_copy_from_user_43806 btrfs_copy_from_user 1-3 43806 NULL
-+rx_rx_tkip_replays_read_60193 rx_rx_tkip_replays_read 3 60193 NULL
-+hci_send_cmd_43810 hci_send_cmd 3 43810 NULL
-+reshape_ring_29147 reshape_ring 2 29147 NULL
-+ceph_buffer_new_35974 ceph_buffer_new 1 35974 NULL
-+tda10048_writeregbulk_11050 tda10048_writeregbulk 4 11050 NULL
-+sfq_alloc_2861 sfq_alloc 1 2861 NULL
-+skb_copy_datagram_from_iovec_52014 skb_copy_datagram_from_iovec 2-5-4 52014 NULL
-+carl9170_handle_mpdu_11056 carl9170_handle_mpdu 3 11056 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
-+override_release_52032 override_release 2 52032 NULL
-+p54_download_eeprom_43842 p54_download_eeprom 4 43842 NULL
-+spi_register_board_info_35651 spi_register_board_info 2 35651 NULL
-+store_debug_level_35652 store_debug_level 3 35652 NULL
-+filldir64_46469 filldir64 3 46469 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
-+il_dbgfs_rxon_filter_flags_read_19281 il_dbgfs_rxon_filter_flags_read 3 19281 NULL
-+io_mapping_map_wc_19284 io_mapping_map_wc 2 19284 NULL
-+tunables_write_59563 tunables_write 3 59563 NULL
-+compat_sys_kexec_load_35674 compat_sys_kexec_load 2 35674 NULL
-+copy_entries_to_user_52367 copy_entries_to_user 1 52367 NULL
-+rtsx_write_cfg_seq_27485 rtsx_write_cfg_seq 3-5 27485 NULL
-+qc_capture_19298 qc_capture 3 19298 NULL
-+pm860x_bulk_write_43875 pm860x_bulk_write 3 43875 NULL
-+lbs_bcnmiss_read_8678 lbs_bcnmiss_read 3 8678 NULL
-+dm_table_create_35687 dm_table_create 3 35687 NULL
-+qib_create_cq_27497 qib_create_cq 2 27497 NULL
-+nfc_hci_execute_cmd_43882 nfc_hci_execute_cmd 5 43882 NULL
-+rds_page_copy_user_35691 rds_page_copy_user 4 35691 NULL
-+tw_change_queue_depth_11116 tw_change_queue_depth 2 11116 NULL
-+xfs_trans_get_buf_map_2927 xfs_trans_get_buf_map 4 2927 NULL
-+tracing_buffers_read_11124 tracing_buffers_read 3 11124 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
-+debug_read_19322 debug_read 3 19322 NULL
-+snd_rme9652_playback_copy_20970 snd_rme9652_playback_copy 5 20970 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
-+tm6000_i2c_recv_regs16_2949 tm6000_i2c_recv_regs16 5 2949 NULL
-+dn_nsp_return_disc_60296 dn_nsp_return_disc 2 60296 NULL
-+o2net_debug_read_52105 o2net_debug_read 3 52105 NULL
-+tx_tx_exch_pending_read_53018 tx_tx_exch_pending_read 3 53018 NULL
-+prism2_sta_send_mgmt_43916 prism2_sta_send_mgmt 5 43916 NULL
-+mgmt_device_found_14146 mgmt_device_found 10 14146 NULL
-+ppp_cp_event_2965 ppp_cp_event 6 2965 NULL
-+acpi_os_map_memory_11161 acpi_os_map_memory 1-2 11161 NULL
-+ceph_parse_server_name_60318 ceph_parse_server_name 2 60318 NULL
-+retry_count_read_52129 retry_count_read 3 52129 NULL
-+trace_options_read_11419 trace_options_read 3 11419 NULL
-+ioat2_alloc_ring_11172 ioat2_alloc_ring 2 11172 NULL
-+read_zero_19366 read_zero 3 19366 NULL
-+bch_alloc_4593 bch_alloc 1 4593 NULL
-+pkt_bio_alloc_48284 pkt_bio_alloc 1 48284 NULL
-+stats_dot11RTSFailureCount_read_43948 stats_dot11RTSFailureCount_read 3 43948 NULL
-+iwl_dbgfs_disable_ht40_read_35761 iwl_dbgfs_disable_ht40_read 3 35761 NULL
-+libipw_alloc_txb_27579 libipw_alloc_txb 1-3-2 27579 NULL
-+raid5_resize_63306 raid5_resize 2 63306 NULL
-+interpret_user_input_19393 interpret_user_input 2 19393 NULL
-+kimage_crash_alloc_3233 kimage_crash_alloc 3 3233 NULL
-+ieee80211_if_read_dot11MeshRetryTimeout_52168 ieee80211_if_read_dot11MeshRetryTimeout 3 52168 NULL
-+do_dmabuf_dirty_sou_3017 do_dmabuf_dirty_sou 7 3017 NULL
-+mga_compat_ioctl_52170 mga_compat_ioctl 2 52170 NULL
-+depth_write_3021 depth_write 3 3021 NULL
-+dccp_setsockopt_60367 dccp_setsockopt 5 60367 NULL
-+read_file_stations_35795 read_file_stations 3 35795 NULL
-+il_dbgfs_rx_queue_read_11221 il_dbgfs_rx_queue_read 3 11221 NULL
-+tipc_cfg_reply_alloc_27606 tipc_cfg_reply_alloc 1 27606 NULL
-+bcm_recvmsg_43992 bcm_recvmsg 4 43992 NULL
-+xfrm_dst_alloc_copy_3034 xfrm_dst_alloc_copy 3 3034 NULL
-+ubi_eba_atomic_leb_change_60379 ubi_eba_atomic_leb_change 5 60379 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
-+il3945_ucode_rx_stats_read_3048 il3945_ucode_rx_stats_read 3 3048 NULL
-+venus_rmdir_45564 venus_rmdir 4 45564 NULL
-+mthca_alloc_resize_buf_60394 mthca_alloc_resize_buf 3 60394 NULL
-+write_flush_procfs_44011 write_flush_procfs 3 44011 NULL
-+driver_names_read_60399 driver_names_read 3 60399 NULL
-+isdn_read_50021 isdn_read 3 50021 NULL
-+ubifs_write_node_11258 ubifs_write_node 3-5 11258 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
-+cru_detect_11272 cru_detect 1 11272 NULL
-+excessive_retries_read_60425 excessive_retries_read 3 60425 NULL
-+ieee80211_build_probe_req_27660 ieee80211_build_probe_req 7-5 27660 NULL
-+tx_tx_cmplt_read_35854 tx_tx_cmplt_read 3 35854 NULL
-+tstats_write_60432 tstats_write 3 60432 NULL nohasharray
-+kmalloc_60432 kmalloc 1 60432 &tstats_write_60432
-+do_dmabuf_dirty_ldu_52241 do_dmabuf_dirty_ldu 6 52241 NULL
-+mthca_buf_alloc_35861 mthca_buf_alloc 2 35861 NULL
-+rx_data_60442 rx_data 4 60442 NULL
-+ttusb2_msg_3100 ttusb2_msg 4 3100 NULL
-+efivar_create_sysfs_entry_19485 efivar_create_sysfs_entry 2 19485 NULL
-+tcf_csum_ipv4_igmp_60446 tcf_csum_ipv4_igmp 3 60446 NULL
-+mdiobus_alloc_size_52259 mdiobus_alloc_size 1 52259 NULL
-+rt2x00debug_write_csr_64753 rt2x00debug_write_csr 3 64753 NULL
-+sisusbcon_do_font_op_52271 sisusbcon_do_font_op 9 52271 NULL
-+simple_write_to_buffer_3122 simple_write_to_buffer 2-5 3122 NULL
-+uwb_rc_cmd_done_35892 uwb_rc_cmd_done 4 35892 NULL
-+ext4_add_new_descs_19509 ext4_add_new_descs 3 19509 NULL
-+fs_path_add_from_extent_buffer_27702 fs_path_add_from_extent_buffer 4 27702 NULL
-+tcp_mark_head_lost_35895 tcp_mark_head_lost 2 35895 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
-+construct_key_11329 construct_key 3 11329 NULL
-+crypto_shash_setkey_60483 crypto_shash_setkey 3 60483 NULL
-+persistent_ram_buffer_map_11332 persistent_ram_buffer_map 1-2 11332 NULL
-+fill_write_buffer_3142 fill_write_buffer 3 3142 NULL
-+filldir_55137 filldir 3 55137 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
-+nfc_llcp_build_tlv_19536 nfc_llcp_build_tlv 3 19536 NULL
-+compat_sys_migrate_pages_3157 compat_sys_migrate_pages 2 3157 NULL
-+read_file_reset_52310 read_file_reset 3 52310 NULL
-+sel_write_create_11353 sel_write_create 3 11353 NULL
-+tracing_set_trace_read_44122 tracing_set_trace_read 3 44122 NULL
-+hwflags_read_52318 hwflags_read 3 52318 NULL
-+rx_defrag_init_called_read_35935 rx_defrag_init_called_read 3 35935 NULL
-+encrypted_instantiate_3168 encrypted_instantiate 3 3168 NULL
-+put_cmsg_compat_35937 put_cmsg_compat 4 35937 NULL
-+vmw_gmr_bind_44130 vmw_gmr_bind 3 44130 NULL
-+ath_tx_init_60515 ath_tx_init 2 60515 NULL
-+xfs_inumbers_fmt_12817 xfs_inumbers_fmt 3 12817 NULL
-+ntfs_rl_split_52328 ntfs_rl_split 2-4 52328 NULL
-+qib_get_base_info_11369 qib_get_base_info 3 11369 NULL
-+ocfs2_control_message_19564 ocfs2_control_message 3 19564 NULL
-+ieee80211_if_read_tkip_mic_test_19565 ieee80211_if_read_tkip_mic_test 3 19565 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
-+mempool_create_node_3191 mempool_create_node 1 3191 NULL
-+kcalloc_27770 kcalloc 1-2 27770 NULL
-+shmem_pread_slow_3198 shmem_pread_slow 3 3198 NULL
-+bm_status_read_19583 bm_status_read 3 19583 NULL
-+v9fs_fid_readn_60544 v9fs_fid_readn 4 60544 NULL
-+dev_irnet_write_11398 dev_irnet_write 3 11398 NULL
-+acl_alloc_35979 acl_alloc 1 35979 NULL
-+mmc_send_bus_test_18285 mmc_send_bus_test 4 18285 NULL
-+___alloc_bootmem_11410 ___alloc_bootmem 1 11410 NULL
-+str_to_user_11411 str_to_user 2 11411 NULL
-+mem_fw_gen_free_mem_blks_read_11413 mem_fw_gen_free_mem_blks_read 3 11413 NULL
-+koneplus_sysfs_write_35993 koneplus_sysfs_write 6 35993 NULL
-+solo_v4l2_read_59247 solo_v4l2_read 3 59247 NULL
-+ttm_object_file_init_27804 ttm_object_file_init 2 27804 NULL
-+mpihelp_mul_27805 mpihelp_mul 5-3 27805 NULL
-+xd_read_multiple_pages_11422 xd_read_multiple_pages 4-5 11422 NULL
-+isdn_writebuf_stub_52383 isdn_writebuf_stub 4 52383 NULL
-+handle_eviocgbit_44193 handle_eviocgbit 3 44193 NULL
-+write_adapter_mem_3234 write_adapter_mem 3 3234 NULL
-+do_read_log_to_user_3236 do_read_log_to_user 4 3236 NULL
-+console_store_36007 console_store 4 36007 NULL
-+bttv_read_11432 bttv_read 3 11432 NULL
-+key_key_read_3241 key_key_read 3 3241 NULL
-+aer_inject_write_52399 aer_inject_write 3 52399 NULL
-+il3945_ucode_tx_stats_read_36016 il3945_ucode_tx_stats_read 3 36016 NULL
-+ipath_cdev_init_37752 ipath_cdev_init 1 37752 NULL
-+ib_alloc_device_26483 ib_alloc_device 1 26483 NULL
-+check_vendor_extension_3254 check_vendor_extension 1 3254 NULL
-+ieee80211_amsdu_to_8023s_15561 ieee80211_amsdu_to_8023s 5 15561 NULL
-+sys_listxattr_27833 sys_listxattr 3 27833 NULL
-+aac_rx_ioremap_52410 aac_rx_ioremap 2 52410 NULL
-+ubi_eba_write_leb_36029 ubi_eba_write_leb 5-6 36029 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
-+usbvision_rvmalloc_19655 usbvision_rvmalloc 1 19655 NULL
-+line6_midibuf_init_52425 line6_midibuf_init 2 52425 NULL
-+LoadBitmap_19658 LoadBitmap 2 19658 NULL
-+wl1273_fm_fops_write_60621 wl1273_fm_fops_write 3 60621 NULL
-+sys_init_module_36047 sys_init_module 2 36047 NULL
-+read_profile_27859 read_profile 3 27859 NULL
-+acl_alloc_stack_init_60630 acl_alloc_stack_init 1 60630 NULL
-+sca3000_read_first_n_hw_rb_11479 sca3000_read_first_n_hw_rb 2 11479 NULL
-+enlarge_skb_44248 enlarge_skb 2 44248 NULL nohasharray
-+xfs_buf_readahead_map_44248 xfs_buf_readahead_map 3 44248 &enlarge_skb_44248
-+scsi_track_queue_full_44239 scsi_track_queue_full 2 44239 NULL
-+rbd_snap_add_19678 rbd_snap_add 4 19678 NULL
-+ubifs_recover_leb_60639 ubifs_recover_leb 3 60639 NULL
-+ieee80211_if_read_dot11MeshHWMProotInterval_27873 ieee80211_if_read_dot11MeshHWMProotInterval 3 27873 NULL
-+btmrvl_psmode_read_22395 btmrvl_psmode_read 3 22395 NULL
-+xfs_file_buffered_aio_write_11492 xfs_file_buffered_aio_write 4 11492 NULL
-+tcp_sacktag_walk_49703 tcp_sacktag_walk 6 49703 NULL
-+ieee80211_if_write_tsf_36077 ieee80211_if_write_tsf 3 36077 NULL
-+arvo_sysfs_write_3311 arvo_sysfs_write 6 3311 NULL
-+sd_do_mode_sense_11507 sd_do_mode_sense 5 11507 NULL
-+snd_seq_device_new_31753 snd_seq_device_new 4 31753 NULL
-+unix_seqpacket_sendmsg_27893 unix_seqpacket_sendmsg 4 27893 NULL
-+kmem_zalloc_11510 kmem_zalloc 1 11510 NULL
-+hidraw_get_report_45609 hidraw_get_report 3 45609 NULL
-+ieee80211_alloc_txb_52477 ieee80211_alloc_txb 1-2 52477 NULL
-+ieee80211_if_read_dot11MeshConfirmTimeout_60670 ieee80211_if_read_dot11MeshConfirmTimeout 3 60670 NULL
-+snd_gus_dram_write_38784 snd_gus_dram_write 4 38784 NULL
-+venus_symlink_23570 venus_symlink 4-6 23570 NULL
-+storvsc_connect_to_vsp_22 storvsc_connect_to_vsp 2 22 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
-+ps_upsd_max_sptime_read_63362 ps_upsd_max_sptime_read 3 63362 NULL
-+wm8350_block_write_19727 wm8350_block_write 3 19727 NULL
-+vga_arb_write_36112 vga_arb_write 3 36112 NULL
-+mangle_packet_27864 mangle_packet 6-8 27864 NULL
-+int_tasklet_entry_52500 int_tasklet_entry 3 52500 NULL
-+spidev_ioctl_12846 spidev_ioctl 2 12846 NULL
-+il_dbgfs_interrupt_read_3351 il_dbgfs_interrupt_read 3 3351 NULL
-+memcpy_toiovecend_19736 memcpy_toiovecend 3-4 19736 NULL
-+gsm_control_rls_3353 gsm_control_rls 3 3353 NULL
-+ath6kl_usb_ctrl_msg_exchange_33327 ath6kl_usb_ctrl_msg_exchange 4 33327 NULL
-+dispatch_proc_write_44320 dispatch_proc_write 3 44320 NULL
-+pm_qos_power_write_52513 pm_qos_power_write 3 52513 NULL
-+mem_swapout_entry_32586 mem_swapout_entry 3 32586 NULL
-+gpio_power_read_36059 gpio_power_read 3 36059 NULL
-+vmalloc_exec_36132 vmalloc_exec 1 36132 NULL
-+init_data_container_60709 init_data_container 1 60709 NULL
-+p9_client_read_19750 p9_client_read 5 19750 NULL
-+skb_cow_data_11565 skb_cow_data 2 11565 NULL
-+pnpbios_proc_write_19758 pnpbios_proc_write 3 19758 NULL
-+mlx4_init_cmpt_table_11569 mlx4_init_cmpt_table 3 11569 NULL
-+iwl_trans_txq_alloc_36147 iwl_trans_txq_alloc 3 36147 NULL
-+alloc_vm_area_36149 alloc_vm_area 1 36149 NULL
-+sctp_make_abort_violation_27959 sctp_make_abort_violation 4 27959 NULL
-+tracing_clock_write_27961 tracing_clock_write 3 27961 NULL
-+usbduxfast_attach_common_52538 usbduxfast_attach_common 4 52538 NULL
-+b1_alloc_card_36155 b1_alloc_card 1 36155 NULL
-+oprofilefs_ulong_to_user_11582 oprofilefs_ulong_to_user 3 11582 NULL
-+mtdchar_writeoob_3393 mtdchar_writeoob 4 3393 NULL
-+nfs_fscache_get_super_cookie_44355 nfs_fscache_get_super_cookie 3 44355 NULL nohasharray
-+blk_queue_init_tags_44355 blk_queue_init_tags 2 44355 &nfs_fscache_get_super_cookie_44355
-+mic_rx_pkts_read_27972 mic_rx_pkts_read 3 27972 NULL
-+send_stream_3397 send_stream 4 3397 NULL
-+cdrom_read_cdda_old_27664 cdrom_read_cdda_old 4 27664 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
-+__ip_append_data_36191 __ip_append_data 7-8 36191 NULL
-+rts_threshold_read_44384 rts_threshold_read 3 44384 NULL
-+iwl_dbgfs_rf_reset_read_26512 iwl_dbgfs_rf_reset_read 3 26512 NULL
-+pci_add_cap_save_buffer_3426 pci_add_cap_save_buffer 3 3426 NULL
-+crystalhd_create_dio_pool_3427 crystalhd_create_dio_pool 2 3427 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
-+irda_setsockopt_19824 irda_setsockopt 5 19824 NULL
-+drm_buffer_alloc_44405 drm_buffer_alloc 2 44405 NULL
-+get_packet_pg_28023 get_packet_pg 4 28023 NULL
-+osst_do_scsi_44410 osst_do_scsi 4 44410 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
-+nfqnl_mangle_36226 nfqnl_mangle 4-2 36226 NULL
-+atomic_stats_read_36228 atomic_stats_read 3 36228 NULL
-+ieee80211_if_read_rc_rateidx_mcs_mask_5ghz_44423 ieee80211_if_read_rc_rateidx_mcs_mask_5ghz 3 44423 NULL
-+sctp_setsockopt_maxburst_28041 sctp_setsockopt_maxburst 3 28041 NULL
-+alloc_skb_fclone_3467 alloc_skb_fclone 1 3467 NULL
-+cfg80211_mlme_register_mgmt_19852 cfg80211_mlme_register_mgmt 5 19852 NULL
-+viafb_iga1_odev_proc_write_36241 viafb_iga1_odev_proc_write 3 36241 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
-+llcp_allocate_pdu_19866 llcp_allocate_pdu 3 19866 NULL
-+lpfc_idiag_mbxacc_read_28061 lpfc_idiag_mbxacc_read 3 28061 NULL
-+btrfs_alloc_delayed_item_11678 btrfs_alloc_delayed_item 1 11678 NULL
-+compat_sys_mbind_36256 compat_sys_mbind 5 36256 NULL
-+security_context_to_sid_default_3492 security_context_to_sid_default 2 3492 NULL nohasharray
-+efi_ioremap_3492 efi_ioremap 1-2 3492 &security_context_to_sid_default_3492
-+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
-+split_11691 split 2 11691 NULL
-+brcmf_sdio_assert_info_52653 brcmf_sdio_assert_info 4 52653 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
-+__kfifo_alloc_22173 __kfifo_alloc 2-3 22173 NULL
-+mangle_sdp_packet_36279 mangle_sdp_packet 9 36279 NULL
-+codec_reg_read_file_36280 codec_reg_read_file 3 36280 NULL
-+gdth_init_isa_28091 gdth_init_isa 1 28091 NULL
-+readahead_tree_block_36285 readahead_tree_block 3 36285 NULL
-+mem_tx_free_mem_blks_read_3521 mem_tx_free_mem_blks_read 3 3521 NULL nohasharray
-+ieee80211_wx_set_gen_ie_rsl_3521 ieee80211_wx_set_gen_ie_rsl 3 3521 &mem_tx_free_mem_blks_read_3521
-+diva_alloc_dma_map_23798 diva_alloc_dma_map 2 23798 NULL
-+vmw_unlocked_ioctl_19212 vmw_unlocked_ioctl 2 19212 NULL
-+ps_upsd_max_apturn_read_19918 ps_upsd_max_apturn_read 3 19918 NULL
-+lpfc_debugfs_dif_err_read_36303 lpfc_debugfs_dif_err_read 3 36303 NULL
-+ieee80211_if_read_dropped_frames_ttl_44500 ieee80211_if_read_dropped_frames_ttl 3 44500 NULL
-+rx_defrag_need_defrag_read_28117 rx_defrag_need_defrag_read 3 28117 NULL
-+ad7879_spi_xfer_36311 ad7879_spi_xfer 3 36311 NULL
-+iwl_dbgfs_sram_read_44505 iwl_dbgfs_sram_read 3 44505 NULL
-+tcf_csum_ipv6_icmp_11738 tcf_csum_ipv6_icmp 4 11738 NULL
-+smk_write_load_self2_591 smk_write_load_self2 3 591 NULL
-+vgacon_adjust_height_28124 vgacon_adjust_height 2 28124 NULL
-+spidev_write_44510 spidev_write 3 44510 NULL
-+macvtap_sendmsg_30629 macvtap_sendmsg 4 30629 NULL
-+iscsi_host_alloc_36671 iscsi_host_alloc 2 36671 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
-+iio_debugfs_read_reg_60908 iio_debugfs_read_reg 3 60908 NULL
-+kone_receive_4690 kone_receive 4 4690 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
-+evtchn_read_3569 evtchn_read 3 3569 NULL
-+video_read_28148 video_read 3 28148 NULL
-+compat_sys_setsockopt_3326 compat_sys_setsockopt 5 3326 NULL
-+snd_midi_channel_alloc_set_28153 snd_midi_channel_alloc_set 1 28153 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 3-4 52733 NULL
-+relay_alloc_page_array_52735 relay_alloc_page_array 1 52735 NULL
-+ps_pspoll_timeouts_read_11776 ps_pspoll_timeouts_read 3 11776 NULL
-+v9fs_file_readn_36353 v9fs_file_readn 4 36353 NULL nohasharray
-+xz_dec_lzma2_create_36353 xz_dec_lzma2_create 2 36353 &v9fs_file_readn_36353
-+gluebi_write_27905 gluebi_write 3 27905 NULL
-+ivtv_v4l2_read_1964 ivtv_v4l2_read 3 1964 NULL
-+c4iw_reject_cr_28174 c4iw_reject_cr 3 28174 NULL
-+rx_out_of_mem_read_10157 rx_out_of_mem_read 3 10157 NULL
-+attach_hdlc_protocol_19986 attach_hdlc_protocol 3 19986 NULL
-+compat_sys_semtimedop_3606 compat_sys_semtimedop 3 3606 NULL
-+sctp_getsockopt_events_3607 sctp_getsockopt_events 2 3607 NULL
-+macvtap_get_user_28185 macvtap_get_user 4 28185 NULL
-+edac_mc_alloc_3611 edac_mc_alloc 4 3611 NULL
-+read_file_regidx_33370 read_file_regidx 3 33370 NULL
-+pti_char_write_60960 pti_char_write 3 60960 NULL
-+tx_tx_starts_read_3617 tx_tx_starts_read 3 3617 NULL
-+proc_fdinfo_read_62043 proc_fdinfo_read 3 62043 NULL
-+pcpu_fc_alloc_11818 pcpu_fc_alloc 2 11818 NULL
-+read_vbt_r10_60679 read_vbt_r10 1 60679 NULL
-+aligned_kmalloc_3628 aligned_kmalloc 1 3628 NULL
-+afs_alloc_flat_call_36399 afs_alloc_flat_call 2-3 36399 NULL
-+skb_cow_head_52495 skb_cow_head 2 52495 NULL
-+snd_pcm_alloc_vmalloc_buffer_44595 snd_pcm_alloc_vmalloc_buffer 2 44595 NULL
-+zerocopy_sg_from_iovec_11828 zerocopy_sg_from_iovec 3 11828 NULL
-+sctp_setsockopt_maxseg_11829 sctp_setsockopt_maxseg 3 11829 NULL
-+rts51x_read_status_11830 rts51x_read_status 4 11830 NULL
-+__a2mp_build_60987 __a2mp_build 3 60987 NULL
-+split_scan_timeout_read_20029 split_scan_timeout_read 3 20029 NULL
-+hsc_msg_alloc_60990 hsc_msg_alloc 1 60990 NULL
-+cm_copy_private_data_3649 cm_copy_private_data 2 3649 NULL
-+ath6kl_disconnect_timeout_read_3650 ath6kl_disconnect_timeout_read 3 3650 NULL
-+shmem_xattr_set_11843 shmem_xattr_set 4 11843 NULL
-+sctp_ulpevent_new_33377 sctp_ulpevent_new 1 33377 NULL
-+i915_compat_ioctl_3656 i915_compat_ioctl 2 3656 NULL
-+mb_cache_create_17307 mb_cache_create 2 17307 NULL
-+ni_gpct_device_construct_610 ni_gpct_device_construct 5 610 NULL
-+cfpkt_add_body_44630 cfpkt_add_body 3 44630 NULL
-+handle_received_packet_22457 handle_received_packet 3 22457 NULL
-+alloc_extent_buffer_52824 alloc_extent_buffer 3 52824 NULL
-+ath6kl_keepalive_read_44303 ath6kl_keepalive_read 3 44303 NULL
-+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
-+alloc_etherdev_mqs_36450 alloc_etherdev_mqs 1 36450 NULL
-+pwr_rcvd_beacons_read_52836 pwr_rcvd_beacons_read 3 52836 NULL
-+ieee80211_if_read_dropped_frames_no_route_33383 ieee80211_if_read_dropped_frames_no_route 3 33383 NULL
-+sctp_getsockopt_maxburst_42941 sctp_getsockopt_maxburst 2 42941 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
-+videobuf_pages_to_sg_3708 videobuf_pages_to_sg 2 3708 NULL
-+mon_bin_get_event_52863 mon_bin_get_event 4 52863 NULL
-+b43_nphy_load_samples_36481 b43_nphy_load_samples 3 36481 NULL
-+mpi_resize_44674 mpi_resize 2 44674 NULL
-+ip6_append_data_36490 ip6_append_data 4-5 36490 NULL nohasharray
-+tx_tx_checksum_result_read_36490 tx_tx_checksum_result_read 3 36490 &ip6_append_data_36490
-+kmalloc_slab_11917 kmalloc_slab 1 11917 NULL
-+interfaces_38859 interfaces 2 38859 NULL
-+rng_dev_read_41581 rng_dev_read 3 41581 NULL
-+nouveau_compat_ioctl_28305 nouveau_compat_ioctl 2 28305 NULL
-+cache_read_procfs_52882 cache_read_procfs 3 52882 NULL
-+fs_devrw_entry_11924 fs_devrw_entry 3 11924 NULL
-+hptiop_adjust_disk_queue_depth_20122 hptiop_adjust_disk_queue_depth 2 20122 NULL
-+dgram_sendmsg_45679 dgram_sendmsg 4 45679 NULL
-+ci_ll_write_3740 ci_ll_write 4 3740 NULL
-+snd_pcm_oss_read_28317 snd_pcm_oss_read 3 28317 NULL
-+kvm_kvzalloc_52894 kvm_kvzalloc 1 52894 NULL
-+mcam_v4l_read_36513 mcam_v4l_read 3 36513 NULL
-+dccp_feat_clone_sp_val_11942 dccp_feat_clone_sp_val 3 11942 NULL
-+ieee80211_if_read_fwded_frames_36520 ieee80211_if_read_fwded_frames 3 36520 NULL
-+uf_create_device_nodes_24948 uf_create_device_nodes 2 24948 NULL
-+get_derived_key_61100 get_derived_key 4 61100 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
-+dm_read_15674 dm_read 3 15674 NULL
-+cpu_type_read_36540 cpu_type_read 3 36540 NULL
-+__probe_kernel_read_61119 __probe_kernel_read 3 61119 NULL
-+nfsctl_transaction_write_64800 nfsctl_transaction_write 3 64800 NULL
-+kone_send_63435 kone_send 4 63435 NULL
-+alloc_rtllib_51136 alloc_rtllib 1 51136 NULL
-+vmemmap_alloc_block_buf_61126 vmemmap_alloc_block_buf 1 61126 NULL
-+tomoyo_commit_ok_20167 tomoyo_commit_ok 2 20167 NULL
-+ip_nat_sdp_port_52938 ip_nat_sdp_port 6 52938 NULL
-+__kfifo_to_user_36555 __kfifo_to_user 3 36555 NULL nohasharray
-+macvtap_do_read_36555 macvtap_do_read 4 36555 &__kfifo_to_user_36555
-+wep_addr_key_count_read_20174 wep_addr_key_count_read 3 20174 NULL
-+create_trace_probe_20175 create_trace_probe 1 20175 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
-+tnode_new_44757 tnode_new 3 44757 NULL nohasharray
-+pty_write_44757 pty_write 3 44757 &tnode_new_44757
-+ath6kl_send_go_probe_resp_21113 ath6kl_send_go_probe_resp 3 21113 NULL
-+l2tp_ip6_sendmsg_7461 l2tp_ip6_sendmsg 4 7461 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
-+batadv_tt_prepare_packet_buff_1280 batadv_tt_prepare_packet_buff 4 1280 NULL
-+tipc_port_reject_sections_55229 tipc_port_reject_sections 5 55229 NULL
-+tx_frag_cache_miss_read_28394 tx_frag_cache_miss_read 3 28394 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
-+read_file_tx_chainmask_3829 read_file_tx_chainmask 3 3829 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 nohasharray
-+pair_device_61175 pair_device 4 61175 &event_oom_late_read_61175
-+sys_lsetxattr_61177 sys_lsetxattr 4 61177 NULL
-+tx_tx_exch_read_52986 tx_tx_exch_read 3 52986 NULL
-+nfs4_alloc_pages_48426 nfs4_alloc_pages 1 48426 NULL
-+rx_dropped_read_44799 rx_dropped_read 3 44799 NULL
-+batadv_check_management_packet_52993 batadv_check_management_packet 3 52993 NULL
-+shmem_xattr_alloc_61190 shmem_xattr_alloc 2 61190 NULL
-+tpci200_slot_map_space_3848 tpci200_slot_map_space 2 3848 NULL
-+fat_ioctl_filldir_36621 fat_ioctl_filldir 3 36621 NULL
-+smk_read_onlycap_3855 smk_read_onlycap 3 3855 NULL
-+cfpkt_append_61206 cfpkt_append 3 61206 NULL
-+btrfs_free_and_pin_reserved_extent_53016 btrfs_free_and_pin_reserved_extent 2 53016 NULL
-+rose_sendmsg_20249 rose_sendmsg 4 20249 NULL
-+get_fd_set_3866 get_fd_set 1 3866 NULL
-+garp_request_join_7471 garp_request_join 4 7471 NULL
-+rx_rx_defrag_read_2010 rx_rx_defrag_read 3 2010 NULL
-+read_file_rx_chainmask_41605 read_file_rx_chainmask 3 41605 NULL
-+il4965_ucode_tx_stats_read_12064 il4965_ucode_tx_stats_read 3 12064 NULL
-+sisusb_write_44834 sisusb_write 3 44834 NULL
-+smk_read_ambient_61220 smk_read_ambient 3 61220 NULL
-+raw_recvmsg_52529 raw_recvmsg 4 52529 NULL
-+alloc_irq_cpu_rmap_28459 alloc_irq_cpu_rmap 1 28459 NULL
-+ptc_proc_write_12076 ptc_proc_write 3 12076 NULL
-+hdlc_empty_fifo_18397 hdlc_empty_fifo 2 18397 NULL
-+uea_send_modem_cmd_3888 uea_send_modem_cmd 3 3888 NULL
-+h5_prepare_pkt_12085 h5_prepare_pkt 4 12085 NULL
-+nvram_write_3894 nvram_write 3 3894 NULL
-+osd_req_list_collection_objects_36664 osd_req_list_collection_objects 5 36664 NULL
-+pipeline_pre_proc_swi_read_3898 pipeline_pre_proc_swi_read 3 3898 NULL
-+vmw_du_crtc_cursor_set_28479 vmw_du_crtc_cursor_set 4-5 28479 NULL
-+linear_conf_23485 linear_conf 2 23485 NULL nohasharray
-+divasa_remap_pci_bar_23485 divasa_remap_pci_bar 3-4 23485 &linear_conf_23485
-+vcs_write_3910 vcs_write 3 3910 NULL
-+ubi_eba_write_leb_st_44343 ubi_eba_write_leb_st 5 44343 NULL
-+mwifiex_debug_read_53074 mwifiex_debug_read 3 53074 NULL
-+dtim_interval_read_654 dtim_interval_read 3 654 NULL
-+_alloc_mISDN_skb_52232 _alloc_mISDN_skb 3 52232 NULL
-+packet_sendmsg_24954 packet_sendmsg 4 24954 NULL
-+alloc_bulk_urbs_generic_12127 alloc_bulk_urbs_generic 5 12127 NULL
-+do_tty_write_44896 do_tty_write 5 44896 NULL
-+set_powered_12129 set_powered 4 12129 NULL
-+qib_resize_cq_53090 qib_resize_cq 2 53090 NULL
-+snd_cs4281_BA1_read_20323 snd_cs4281_BA1_read 5 20323 NULL
-+nfs_writedata_alloc_12133 nfs_writedata_alloc 2 12133 NULL
-+ramoops_init_prz_12134 ramoops_init_prz 5 12134 NULL
-+xfs_handle_to_dentry_12135 xfs_handle_to_dentry 3 12135 NULL
-+hdlc_irq_one_3944 hdlc_irq_one 2 3944 NULL
-+rawv6_seticmpfilter_12137 rawv6_seticmpfilter 5 12137 NULL
-+vmw_fifo_reserve_12141 vmw_fifo_reserve 2 12141 NULL
-+i2400m_tx_stats_read_28527 i2400m_tx_stats_read 3 28527 NULL
-+rawsock_recvmsg_12144 rawsock_recvmsg 4 12144 NULL
-+btmrvl_sdio_host_to_card_12152 btmrvl_sdio_host_to_card 3 12152 NULL
-+vmbus_open_12154 vmbus_open 2-3 12154 NULL
-+capinc_tty_write_28539 capinc_tty_write 3 28539 NULL
-+sel_read_policycap_28544 sel_read_policycap 3 28544 NULL
-+mptctl_getiocinfo_28545 mptctl_getiocinfo 2 28545 NULL
-+line6_dumpreq_initbuf_53123 line6_dumpreq_initbuf 3 53123 NULL
-+snd_rawmidi_kernel_read1_36740 snd_rawmidi_kernel_read1 4 36740 NULL
-+gather_array_56641 gather_array 3 56641 NULL
-+cxgbi_device_register_36746 cxgbi_device_register 1-2 36746 NULL
-+b43legacy_debugfs_write_28556 b43legacy_debugfs_write 3 28556 NULL
-+dma_memcpy_to_iovec_12173 dma_memcpy_to_iovec 5 12173 NULL
-+debug_debug1_read_8856 debug_debug1_read 3 8856 NULL
-+ddp_make_gl_12179 ddp_make_gl 1 12179 NULL
-+ps_poll_ps_poll_max_ap_turn_read_53140 ps_poll_ps_poll_max_ap_turn_read 3 53140 NULL
-+dbgfs_state_38894 dbgfs_state 3 38894 NULL
-+tcf_csum_ipv6_udp_25241 tcf_csum_ipv6_udp 4 25241 NULL
-+do_add_counters_3992 do_add_counters 3 3992 NULL
-+saa7146_vmalloc_build_pgtable_19780 saa7146_vmalloc_build_pgtable 2 19780 NULL
-+ip_generic_getfrag_12187 ip_generic_getfrag 3-4 12187 NULL
-+st5481_setup_isocpipes_61340 st5481_setup_isocpipes 6-4 61340 NULL
-+rx_rx_wa_ba_not_expected_read_61341 rx_rx_wa_ba_not_expected_read 3 61341 NULL
-+dccpprobe_read_52549 dccpprobe_read 3 52549 NULL
-+ip4ip6_err_36772 ip4ip6_err 5 36772 NULL
-+mei_write_4005 mei_write 3 4005 NULL
-+snd_hdsp_capture_copy_4011 snd_hdsp_capture_copy 5 4011 NULL
-+ptp_filter_init_36780 ptp_filter_init 2 36780 NULL
-+__kfifo_from_user_20399 __kfifo_from_user 3 20399 NULL
-+batadv_add_packet_12136 batadv_add_packet 3 12136 NULL
-+tx_queue_status_read_44978 tx_queue_status_read 3 44978 NULL
-+debug_debug4_read_61367 debug_debug4_read 3 61367 NULL
-+receive_copy_12216 receive_copy 3 12216 NULL
-+aat2870_reg_read_file_12221 aat2870_reg_read_file 3 12221 NULL
-+proc_fault_inject_read_36802 proc_fault_inject_read 3 36802 NULL
-+ath6kl_mgmt_tx_21153 ath6kl_mgmt_tx 9 21153 NULL
-+ftdi_process_packet_45005 ftdi_process_packet 5 45005 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
-+fmc_send_cmd_20435 fmc_send_cmd 5 20435 NULL
-+tcp_fragment_20436 tcp_fragment 3 20436 NULL
-+ib_uverbs_unmarshall_recv_12251 ib_uverbs_unmarshall_recv 5 12251 NULL
-+ptrace_writedata_45021 ptrace_writedata 4 45021 NULL
-+simple_alloc_urb_60420 simple_alloc_urb 3 60420 NULL
-+sys_sethostname_42962 sys_sethostname 2 42962 NULL
-+int_hardware_entry_36833 int_hardware_entry 3 36833 NULL
-+tx_tx_start_data_read_53219 tx_tx_start_data_read 3 53219 NULL
-+snd_cs46xx_io_read_45734 snd_cs46xx_io_read 5 45734 NULL
-+fc_change_queue_depth_36841 fc_change_queue_depth 2 36841 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
-+ip_vs_icmp_xmit_v6_20464 ip_vs_icmp_xmit_v6 4 20464 NULL
-+compat_ipv6_setsockopt_20468 compat_ipv6_setsockopt 5 20468 NULL
-+keyctl_describe_key_36853 keyctl_describe_key 3 36853 NULL
-+cm_write_36858 cm_write 3 36858 NULL
-+note_last_dentry_12285 note_last_dentry 3 12285 NULL
-+blk_queue_resize_tags_28670 blk_queue_resize_tags 2 28670 NULL
-+il_dbgfs_nvm_read_12288 il_dbgfs_nvm_read 3 12288 NULL
-+sel_write_user_45060 sel_write_user 3 45060 NULL
-+tx_tx_data_programmed_read_36871 tx_tx_data_programmed_read 3 36871 NULL
-+__dev_alloc_skb_28681 __dev_alloc_skb 1 28681 NULL
-+svc_setsockopt_36876 svc_setsockopt 5 36876 NULL
-+snd_mixart_BA0_read_45069 snd_mixart_BA0_read 5 45069 NULL
-+fast_user_write_20494 fast_user_write 5 20494 NULL
-+unix_stream_sendmsg_61455 unix_stream_sendmsg 4 61455 NULL
-+sctp_make_fwdtsn_53265 sctp_make_fwdtsn 3 53265 NULL
-+ib_ucm_alloc_data_36885 ib_ucm_alloc_data 3 36885 NULL
-+hidraw_report_event_20503 hidraw_report_event 3 20503 NULL
-+bt_sock_recvmsg_12316 bt_sock_recvmsg 4 12316 NULL
-+selinux_inode_notifysecctx_36896 selinux_inode_notifysecctx 3 36896 NULL
-+lirc_buffer_init_53282 lirc_buffer_init 2-3 53282 NULL
-+tipc_msg_build_12326 tipc_msg_build 4 12326 NULL
-+xfs_iext_realloc_direct_20521 xfs_iext_realloc_direct 2 20521 NULL
-+drbd_bm_resize_20522 drbd_bm_resize 2 20522 NULL
-+pcbit_writecmd_12332 pcbit_writecmd 2 12332 NULL
-+OS_kmalloc_36909 OS_kmalloc 1 36909 NULL
-+osst_read_40237 osst_read 3 40237 NULL
-+tm6000_read_4151 tm6000_read 3 4151 NULL
-+pwr_missing_bcns_cnt_read_45113 pwr_missing_bcns_cnt_read 3 45113 NULL
-+usbdev_read_45114 usbdev_read 3 45114 NULL
-+drm_plane_init_28731 drm_plane_init 6 28731 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
-+__nf_ct_ext_add_length_12364 __nf_ct_ext_add_length 3 12364 NULL
-+edt_ft5x06_debugfs_raw_data_read_28002 edt_ft5x06_debugfs_raw_data_read 3 28002 NULL
-+receive_packet_12367 receive_packet 2 12367 NULL
-+squashfs_cache_init_41656 squashfs_cache_init 2 41656 NULL
-+mem_write_22232 mem_write 3 22232 NULL
-+read_file_bool_4180 read_file_bool 3 4180 NULL
-+send_to_tty_45141 send_to_tty 3 45141 NULL
-+fops_read_40672 fops_read 3 40672 NULL
-+cxio_init_resource_fifo_28764 cxio_init_resource_fifo 3 28764 NULL
-+write_leb_36957 write_leb 5 36957 NULL
-+xfs_iext_inline_to_direct_12384 xfs_iext_inline_to_direct 2 12384 NULL
-+device_write_45156 device_write 3 45156 NULL
-+i915_max_freq_read_20581 i915_max_freq_read 3 20581 NULL
-+bnx2i_send_nl_mesg_53353 bnx2i_send_nl_mesg 4 53353 NULL
-+sparse_early_mem_maps_alloc_node_36971 sparse_early_mem_maps_alloc_node 4 36971 NULL
-+batadv_tt_append_diff_20588 batadv_tt_append_diff 4 20588 NULL
-+dvb_net_sec_callback_28786 dvb_net_sec_callback 2 28786 NULL
-+isp1760_register_628 isp1760_register 1-2 628 NULL
-+dvb_net_ioctl_61559 dvb_net_ioctl 2 61559 NULL
-+lirc_write_20604 lirc_write 3 20604 NULL
-+sel_write_member_28800 sel_write_member 3 28800 NULL
-+ieee80211_if_read_rc_rateidx_mask_2ghz_61570 ieee80211_if_read_rc_rateidx_mask_2ghz 3 61570 NULL
-+ieee80211_if_read_num_mcast_sta_12419 ieee80211_if_read_num_mcast_sta 3 12419 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
-+auok190xfb_write_37001 auok190xfb_write 3 37001 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
-+iso_alloc_urb_45206 iso_alloc_urb 4-5 45206 NULL
-+__get_vm_area_61599 __get_vm_area 1 61599 NULL
-+netlink_recvmsg_61600 netlink_recvmsg 4 61600 NULL
-+wep_default_key_count_read_43035 wep_default_key_count_read 3 43035 NULL
-+kfifo_copy_to_user_20646 kfifo_copy_to_user 3 20646 NULL
-+spi_alloc_master_45223 spi_alloc_master 2 45223 NULL
-+ieee80211_if_read_dropped_frames_congestion_32603 ieee80211_if_read_dropped_frames_congestion 3 32603 NULL
-+oz_add_farewell_20652 oz_add_farewell 5 20652 NULL
-+skb_do_copy_data_nocache_12465 skb_do_copy_data_nocache 5 12465 NULL
-+oz_cdev_read_20659 oz_cdev_read 3 20659 NULL
-+configfs_write_file_61621 configfs_write_file 3 61621 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
-+ablkcipher_next_slow_47274 ablkcipher_next_slow 3-4 47274 NULL
-+ipv6_renew_options_28867 ipv6_renew_options 5 28867 NULL
-+snd_hdsp_playback_copy_20676 snd_hdsp_playback_copy 5 20676 NULL
-+mwifiex_info_read_53447 mwifiex_info_read 3 53447 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
-+rtllib_auth_challenge_12493 rtllib_auth_challenge 3 12493 NULL
-+dvb_ringbuffer_pkt_read_user_4303 dvb_ringbuffer_pkt_read_user 2-5-3 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
-+read_file_tgt_int_stats_20697 read_file_tgt_int_stats 3 20697 NULL
-+alloc_ts_config_45775 alloc_ts_config 1 45775 NULL
-+ttm_page_pool_free_61661 ttm_page_pool_free 2 61661 NULL
-+pipeline_cs_rx_packet_in_read_37089 pipeline_cs_rx_packet_in_read 3 37089 NULL
-+bt_sock_stream_recvmsg_52518 bt_sock_stream_recvmsg 4 52518 NULL
-+rds_tcp_data_recv_53476 rds_tcp_data_recv 3 53476 NULL
-+diva_xdi_write_63975 diva_xdi_write 4 63975 NULL
-+snd_rawmidi_kernel_read_4328 snd_rawmidi_kernel_read 3 4328 NULL
-+iowarrior_read_53483 iowarrior_read 3 53483 NULL
-+qib_alloc_fast_reg_mr_12526 qib_alloc_fast_reg_mr 2 12526 NULL
-+lock_loop_61681 lock_loop 1 61681 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
-+brcmf_sdio_trap_info_48510 brcmf_sdio_trap_info 4 48510 NULL
-+ps_upsd_timeouts_read_28924 ps_upsd_timeouts_read 3 28924 NULL
-+vring_add_indirect_20737 vring_add_indirect 3-4 20737 NULL
-+push_rx_28939 push_rx 3 28939 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
-+idetape_chrdev_write_53976 idetape_chrdev_write 3 53976 NULL
-+sys_setdomainname_4373 sys_setdomainname 2 4373 NULL
-+fragmentation_threshold_read_61718 fragmentation_threshold_read 3 61718 NULL
-+copy_vm86_regs_from_user_45340 copy_vm86_regs_from_user 3 45340 NULL
-+btrfs_trim_block_group_28963 btrfs_trim_block_group 3 28963 NULL
-+snd_pcm_plugin_alloc_12580 snd_pcm_plugin_alloc 2 12580 NULL
-+ubi_leb_change_10289 ubi_leb_change 4 10289 NULL
-+alloc_sched_domains_28972 alloc_sched_domains 1 28972 NULL
-+pcpu_extend_area_map_12589 pcpu_extend_area_map 2 12589 NULL
-+read_file_interrupt_61742 read_file_interrupt 3 61742 NULL nohasharray
-+read_file_regval_61742 read_file_regval 3 61742 &read_file_interrupt_61742
-+fb_alloc_cmap_gfp_20792 fb_alloc_cmap_gfp 2 20792 NULL
-+iwl_dbgfs_rxon_flags_read_20795 iwl_dbgfs_rxon_flags_read 3 20795 NULL
-+vhci_put_user_12604 vhci_put_user 4 12604 NULL
-+libfc_vport_create_4415 libfc_vport_create 2 4415 NULL
-+hci_sock_setsockopt_28993 hci_sock_setsockopt 5 28993 NULL
-+pskb_network_may_pull_35336 pskb_network_may_pull 2 35336 NULL
-+bin_uuid_28999 bin_uuid 3 28999 NULL
-+sys_sendto_20809 sys_sendto 6 20809 NULL
-+vcc_recvmsg_37198 vcc_recvmsg 4 37198 NULL
-+fc_fcp_frame_alloc_12624 fc_fcp_frame_alloc 2 12624 NULL
-+do_pages_stat_4437 do_pages_stat 2 4437 NULL
-+lane2_associate_req_45398 lane2_associate_req 4 45398 NULL
-+ath6kl_regdump_read_14393 ath6kl_regdump_read 3 14393 NULL
-+pwr_rcvd_awake_bcns_cnt_read_12632 pwr_rcvd_awake_bcns_cnt_read 3 12632 NULL
-+bchannel_get_rxbuf_37213 bchannel_get_rxbuf 2 37213 NULL
-+keymap_store_45406 keymap_store 4 45406 NULL
-+pn_sendmsg_12640 pn_sendmsg 4 12640 NULL
-+dwc3_link_state_write_12641 dwc3_link_state_write 3 12641 NULL
-+wl1271_format_buffer_20834 wl1271_format_buffer 2 20834 NULL
-+pfkey_recvmsg_53604 pfkey_recvmsg 4 53604 NULL
-+xz_dec_init_29029 xz_dec_init 2 29029 NULL
-+regmap_access_read_file_37223 regmap_access_read_file 3 37223 NULL
-+tcp_dma_try_early_copy_4457 tcp_dma_try_early_copy 3 4457 NULL
-+__do_replace_37227 __do_replace 5 37227 NULL
-+dn_alloc_send_pskb_4465 dn_alloc_send_pskb 2 4465 NULL
-+ieee80211_if_read_ht_opmode_29044 ieee80211_if_read_ht_opmode 3 29044 NULL
-+rx_filter_dup_filter_read_37238 rx_filter_dup_filter_read 3 37238 NULL
-+at76_set_card_command_4471 at76_set_card_command 4 4471 NULL
-+trusted_update_12664 trusted_update 3 12664 NULL
-+rxrpc_sendmsg_29049 rxrpc_sendmsg 4 29049 NULL
-+tso_fragment_29050 tso_fragment 3 29050 NULL
-+__alloc_pred_stack_26687 __alloc_pred_stack 2 26687 NULL
-+sel_read_class_12669 sel_read_class 3 12669 NULL nohasharray
-+sparse_mem_maps_populate_node_12669 sparse_mem_maps_populate_node 4 12669 &sel_read_class_12669
-+__tty_buffer_request_room_27700 __tty_buffer_request_room 2 27700 NULL
-+xd_write_multiple_pages_53633 xd_write_multiple_pages 5-6 53633 NULL
-+ccid_getsockopt_builtin_ccids_53634 ccid_getsockopt_builtin_ccids 2 53634 NULL
-+kvm_read_guest_page_mmu_37611 kvm_read_guest_page_mmu 6 37611 NULL
-+init_per_cpu_17880 init_per_cpu 1 17880 NULL
-+iso_packets_buffer_init_29061 iso_packets_buffer_init 3-4 29061 NULL
-+intel_render_ring_init_dri_45446 intel_render_ring_init_dri 2-3 45446 NULL
-+isr_dma1_done_read_48159 isr_dma1_done_read 3 48159 NULL
-+ath6kl_wmi_set_ie_cmd_37260 ath6kl_wmi_set_ie_cmd 6 37260 NULL
-+ieee80211_probereq_get_29069 ieee80211_probereq_get 4-6 29069 NULL
-+vmbus_establish_gpadl_4495 vmbus_establish_gpadl 3 4495 NULL
-+bfad_debugfs_write_regwr_61841 bfad_debugfs_write_regwr 3 61841 NULL
-+_alloc_cdb_cont_23609 _alloc_cdb_cont 2 23609 NULL
-+set_link_security_4502 set_link_security 4 4502 NULL
-+nr_sendmsg_53656 nr_sendmsg 4 53656 NULL
-+l1oip_socket_parse_4507 l1oip_socket_parse 4 4507 NULL
-+tracing_read_dyn_info_45468 tracing_read_dyn_info 3 45468 NULL
-+fs_path_prepare_for_add_61854 fs_path_prepare_for_add 2 61854 NULL
-+c101_run_37279 c101_run 2 37279 NULL
-+srp_target_alloc_37288 srp_target_alloc 3 37288 NULL
-+ieee80211_if_read_ave_beacon_64924 ieee80211_if_read_ave_beacon 3 64924 NULL
-+vfio_msi_enable_20906 vfio_msi_enable 2 20906 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
-+islpci_mgt_transaction_23610 islpci_mgt_transaction 5 23610 NULL
-+sys_llistxattr_4532 sys_llistxattr 3 4532 NULL
-+isdn_ppp_write_29109 isdn_ppp_write 4 29109 NULL
-+da9052_group_write_4534 da9052_group_write 3 4534 NULL
-+v4l2_event_subscribe_53687 v4l2_event_subscribe 3 53687 NULL
-+jffs2_write_dirent_37311 jffs2_write_dirent 5 37311 NULL
-+key_rx_spec_read_12736 key_rx_spec_read 3 12736 NULL
-+tx_frag_bad_mblk_num_read_28064 tx_frag_bad_mblk_num_read 3 28064 NULL
-+__videobuf_alloc_cached_12740 __videobuf_alloc_cached 1 12740 NULL
-+nfc_shdlc_alloc_skb_12741 nfc_shdlc_alloc_skb 2 12741 NULL
-+rds_message_copy_from_user_45510 rds_message_copy_from_user 3 45510 NULL
-+ieee80211_rtl_auth_challenge_61897 ieee80211_rtl_auth_challenge 3 61897 NULL
-+cxgb4_pktgl_to_skb_61899 cxgb4_pktgl_to_skb 2 61899 NULL
-+brcmf_sdbrcm_membytes_37324 brcmf_sdbrcm_membytes 3-5 37324 NULL
-+l2cap_create_connless_pdu_37327 l2cap_create_connless_pdu 3 37327 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
-+virtqueue_add_buf_59470 virtqueue_add_buf 3-4 59470 NULL
-+proc_scsi_write_29142 proc_scsi_write 3 29142 NULL
-+tomoyo_write_self_45161 tomoyo_write_self 3 45161 NULL
-+dsp_buffer_alloc_11684 dsp_buffer_alloc 2 11684 NULL
-+rx_filter_arp_filter_read_61914 rx_filter_arp_filter_read 3 61914 NULL
-+sys_lgetxattr_45531 sys_lgetxattr 4 45531 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
-+xfs_buf_get_maps_4581 xfs_buf_get_maps 2 4581 NULL
-+wdm_write_53735 wdm_write 3 53735 NULL
-+v9fs_direct_read_45546 v9fs_direct_read 3 45546 NULL
-+send_bulk_static_data_61932 send_bulk_static_data 3 61932 NULL
-+cx18_copy_mdl_to_user_45549 cx18_copy_mdl_to_user 4 45549 NULL
-+sock_kmalloc_62205 sock_kmalloc 2 62205 NULL
-+platform_create_bundle_12785 platform_create_bundle 4-6 12785 NULL
-+brcmf_tx_frame_20978 brcmf_tx_frame 3 20978 NULL
-+sock_alloc_send_pskb_21246 sock_alloc_send_pskb 2 21246 NULL
-+stats_dot11ACKFailureCount_read_45558 stats_dot11ACKFailureCount_read 3 45558 NULL
-+alg_setsockopt_20985 alg_setsockopt 5 20985 NULL
-+il4965_ucode_rx_stats_read_61948 il4965_ucode_rx_stats_read 3 61948 NULL
-+c4iw_id_table_alloc_48163 c4iw_id_table_alloc 3 48163 NULL
-+scsi_adjust_queue_depth_12802 scsi_adjust_queue_depth 3 12802 NULL
-+squashfs_read_id_index_table_61961 squashfs_read_id_index_table 4 61961 NULL
-+mgmt_event_12810 mgmt_event 4 12810 NULL
-+ntfs_rl_realloc_nofail_32173 ntfs_rl_realloc_nofail 3 32173 NULL
-+drm_property_create_enum_29201 drm_property_create_enum 5 29201 NULL
-+ipath_create_cq_45586 ipath_create_cq 2 45586 NULL
-+wusb_prf_256_29203 wusb_prf_256 7 29203 NULL
-+comedi_alloc_subdevices_29207 comedi_alloc_subdevices 2 29207 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
-+rx_defrag_tkip_called_read_21031 rx_defrag_tkip_called_read 3 21031 NULL
-+iwl_dbgfs_temperature_read_29224 iwl_dbgfs_temperature_read 3 29224 NULL
-+virtnet_send_command_61993 virtnet_send_command 5-6 61993 NULL
-+sys_getxattr_37418 sys_getxattr 4 37418 NULL
-+regmap_raw_write_53803 regmap_raw_write 4 53803 NULL
-+hci_sock_sendmsg_37420 hci_sock_sendmsg 4 37420 NULL
-+acpi_os_allocate_zeroed_37422 acpi_os_allocate_zeroed 1 37422 NULL
-+t4vf_pktgl_to_skb_39005 t4vf_pktgl_to_skb 2 39005 NULL
-+audit_log_n_hex_45617 audit_log_n_hex 3 45617 NULL
-+devm_ioremap_29235 devm_ioremap 2-3 29235 NULL
-+tty_insert_flip_string_fixed_flag_37428 tty_insert_flip_string_fixed_flag 4 37428 NULL
-+recover_peb_29238 recover_peb 6-7 29238 NULL
-+map_addr_4666 map_addr 6 4666 NULL
-+kernel_readv_35617 kernel_readv 3 35617 NULL
-+security_context_to_sid_core_29248 security_context_to_sid_core 2 29248 NULL
-+proc_fault_inject_write_21058 proc_fault_inject_write 3 21058 NULL
-+i915_gem_execbuffer_relocate_slow_25355 i915_gem_execbuffer_relocate_slow 7 25355 NULL
-+jffs2_do_unlink_62020 jffs2_do_unlink 4 62020 NULL
-+tun_sendmsg_10337 tun_sendmsg 4 10337 NULL
-+skb_add_data_nocache_4682 skb_add_data_nocache 4 4682 NULL
-+cx18_read_pos_4683 cx18_read_pos 3 4683 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
-+event_calibration_read_21083 event_calibration_read 3 21083 NULL
-+ppp_tx_cp_62044 ppp_tx_cp 5 62044 NULL
-+prism2_set_genericelement_29277 prism2_set_genericelement 3 29277 NULL
-+sctp_user_addto_chunk_62047 sctp_user_addto_chunk 2-3 62047 NULL
-+nfsd_symlink_63442 nfsd_symlink 6 63442 NULL
-+cxgbi_alloc_big_mem_4707 cxgbi_alloc_big_mem 1 4707 NULL
-+trusted_instantiate_4710 trusted_instantiate 3 4710 NULL
-+savemem_58129 savemem 3 58129 NULL
-+do_pselect_62061 do_pselect 1 62061 NULL
-+btmrvl_gpiogap_read_4718 btmrvl_gpiogap_read 3 4718 NULL
-+xfs_trans_read_buf_map_37487 xfs_trans_read_buf_map 5 37487 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
-+ip_nat_sip_expect_45693 ip_nat_sip_expect 7 45693 NULL
-+sg_read_25799 sg_read 3 25799 NULL
-+ci_ll_init_12930 ci_ll_init 3 12930 NULL
-+unix_dgram_sendmsg_45699 unix_dgram_sendmsg 4 45699 NULL
-+vmalloc_32_user_37519 vmalloc_32_user 1 37519 NULL
-+fd_do_writev_29329 fd_do_writev 3 29329 NULL
-+hugetlb_cgroup_read_49259 hugetlb_cgroup_read 5 49259 NULL
-+dvb_ca_en50221_init_45718 dvb_ca_en50221_init 4 45718 NULL
-+__alloc_ei_netdev_29338 __alloc_ei_netdev 1 29338 NULL
-+jffs2_security_setxattr_62107 jffs2_security_setxattr 4 62107 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
-+mmc_test_alloc_mem_28102 mmc_test_alloc_mem 2-3 28102 NULL
-+pwr_rcvd_bcns_cnt_read_4774 pwr_rcvd_bcns_cnt_read 3 4774 NULL
-+cxgb_alloc_mem_24007 cxgb_alloc_mem 1 24007 NULL
-+ip6_ufo_append_data_4780 ip6_ufo_append_data 5-7-6 4780 NULL
-+sep_create_dcb_dmatables_context_37551 sep_create_dcb_dmatables_context 6 37551 NULL
-+rw_copy_check_uvector_45748 rw_copy_check_uvector 3 45748 NULL nohasharray
-+v4l2_ctrl_new_std_45748 v4l2_ctrl_new_std 5 45748 &rw_copy_check_uvector_45748
-+qib_diag_write_62133 qib_diag_write 3 62133 NULL
-+gnttab_expand_15817 gnttab_expand 1 15817 NULL
-+lkdtm_debugfs_read_45752 lkdtm_debugfs_read 3 45752 NULL
-+sctp_make_chunk_12986 sctp_make_chunk 4 12986 NULL
-+acpi_tb_install_table_12988 acpi_tb_install_table 1 12988 NULL
-+TransmitTcb_12989 TransmitTcb 4 12989 NULL
-+mthca_setup_cmd_doorbells_53954 mthca_setup_cmd_doorbells 2 53954 NULL
-+ncp__vol2io_4804 ncp__vol2io 5 4804 NULL
-+video_usercopy_62151 video_usercopy 2 62151 NULL
-+cx18_v4l2_read_21196 cx18_v4l2_read 3 21196 NULL
-+repair_io_failure_4815 repair_io_failure 4 4815 NULL
-+xhci_alloc_streams_37586 xhci_alloc_streams 5 37586 NULL
-+p9_client_zc_rpc_14345 p9_client_zc_rpc 7 14345 NULL
-+ipc_rcu_alloc_21208 ipc_rcu_alloc 1 21208 NULL
-+___alloc_bootmem_nopanic_53626 ___alloc_bootmem_nopanic 1 53626 NULL
-+subsystem_filter_write_13022 subsystem_filter_write 3 13022 NULL
-+tracing_max_lat_read_8890 tracing_max_lat_read 3 8890 NULL
-+raw_setsockopt_45800 raw_setsockopt 5 45800 NULL
-+alloc_upcall_62186 alloc_upcall 2 62186 NULL
-+__iio_allocate_sw_ring_buffer_4843 __iio_allocate_sw_ring_buffer 3 4843 NULL
-+lbs_rdbbp_read_45805 lbs_rdbbp_read 3 45805 NULL
-+ide_driver_proc_write_32493 ide_driver_proc_write 3 32493 NULL
-+ixgbe_alloc_q_vector_24439 ixgbe_alloc_q_vector 4-6 24439 NULL
-+pcpu_alloc_alloc_info_45813 pcpu_alloc_alloc_info 1-2 45813 NULL
-+input_ff_create_21240 input_ff_create 2 21240 NULL
-+mempool_create_29437 mempool_create 1 29437 NULL
-+key_tx_spec_read_4862 key_tx_spec_read 3 4862 NULL
-+__dn_setsockopt_13060 __dn_setsockopt 5 13060 NULL
-+amthi_read_45831 amthi_read 4 45831 NULL
-+cmpk_message_handle_tx_54024 cmpk_message_handle_tx 4 54024 NULL
-+hid_register_field_4874 hid_register_field 2-3 4874 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
-+smp_build_cmd_45853 smp_build_cmd 3 45853 NULL
-+nfsd_read_file_62241 nfsd_read_file 6 62241 NULL
-+pipeline_dec_packet_out_read_54052 pipeline_dec_packet_out_read 3 54052 NULL
-+do_register_entry_29478 do_register_entry 4 29478 NULL
-+isdn_write_45863 isdn_write 3 45863 NULL
-+ieee80211_if_read_rc_rateidx_mcs_mask_2ghz_37675 ieee80211_if_read_rc_rateidx_mcs_mask_2ghz 3 37675 NULL
-+regmap_map_read_file_37685 regmap_map_read_file 3 37685 NULL
-+alloc_smp_req_51337 alloc_smp_req 1 51337 NULL
-+vmw_gmr2_bind_21305 vmw_gmr2_bind 3 21305 NULL
-+get_rdac_req_45882 get_rdac_req 3 45882 NULL
-+_malloc_54077 _malloc 1 54077 NULL
-+add_res_range_21310 add_res_range 4 21310 NULL
-+bfad_debugfs_read_13119 bfad_debugfs_read 3 13119 NULL
-+btmrvl_pscmd_write_29504 btmrvl_pscmd_write 3 29504 NULL
-+evm_write_key_27715 evm_write_key 3 27715 NULL
-+ntfs_rl_insert_4931 ntfs_rl_insert 2-4 4931 NULL
-+ip_make_skb_13129 ip_make_skb 5-6 13129 NULL
-+snd_rme96_playback_copy_13111 snd_rme96_playback_copy 5 13111 NULL
-+ftrace_profile_read_21327 ftrace_profile_read 3 21327 NULL
-+atk_debugfs_ggrp_read_29522 atk_debugfs_ggrp_read 3 29522 NULL
-+altera_set_ir_pre_54103 altera_set_ir_pre 2 54103 NULL
-+il_dbgfs_sram_read_62296 il_dbgfs_sram_read 3 62296 NULL
-+create_xattr_54106 create_xattr 5 54106 NULL
-+udplite_getfrag_14479 udplite_getfrag 3-4 14479 NULL
-+ep_write_59008 ep_write 3 59008 NULL
-+dbgfs_frame_45917 dbgfs_frame 3 45917 NULL
-+sparse_early_usemaps_alloc_pgdat_section_62304 sparse_early_usemaps_alloc_pgdat_section 2 62304 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
-+crypto_authenc_esn_setkey_6985 crypto_authenc_esn_setkey 3 6985 NULL
-+alloc_mr_45935 alloc_mr 1 45935 NULL
-+read_enabled_file_bool_37744 read_enabled_file_bool 3 37744 NULL
-+isku_receive_54130 isku_receive 4 54130 NULL
-+hfcpci_empty_bfifo_62323 hfcpci_empty_bfifo 4 62323 NULL
-+caif_stream_recvmsg_13173 caif_stream_recvmsg 4 13173 NULL
-+ocfs2_control_cfu_37750 ocfs2_control_cfu 2 37750 NULL
-+Wb35Reg_BurstWrite_62327 Wb35Reg_BurstWrite 4 62327 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
-+leaf_dealloc_29566 leaf_dealloc 3 29566 NULL
-+create_trace_uprobe_13184 create_trace_uprobe 1 13184 NULL
-+sys_process_vm_writev_4928 sys_process_vm_writev 3-5 4928 NULL
-+lbs_lowsnr_read_29571 lbs_lowsnr_read 3 29571 NULL
-+video_ioctl2_21380 video_ioctl2 2 21380 NULL
-+dccp_setsockopt_cscov_37766 dccp_setsockopt_cscov 2 37766 NULL
-+ipath_resize_cq_712 ipath_resize_cq 2 712 NULL
-+comedi_read_13199 comedi_read 3 13199 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
-+i2400m_zrealloc_2x_54166 i2400m_zrealloc_2x 3 54166 NULL nohasharray
-+memcpy_toiovec_54166 memcpy_toiovec 3 54166 &i2400m_zrealloc_2x_54166
-+proc_file_read_53905 proc_file_read 3 53905 NULL
-+mtd_device_parse_register_5024 mtd_device_parse_register 5 5024 NULL
-+acpi_os_read_memory_54186 acpi_os_read_memory 1-3 54186 NULL
-+__kmalloc_reserve_17080 __kmalloc_reserve 1 17080 NULL
-+smk_read_logging_37804 smk_read_logging 3 37804 NULL
-+rx_rx_timeout_read_62389 rx_rx_timeout_read 3 62389 NULL
-+mgt_set_varlen_60916 mgt_set_varlen 4 60916 NULL
-+tracing_saved_cmdlines_read_21434 tracing_saved_cmdlines_read 3 21434 NULL
-+altera_irscan_62396 altera_irscan 2 62396 NULL
-+alloc_perm_bits_1532 alloc_perm_bits 2 1532 NULL
-+aggr_size_tx_agg_vs_rate_read_21438 aggr_size_tx_agg_vs_rate_read 3 21438 NULL
-+fw_download_code_13249 fw_download_code 3 13249 NULL
-+init_tid_tabs_13252 init_tid_tabs 2-4-3 13252 NULL
-+tx_frag_cache_hit_read_29639 tx_frag_cache_hit_read 3 29639 NULL
-+set_ssp_62411 set_ssp 4 62411 NULL
-+nfc_hci_send_event_21452 nfc_hci_send_event 5 21452 NULL
-+sierra_setup_urb_46029 sierra_setup_urb 5 46029 NULL
-+get_free_entries_46030 get_free_entries 1 46030 NULL
-+__register_chrdev_54223 __register_chrdev 2-3 54223 NULL
-+sctp_make_abort_user_29654 sctp_make_abort_user 3 29654 NULL
-+sys_msgsnd_44537 sys_msgsnd 3 44537 NULL nohasharray
-+comm_write_44537 comm_write 3 44537 &sys_msgsnd_44537
-+carl9170_rx_13272 carl9170_rx 3 13272 NULL
-+snd_mixart_BA1_read_5082 snd_mixart_BA1_read 5 5082 NULL
-+il_dbgfs_qos_read_33615 il_dbgfs_qos_read 3 33615 NULL
-+msg_set_51725 msg_set 3 51725 NULL
-+udplite_manip_pkt_62433 udplite_manip_pkt 2 62433 NULL
-+kfifo_copy_from_user_5091 kfifo_copy_from_user 3 5091 NULL
-+netdev_alloc_skb_62437 netdev_alloc_skb 2 62437 NULL
-+dma_memcpy_pg_to_iovec_1725 dma_memcpy_pg_to_iovec 6 1725 NULL
-+platform_device_add_resources_13289 platform_device_add_resources 3 13289 NULL
-+xfs_dir2_block_to_sf_37868 xfs_dir2_block_to_sf 3 37868 NULL
-+xfs_dir2_sf_addname_hard_54254 xfs_dir2_sf_addname_hard 3 54254 NULL
-+read_file_xmit_21487 read_file_xmit 3 21487 NULL
-+e1000_check_copybreak_62448 e1000_check_copybreak 3 62448 NULL
-+ceph_msgpool_get_54258 ceph_msgpool_get 2 54258 NULL
-+wusb_prf_54261 wusb_prf 7 54261 NULL nohasharray
-+audio_write_54261 audio_write 4 54261 &wusb_prf_54261
-+sys_setxattr_37880 sys_setxattr 4 37880 NULL
-+dvb_net_sec_37884 dvb_net_sec 3 37884 NULL
-+mwifiex_getlog_read_54269 mwifiex_getlog_read 3 54269 NULL
-+isr_tx_procs_read_23084 isr_tx_procs_read 3 23084 NULL
-+mmc_alloc_sg_21504 mmc_alloc_sg 1 21504 NULL
-+qlcnic_alloc_sds_rings_26795 qlcnic_alloc_sds_rings 2 26795 NULL
-+vc_resize_3585 vc_resize 2-3 3585 NULL
-+nf_nat_mangle_udp_packet_13321 nf_nat_mangle_udp_packet 5-7 13321 NULL
-+vfio_config_do_rw_46091 vfio_config_do_rw 3 46091 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
-+probes_write_29711 probes_write 3 29711 NULL
-+btrfs_file_aio_write_21520 btrfs_file_aio_write 4 21520 NULL
-+us122l_ctl_msg_13330 us122l_ctl_msg 8 13330 NULL
-+altera_set_dr_post_54291 altera_set_dr_post 2 54291 NULL
-+ceph_dns_resolve_name_62488 ceph_dns_resolve_name 2 62488 NULL
-+kvm_read_nested_guest_page_13337 kvm_read_nested_guest_page 5 13337 NULL
-+il_dbgfs_stations_read_21532 il_dbgfs_stations_read 3 21532 NULL
-+il3945_ucode_general_stats_read_46111 il3945_ucode_general_stats_read 3 46111 NULL
-+tipc_link_send_sections_fast_37920 tipc_link_send_sections_fast 4 37920 NULL
-+mlx4_en_create_rx_ring_62498 mlx4_en_create_rx_ring 3 62498 NULL
-+emi62_writememory_29731 emi62_writememory 4 29731 NULL
-+read_cis_cache_29735 read_cis_cache 4 29735 NULL
-+pkt_alloc_packet_data_37928 pkt_alloc_packet_data 1 37928 NULL
-+hscx_empty_fifo_13360 hscx_empty_fifo 2 13360 NULL
-+rxrpc_send_data_21553 rxrpc_send_data 5 21553 NULL
-+iwl_dbgfs_status_read_5171 iwl_dbgfs_status_read 3 5171 NULL
-+hfcsusb_rx_frame_52745 hfcsusb_rx_frame 3 52745 NULL
-+pn_raw_send_54330 pn_raw_send 2 54330 NULL
-+pep_sendmsg_62524 pep_sendmsg 4 62524 NULL
-+insert_dent_65034 insert_dent 7 65034 NULL
-+sfi_map_memory_5183 sfi_map_memory 1-2 5183 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
-+test_iso_queue_62534 test_iso_queue 5 62534 NULL
-+__alloc_dev_table_54343 __alloc_dev_table 2 54343 NULL
-+ddp_clear_map_46152 ddp_clear_map 4 46152 NULL
-+cxio_hal_init_resource_29771 cxio_hal_init_resource 2-7-6 29771 NULL nohasharray
-+ip_vs_conn_fill_param_sync_29771 ip_vs_conn_fill_param_sync 6 29771 &cxio_hal_init_resource_29771
-+__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
-+pipe_set_size_5204 pipe_set_size 2 5204 NULL
-+tcf_hash_create_54360 tcf_hash_create 4 54360 NULL
-+ppp_cp_parse_cr_5214 ppp_cp_parse_cr 4 5214 NULL
-+read_file_credit_dist_stats_54367 read_file_credit_dist_stats 3 54367 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
-+encrypted_update_13414 encrypted_update 3 13414 NULL
-+vxge_os_dma_malloc_46184 vxge_os_dma_malloc 2 46184 NULL
-+do_dccp_setsockopt_54377 do_dccp_setsockopt 5 54377 NULL nohasharray
-+intel_sdvo_write_cmd_54377 intel_sdvo_write_cmd 4 54377 &do_dccp_setsockopt_54377
-+ah_alloc_tmp_54378 ah_alloc_tmp 2-3 54378 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
-+isdn_ppp_skb_push_5236 isdn_ppp_skb_push 2 5236 NULL
-+get_subdir_62581 get_subdir 3 62581 NULL
-+iwl_dbgfs_power_save_status_read_54392 iwl_dbgfs_power_save_status_read 3 54392 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
-+ath6kl_cfg80211_connect_event_13443 ath6kl_cfg80211_connect_event 7-9-8 13443 NULL
-+tm6000_i2c_recv_regs_46215 tm6000_i2c_recv_regs 5 46215 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
-+__probe_kernel_write_29842 __probe_kernel_write 3 29842 NULL
-+aggr_recv_addba_req_evt_38037 aggr_recv_addba_req_evt 4 38037 NULL
-+carl9170_rx_copy_data_21656 carl9170_rx_copy_data 2 21656 NULL
-+ftrace_write_29551 ftrace_write 3 29551 NULL
-+il_dbgfs_chain_noise_read_38044 il_dbgfs_chain_noise_read 3 38044 NULL
-+iscsi_post_host_event_13473 iscsi_post_host_event 4 13473 NULL
-+ems_pcmcia_add_card_62627 ems_pcmcia_add_card 2 62627 NULL
-+sm501_create_subdev_48668 sm501_create_subdev 3-4 48668 NULL nohasharray
-+sys_setgroups_48668 sys_setgroups 1 48668 &sm501_create_subdev_48668
-+_xfs_buf_alloc_38058 _xfs_buf_alloc 3 38058 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
-+lpfc_sli4_queue_alloc_62646 lpfc_sli4_queue_alloc 3 62646 NULL
-+alloc_ltalkdev_38071 alloc_ltalkdev 1 38071 NULL
-+nfc_targets_found_29886 nfc_targets_found 3 29886 NULL
-+mwifiex_alloc_sdio_mpa_buffers_60961 mwifiex_alloc_sdio_mpa_buffers 2-3 60961 NULL
-+evdev_ioctl_handler_21705 evdev_ioctl_handler 2 21705 NULL
-+request_key_auth_new_38092 request_key_auth_new 3 38092 NULL
-+proc_self_readlink_38094 proc_self_readlink 3 38094 NULL
-+smk_write_mapped_13519 smk_write_mapped 3 13519 NULL
-+pwr_disable_ps_read_13176 pwr_disable_ps_read 3 13176 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
-+squashfs_read_inode_lookup_table_64739 squashfs_read_inode_lookup_table 4 64739 NULL
-+reiserfs_allocate_list_bitmaps_21732 reiserfs_allocate_list_bitmaps 3 21732 NULL
-+ioremap_wc_62695 ioremap_wc 1-2 62695 NULL
-+pg_read_17276 pg_read 3 17276 NULL
-+__alloc_extent_buffer_15093 __alloc_extent_buffer 3 15093 NULL
-+batadv_iv_ogm_queue_add_46319 batadv_iv_ogm_queue_add 3 46319 NULL
-+ps_pspoll_utilization_read_5361 ps_pspoll_utilization_read 3 5361 NULL
-+cgroup_write_X64_54514 cgroup_write_X64 5 54514 NULL
-+llcp_sock_recvmsg_13556 llcp_sock_recvmsg 4 13556 NULL
-+rfc4106_set_key_54519 rfc4106_set_key 3 54519 NULL
-+cciss_allocate_sg_chain_blocks_5368 cciss_allocate_sg_chain_blocks 2-3 5368 NULL
-+mthca_alloc_init_21754 mthca_alloc_init 2 21754 NULL
-+l2down_create_21755 l2down_create 4 21755 NULL
-+viacam_read_54526 viacam_read 3 54526 NULL
-+btrfs_mksubvol_58240 btrfs_mksubvol 3 58240 NULL
-+tunables_read_36385 tunables_read 3 36385 NULL
-+iio_debugfs_write_reg_22742 iio_debugfs_write_reg 3 22742 NULL
-+read_file_antenna_13574 read_file_antenna 3 13574 NULL
-+__ntfs_copy_from_user_iovec_inatomic_38153 __ntfs_copy_from_user_iovec_inatomic 3-4 38153 NULL
-+setsockopt_54539 setsockopt 5 54539 NULL
-+gen_pool_add_21776 gen_pool_add 3 21776 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
-+xfs_da_grow_inode_int_21785 xfs_da_grow_inode_int 3 21785 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
-+mwifiex_usb_submit_rx_urb_54558 mwifiex_usb_submit_rx_urb 2 54558 NULL
-+irias_add_octseq_attrib_29983 irias_add_octseq_attrib 4 29983 NULL
-+cdev_add_38176 cdev_add 2-3 38176 NULL
-+brcmf_sdcard_recv_buf_38179 brcmf_sdcard_recv_buf 6 38179 NULL
-+__ioremap_caller_21800 __ioremap_caller 1-2 21800 NULL
-+alloc_and_copy_ftrace_hash_29368 alloc_and_copy_ftrace_hash 1 29368 NULL
-+ubi_dump_flash_46381 ubi_dump_flash 4 46381 NULL
-+swap_cgroup_swapon_13614 swap_cgroup_swapon 2 13614 NULL
-+wm8994_bulk_write_13615 wm8994_bulk_write 3 13615 NULL
-+init_chip_wc_pat_62768 init_chip_wc_pat 2 62768 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
-+fw_iso_buffer_init_54582 fw_iso_buffer_init 3 54582 NULL
-+vmalloc_user_32308 vmalloc_user 1 32308 NULL
-+get_ucode_user_38202 get_ucode_user 3 38202 NULL
-+ath6kl_wmi_startscan_cmd_33674 ath6kl_wmi_startscan_cmd 8 33674 NULL
-+fuse_file_aio_write_46399 fuse_file_aio_write 4 46399 NULL
-+mem_fwlog_free_mem_blks_read_59616 mem_fwlog_free_mem_blks_read 3 59616 NULL
-+packet_snd_13634 packet_snd 3 13634 NULL
-+alloc_netdev_mqs_30030 alloc_netdev_mqs 1 30030 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
-+blk_msg_write_13655 blk_msg_write 3 13655 NULL
-+scsi_vpd_inquiry_30040 scsi_vpd_inquiry 4 30040 NULL
-+fwSendNullPacket_54618 fwSendNullPacket 2 54618 NULL
-+tracing_total_entries_read_62817 tracing_total_entries_read 3 62817 NULL
-+cache_downcall_13666 cache_downcall 3 13666 NULL
-+xfs_efi_init_5476 xfs_efi_init 2 5476 NULL
-+acpi_tb_check_xsdt_21862 acpi_tb_check_xsdt 1 21862 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
-+sisusbcon_bmove_21873 sisusbcon_bmove 5-7-6 21873 NULL
-+tty_write_5494 tty_write 3 5494 NULL
-+xlog_recover_add_to_trans_62839 xlog_recover_add_to_trans 4 62839 NULL
-+tomoyo_update_domain_5498 tomoyo_update_domain 2 5498 NULL
-+rx_fcs_err_read_62844 rx_fcs_err_read 3 62844 NULL
-+irq_timeout_read_54653 irq_timeout_read 3 54653 NULL
-+dns_resolver_read_54658 dns_resolver_read 3 54658 NULL
-+skb_pad_17302 skb_pad 2 17302 NULL
-+line6_alloc_sysex_buffer_28225 line6_alloc_sysex_buffer 4 28225 NULL
-+fw_iso_buffer_alloc_13704 fw_iso_buffer_alloc 2 13704 NULL
-+cxgbi_ddp_reserve_30091 cxgbi_ddp_reserve 4 30091 NULL
-+snd_midi_channel_init_set_30092 snd_midi_channel_init_set 1 30092 NULL
-+tg3_run_loopback_30093 tg3_run_loopback 2 30093 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
-+ezusb_writememory_45976 ezusb_writememory 4 45976 NULL
-+rx_filter_data_filter_read_30098 rx_filter_data_filter_read 3 30098 NULL
-+zd_mac_rx_38296 zd_mac_rx 3 38296 NULL
-+l2tp_ip6_recvmsg_62874 l2tp_ip6_recvmsg 4 62874 NULL
-+qsfp_1_read_21915 qsfp_1_read 3 21915 NULL
-+do_proc_readlink_14096 do_proc_readlink 3 14096 NULL
-+aoechr_write_62883 aoechr_write 3 62883 NULL nohasharray
-+em28xx_init_isoc_62883 em28xx_init_isoc 4 62883 &aoechr_write_62883
-+resize_info_buffer_62889 resize_info_buffer 2 62889 NULL
-+if_spi_host_to_card_62890 if_spi_host_to_card 4 62890 NULL
-+u32_array_read_2219 u32_array_read 3 2219 NULL
-+pin_code_reply_46510 pin_code_reply 4 46510 NULL
-+addtgt_54703 addtgt 3 54703 NULL
-+mthca_alloc_cq_buf_46512 mthca_alloc_cq_buf 3 46512 NULL
-+vxge_device_register_7752 vxge_device_register 4 7752 NULL
-+kmsg_read_46514 kmsg_read 3 46514 NULL
-+brcmu_pkt_buf_get_skb_5556 brcmu_pkt_buf_get_skb 1 5556 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
-+u_memcpya_30139 u_memcpya 2-3 30139 NULL
-+getdqbuf_62908 getdqbuf 1 62908 NULL
-+bdx_rxdb_create_46525 bdx_rxdb_create 1 46525 NULL
-+pwr_connection_out_of_sync_read_35061 pwr_connection_out_of_sync_read 3 35061 NULL
-+il4965_rs_sta_dbgfs_rate_scale_data_read_37792 il4965_rs_sta_dbgfs_rate_scale_data_read 3 37792 NULL
-+fir16_create_5574 fir16_create 3 5574 NULL
-+ieee802154_alloc_device_13767 ieee802154_alloc_device 1 13767 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
-+oz_ep_alloc_5587 oz_ep_alloc 2 5587 NULL
-+kzalloc_54740 kzalloc 1 54740 NULL
-+ipath_reg_phys_mr_23918 ipath_reg_phys_mr 3 23918 NULL nohasharray
-+mpihelp_mul_karatsuba_case_23918 mpihelp_mul_karatsuba_case 5-3 23918 &ipath_reg_phys_mr_23918
-+do_msgrcv_5590 do_msgrcv 4 5590 NULL
-+wep_iv_read_54744 wep_iv_read 3 54744 NULL
-+link_send_sections_long_46556 link_send_sections_long 4 46556 NULL
-+ath6kl_mgmt_powersave_ap_13791 ath6kl_mgmt_powersave_ap 6 13791 NULL
-+iio_event_chrdev_read_54757 iio_event_chrdev_read 3 54757 NULL
-+batadv_iv_ogm_aggregate_new_54761 batadv_iv_ogm_aggregate_new 2 54761 NULL
-+ldm_frag_add_5611 ldm_frag_add 2 5611 NULL
-+cx25821_video_ioctl_30188 cx25821_video_ioctl 2 30188 NULL
-+mempool_create_page_pool_30189 mempool_create_page_pool 1 30189 NULL
-+rxpipe_descr_host_int_trig_rx_data_read_22001 rxpipe_descr_host_int_trig_rx_data_read 3 22001 NULL nohasharray
-+compat_rw_copy_check_uvector_22001 compat_rw_copy_check_uvector 3 22001 &rxpipe_descr_host_int_trig_rx_data_read_22001
-+drm_property_create_bitmask_30195 drm_property_create_bitmask 5 30195 NULL
-+dn_sendmsg_38390 dn_sendmsg 4 38390 NULL
-+usblp_ioctl_30203 usblp_ioctl 2 30203 NULL
-+hsi_register_board_info_13820 hsi_register_board_info 2 13820 NULL
-+hidp_output_raw_report_5629 hidp_output_raw_report 3 5629 NULL
-+nfs_idmap_request_key_30208 nfs_idmap_request_key 3 30208 NULL
-+read_4k_modal_eeprom_30212 read_4k_modal_eeprom 3 30212 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
-+ttm_dma_page_pool_free_34135 ttm_dma_page_pool_free 2 34135 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
-+nfsd_write_54809 nfsd_write 6 54809 NULL
-+evdev_ioctl_compat_13851 evdev_ioctl_compat 2 13851 NULL
-+pcnet32_realloc_tx_ring_38428 pcnet32_realloc_tx_ring 3 38428 NULL
-+posix_clock_register_5662 posix_clock_register 2 5662 NULL
-+pmcraid_copy_sglist_38431 pmcraid_copy_sglist 3 38431 NULL
-+get_skb_63008 get_skb 2 63008 NULL
-+zd_usb_read_fw_22049 zd_usb_read_fw 4 22049 NULL
-+netlink_send_38434 netlink_send 5 38434 NULL
-+atalk_recvmsg_22053 atalk_recvmsg 4 22053 NULL
-+compat_ip_setsockopt_13870 compat_ip_setsockopt 5 13870 NULL nohasharray
-+alloc_trace_uprobe_13870 alloc_trace_uprobe 3 13870 &compat_ip_setsockopt_13870
-+aircable_process_packet_46639 aircable_process_packet 5 46639 NULL
-+generic_perform_write_54832 generic_perform_write 3 54832 NULL
-+write_rio_54837 write_rio 3 54837 NULL
-+__vb2_perform_fileio_63033 __vb2_perform_fileio 3 63033 NULL
-+pipeline_defrag_to_csum_swi_read_63037 pipeline_defrag_to_csum_swi_read 3 63037 NULL
-+get_arg_5694 get_arg 3 5694 NULL
-+isr_pci_pm_read_30271 isr_pci_pm_read 3 30271 NULL
-+ufx_ops_write_54848 ufx_ops_write 3 54848 NULL
-+compat_readv_30273 compat_readv 3 30273 NULL
-+printer_read_54851 printer_read 3 54851 NULL
-+mem_rw_22085 mem_rw 3 22085 NULL
-+i915_min_freq_read_38470 i915_min_freq_read 3 38470 NULL
-+alloc_ep_req_54860 alloc_ep_req 2 54860 NULL
-+lowpan_fragment_xmit_22095 lowpan_fragment_xmit 3-4 22095 NULL
-+broadsheet_spiflash_rewrite_sector_54864 broadsheet_spiflash_rewrite_sector 2 54864 NULL
-+skcipher_sendmsg_30290 skcipher_sendmsg 4 30290 NULL
-+unlink1_63059 unlink1 3 63059 NULL
-+picolcd_fb_write_2318 picolcd_fb_write 3 2318 NULL
-+pipeline_sec_frag_swi_read_30294 pipeline_sec_frag_swi_read 3 30294 NULL
-+tcp_sendmsg_30296 tcp_sendmsg 4 30296 NULL
-+tcf_csum_ipv6_tcp_54877 tcf_csum_ipv6_tcp 4 54877 NULL
-+vmw_kms_readback_5727 vmw_kms_readback 6 5727 NULL
-+replay_log_leb_18704 replay_log_leb 3 18704 NULL
-+rts51x_transfer_data_partial_5735 rts51x_transfer_data_partial 6 5735 NULL
-+rx_decrypt_key_not_found_read_37820 rx_decrypt_key_not_found_read 3 37820 NULL
-+alloc_data_packet_46698 alloc_data_packet 1 46698 NULL
-+wlcore_alloc_hw_7785 wlcore_alloc_hw 1 7785 NULL
-+dev_names_read_38509 dev_names_read 3 38509 NULL
-+iscsi_create_iface_38510 iscsi_create_iface 5 38510 NULL
-+sep_prepare_input_output_dma_table_in_dcb_63087 sep_prepare_input_output_dma_table_in_dcb 4-5-2-3 63087 NULL
-+alloc_page_cgroup_2919 alloc_page_cgroup 1 2919 NULL
-+ieee80211_if_read_dot11MeshForwarding_13940 ieee80211_if_read_dot11MeshForwarding 3 13940 NULL
-+drm_malloc_ab_16831 drm_malloc_ab 1-2 16831 NULL
-+event_rx_mismatch_read_38518 event_rx_mismatch_read 3 38518 NULL
-+iwl_dbgfs_protection_mode_read_13943 iwl_dbgfs_protection_mode_read 3 13943 NULL
-+ieee80211_if_read_min_discovery_timeout_13946 ieee80211_if_read_min_discovery_timeout 3 13946 NULL
-+sys_msgrcv_959 sys_msgrcv 3 959 NULL
-+ath6kl_lrssi_roam_read_61022 ath6kl_lrssi_roam_read 3 61022 NULL
-+lpfc_idiag_queacc_read_13950 lpfc_idiag_queacc_read 3 13950 NULL
-+xfs_buf_get_uncached_51477 xfs_buf_get_uncached 2 51477 NULL
-+wl1271_rx_filter_alloc_field_46721 wl1271_rx_filter_alloc_field 5 46721 NULL
-+_l2_alloc_skb_11883 _l2_alloc_skb 1 11883 NULL
-+resource_from_user_30341 resource_from_user 3 30341 NULL
-+sound_write_5102 sound_write 3 5102 NULL
-+pn533_dep_link_up_22154 pn533_dep_link_up 5 22154 NULL
-+brcmf_alloc_pkt_and_read_63116 brcmf_alloc_pkt_and_read 2 63116 NULL nohasharray
-+iwl_dbgfs_sensitivity_read_63116 iwl_dbgfs_sensitivity_read 3 63116 &brcmf_alloc_pkt_and_read_63116
-+irq_domain_add_simple_46734 irq_domain_add_simple 2 46734 NULL
-+sctp_setsockopt_autoclose_5775 sctp_setsockopt_autoclose 3 5775 NULL
-+__vmalloc_node_flags_30352 __vmalloc_node_flags 1 30352 NULL
-+btrfs_discard_extent_38547 btrfs_discard_extent 2 38547 NULL
-+bnx2_nvram_write_7790 bnx2_nvram_write 2-4 7790 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
-+brcmf_usb_attach_44656 brcmf_usb_attach 1-2 44656 NULL
-+wl12xx_cmd_build_probe_req_54946 wl12xx_cmd_build_probe_req 6-8 54946 NULL
-+irda_sendmsg_dgram_38563 irda_sendmsg_dgram 4 38563 NULL
-+il4965_rs_sta_dbgfs_scale_table_read_38564 il4965_rs_sta_dbgfs_scale_table_read 3 38564 NULL
-+generic_readlink_32654 generic_readlink 3 32654 NULL
-+ieee80211_bss_info_update_13991 ieee80211_bss_info_update 4 13991 NULL
-+sys_get_mempolicy_30379 sys_get_mempolicy 3 30379 NULL
-+iwl_dbgfs_ucode_rx_stats_read_58023 iwl_dbgfs_ucode_rx_stats_read 3 58023 NULL
-+skb_copy_datagram_iovec_5806 skb_copy_datagram_iovec 2-4 5806 NULL
-+setkey_unaligned_39474 setkey_unaligned 3 39474 NULL
-+l2up_create_6430 l2up_create 3 6430 NULL
-+int_hw_irq_en_46776 int_hw_irq_en 3 46776 NULL
-+c4iw_init_resource_30393 c4iw_init_resource 2-3 30393 NULL
-+cosa_net_setup_rx_38594 cosa_net_setup_rx 2 38594 NULL
-+concat_writev_21451 concat_writev 3 21451 NULL
-+_rtl92s_firmware_downloadcode_14021 _rtl92s_firmware_downloadcode 3 14021 NULL
-+_queue_data_54983 _queue_data 4 54983 NULL
-+_sys_packet_req_46793 _sys_packet_req 4 46793 NULL
-+pfkey_sendmsg_47394 pfkey_sendmsg 4 47394 NULL
-+extend_netdev_table_21453 extend_netdev_table 2 21453 NULL
-+rfcomm_sock_recvmsg_22227 rfcomm_sock_recvmsg 4 22227 NULL
-+vb2_fop_write_30420 vb2_fop_write 3 30420 NULL
-+ceph_msg_new_5846 ceph_msg_new 2 5846 NULL
-+ixgb_check_copybreak_5847 ixgb_check_copybreak 3 5847 NULL
-+setup_req_5848 setup_req 3 5848 NULL
-+read_def_modal_eeprom_14041 read_def_modal_eeprom 3 14041 NULL
-+rx_filter_max_arp_queue_dep_read_5851 rx_filter_max_arp_queue_dep_read 3 5851 NULL
-+rds_ib_inc_copy_to_user_55007 rds_ib_inc_copy_to_user 3 55007 NULL
-+team_options_register_20091 team_options_register 3 20091 NULL
-+rbd_create_rw_ops_55297 rbd_create_rw_ops 1 55297 NULL
-+compat_sys_move_pages_5861 compat_sys_move_pages 2 5861 NULL
-+cx231xx_v4l2_read_55014 cx231xx_v4l2_read 3 55014 NULL
-+sta_agg_status_read_14058 sta_agg_status_read 3 14058 NULL
-+scsi_mode_sense_16835 scsi_mode_sense 5 16835 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
-+error_error_null_Frame_tx_start_read_55024 error_error_null_Frame_tx_start_read 3 55024 NULL
-+cma_create_area_38642 cma_create_area 2 38642 NULL
-+audit_init_entry_38644 audit_init_entry 1 38644 NULL
-+sriov_enable_59689 sriov_enable 2 59689 NULL
-+enable_write_30456 enable_write 3 30456 NULL
-+shmem_pwrite_fast_46842 shmem_pwrite_fast 3 46842 NULL
-+tx_tx_template_programmed_read_30461 tx_tx_template_programmed_read 3 30461 NULL
-+mmc_send_cxd_data_38655 mmc_send_cxd_data 5 38655 NULL
-+zoran_ioctl_30465 zoran_ioctl 2 30465 NULL
-+qla2x00_adjust_sdev_qdepth_up_20097 qla2x00_adjust_sdev_qdepth_up 2 20097 NULL
-+ieee80211_mgmt_tx_46860 ieee80211_mgmt_tx 9 46860 NULL
-+port_show_regs_5904 port_show_regs 3 5904 NULL
-+nvme_alloc_queue_46865 nvme_alloc_queue 3 46865 NULL
-+ptp_read_63251 ptp_read 4 63251 NULL
-+uhci_debug_read_5911 uhci_debug_read 3 5911 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
-+__tun_chr_ioctl_22300 __tun_chr_ioctl 4 22300 NULL
-+mesh_table_alloc_22305 mesh_table_alloc 1 22305 NULL
-+ttm_bo_kmap_ttm_5922 ttm_bo_kmap_ttm 3 5922 NULL
-+o2hb_debug_read_37851 o2hb_debug_read 3 37851 NULL
-+bitmap_storage_alloc_55077 bitmap_storage_alloc 2 55077 NULL
-+iscsi_iser_recv_41948 iscsi_iser_recv 4 41948 NULL
-+lbs_highsnr_read_5931 lbs_highsnr_read 3 5931 NULL
-+em28xx_alloc_isoc_46892 em28xx_alloc_isoc 4 46892 NULL
-+ps_poll_ps_poll_timeouts_read_5934 ps_poll_ps_poll_timeouts_read 3 5934 NULL
-+dwc3_testmode_write_30516 dwc3_testmode_write 3 30516 NULL
-+edac_device_alloc_ctl_info_5941 edac_device_alloc_ctl_info 1 5941 NULL
-+sisusbcon_scroll_area_25899 sisusbcon_scroll_area 3-4 25899 NULL
-+ntfs_rl_replace_14136 ntfs_rl_replace 2-4 14136 NULL
-+ip_send_unicast_reply_38714 ip_send_unicast_reply 6 38714 NULL
-+tcp_collapse_63294 tcp_collapse 5-6 63294 NULL
-+alloc_trace_probe_38720 alloc_trace_probe 6 38720 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
-+em_canid_change_14150 em_canid_change 3 14150 NULL
-+tracing_ctrl_read_46922 tracing_ctrl_read 3 46922 NULL
-+gsm_dlci_data_14155 gsm_dlci_data 3 14155 NULL
-+fb_write_46924 fb_write 3 46924 NULL
-+dns_resolver_instantiate_63314 dns_resolver_instantiate 3 63314 NULL
-+btmrvl_curpsmode_read_46939 btmrvl_curpsmode_read 3 46939 NULL
-+crypto_ahash_setkey_55134 crypto_ahash_setkey 3 55134 NULL
-+br_send_bpdu_29669 br_send_bpdu 3 29669 NULL
-+disk_expand_part_tbl_30561 disk_expand_part_tbl 2 30561 NULL
-+evdev_ioctl_22371 evdev_ioctl 2 22371 NULL
-+__sctp_setsockopt_connectx_46949 __sctp_setsockopt_connectx 3 46949 NULL
-+qla4xxx_post_aen_work_46953 qla4xxx_post_aen_work 3 46953 NULL
-+reada_add_block_54247 reada_add_block 2 54247 NULL
-+ieee80211_if_read_uapsd_queues_55150 ieee80211_if_read_uapsd_queues 3 55150 NULL
-+proc_info_read_63344 proc_info_read 3 63344 NULL
-+jffs2_do_link_42048 jffs2_do_link 6 42048 NULL
-+pep_indicate_38611 pep_indicate 5 38611 NULL
-+set_le_30581 set_le 4 30581 NULL
-+write_62671 write 3 62671 NULL
-+alloc_large_system_hash_22391 alloc_large_system_hash 2 22391 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
-+alloc_private_22399 alloc_private 2 22399 NULL
-+mgmt_pending_add_46976 mgmt_pending_add 5 46976 NULL
-+gre_manip_pkt_38785 gre_manip_pkt 2 38785 NULL
-+fc_frame_alloc_fill_59394 fc_frame_alloc_fill 2 59394 NULL
-+zoran_write_22404 zoran_write 3 22404 NULL
-+dma_tx_errors_read_46060 dma_tx_errors_read 3 46060 NULL
-+idmouse_read_63374 idmouse_read 3 63374 NULL
-+queue_reply_22416 queue_reply 3 22416 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
-+dfs_global_file_read_7787 dfs_global_file_read 3 7787 NULL
-+ttm_bo_io_47000 ttm_bo_io 5 47000 NULL
-+ieee80211_if_write_uapsd_max_sp_len_14233 ieee80211_if_write_uapsd_max_sp_len 3 14233 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
-+snd_soc_hw_bulk_write_raw_14245 snd_soc_hw_bulk_write_raw 4 14245 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
-+cx231xx_init_bulk_47024 cx231xx_init_bulk 2-3 47024 NULL
-+sctp_abort_pkt_new_55218 sctp_abort_pkt_new 5 55218 NULL
-+oom_score_adj_write_42594 oom_score_adj_write 3 42594 NULL
-+direct_entry_38836 direct_entry 3 38836 NULL
-+__hwahc_op_set_ptk_36510 __hwahc_op_set_ptk 5 36510 NULL
-+gntdev_alloc_map_35145 gntdev_alloc_map 2 35145 NULL
-+compat_udp_setsockopt_38840 compat_udp_setsockopt 5 38840 NULL
-+sctp_setsockopt_connectx_6073 sctp_setsockopt_connectx 3 6073 NULL
-+ath6kl_connect_event_14267 ath6kl_connect_event 7-9-8 14267 NULL
-+write_head_30481 write_head 4 30481 NULL
-+mem_cgroup_read_22461 mem_cgroup_read 5 22461 NULL
-+add_numbered_child_14273 add_numbered_child 5 14273 NULL
-+l2cap_sock_sendmsg_63427 l2cap_sock_sendmsg 4 63427 NULL
-+OS_mem_token_alloc_14276 OS_mem_token_alloc 1 14276 NULL
-+sep_prepare_input_output_dma_table_63429 sep_prepare_input_output_dma_table 2-4-3 63429 NULL
-+register_unifi_sdio_55239 register_unifi_sdio 2 55239 NULL
-+ath6kl_wmi_get_new_buf_52304 ath6kl_wmi_get_new_buf 1 52304 NULL
-+agp_remap_30665 agp_remap 2 30665 NULL
-+snd_seq_oss_readq_new_14283 snd_seq_oss_readq_new 2 14283 NULL
-+memcpy_fromiovec_55247 memcpy_fromiovec 3 55247 NULL
-+alloc_ldt_21972 alloc_ldt 2 21972 NULL
-+cache_write_procfs_22491 cache_write_procfs 3 22491 NULL
-+read_default_ldt_14302 read_default_ldt 2 14302 NULL
-+dfs_global_file_write_6112 dfs_global_file_write 3 6112 NULL
-+alloc_dca_provider_59670 alloc_dca_provider 2 59670 NULL
-+pipeline_dec_packet_in_read_47076 pipeline_dec_packet_in_read 3 47076 NULL
-+rtl_port_map_2385 rtl_port_map 1-2 2385 NULL
-+dccp_setsockopt_ccid_30701 dccp_setsockopt_ccid 4 30701 NULL
-+scsi_deactivate_tcq_47086 scsi_deactivate_tcq 2 47086 NULL
-+sel_commit_bools_write_46077 sel_commit_bools_write 3 46077 NULL
-+snd_info_entry_write_63474 snd_info_entry_write 3 63474 NULL
-+process_bulk_data_command_38906 process_bulk_data_command 4 38906 NULL
-+rx_streaming_interval_read_55291 rx_streaming_interval_read 3 55291 NULL
-+reada_find_extent_63486 reada_find_extent 2 63486 NULL
-+read_kcore_63488 read_kcore 3 63488 NULL
-+lbs_debugfs_read_30721 lbs_debugfs_read 3 30721 NULL
-+sel_write_load_63830 sel_write_load 3 63830 NULL
-+gsm_control_modem_55303 gsm_control_modem 3 55303 NULL
-+__get_vm_area_node_55305 __get_vm_area_node 1 55305 NULL
-+iscsi_conn_setup_35159 iscsi_conn_setup 2 35159 NULL
-+rsc_mgr_init_16299 rsc_mgr_init 3 16299 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
-+rawv6_recvmsg_30265 rawv6_recvmsg 4 30265 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
-+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
-+vme_user_read_55338 vme_user_read 3 55338 NULL
-+sctp_datamsg_from_user_55342 sctp_datamsg_from_user 4 55342 NULL
-+cxio_init_resource_fifo_random_47151 cxio_init_resource_fifo_random 3 47151 NULL
-+persistent_ram_iomap_47156 persistent_ram_iomap 1-2 47156 NULL
-+tcf_csum_ipv4_udp_30777 tcf_csum_ipv4_udp 4 30777 NULL
-+__ath6kl_wmi_send_mgmt_cmd_38971 __ath6kl_wmi_send_mgmt_cmd 7 38971 NULL
-+__hidp_send_ctrl_message_28303 __hidp_send_ctrl_message 4 28303 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
-+r8712_usbctrl_vendorreq_48489 r8712_usbctrl_vendorreq 6 48489 NULL
-+smk_write_onlycap_14400 smk_write_onlycap 3 14400 NULL
-+acpi_system_read_event_55362 acpi_system_read_event 3 55362 NULL
-+dbg_leb_write_63555 dbg_leb_write 4-5 63555 NULL nohasharray
-+kvm_write_guest_page_63555 kvm_write_guest_page 5 63555 &dbg_leb_write_63555
-+snapshot_read_22601 snapshot_read 3 22601 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 1-2 47189 NULL
-+easycap_alsa_vmalloc_14426 easycap_alsa_vmalloc 2 14426 NULL
-+smk_read_doi_30813 smk_read_doi 3 30813 NULL
-+f_hidg_read_6238 f_hidg_read 3 6238 NULL
-+proc_pid_attr_write_63845 proc_pid_attr_write 3 63845 NULL
-+lpfc_debugfs_dif_err_write_17424 lpfc_debugfs_dif_err_write 3 17424 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
-+ide_core_cp_entry_22636 ide_core_cp_entry 3 22636 NULL
-+iwl_dbgfs_plcp_delta_read_55407 iwl_dbgfs_plcp_delta_read 3 55407 NULL
-+pwr_wake_on_timer_exp_read_22640 pwr_wake_on_timer_exp_read 3 22640 NULL
-+create_subvol_30836 create_subvol 4 30836 NULL
-+mthca_map_reg_5664 mthca_map_reg 2-3 5664 NULL
-+ci13xxx_add_device_14456 ci13xxx_add_device 3 14456 NULL
-+iwl_dbgfs_calib_disabled_read_22649 iwl_dbgfs_calib_disabled_read 3 22649 NULL
-+_zd_iowrite32v_async_locked_39034 _zd_iowrite32v_async_locked 3 39034 NULL
-+sctp_setsockopt_auth_chunk_30843 sctp_setsockopt_auth_chunk 3 30843 NULL
-+read_oldmem_55658 read_oldmem 3 55658 NULL
-+tx_tx_start_null_frame_read_6281 tx_tx_start_null_frame_read 3 6281 NULL
-+xenbus_file_write_6282 xenbus_file_write 3 6282 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
-+dlm_alloc_pagevec_54296 dlm_alloc_pagevec 1 54296 NULL
-+portcntrs_1_read_47253 portcntrs_1_read 3 47253 NULL
-+ieee80211_if_read_dot11MeshGateAnnouncementProtocol_14486 ieee80211_if_read_dot11MeshGateAnnouncementProtocol 3 14486 NULL
-+ubifs_leb_write_22679 ubifs_leb_write 4-5 22679 NULL
-+l2tp_ip_recvmsg_22681 l2tp_ip_recvmsg 4 22681 NULL
-+proc_loginuid_write_63648 proc_loginuid_write 3 63648 NULL
-+mid_get_vbt_data_r10_6308 mid_get_vbt_data_r10 2 6308 NULL
-+key_tx_rx_count_read_44742 key_tx_rx_count_read 3 44742 NULL
-+ValidateDSDParamsChecksum_63654 ValidateDSDParamsChecksum 3 63654 NULL
-+pn_recvmsg_30887 pn_recvmsg 4 30887 NULL
-+rx_rx_timeout_wa_read_50204 rx_rx_timeout_wa_read 3 50204 NULL
-+hidraw_ioctl_63658 hidraw_ioctl 2 63658 NULL
-+iscsi_ping_comp_event_38263 iscsi_ping_comp_event 5 38263 NULL
-+lbs_threshold_read_21046 lbs_threshold_read 5 21046 NULL
-+tty_audit_log_47280 tty_audit_log 8 47280 NULL
-+alloc_libipw_22708 alloc_libipw 1 22708 NULL
-+fc_host_post_vendor_event_30903 fc_host_post_vendor_event 3 30903 NULL
-+vbi_read_63673 vbi_read 3 63673 NULL
-+tun_get_user_39099 tun_get_user 4 39099 NULL
-+i2o_pool_alloc_55485 i2o_pool_alloc 4 55485 NULL
-+brcmf_sdbrcm_read_control_22721 brcmf_sdbrcm_read_control 3 22721 NULL
-+read_flush_pipefs_20171 read_flush_pipefs 3 20171 NULL
-+tx_internal_desc_overflow_read_47300 tx_internal_desc_overflow_read 3 47300 NULL
-+long_retry_limit_read_59766 long_retry_limit_read 3 59766 NULL
-+nfc_hci_hcp_message_tx_14534 nfc_hci_hcp_message_tx 6 14534 NULL
-+iommu_map_mmio_space_30919 iommu_map_mmio_space 1 30919 NULL
-+ep0_write_14536 ep0_write 3 14536 NULL nohasharray
-+dataflash_read_user_otp_14536 dataflash_read_user_otp 3-2 14536 &ep0_write_14536
-+channel_type_read_47308 channel_type_read 3 47308 NULL
-+cx18_copy_buf_to_user_22735 cx18_copy_buf_to_user 4 22735 NULL
-+ax25_output_22736 ax25_output 2 22736 NULL
-+__kfifo_to_user_r_39123 __kfifo_to_user_r 3 39123 NULL
-+l2cap_send_cmd_14548 l2cap_send_cmd 4 14548 NULL
-+picolcd_debug_eeprom_read_14549 picolcd_debug_eeprom_read 3 14549 NULL
-+drm_vmalloc_dma_14550 drm_vmalloc_dma 1 14550 NULL
-+cfpkt_pad_trail_55511 cfpkt_pad_trail 2 55511 NULL nohasharray
-+tx_tx_done_int_template_read_55511 tx_tx_done_int_template_read 3 55511 &cfpkt_pad_trail_55511
-+cmtp_add_msgpart_9252 cmtp_add_msgpart 4 9252 NULL
-+xfs_iext_add_indirect_multi_32400 xfs_iext_add_indirect_multi 3 32400 NULL
-+sctp_setsockopt_rtoinfo_30941 sctp_setsockopt_rtoinfo 3 30941 NULL
-+ima_show_htable_violations_10619 ima_show_htable_violations 3 10619 NULL
-+hid_input_report_32458 hid_input_report 4 32458 NULL
-+_proc_do_string_6376 _proc_do_string 2 6376 NULL
-+osd_req_read_sg_kern_6378 osd_req_read_sg_kern 5 6378 NULL
-+mlx4_ib_alloc_fast_reg_page_list_46119 mlx4_ib_alloc_fast_reg_page_list 2 46119 NULL
-+ieee80211_if_read_dot11MeshTTL_58307 ieee80211_if_read_dot11MeshTTL 3 58307 NULL
-+alloc_ring_39151 alloc_ring 2-4 39151 NULL
-+proc_coredump_filter_read_39153 proc_coredump_filter_read 3 39153 NULL
-+create_bounce_buffer_39155 create_bounce_buffer 3 39155 NULL
-+tty_insert_flip_string_flags_30969 tty_insert_flip_string_flags 4 30969 NULL
-+asix_read_cmd_13245 asix_read_cmd 5 13245 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
-+isdn_add_channels_40905 isdn_add_channels 3 40905 NULL
-+bt_skb_alloc_6404 bt_skb_alloc 1 6404 NULL
-+setkey_14987 setkey 3 14987 NULL
-+__bio_map_kern_47379 __bio_map_kern 3 47379 NULL
-+init_list_set_39188 init_list_set 2-3 39188 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
-+trace_options_core_read_47390 trace_options_core_read 3 47390 NULL
-+ipr_change_queue_depth_6431 ipr_change_queue_depth 2 6431 NULL
-+__alloc_bootmem_node_nopanic_6432 __alloc_bootmem_node_nopanic 2 6432 NULL
-+spidev_compat_ioctl_63778 spidev_compat_ioctl 2 63778 NULL
-+add_partition_55588 add_partition 2 55588 NULL
-+lbs_host_sleep_read_31013 lbs_host_sleep_read 3 31013 NULL
-+snd_pcm_aio_read_13900 snd_pcm_aio_read 3 13900 NULL
-+depth_read_31112 depth_read 3 31112 NULL
-+sctp_manip_pkt_40620 sctp_manip_pkt 2 40620 NULL
-+macvtap_put_user_55609 macvtap_put_user 4 55609 NULL
-+ivtv_v4l2_write_39226 ivtv_v4l2_write 3 39226 NULL
-+selinux_setprocattr_55611 selinux_setprocattr 4 55611 NULL
-+profile_replace_14652 profile_replace 3 14652 NULL
-+vzalloc_47421 vzalloc 1 47421 NULL
-+mwifiex_11n_create_rx_reorder_tbl_63806 mwifiex_11n_create_rx_reorder_tbl 4 63806 NULL
-+agp_create_user_memory_62955 agp_create_user_memory 1 62955 NULL
-+send_packet_52960 send_packet 4 52960 NULL
-+batadv_tt_response_fill_table_39236 batadv_tt_response_fill_table 1 39236 NULL
-+read_file_rcstat_22854 read_file_rcstat 3 22854 NULL
-+__videobuf_copy_stream_44769 __videobuf_copy_stream 4 44769 NULL
-+rx_rx_beacon_early_term_read_21559 rx_rx_beacon_early_term_read 3 21559 NULL
-+pktgen_if_write_55628 pktgen_if_write 3 55628 NULL
-+create_attr_set_22861 create_attr_set 1 22861 NULL
-+snd_opl4_mem_proc_read_63774 snd_opl4_mem_proc_read 5 63774 NULL
-+compat_sys_mq_timedsend_31060 compat_sys_mq_timedsend 3 31060 NULL
-+__skb_cow_39254 __skb_cow 2 39254 NULL
-+lbs_failcount_read_31063 lbs_failcount_read 3 31063 NULL
-+pipeline_enc_tx_stat_fifo_int_read_14680 pipeline_enc_tx_stat_fifo_int_read 3 14680 NULL
-+dvb_dmxdev_set_buffer_size_55643 dvb_dmxdev_set_buffer_size 2 55643 NULL
-+tsi148_master_set_14685 tsi148_master_set 4 14685 NULL
-+ath6kl_wmi_set_appie_cmd_39266 ath6kl_wmi_set_appie_cmd 5 39266 NULL
-+probe_bios_17467 probe_bios 1 17467 NULL
-+vmw_execbuf_process_22885 vmw_execbuf_process 5 22885 NULL
-+ttm_bo_ioremap_31082 ttm_bo_ioremap 2-3 31082 NULL
-+mei_read_6507 mei_read 3 6507 NULL
-+lpfc_idiag_queinfo_read_55662 lpfc_idiag_queinfo_read 3 55662 NULL
-+mdc800_device_read_22896 mdc800_device_read 3 22896 NULL
-+rx_filter_protection_filter_read_39282 rx_filter_protection_filter_read 3 39282 NULL
-+sctp_setsockopt_context_31091 sctp_setsockopt_context 3 31091 NULL
-+il_dbgfs_tx_queue_read_55668 il_dbgfs_tx_queue_read 3 55668 NULL
-+tpm_read_50344 tpm_read 3 50344 NULL
-+newpart_47485 newpart 6 47485 NULL
-+get_info_55681 get_info 3 55681 NULL
-+compat_sys_get_mempolicy_31109 compat_sys_get_mempolicy 3 31109 NULL
-+core_sys_select_47494 core_sys_select 1 47494 NULL
-+read_file_disable_ani_6536 read_file_disable_ani 3 6536 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
-+init_map_ipmac_63896 init_map_ipmac 3-4 63896 NULL
-+nfs4_realloc_slot_table_22859 nfs4_realloc_slot_table 2 22859 NULL
-+fb_alloc_cmap_6554 fb_alloc_cmap 2 6554 NULL
-+xhci_alloc_stream_info_63902 xhci_alloc_stream_info 3 63902 NULL
-+__videobuf_alloc_uncached_55711 __videobuf_alloc_uncached 1 55711 NULL
-+rx_rx_cmplt_read_14753 rx_rx_cmplt_read 3 14753 NULL
-+nfc_hci_send_cmd_55714 nfc_hci_send_cmd 5 55714 NULL
-+pcpu_mem_zalloc_22948 pcpu_mem_zalloc 1 22948 NULL
-+filter_read_61692 filter_read 3 61692 NULL
-+mtdswap_init_55719 mtdswap_init 2 55719 NULL
-+rx_rx_phy_hdr_read_20950 rx_rx_phy_hdr_read 3 20950 NULL
-+a4t_cs_init_27734 a4t_cs_init 3 27734 NULL
-+debugfs_read_62535 debugfs_read 3 62535 NULL
-+w9966_v4l_read_31148 w9966_v4l_read 3 31148 NULL
-+process_vm_rw_47533 process_vm_rw 3-5 47533 NULL
-+divas_write_63901 divas_write 3 63901 NULL
-+alloc_sglist_22960 alloc_sglist 1-3-2 22960 NULL
-+caif_seqpkt_sendmsg_22961 caif_seqpkt_sendmsg 4 22961 NULL
-+cfpkt_split_47541 cfpkt_split 2 47541 NULL
-+__copy_from_user_nocache_39351 __copy_from_user_nocache 3 39351 NULL
-+btmrvl_pscmd_read_24308 btmrvl_pscmd_read 3 24308 NULL
-+__iio_allocate_kfifo_55738 __iio_allocate_kfifo 2-3 55738 NULL
-+ipw_write_59807 ipw_write 3 59807 NULL
-+sta_dev_read_14782 sta_dev_read 3 14782 NULL
-+tipc_send2port_63935 tipc_send2port 5 63935 NULL
-+do_write_log_from_user_39362 do_write_log_from_user 3 39362 NULL
-+ch_do_scsi_31171 ch_do_scsi 4 31171 NULL
-+afs_send_simple_reply_63940 afs_send_simple_reply 3 63940 NULL
-+__team_options_register_63941 __team_options_register 3 63941 NULL
-+cycx_setup_47562 cycx_setup 4 47562 NULL
-+remote_settings_file_write_22987 remote_settings_file_write 3 22987 NULL
-+ext4_kvmalloc_14796 ext4_kvmalloc 1 14796 NULL
-+set_local_name_55757 set_local_name 4 55757 NULL
-+v4l2_ctrl_new_std_menu_6221 v4l2_ctrl_new_std_menu 4 6221 NULL
-+input_mt_init_slots_31183 input_mt_init_slots 2 31183 NULL
-+btrfs_init_new_buffer_55761 btrfs_init_new_buffer 4 55761 NULL
-+read_ldt_47570 read_ldt 2 47570 NULL
-+regmap_name_read_file_39379 regmap_name_read_file 3 39379 NULL
-+ps_poll_ps_poll_utilization_read_39383 ps_poll_ps_poll_utilization_read 3 39383 NULL
-+acpi_ex_system_memory_space_handler_31192 acpi_ex_system_memory_space_handler 2 31192 NULL
-+scsi_init_shared_tag_map_59812 scsi_init_shared_tag_map 2 59812 NULL
-+module_alloc_update_bounds_rw_63233 module_alloc_update_bounds_rw 1 63233 NULL
-+ecryptfs_filldir_6622 ecryptfs_filldir 3 6622 NULL
-+drm_ht_create_18853 drm_ht_create 2 18853 NULL
-+mtdchar_readoob_31200 mtdchar_readoob 4 31200 NULL
-+qlcnic_alloc_msix_entries_46160 qlcnic_alloc_msix_entries 2 46160 NULL
-+ieee80211_authentication_req_63973 ieee80211_authentication_req 3 63973 NULL
-+__btrfs_free_reserved_extent_31207 __btrfs_free_reserved_extent 2 31207 NULL
-+conf_read_55786 conf_read 3 55786 NULL
-+do_tune_cpucache_14828 do_tune_cpucache 2 14828 NULL
-+rx_defrag_decrypt_failed_read_41411 rx_defrag_decrypt_failed_read 3 41411 NULL
-+viafb_dvp0_proc_write_23023 viafb_dvp0_proc_write 3 23023 NULL
-+virtscsi_alloc_tgt_6643 virtscsi_alloc_tgt 2 6643 NULL
-+ext4_kvzalloc_47605 ext4_kvzalloc 1 47605 NULL
-+user_power_read_39414 user_power_read 3 39414 NULL
-+uwb_rc_neh_grok_event_55799 uwb_rc_neh_grok_event 3 55799 NULL
-+uea_request_47613 uea_request 4 47613 NULL
-+cache_read_pipefs_47615 cache_read_pipefs 3 47615 NULL
-+read_file_frameerrors_64001 read_file_frameerrors 3 64001 NULL
-+alloc_agpphysmem_i8xx_39427 alloc_agpphysmem_i8xx 1 39427 NULL
-+btrfs_find_create_tree_block_55812 btrfs_find_create_tree_block 3 55812 NULL
-+subdev_ioctl_28417 subdev_ioctl 2 28417 NULL
-+lcd_write_14857 lcd_write 3 14857 NULL nohasharray
-+__krealloc_14857 __krealloc 2 14857 &lcd_write_14857
-+_create_sg_bios_31244 _create_sg_bios 4 31244 NULL
-+get_user_cpu_mask_14861 get_user_cpu_mask 2 14861 NULL
-+kmemdup_64015 kmemdup 2 64015 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
-+tcf_csum_skb_nextlayer_64025 tcf_csum_skb_nextlayer 3 64025 NULL
-+oz_events_read_47535 oz_events_read 3 47535 NULL
-+sb16_copy_from_user_55836 sb16_copy_from_user 10-7-6 55836 NULL
-+frequency_read_64031 frequency_read 3 64031 NULL nohasharray
-+resize_async_buffer_64031 resize_async_buffer 4 64031 &frequency_read_64031
-+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
-+update_pmkid_2481 update_pmkid 4 2481 NULL
-+sriov_enable_migration_14889 sriov_enable_migration 2 14889 NULL
-+sep_lli_table_secure_dma_64042 sep_lli_table_secure_dma 2-3 64042 NULL
-+ps_pspoll_max_apturn_read_6699 ps_pspoll_max_apturn_read 3 6699 NULL
-+acpi_os_allocate_14892 acpi_os_allocate 1 14892 NULL
-+hysdn_rx_netpkt_16136 hysdn_rx_netpkt 3 16136 NULL
-+bnad_debugfs_write_regrd_6706 bnad_debugfs_write_regrd 3 6706 NULL
-+rt2x00debug_write_eeprom_23091 rt2x00debug_write_eeprom 3 23091 NULL
-+mpeg_read_6708 mpeg_read 3 6708 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
-+ts_read_44687 ts_read 3 44687 NULL
-+pipe_iov_copy_from_user_23102 pipe_iov_copy_from_user 3 23102 NULL
-+bt_skb_send_alloc_6581 bt_skb_send_alloc 2 6581 NULL
-+dgram_recvmsg_23104 dgram_recvmsg 4 23104 NULL
-+gigaset_if_receive_4861 gigaset_if_receive 3 4861 NULL
-+video_proc_write_6724 video_proc_write 3 6724 NULL
-+xlog_find_verify_log_record_18870 xlog_find_verify_log_record 2 18870 NULL
-+mwl8k_cmd_set_beacon_23110 mwl8k_cmd_set_beacon 4 23110 NULL
-+uvc_simplify_fraction_31303 uvc_simplify_fraction 3 31303 NULL
-+ieee80211_if_read_peer_45233 ieee80211_if_read_peer 3 45233 NULL
-+qla4xxx_alloc_work_44813 qla4xxx_alloc_work 2 44813 NULL
-+drm_mode_create_tv_properties_23122 drm_mode_create_tv_properties 2 23122 NULL
-+pm_qos_power_read_55891 pm_qos_power_read 3 55891 NULL
-+packet_recvmsg_47700 packet_recvmsg 4 47700 NULL
-+command_file_write_31318 command_file_write 3 31318 NULL
-+gspca_dev_probe2_59833 gspca_dev_probe2 4 59833 NULL
-+lbs_highrssi_read_64089 lbs_highrssi_read 3 64089 NULL
-+i915_cache_sharing_read_24775 i915_cache_sharing_read 3 24775 NULL
-+tx_frag_key_not_found_read_22971 tx_frag_key_not_found_read 3 22971 NULL
-+unix_dgram_recvmsg_14952 unix_dgram_recvmsg 4 14952 NULL
-+ca91cx42_master_set_23146 ca91cx42_master_set 4 23146 NULL
-+videobuf_read_stream_14956 videobuf_read_stream 3 14956 NULL
-+ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime_1589 ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime 3 1589 NULL
-+ath6kl_debug_roam_tbl_event_5224 ath6kl_debug_roam_tbl_event 3 5224 NULL
-+sfi_check_table_6772 sfi_check_table 1 6772 NULL
-+bits_to_user_47733 bits_to_user 2-3 47733 NULL
-+int_proc_write_39542 int_proc_write 3 39542 NULL
-+netxen_alloc_sds_rings_13417 netxen_alloc_sds_rings 2 13417 NULL
-+read_file_ani_23161 read_file_ani 3 23161 NULL
-+carl9170_debugfs_read_47738 carl9170_debugfs_read 3 47738 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
-+init_bch_64130 init_bch 1-2 64130 NULL
-+ioremap_23172 ioremap 1-2 23172 NULL
-+mvumi_alloc_mem_resource_47750 mvumi_alloc_mem_resource 3 47750 NULL
-+hdlcdrv_register_6792 hdlcdrv_register 2 6792 NULL
-+usblp_write_23178 usblp_write 3 23178 NULL
-+sel_read_policy_55947 sel_read_policy 3 55947 NULL
-+alloc_sched_domains_47756 alloc_sched_domains 1 47756 NULL
-+vb2_vmalloc_get_userptr_31374 vb2_vmalloc_get_userptr 3 31374 NULL
-+tx_tx_done_data_read_6799 tx_tx_done_data_read 3 6799 NULL
-+datablob_format_39571 datablob_format 2 39571 NULL nohasharray
-+ieee80211_if_read_fwded_mcast_39571 ieee80211_if_read_fwded_mcast 3 39571 &datablob_format_39571
-+fix_unclean_leb_23188 fix_unclean_leb 3 23188 NULL
-+simple_read_from_buffer_55957 simple_read_from_buffer 2-5 55957 NULL
-+dlfb_ops_write_64150 dlfb_ops_write 3 64150 NULL
-+i915_wedged_write_47771 i915_wedged_write 3 47771 NULL
-+tx_tx_imm_resp_read_55964 tx_tx_imm_resp_read 3 55964 NULL
-+tm6000_i2c_send_regs_20250 tm6000_i2c_send_regs 5 20250 NULL
-+error_error_numll_frame_cts_start_read_47781 error_error_numll_frame_cts_start_read 3 47781 NULL
-+ip_ufo_append_data_12775 ip_ufo_append_data 6-8-7 12775 NULL
-+alloc_session_64171 alloc_session 1-2 64171 NULL
-+rvmalloc_46873 rvmalloc 1 46873 NULL
-+compat_udpv6_setsockopt_42981 compat_udpv6_setsockopt 5 42981 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
-+W6692_empty_Bfifo_47804 W6692_empty_Bfifo 2 47804 NULL
-+xlog_get_bp_23229 xlog_get_bp 2 23229 NULL
-+snd_cs4281_BA0_read_6847 snd_cs4281_BA0_read 5 6847 NULL
-+nfs_idmap_get_key_39616 nfs_idmap_get_key 2 39616 NULL
-+rxrpc_client_sendmsg_23236 rxrpc_client_sendmsg 5 23236 NULL
-+TSS_checkhmac1_31429 TSS_checkhmac1 5 31429 NULL
-+ttm_object_device_init_10321 ttm_object_device_init 2 10321 NULL
-+compat_process_vm_rw_22254 compat_process_vm_rw 3-5 22254 NULL
-+ping_recvmsg_25597 ping_recvmsg 4 25597 NULL
-+macvtap_recvmsg_63949 macvtap_recvmsg 4 63949 NULL
-+ceph_msgpool_init_34599 ceph_msgpool_init 4 34599 NULL
-+cld_pipe_downcall_15058 cld_pipe_downcall 3 15058 NULL
-+ssb_bus_pcmciabus_register_56020 ssb_bus_pcmciabus_register 3 56020 NULL
-+fm_send_cmd_39639 fm_send_cmd 5 39639 NULL
-+ieee80211_if_read_uapsd_max_sp_len_15067 ieee80211_if_read_uapsd_max_sp_len 3 15067 NULL
-+opera1_xilinx_rw_31453 opera1_xilinx_rw 5 31453 NULL
-+nfs4_write_cached_acl_15070 nfs4_write_cached_acl 4 15070 NULL
-+ntfs_copy_from_user_15072 ntfs_copy_from_user 3-5 15072 NULL
-+sctp_recvmsg_23265 sctp_recvmsg 4 23265 NULL
-+snd_rme32_capture_copy_39653 snd_rme32_capture_copy 5 39653 NULL
-+btmrvl_hscmd_write_27089 btmrvl_hscmd_write 3 27089 NULL
-+raw_seticmpfilter_6888 raw_seticmpfilter 3 6888 NULL
-+prism2_info_hostscanresults_39657 prism2_info_hostscanresults 3 39657 NULL
-+tty_prepare_flip_string_39955 tty_prepare_flip_string 3 39955 NULL
-+dlmfs_file_write_6892 dlmfs_file_write 3 6892 NULL
-+__videobuf_alloc_vb_5665 __videobuf_alloc_vb 1 5665 NULL
-+kvm_read_guest_cached_39666 kvm_read_guest_cached 4 39666 NULL
-+redrat3_transmit_ir_64244 redrat3_transmit_ir 3 64244 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
-+alg_setkey_31485 alg_setkey 3 31485 NULL
-+do_surface_dirty_sou_39678 do_surface_dirty_sou 7 39678 NULL
-+spi_show_regs_6911 spi_show_regs 3 6911 NULL nohasharray
-+proc_sessionid_read_6911 proc_sessionid_read 3 6911 &spi_show_regs_6911
-+qsfp_2_read_31491 qsfp_2_read 3 31491 NULL
-+ieee80211_rx_mgmt_probe_resp_6918 ieee80211_rx_mgmt_probe_resp 3 6918 NULL
-+__alloc_bootmem_31498 __alloc_bootmem 1 31498 NULL
-+pci_iomap_47575 pci_iomap 3 47575 NULL
-+ieee80211_send_probe_req_6924 ieee80211_send_probe_req 6-4 6924 NULL
-+cache_do_downcall_6926 cache_do_downcall 3 6926 NULL
-+qla2x00_handle_queue_full_24365 qla2x00_handle_queue_full 2 24365 NULL
-+keyctl_instantiate_key_common_47889 keyctl_instantiate_key_common 4 47889 NULL
-+nl_pid_hash_zalloc_23314 nl_pid_hash_zalloc 1 23314 NULL
-+ubifs_recover_log_leb_12079 ubifs_recover_log_leb 3 12079 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
-+osd_req_read_sg_47905 osd_req_read_sg 5 47905 NULL
-+sta_agg_status_write_45164 sta_agg_status_write 3 45164 NULL
-+pscsi_get_bio_56103 pscsi_get_bio 1 56103 NULL
-+timeout_read_47915 timeout_read 3 47915 NULL
-+hidraw_write_31536 hidraw_write 3 31536 NULL
-+error_error_bar_retry_read_64305 error_error_bar_retry_read 3 64305 NULL
-+page_readlink_23346 page_readlink 3 23346 NULL
-+videobuf_dma_init_kernel_6963 videobuf_dma_init_kernel 3 6963 NULL
-+comedi_write_47926 comedi_write 3 47926 NULL
-+packet_alloc_skb_62602 packet_alloc_skb 2-5-4 62602 NULL
-+kmem_zalloc_large_56128 kmem_zalloc_large 1 56128 NULL
-+ath6kl_wmi_add_wow_pattern_cmd_12842 ath6kl_wmi_add_wow_pattern_cmd 4 12842 NULL
-+sisusbcon_clear_64329 sisusbcon_clear 3-5-4 64329 NULL
-+sel_read_handle_status_56139 sel_read_handle_status 3 56139 NULL
-+nf_nat_ftp_47948 nf_nat_ftp 5 47948 NULL
-+request_key_async_6990 request_key_async 4 6990 NULL
-+ts_write_64336 ts_write 3 64336 NULL
-+handle_response_55951 handle_response 5 55951 NULL
-+usbtmc_write_64340 usbtmc_write 3 64340 NULL
-+tx_frag_tkip_called_read_31575 tx_frag_tkip_called_read 3 31575 NULL
-+r871x_set_wpa_ie_7000 r871x_set_wpa_ie 3 7000 NULL
-+iscsi_create_endpoint_15193 iscsi_create_endpoint 1 15193 NULL
-+ip_nat_sdp_media_23386 ip_nat_sdp_media 8 23386 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
-+dn_alloc_skb_6631 dn_alloc_skb 2 6631 NULL
-+llc_alloc_frame_64366 llc_alloc_frame 4 64366 NULL
-+wlc_phy_loadsampletable_nphy_64367 wlc_phy_loadsampletable_nphy 3 64367 NULL
-+bfad_debugfs_write_regrd_15218 bfad_debugfs_write_regrd 3 15218 NULL
-+tx_frag_need_fragmentation_read_50153 tx_frag_need_fragmentation_read 3 50153 NULL
-+iscsi_change_queue_depth_23416 iscsi_change_queue_depth 2 23416 NULL
-+ib_umad_write_47993 ib_umad_write 3 47993 NULL
-+ilo_write_64378 ilo_write 3 64378 NULL
-+iwl_dbgfs_ucode_tx_stats_read_31611 iwl_dbgfs_ucode_tx_stats_read 3 31611 NULL
-+vzalloc_node_23424 vzalloc_node 1 23424 NULL
-+arvo_sysfs_read_31617 arvo_sysfs_read 6 31617 NULL
-+ipath_get_base_info_7043 ipath_get_base_info 3 7043 NULL
-+variax_alloc_sysex_buffer_15237 variax_alloc_sysex_buffer 3 15237 NULL
-+lpfc_idiag_ctlacc_read_33943 lpfc_idiag_ctlacc_read 3 33943 NULL
-+ffs_epfile_write_48014 ffs_epfile_write 3 48014 NULL
-+sctp_make_op_error_7057 sctp_make_op_error 5-6 7057 NULL
-+ir_lirc_transmit_ir_64403 ir_lirc_transmit_ir 3 64403 NULL
-+pidlist_allocate_64404 pidlist_allocate 1 64404 NULL
-+videobuf_read_one_31637 videobuf_read_one 3 31637 NULL
-+rx_hdr_overflow_read_64407 rx_hdr_overflow_read 3 64407 NULL
-+hidraw_send_report_23449 hidraw_send_report 3 23449 NULL
-+beiscsi_process_async_pdu_39834 beiscsi_process_async_pdu 7 39834 NULL
-+sctp_tsnmap_mark_35929 sctp_tsnmap_mark 2 35929 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
-+pod_alloc_sysex_buffer_31651 pod_alloc_sysex_buffer 3 31651 NULL
-+cp210x_get_config_56229 cp210x_get_config 4 56229 NULL
-+pppoe_sendmsg_48039 pppoe_sendmsg 4 48039 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
-+ping_sendmsg_3782 ping_sendmsg 4 3782 NULL
-+beacon_interval_read_7091 beacon_interval_read 3 7091 NULL
-+__lgread_31668 __lgread 4 31668 NULL
-+scrub_setup_recheck_block_56245 scrub_setup_recheck_block 3-4 56245 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
-+teiup_create_43201 teiup_create 3 43201 NULL
-+atm_get_addr_31221 atm_get_addr 3 31221 NULL
-+ieee80211_if_read_element_ttl_18869 ieee80211_if_read_element_ttl 3 18869 NULL
-+_usb_writeN_sync_31682 _usb_writeN_sync 4 31682 NULL
-+pipeline_enc_rx_stat_fifo_int_read_7107 pipeline_enc_rx_stat_fifo_int_read 3 7107 NULL
-+forced_ps_read_31685 forced_ps_read 3 31685 NULL
-+event_filter_read_23494 event_filter_read 3 23494 NULL
-+tpm_tis_init_15304 tpm_tis_init 2-3 15304 NULL
-+fcoe_ctlr_send_keep_alive_15308 fcoe_ctlr_send_keep_alive 3 15308 NULL
-+pipeline_tcp_tx_stat_fifo_int_read_32589 pipeline_tcp_tx_stat_fifo_int_read 3 32589 NULL
-+sys_setsockopt_35320 sys_setsockopt 5 35320 NULL
-+il4965_ucode_general_stats_read_56277 il4965_ucode_general_stats_read 3 56277 NULL
-+audit_log_n_string_31705 audit_log_n_string 3 31705 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
-+read_file_modal_eeprom_39909 read_file_modal_eeprom 3 39909 NULL
-+ipv6_recv_rxpmtu_7142 ipv6_recv_rxpmtu 3 7142 NULL
-+dvb_aplay_56296 dvb_aplay 3 56296 NULL
-+gen_pool_add_virt_39913 gen_pool_add_virt 4 39913 NULL
-+dw210x_op_rw_39915 dw210x_op_rw 6 39915 NULL
-+p54_parse_rssical_64493 p54_parse_rssical 3 64493 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
-+ath6kl_wmi_send_probe_response_cmd_31728 ath6kl_wmi_send_probe_response_cmd 6 31728 NULL
-+exofs_read_kern_39921 exofs_read_kern 6 39921 NULL nohasharray
-+oom_score_adj_read_39921 oom_score_adj_read 3 39921 &exofs_read_kern_39921
-+btrfs_insert_delayed_dir_index_63720 btrfs_insert_delayed_dir_index 4 63720 NULL
-+read_file_beacon_32595 read_file_beacon 3 32595 NULL
-+remove_uuid_64505 remove_uuid 4 64505 NULL
-+shmem_pwrite_slow_31741 shmem_pwrite_slow 3 31741 NULL
-+NCR_700_change_queue_depth_31742 NCR_700_change_queue_depth 2 31742 NULL
-+oom_adjust_read_25127 oom_adjust_read 3 25127 NULL
-+acpi_ut_create_string_object_15360 acpi_ut_create_string_object 1 15360 NULL
-+pipeline_pre_to_defrag_swi_read_56321 pipeline_pre_to_defrag_swi_read 3 56321 NULL
-+dbg_leb_change_23555 dbg_leb_change 4 23555 NULL
-+vmw_framebuffer_surface_dirty_48132 vmw_framebuffer_surface_dirty 6 48132 NULL
-+bcm_char_read_31750 bcm_char_read 3 31750 NULL
-+opera1_usb_i2c_msgxfer_64521 opera1_usb_i2c_msgxfer 4 64521 NULL
-+journal_init_revoke_table_56331 journal_init_revoke_table 1 56331 NULL
-+set_discoverable_48141 set_discoverable 4 48141 NULL
-+compat_sys_process_vm_readv_15374 compat_sys_process_vm_readv 3-5 15374 NULL
-+ses_send_diag_64527 ses_send_diag 4 64527 NULL
-+tcp_match_skb_to_sack_23568 tcp_match_skb_to_sack 4 23568 NULL
-+snd_rawmidi_read_56337 snd_rawmidi_read 3 56337 NULL
-+fq_codel_zalloc_15378 fq_codel_zalloc 1 15378 NULL
-+aac_srcv_ioremap_6659 aac_srcv_ioremap 2 6659 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
-+prctl_set_mm_64538 prctl_set_mm 3 64538 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
-+drm_compat_ioctl_51717 drm_compat_ioctl 2 51717 NULL
-+__alloc_objio_seg_7203 __alloc_objio_seg 1 7203 NULL
-+cifs_spnego_key_instantiate_23588 cifs_spnego_key_instantiate 3 23588 NULL
-+dma_push_rx_39973 dma_push_rx 2 39973 NULL
-+regmap_register_patch_21681 regmap_register_patch 3 21681 NULL
-+broadsheetfb_write_39976 broadsheetfb_write 3 39976 NULL
-+cfpkt_create_pfx_23594 cfpkt_create_pfx 1-2 23594 NULL
-+pipeline_csum_to_rx_xfer_swi_read_15403 pipeline_csum_to_rx_xfer_swi_read 3 15403 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
-+alloc_dummy_extent_buffer_56374 alloc_dummy_extent_buffer 2 56374 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
-+alloc_cc770dev_48186 alloc_cc770dev 1 48186 NULL
-+init_ipath_48187 init_ipath 1 48187 NULL
-+isr_rx_procs_read_31804 isr_rx_procs_read 3 31804 NULL
-+__videobuf_copy_to_user_15423 __videobuf_copy_to_user 4 15423 NULL
-+tx_tx_burst_programmed_read_20320 tx_tx_burst_programmed_read 3 20320 NULL
-+sys32_ipc_7238 sys32_ipc 3 7238 NULL
-+sta_last_signal_read_31818 sta_last_signal_read 3 31818 NULL
-+rtllib_alloc_txb_21687 rtllib_alloc_txb 1-2 21687 NULL
-+dvb_ca_en50221_io_write_43533 dvb_ca_en50221_io_write 3 43533 NULL
-+ddp_ppod_write_idata_25610 ddp_ppod_write_idata 5 25610 NULL
-+ocfs2_control_read_56405 ocfs2_control_read 3 56405 NULL
-+ivtvfb_write_40023 ivtvfb_write 3 40023 NULL
-+hpsa_change_queue_depth_15449 hpsa_change_queue_depth 2 15449 NULL
-+tcp_write_xmit_64602 tcp_write_xmit 2 64602 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 1-3 56416 &__get_vm_area_caller_56416
-+store_msg_56417 store_msg 3 56417 NULL
-+pppol2tp_sendmsg_56420 pppol2tp_sendmsg 4 56420 NULL
-+sel_write_enforce_48998 sel_write_enforce 3 48998 NULL
-+datablob_hmac_append_40038 datablob_hmac_append 3 40038 NULL
-+read_file_recv_48232 read_file_recv 3 48232 NULL
-+ps_poll_upsd_utilization_read_28519 ps_poll_upsd_utilization_read 3 28519 NULL
-+r128_compat_ioctl_39250 r128_compat_ioctl 2 39250 NULL nohasharray
-+pwr_cont_miss_bcns_spread_read_39250 pwr_cont_miss_bcns_spread_read 3 39250 &r128_compat_ioctl_39250
-+fanotify_write_64623 fanotify_write 3 64623 NULL
-+sys_add_key_61288 sys_add_key 4 61288 NULL
-+rx_rate_rx_frames_per_rates_read_7282 rx_rate_rx_frames_per_rates_read 3 7282 NULL
-+fl_create_56435 fl_create 5 56435 NULL
-+gnttab_map_56439 gnttab_map 2 56439 NULL
-+nfsctl_transaction_read_48250 nfsctl_transaction_read 3 48250 NULL
-+event_rx_pool_read_25792 event_rx_pool_read 3 25792 NULL
-+cx231xx_init_isoc_56453 cx231xx_init_isoc 2-3 56453 NULL
-+drm_mode_crtc_set_gamma_size_31881 drm_mode_crtc_set_gamma_size 2 31881 NULL
-+set_connectable_56458 set_connectable 4 56458 NULL
-+a2mp_chan_alloc_skb_cb_27159 a2mp_chan_alloc_skb_cb 2 27159 NULL
-+cache_write_pipefs_48270 cache_write_pipefs 3 48270 NULL
-+add_port_54941 add_port 2 54941 NULL
-+osd_req_list_partition_objects_56464 osd_req_list_partition_objects 5 56464 NULL
-+cx18_read_23699 cx18_read 3 23699 NULL
-+tlbflush_read_file_64661 tlbflush_read_file 3 64661 NULL
-+ieee80211_if_read_last_beacon_31257 ieee80211_if_read_last_beacon 3 31257 NULL
-+manip_pkt_7741 manip_pkt 3 7741 NULL
-+rx_rx_out_of_mpdu_nodes_read_64668 rx_rx_out_of_mpdu_nodes_read 3 64668 NULL
-+ddb_output_write_31902 ddb_output_write 3 31902 NULL
-+sock_alloc_send_skb_23720 sock_alloc_send_skb 2 23720 NULL
-+wep_decrypt_fail_read_58567 wep_decrypt_fail_read 3 58567 NULL
-+lpfc_idiag_extacc_read_48301 lpfc_idiag_extacc_read 3 48301 NULL
-+p9_check_zc_errors_15534 p9_check_zc_errors 4 15534 NULL
-+new_dir_31919 new_dir 3 31919 NULL
-+kmem_alloc_31920 kmem_alloc 1 31920 NULL
-+timblogiw_read_48305 timblogiw_read 3 48305 NULL
-+mgmt_control_7349 mgmt_control 3 7349 NULL
-+hash_setkey_48310 hash_setkey 3 48310 NULL
-+ql_process_mac_rx_page_15543 ql_process_mac_rx_page 4 15543 NULL
-+ieee80211_if_read_bssid_35161 ieee80211_if_read_bssid 3 35161 NULL
-+sctp_setsockopt_delayed_ack_40129 sctp_setsockopt_delayed_ack 3 40129 NULL
-+cfg80211_connect_result_56515 cfg80211_connect_result 4-6 56515 NULL
-+rx_rx_dropped_frame_read_23748 rx_rx_dropped_frame_read 3 23748 NULL
-+iov_iter_copy_from_user_31942 iov_iter_copy_from_user 4 31942 NULL
-+ql_process_mac_rx_skb_6689 ql_process_mac_rx_skb 4 6689 NULL
-+ieee80211_if_read_dot11MeshHWMPactivePathTimeout_7368 ieee80211_if_read_dot11MeshHWMPactivePathTimeout 3 7368 NULL
-+pwr_elp_enter_read_5324 pwr_elp_enter_read 3 5324 NULL
-+dapm_bias_read_file_64715 dapm_bias_read_file 3 64715 NULL
-+vb2_write_31948 vb2_write 3 31948 NULL
-+cfg80211_roamed_32632 cfg80211_roamed 5-7 32632 NULL
-+bnx2fc_process_unsol_compl_15576 bnx2fc_process_unsol_compl 2 15576 NULL
-+l1oip_socket_recv_56537 l1oip_socket_recv 6 56537 NULL
-+ip_options_get_56538 ip_options_get 4 56538 NULL
-+ep0_read_38095 ep0_read 3 38095 NULL
-+copy_from_user_toio_31966 copy_from_user_toio 3 31966 NULL
-+pt_write_40159 pt_write 3 40159 NULL
-+vme_user_write_15587 vme_user_write 3 15587 NULL
-+sl_change_mtu_7396 sl_change_mtu 2 7396 NULL
-+ceph_copy_page_vector_to_user_31270 ceph_copy_page_vector_to_user 3-4 31270 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
-+alloc_apertures_56561 alloc_apertures 1 56561 NULL
-+iscsi_complete_pdu_48372 iscsi_complete_pdu 4 48372 NULL
-+drm_property_create_blob_7414 drm_property_create_blob 2 7414 NULL
-+tx_frag_init_called_read_48377 tx_frag_init_called_read 3 48377 NULL
-+rs_sta_dbgfs_stats_table_read_56573 rs_sta_dbgfs_stats_table_read 3 56573 NULL
-+debug_debug2_read_30526 debug_debug2_read 3 30526 NULL
-+compat_fillonedir_15620 compat_fillonedir 3 15620 NULL
-+ipr_alloc_ucode_buffer_40199 ipr_alloc_ucode_buffer 1 40199 NULL
-+dsp_cmx_send_member_15625 dsp_cmx_send_member 2 15625 NULL
-+portcntrs_2_read_56586 portcntrs_2_read 3 56586 NULL
-+system_enable_read_25815 system_enable_read 3 25815 NULL
-+allocate_probes_40204 allocate_probes 1 40204 NULL
-+sd_alloc_ctl_entry_29708 sd_alloc_ctl_entry 1 29708 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
-+rx_filter_ibss_filter_read_50167 rx_filter_ibss_filter_read 3 50167 NULL
-+ip_options_get_alloc_7448 ip_options_get_alloc 1 7448 NULL
-+tomoyo_scan_bprm_15642 tomoyo_scan_bprm 2-4 15642 NULL nohasharray
-+pipeline_hs_tx_stat_fifo_int_read_15642 pipeline_hs_tx_stat_fifo_int_read 3 15642 &tomoyo_scan_bprm_15642
-+ieee80211_if_read_rc_rateidx_mask_5ghz_27183 ieee80211_if_read_rc_rateidx_mask_5ghz 3 27183 NULL
-+au0828_v4l2_read_40220 au0828_v4l2_read 3 40220 NULL
-+lbs_debugfs_write_48413 lbs_debugfs_write 3 48413 NULL
-+fs_path_add_15648 fs_path_add 3 15648 NULL
-+event_filter_write_56609 event_filter_write 3 56609 NULL
-+xfs_buf_read_map_40226 xfs_buf_read_map 3 40226 NULL
-+ms_rw_multi_sector_7459 ms_rw_multi_sector 3-4 7459 NULL
-+xsd_read_15653 xsd_read 3 15653 NULL
-+pwr_tx_without_ps_read_48423 pwr_tx_without_ps_read 3 48423 NULL
-+p54_init_common_23850 p54_init_common 1 23850 NULL
-+ubi_more_leb_change_data_63534 ubi_more_leb_change_data 4 63534 NULL
-+vmw_cursor_update_dmabuf_32045 vmw_cursor_update_dmabuf 3-4 32045 NULL
-+sys_sched_setaffinity_32046 sys_sched_setaffinity 2 32046 NULL
-+megaraid_change_queue_depth_64815 megaraid_change_queue_depth 2 64815 NULL
-+ecryptfs_send_miscdev_64816 ecryptfs_send_miscdev 2 64816 NULL
-+copy_nodes_to_user_63807 copy_nodes_to_user 2 63807 NULL
-+unifi_read_14899 unifi_read 3 14899 NULL
-+usbdux_attach_common_51764 usbdux_attach_common 4 51764 NULL nohasharray
-+ioremap_prot_51764 ioremap_prot 1-2 51764 &usbdux_attach_common_51764
-+compat_sys_msgrcv_7482 compat_sys_msgrcv 2 7482 NULL
-+pep_alloc_skb_46303 pep_alloc_skb 3 46303 NULL
-+brcmf_usb_dl_cmd_53130 brcmf_usb_dl_cmd 4 53130 NULL
-+proc_scsi_devinfo_write_32064 proc_scsi_devinfo_write 3 32064 NULL
-+pwr_missing_bcns_read_25824 pwr_missing_bcns_read 3 25824 NULL
-+evdev_do_ioctl_24459 evdev_do_ioctl 2 24459 NULL
-+ieee80211_if_read_dot11MeshMaxPeerLinks_23878 ieee80211_if_read_dot11MeshMaxPeerLinks 3 23878 NULL
-+uvc_debugfs_stats_read_56651 uvc_debugfs_stats_read 3 56651 NULL
-+ieee80211_if_read_channel_type_23884 ieee80211_if_read_channel_type 3 23884 NULL
-+tx_frag_mpdu_alloc_failed_read_41167 tx_frag_mpdu_alloc_failed_read 3 41167 NULL
-+tun_recvmsg_48463 tun_recvmsg 4 48463 NULL
-+uf_sme_queue_message_15697 uf_sme_queue_message 3 15697 NULL
-+gdth_search_isa_58595 gdth_search_isa 1 58595 NULL
-+sdhci_alloc_host_7509 sdhci_alloc_host 2 7509 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
-+altera_set_dr_pre_64862 altera_set_dr_pre 2 64862 NULL
-+array_zalloc_7519 array_zalloc 1-2 7519 NULL
-+shmem_setxattr_55867 shmem_setxattr 4 55867 NULL
-+ath6kl_fwlog_read_32101 ath6kl_fwlog_read 3 32101 NULL
-+krealloc_14908 krealloc 2 14908 NULL
-+cifs_idmap_key_instantiate_54503 cifs_idmap_key_instantiate 3 54503 NULL
-+snd_gus_dram_read_56686 snd_gus_dram_read 4 56686 NULL
-+ubi_io_write_data_40305 ubi_io_write_data 4-5 40305 NULL
-+send_control_msg_48498 send_control_msg 6 48498 NULL
-+ps_poll_upsd_timeouts_read_36755 ps_poll_upsd_timeouts_read 3 36755 NULL
-+mlx4_en_create_tx_ring_48501 mlx4_en_create_tx_ring 4 48501 NULL
-+ffs_epfile_io_64886 ffs_epfile_io 3 64886 NULL
-+request_key_async_with_auxdata_46624 request_key_async_with_auxdata 4 46624 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
-+uvc_alloc_entity_20836 uvc_alloc_entity 3-4 20836 NULL
-+batadv_tt_changes_fill_buff_40323 batadv_tt_changes_fill_buff 4 40323 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
-+smk_read_mapped_7562 smk_read_mapped 3 7562 NULL
-+alloc_tx_32143 alloc_tx 2 32143 NULL
-+wiimote_hid_send_48528 wiimote_hid_send 3 48528 NULL
-+compat_do_arpt_set_ctl_12184 compat_do_arpt_set_ctl 4 12184 NULL
-+hsc_write_55875 hsc_write 3 55875 NULL
-+cifs_setxattr_23957 cifs_setxattr 4 23957 NULL
-+do_test_15766 do_test 1 15766 NULL
-+mmio_read_40348 mmio_read 4 40348 NULL
-+ip_recv_error_23109 ip_recv_error 3 23109 NULL
-+named_distribute_48544 named_distribute 4 48544 NULL
-+smk_set_cipso_20379 smk_set_cipso 3 20379 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
-+vmw_kms_present_38130 vmw_kms_present 9 38130 NULL
-+btrfsic_map_block_56751 btrfsic_map_block 2 56751 NULL
-+zd_usb_iowrite16v_async_23984 zd_usb_iowrite16v_async 3 23984 NULL
-+ubifs_wbuf_write_nolock_64946 ubifs_wbuf_write_nolock 3 64946 NULL
-+usblp_new_writeurb_22894 usblp_new_writeurb 2 22894 NULL
-+bioset_integrity_create_62708 bioset_integrity_create 2 62708 NULL
-+smk_read_direct_15803 smk_read_direct 3 15803 NULL
-+fwnet_incoming_packet_40380 fwnet_incoming_packet 3 40380 NULL
-+pcpu_page_first_chunk_20712 pcpu_page_first_chunk 1 20712 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
-+traceprobe_probes_write_64969 traceprobe_probes_write 3 64969 NULL
-+suspend_dtim_interval_read_64971 suspend_dtim_interval_read 3 64971 NULL
-+ext_sd_execute_read_data_48589 ext_sd_execute_read_data 9 48589 NULL
-+afs_proc_rootcell_write_15822 afs_proc_rootcell_write 3 15822 NULL
-+__carl9170_rx_56784 __carl9170_rx 3 56784 NULL
-+__hwahc_dev_set_key_46328 __hwahc_dev_set_key 5 46328 NULL
-+oprofilefs_ulong_from_user_57251 oprofilefs_ulong_from_user 3 57251 NULL
-+ioctl_private_iw_point_1273 ioctl_private_iw_point 7 1273 NULL
-+tcf_csum_ipv4_tcp_39713 tcf_csum_ipv4_tcp 4 39713 NULL
-+snapshot_write_28351 snapshot_write 3 28351 NULL
-+event_enable_read_7074 event_enable_read 3 7074 NULL
-+brcmf_sdbrcm_died_dump_15841 brcmf_sdbrcm_died_dump 3 15841 NULL
-+ath_descdma_setup_12257 ath_descdma_setup 5 12257 NULL
-+do_syslog_56807 do_syslog 3 56807 NULL
-+pskb_pull_65005 pskb_pull 2 65005 NULL
-+caif_seqpkt_recvmsg_32241 caif_seqpkt_recvmsg 4 32241 NULL
-+lbs_lowrssi_read_32242 lbs_lowrssi_read 3 32242 NULL
-+sisusbcon_scroll_31315 sisusbcon_scroll 5-3-2 31315 NULL
-+unifi_write_65012 unifi_write 3 65012 NULL
-+agp_generic_alloc_user_9470 agp_generic_alloc_user 1 9470 NULL
-+nfs_readdata_alloc_65015 nfs_readdata_alloc 2 65015 NULL
-+ubi_io_write_15870 ubi_io_write 4-5 15870 NULL nohasharray
-+media_entity_init_15870 media_entity_init 2-4 15870 &ubi_io_write_15870
-+mtdchar_write_56831 mtdchar_write 3 56831 NULL nohasharray
-+ntfs_rl_realloc_56831 ntfs_rl_realloc 3 56831 &mtdchar_write_56831
-+do_ip_vs_set_ctl_48641 do_ip_vs_set_ctl 4 48641 NULL
-+__mptctl_ioctl_15875 __mptctl_ioctl 2 15875 NULL
-+sl_realloc_bufs_64086 sl_realloc_bufs 2 64086 NULL
-+if_write_51756 if_write 3 51756 NULL
-+tomoyo_update_policy_40458 tomoyo_update_policy 2 40458 NULL
-+blkcipher_copy_iv_24075 blkcipher_copy_iv 3 24075 NULL
-+snd_rawmidi_kernel_write1_56847 snd_rawmidi_kernel_write1 4 56847 NULL
-+vb2_fop_read_24080 vb2_fop_read 3 24080 NULL
-+brcmf_sdcard_rwdata_65041 brcmf_sdcard_rwdata 5 65041 NULL
-+nfs_map_group_to_gid_15892 nfs_map_group_to_gid 3 15892 NULL
-+lc_create_48662 lc_create 3 48662 NULL
-+aes_encrypt_packets_read_48666 aes_encrypt_packets_read 3 48666 NULL
-+dev_write_7708 dev_write 3 7708 NULL
-+ath9k_multi_regread_65056 ath9k_multi_regread 4 65056 NULL
-+brcmf_sdcard_send_buf_7713 brcmf_sdcard_send_buf 6 7713 NULL
-+l2cap_build_cmd_48676 l2cap_build_cmd 4 48676 NULL
-+ieee80211_set_probe_resp_10077 ieee80211_set_probe_resp 3 10077 NULL
-+batadv_hash_new_40491 batadv_hash_new 1 40491 NULL
-+pipeline_post_proc_swi_read_24108 pipeline_post_proc_swi_read 3 24108 NULL
-+request_key_auth_read_24109 request_key_auth_read 3 24109 NULL
-+bnx2fc_process_l2_frame_compl_65072 bnx2fc_process_l2_frame_compl 3 65072 NULL
-+__alloc_bootmem_node_high_65076 __alloc_bootmem_node_high 2 65076 NULL
-+persistent_ram_new_40501 persistent_ram_new 1-2 40501 NULL
-+__feat_register_sp_64712 __feat_register_sp 6 64712 NULL
-+ieee80211_send_auth_24121 ieee80211_send_auth 5 24121 NULL
-+altera_drscan_48698 altera_drscan 2 48698 NULL
-+tx_frag_in_process_called_read_1290 tx_frag_in_process_called_read 3 1290 NULL
-+debug_debug3_read_56894 debug_debug3_read 3 56894 NULL
-+kvm_set_irq_routing_48704 kvm_set_irq_routing 3 48704 NULL
-+power_read_15939 power_read 3 15939 NULL
-+recv_msg_48709 recv_msg 4 48709 NULL
-+befs_utf2nls_25628 befs_utf2nls 3 25628 NULL
-+ghash_async_setkey_60001 ghash_async_setkey 3 60001 NULL
-+TSS_checkhmac2_40520 TSS_checkhmac2 5-7 40520 NULL
-+btrfs_error_discard_extent_50444 btrfs_error_discard_extent 2 50444 NULL
-+irnet_ctrl_write_24139 irnet_ctrl_write 3 24139 NULL
-+lpfc_idiag_drbacc_read_15948 lpfc_idiag_drbacc_read 3 15948 NULL
-+process_vm_rw_pages_15954 process_vm_rw_pages 5-6 15954 NULL
-+rxrpc_request_key_27235 rxrpc_request_key 3 27235 NULL
-+t4_alloc_mem_32342 t4_alloc_mem 1 32342 NULL
-+aes_decrypt_fail_read_54815 aes_decrypt_fail_read 3 54815 NULL
-+remap_pci_mem_15966 remap_pci_mem 1-2 15966 NULL
-+alloc_candev_7776 alloc_candev 1-2 7776 NULL
-+check_header_56930 check_header 2 56930 NULL
-+ima_write_policy_40548 ima_write_policy 3 40548 NULL
-+dispatch_ioctl_32357 dispatch_ioctl 2 32357 NULL
-+i2o_parm_table_get_61635 i2o_parm_table_get 6 61635 NULL
-+__wa_xfer_setup_segs_56725 __wa_xfer_setup_segs 2 56725 NULL
-+ath6kl_usb_bmi_read_48745 ath6kl_usb_bmi_read 3 48745 NULL
-+sel_read_initcon_32362 sel_read_initcon 3 32362 NULL
-+ath6kl_regwrite_read_48747 ath6kl_regwrite_read 3 48747 NULL
-+frame_alloc_15981 frame_alloc 4 15981 NULL
-+esp_alloc_tmp_40558 esp_alloc_tmp 2-3 40558 NULL
-+diva_os_copy_from_user_7792 diva_os_copy_from_user 4 7792 NULL
-+adu_read_24177 adu_read 3 24177 NULL
-+alloc_fddidev_15382 alloc_fddidev 1 15382 NULL
-+send_mpa_reply_32372 send_mpa_reply 3 32372 NULL
-+alloc_vm_area_15989 alloc_vm_area 1 15989 NULL
-+variax_set_raw2_32374 variax_set_raw2 4 32374 NULL
-+vfd_write_14717 vfd_write 3 14717 NULL
-+usbtmc_read_32377 usbtmc_read 3 32377 NULL
-+qib_alloc_devdata_51819 qib_alloc_devdata 2 51819 NULL
-+l2cap_segment_sdu_48772 l2cap_segment_sdu 4 48772 NULL
-+rx_defrag_called_read_1897 rx_defrag_called_read 3 1897 NULL
-+ieee80211_if_read_dot11MeshHWMPpreqMinInterval_24208 ieee80211_if_read_dot11MeshHWMPpreqMinInterval 3 24208 NULL
-+viafb_vt1636_proc_write_16018 viafb_vt1636_proc_write 3 16018 NULL
-+__cxio_init_resource_fifo_23447 __cxio_init_resource_fifo 3 23447 NULL
-+skge_rx_get_40598 skge_rx_get 3 40598 NULL
-+register_device_60015 register_device 2-3 60015 NULL
-+got_frame_16028 got_frame 2 16028 NULL
-+ssb_bus_register_65183 ssb_bus_register 3 65183 NULL
-+pcpu_embed_first_chunk_24224 pcpu_embed_first_chunk 1-3-2 24224 NULL
-+icmp_manip_pkt_48801 icmp_manip_pkt 2 48801 NULL
-+il3945_sta_dbgfs_stats_table_read_48802 il3945_sta_dbgfs_stats_table_read 3 48802 NULL
-+scsi_register_49094 scsi_register 2 49094 NULL
-+twa_change_queue_depth_48808 twa_change_queue_depth 2 48808 NULL
-+vlsi_alloc_ring_57003 vlsi_alloc_ring 3-4 57003 NULL
-+sel_read_bool_24236 sel_read_bool 3 24236 NULL
-+buffer_from_user_51826 buffer_from_user 3 51826 NULL
-+tcp_push_one_48816 tcp_push_one 2 48816 NULL
-+nfulnl_alloc_skb_65207 nfulnl_alloc_skb 2 65207 NULL
-+dccp_recvmsg_16056 dccp_recvmsg 4 16056 NULL
-+gfs2_glock_nq_m_20347 gfs2_glock_nq_m 1 20347 NULL
-+atomic_counters_read_48827 atomic_counters_read 3 48827 NULL
-+rx_rx_done_read_65217 rx_rx_done_read 3 65217 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
-+create_gpadl_header_19064 create_gpadl_header 2 19064 NULL
-+dvb_dmxdev_read_sec_7892 dvb_dmxdev_read_sec 4 7892 NULL
-+xfs_trans_get_efi_7898 xfs_trans_get_efi 2 7898 NULL
-+compat_sys_preadv64_24283 compat_sys_preadv64 3 24283 NULL
-+pipeline_rx_complete_stat_fifo_int_read_40671 pipeline_rx_complete_stat_fifo_int_read 3 40671 NULL
-+viafb_dvp1_proc_write_48864 viafb_dvp1_proc_write 3 48864 NULL
-+__ffs_ep0_read_events_48868 __ffs_ep0_read_events 3 48868 NULL
-+cx2341x_ctrl_new_std_57061 cx2341x_ctrl_new_std 4 57061 NULL
-+isr_tx_exch_complete_read_16103 isr_tx_exch_complete_read 3 16103 NULL
-+sca3000_read_data_57064 sca3000_read_data 4 57064 NULL
-+mid_get_vbt_data_r0_10876 mid_get_vbt_data_r0 2 10876 NULL
-+pcmcia_replace_cis_57066 pcmcia_replace_cis 3 57066 NULL
-+sis190_try_rx_copy_57069 sis190_try_rx_copy 3 57069 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
-+sys_setgroups16_48882 sys_setgroups16 1 48882 NULL
-+kmem_zalloc_greedy_65268 kmem_zalloc_greedy 2-3 65268 NULL
-+nfc_hci_set_param_40697 nfc_hci_set_param 5 40697 NULL
-+f_hidg_write_7932 f_hidg_write 3 7932 NULL
-+ath6kl_add_bss_if_needed_24317 ath6kl_add_bss_if_needed 6 24317 NULL
-+kmalloc_parameter_65279 kmalloc_parameter 1 65279 NULL
-+mce_flush_rx_buffer_14976 mce_flush_rx_buffer 2 14976 NULL
-+mac_drv_rx_init_48898 mac_drv_rx_init 2 48898 NULL
-+compat_sys_select_16131 compat_sys_select 1 16131 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
-+tracing_set_trace_write_57096 tracing_set_trace_write 3 57096 NULL
-+disconnect_32521 disconnect 4 32521 NULL
-+__seq_open_private_40715 __seq_open_private 3 40715 NULL
-+pp_write_39554 pp_write 3 39554 NULL
-+mpi_set_buffer_65294 mpi_set_buffer 3 65294 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
-+smk_write_load_self_7958 smk_write_load_self 3 7958 NULL
-+pipeline_pipeline_fifo_full_read_34095 pipeline_pipeline_fifo_full_read 3 34095 NULL
-+sysfs_write_file_57116 sysfs_write_file 3 57116 NULL
-+gdth_isa_probe_one_48925 gdth_isa_probe_one 1 48925 NULL
-+kzalloc_node_24352 kzalloc_node 1 24352 NULL
-+msnd_fifo_alloc_23179 msnd_fifo_alloc 2 23179 NULL
-+format_devstat_counter_32550 format_devstat_counter 3 32550 NULL
-+nfcwilink_skb_alloc_16167 nfcwilink_skb_alloc 1 16167 NULL
-+xfs_iext_remove_direct_40744 xfs_iext_remove_direct 3 40744 NULL
-+dvb_generic_ioctl_21810 dvb_generic_ioctl 2 21810 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
-+card_send_command_40757 card_send_command 3 40757 NULL
-+sys_mbind_7990 sys_mbind 5 7990 NULL
-+dccp_setsockopt_service_65336 dccp_setsockopt_service 4 65336 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
-+carl9170_rx_stream_1334 carl9170_rx_stream 3 1334 NULL
-+udl_prime_create_57159 udl_prime_create 2 57159 NULL
-+ablkcipher_copy_iv_64140 ablkcipher_copy_iv 3 64140 NULL
-+dma_rx_requested_read_65354 dma_rx_requested_read 3 65354 NULL
-+batadv_orig_hash_del_if_48972 batadv_orig_hash_del_if 2 48972 NULL
-+tt3650_ci_msg_locked_8013 tt3650_ci_msg_locked 4 8013 NULL
-+pvr2_v4l2_ioctl_24398 pvr2_v4l2_ioctl 2 24398 NULL nohasharray
-+getxattr_24398 getxattr 4 24398 &pvr2_v4l2_ioctl_24398
-+stk_prepare_sio_buffers_57168 stk_prepare_sio_buffers 2 57168 NULL
-+vcs_read_8017 vcs_read 3 8017 NULL
-+alloc_cpu_rmap_65363 alloc_cpu_rmap 1 65363 NULL
-+create_table_16213 create_table 2 16213 NULL
-+rx_hw_stuck_read_57179 rx_hw_stuck_read 3 57179 NULL
-+iwl_dbgfs_wowlan_sram_read_540 iwl_dbgfs_wowlan_sram_read 3 540 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
-+vhost_add_used_and_signal_n_8038 vhost_add_used_and_signal_n 4 8038 NULL
-+copy_and_check_19089 copy_and_check 3 19089 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
-+i915_wedged_read_35474 i915_wedged_read 3 35474 NULL
-+ieee80211_rx_mgmt_beacon_24430 ieee80211_rx_mgmt_beacon 3 24430 NULL
-+iser_rcv_completion_8048 iser_rcv_completion 2 8048 NULL
-+trace_parser_get_init_31379 trace_parser_get_init 2 31379 NULL
-+ms_read_multiple_pages_8052 ms_read_multiple_pages 4-5 8052 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
-+smk_user_access_24440 smk_user_access 3 24440 NULL
-+xd_rw_49020 xd_rw 3-4 49020 NULL
-+gss_pipe_downcall_23182 gss_pipe_downcall 3 23182 NULL
-+tt3650_ci_msg_57219 tt3650_ci_msg 4 57219 NULL
-+mpi_alloc_limb_space_23190 mpi_alloc_limb_space 1 23190 NULL
-+kvmalloc_32646 kvmalloc 1 32646 NULL
-+alloc_targets_8074 alloc_targets 2 8074 NULL nohasharray
-+qla4xxx_post_ping_evt_work_8074 qla4xxx_post_ping_evt_work 4 8074 &alloc_targets_8074
-+tifm_alloc_adapter_10903 tifm_alloc_adapter 1 10903 NULL
-+drm_calloc_large_65421 drm_calloc_large 1-2 65421 NULL
-+nfc_hci_send_response_56462 nfc_hci_send_response 5 56462 NULL
-+usbduxsigma_attach_common_40847 usbduxsigma_attach_common 4 40847 NULL
-+skb_copy_and_csum_datagram_iovec_24466 skb_copy_and_csum_datagram_iovec 2 24466 NULL
-+rbd_add_16366 rbd_add 3 16366 NULL
-+drbd_setsockopt_16280 drbd_setsockopt 5 16280 NULL nohasharray
-+nand_bch_init_16280 nand_bch_init 2-3 16280 &drbd_setsockopt_16280
-+xpc_kzalloc_cacheline_aligned_65433 xpc_kzalloc_cacheline_aligned 1 65433 NULL
-+v9fs_file_read_40858 v9fs_file_read 3 40858 NULL
-+fbcon_do_set_font_4079 fbcon_do_set_font 2-3 4079 NULL
-+pn533_init_target_frame_65438 pn533_init_target_frame 3 65438 NULL
-+move_addr_to_kernel_32673 move_addr_to_kernel 2 32673 NULL
-+stk_allocate_buffers_16291 stk_allocate_buffers 2 16291 NULL
-+usb_alloc_coherent_65444 usb_alloc_coherent 2 65444 NULL
-+aes_decrypt_interrupt_read_19910 aes_decrypt_interrupt_read 3 19910 NULL
-+l2cap_bredr_sig_cmd_49065 l2cap_bredr_sig_cmd 3 49065 NULL
-+tipc_buf_acquire_60437 tipc_buf_acquire 1 60437 NULL
-+alloc_flex_gd_57259 alloc_flex_gd 1 57259 NULL
-+venus_lookup_8121 venus_lookup 4 8121 NULL
-+compat_writev_60063 compat_writev 3 60063 NULL
-+io_mapping_create_wc_1354 io_mapping_create_wc 1-2 1354 NULL
-+pd_video_read_24510 pd_video_read 3 24510 NULL
-+read_file_queue_40895 read_file_queue 3 40895 NULL
-+request_key_with_auxdata_24515 request_key_with_auxdata 4 24515 NULL
-+waiters_read_40902 waiters_read 3 40902 NULL
-+pstore_file_read_57288 pstore_file_read 3 57288 NULL
-+vmalloc_node_58700 vmalloc_node 1 58700 NULL
-+xfs_buf_get_map_24522 xfs_buf_get_map 3 24522 NULL
-+ath_rx_edma_init_65483 ath_rx_edma_init 2 65483 NULL
-+vmw_cursor_update_image_16332 vmw_cursor_update_image 3-4 16332 NULL
-+compat_do_readv_writev_49102 compat_do_readv_writev 4 49102 NULL
-+dpcm_state_read_file_65489 dpcm_state_read_file 3 65489 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
-+ath6kl_buf_alloc_57304 ath6kl_buf_alloc 1 57304 NULL
-+rs_sta_dbgfs_scale_table_read_40262 rs_sta_dbgfs_scale_table_read 3 40262 NULL
-+ftdi_elan_write_57309 ftdi_elan_write 3 57309 NULL
-+sys_migrate_pages_39825 sys_migrate_pages 2 39825 NULL
-+megasas_change_queue_depth_32747 megasas_change_queue_depth 2 32747 NULL
-+total_ps_buffered_read_16365 total_ps_buffered_read 3 16365 NULL
-+__mxt_write_reg_57326 __mxt_write_reg 3 57326 NULL
-+ext_sd_execute_write_data_8175 ext_sd_execute_write_data 9 8175 NULL
-+pt_read_49136 pt_read 3 49136 NULL
-+tsi148_alloc_resource_24563 tsi148_alloc_resource 2 24563 NULL
-+snd_vx_create_40948 snd_vx_create 4 40948 NULL
-+__nf_nat_mangle_tcp_packet_8190 __nf_nat_mangle_tcp_packet 5-7 8190 NULL
-+tipc_multicast_49144 tipc_multicast 5 49144 NULL
-+check_mirror_57342 check_mirror 1-2 57342 NULL nohasharray
-+usblp_read_57342 usblp_read 3 57342 &check_mirror_57342
-+atyfb_setup_generic_49151 atyfb_setup_generic 3 49151 NULL
-diff -u linux-3.6.10-pax/tools/gcc/size_overflow_plugin.c linux-3.6.10-pax/tools/gcc/size_overflow_plugin.c
---- linux-3.6.10-pax/tools/gcc/size_overflow_plugin.c 2012-11-18 12:30:37.311693473 +0100
-+++ linux-3.6.10-pax/tools/gcc/size_overflow_plugin.c 2012-12-12 16:40:54.204264783 +0100
-@@ -77,8 +77,10 @@
- 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",
- };
-
-@@ -357,6 +359,9 @@
- 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));
-@@ -506,10 +511,20 @@
- 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);
-@@ -572,11 +587,8 @@
- 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);
-@@ -811,6 +823,7 @@
-
- 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);
-@@ -840,13 +853,16 @@
- 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);
-@@ -859,10 +875,13 @@
- 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);
-@@ -879,10 +898,11 @@
- #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);
-@@ -925,7 +945,8 @@
- 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);
-@@ -945,8 +966,12 @@
- 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)
-@@ -1049,7 +1074,7 @@
- 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();
- }
-@@ -1298,6 +1323,7 @@
- static tree get_size_overflow_type(gimple stmt, const_tree node)
- {
- const_tree type;
-+ tree new_type;
-
- gcc_assert(node != NULL_TREE);
-
-@@ -1308,20 +1334,29 @@
-
- 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)
-@@ -1362,21 +1397,22 @@
-
- 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:
-@@ -1385,7 +1421,7 @@
- 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
-@@ -1444,6 +1480,8 @@
-
- static bool skip_types(const_tree var)
- {
-+ const_tree type;
-+
- switch (TREE_CODE(var)) {
- case ADDR_EXPR:
- #if BUILDING_GCC_VERSION >= 4006
-@@ -1458,6 +1496,17 @@
- 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;
- }
-
-@@ -1606,6 +1655,10 @@
- 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);
-
-only in patch2:
-unchanged:
---- linux-3.6.10/drivers/misc/kgdbts.c 2012-05-21 11:33:08.719928271 +0200
-+++ linux-3.6.10-pax/drivers/misc/kgdbts.c 2012-12-12 05:17:52.055784406 +0100
-@@ -832,7 +832,7 @@ static void run_plant_and_detach_test(in
- 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;
-@@ -840,7 +840,7 @@ static void run_plant_and_detach_test(in
- /* 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");
-only in patch2:
-unchanged:
---- linux-3.6.10/kernel/trace/ring_buffer.c 2012-10-28 21:30:18.413594804 +0100
-+++ linux-3.6.10-pax/kernel/trace/ring_buffer.c 2012-12-12 05:17:52.055784406 +0100
-@@ -346,9 +346,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 */
- unsigned long real_end; /* real end of data */
- struct buffer_data_page *page; /* Actual data page */
- };
-@@ -460,8 +460,8 @@ struct ring_buffer_per_cpu {
- unsigned long lost_events;
- unsigned long last_overrun;
- local_t entries_bytes;
-- 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;
-@@ -860,8 +860,8 @@ static int rb_tail_page_update(struct ri
- *
- * 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
-@@ -889,8 +889,8 @@ static int rb_tail_page_update(struct ri
- * 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.
-@@ -1249,12 +1249,12 @@ static void rb_reset_cpu(struct ring_buf
-
- 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;
- }
-
- 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 int
-@@ -1349,7 +1349,7 @@ rb_remove_pages(struct ring_buffer_per_c
- * bytes consumed in ring buffer from here.
- * Increment overrun to account for the lost events.
- */
-- local_add(page_entries, &cpu_buffer->overrun);
-+ local_add_unchecked(page_entries, &cpu_buffer->overrun);
- local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
- }
-
-@@ -1903,7 +1903,7 @@ rb_handle_head_page(struct ring_buffer_p
- * it is our responsibility to update
- * the counters.
- */
-- local_add(entries, &cpu_buffer->overrun);
-+ local_add_unchecked(entries, &cpu_buffer->overrun);
- local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
-
- /*
-@@ -2053,7 +2053,7 @@ rb_reset_tail(struct ring_buffer_per_cpu
- if (tail == BUF_PAGE_SIZE)
- tail_page->real_end = 0;
-
-- local_sub(length, &tail_page->write);
-+ local_sub_unchecked(length, &tail_page->write);
- return;
- }
-
-@@ -2088,7 +2088,7 @@ rb_reset_tail(struct ring_buffer_per_cpu
- 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;
- }
-
-@@ -2100,7 +2100,7 @@ rb_reset_tail(struct ring_buffer_per_cpu
-
- /* 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);
- }
-
- /*
-@@ -2126,7 +2126,7 @@ rb_move_tail(struct ring_buffer_per_cpu
- * about it.
- */
- if (unlikely(next_page == commit_page)) {
-- local_inc(&cpu_buffer->commit_overrun);
-+ local_inc_unchecked(&cpu_buffer->commit_overrun);
- goto out_reset;
- }
-
-@@ -2180,7 +2180,7 @@ rb_move_tail(struct ring_buffer_per_cpu
- 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;
- }
- }
-@@ -2228,7 +2228,7 @@ __rb_reserve_next(struct ring_buffer_per
- length += RB_LEN_TIME_EXTEND;
-
- 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;
-@@ -2245,7 +2245,7 @@ __rb_reserve_next(struct ring_buffer_per
- kmemcheck_annotate_bitfield(event, bitfield);
- rb_update_event(cpu_buffer, event, length, add_timestamp, delta);
-
-- local_inc(&tail_page->entries);
-+ local_inc_unchecked(&tail_page->entries);
-
- /*
- * If this is the first commit on the page, then update
-@@ -2278,7 +2278,7 @@ rb_try_to_discard(struct ring_buffer_per
-
- 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;
- unsigned long event_length = rb_event_length(event);
- /*
- * This is on the tail page. It is possible that
-@@ -2288,7 +2288,7 @@ rb_try_to_discard(struct ring_buffer_per
- */
- 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) {
- /* update counters */
- local_sub(event_length, &cpu_buffer->entries_bytes);
-@@ -2627,7 +2627,7 @@ rb_decrement_entry(struct ring_buffer_pe
-
- /* Do the likely case first */
- if (likely(bpage->page == (void *)addr)) {
-- local_dec(&bpage->entries);
-+ local_dec_unchecked(&bpage->entries);
- return;
- }
-
-@@ -2639,7 +2639,7 @@ rb_decrement_entry(struct ring_buffer_pe
- start = bpage;
- do {
- if (bpage->page == (void *)addr) {
-- local_dec(&bpage->entries);
-+ local_dec_unchecked(&bpage->entries);
- return;
- }
- rb_inc_page(cpu_buffer, &bpage);
-@@ -2921,7 +2921,7 @@ static inline unsigned long
- rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
- {
- return local_read(&cpu_buffer->entries) -
-- (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
-+ (local_read_unchecked(&cpu_buffer->overrun) + cpu_buffer->read);
- }
-
- /**
-@@ -3008,7 +3008,7 @@ unsigned long ring_buffer_overrun_cpu(st
- return 0;
-
- cpu_buffer = buffer->buffers[cpu];
-- ret = local_read(&cpu_buffer->overrun);
-+ ret = local_read_unchecked(&cpu_buffer->overrun);
-
- return ret;
- }
-@@ -3029,7 +3029,7 @@ ring_buffer_commit_overrun_cpu(struct ri
- return 0;
-
- cpu_buffer = buffer->buffers[cpu];
-- ret = local_read(&cpu_buffer->commit_overrun);
-+ ret = local_read_unchecked(&cpu_buffer->commit_overrun);
-
- return ret;
- }
-@@ -3074,7 +3074,7 @@ unsigned long ring_buffer_overruns(struc
- /* 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;
-@@ -3250,8 +3250,8 @@ rb_get_reader_page(struct ring_buffer_pe
- /*
- * 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);
- cpu_buffer->reader_page->real_end = 0;
-
-@@ -3283,7 +3283,7 @@ rb_get_reader_page(struct ring_buffer_pe
- * want to compare with the last_overrun.
- */
- smp_mb();
-- overwrite = local_read(&(cpu_buffer->overrun));
-+ overwrite = local_read_unchecked(&(cpu_buffer->overrun));
-
- /*
- * Here's the tricky part.
-@@ -3848,8 +3848,8 @@ rb_reset_cpu(struct ring_buffer_per_cpu
-
- 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;
-@@ -3859,14 +3859,14 @@ rb_reset_cpu(struct ring_buffer_per_cpu
-
- INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
- INIT_LIST_HEAD(&cpu_buffer->new_pages);
-- 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_unchecked(&cpu_buffer->commit_overrun, 0);
- local_set(&cpu_buffer->entries_bytes, 0);
-- local_set(&cpu_buffer->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);
-@@ -4269,8 +4269,8 @@ int ring_buffer_read_page(struct ring_bu
- 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;
-