out = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
        mutex_unlock(&text_mutex);
 
-       if (!mod)
-               local_flush_icache_range(rec->ip, rec->ip + MCOUNT_INSN_SIZE);
-
        return out;
 }
 
        } else {
                while (atomic_read(¶m->cpu_count) <= num_online_cpus())
                        cpu_relax();
-       }
 
-       local_flush_icache_all();
+               local_flush_icache_all();
+       }
 
        return 0;
 }
 
 
        memset(waddr, c, len);
 
+       /*
+        * We could have just patched a function that is about to be
+        * called so make sure we don't execute partially patched
+        * instructions by flushing the icache as soon as possible.
+        */
+       local_flush_icache_range((unsigned long)waddr,
+                                (unsigned long)waddr + len);
+
        patch_unmap(FIX_TEXT_POKE0);
 
        if (across_pages)
 
        ret = copy_to_kernel_nofault(waddr, insn, len);
 
+       /*
+        * We could have just patched a function that is about to be
+        * called so make sure we don't execute partially patched
+        * instructions by flushing the icache as soon as possible.
+        */
+       local_flush_icache_range((unsigned long)waddr,
+                                (unsigned long)waddr + len);
+
        patch_unmap(FIX_TEXT_POKE0);
 
        if (across_pages)
 
        ret = patch_insn_set(tp, c, len);
 
-       if (!ret)
-               flush_icache_range((uintptr_t)tp, (uintptr_t)tp + len);
-
        return ret;
 }
 NOKPROBE_SYMBOL(patch_text_set_nosync);
 
        ret = patch_insn_write(tp, insns, len);
 
-       if (!ret)
-               flush_icache_range((uintptr_t) tp, (uintptr_t) tp + len);
-
        return ret;
 }
 NOKPROBE_SYMBOL(patch_text_nosync);
        } else {
                while (atomic_read(&patch->cpu_count) <= num_online_cpus())
                        cpu_relax();
-       }
 
-       local_flush_icache_all();
+               local_flush_icache_all();
+       }
 
        return ret;
 }