static void *mod_code_ip;              /* holds the IP to write to */
 static void *mod_code_newcode;         /* holds the text to write to the IP */
 
-static unsigned nmi_wait_count;
-static atomic_t nmi_update_count = ATOMIC_INIT(0);
-
-int ftrace_arch_read_dyn_info(char *buf, int size)
-{
-       int r;
-
-       r = snprintf(buf, size, "%u %u",
-                    nmi_wait_count,
-                    atomic_read(&nmi_update_count));
-       return r;
-}
-
 static void clear_mod_flag(void)
 {
        int old = atomic_read(&nmi_running);
        if (atomic_inc_return(&nmi_running) & MOD_CODE_WRITE_FLAG) {
                smp_rmb();
                ftrace_mod_code();
-               atomic_inc(&nmi_update_count);
        }
        /* Must have previous changes seen before executions */
        smp_mb();
        do {
                cpu_relax();
        } while (atomic_cmpxchg(&nmi_running, 0, MOD_CODE_WRITE_FLAG));
-
-       nmi_wait_count++;
 }
 
 static void wait_for_nmi(void)
        do {
                cpu_relax();
        } while (atomic_read(&nmi_running));
-
-       nmi_wait_count++;
 }
 
 static int