return _stext + tp->rel_addr;
 }
 
-static int noinstr patch_cmp(const void *key, const void *elt)
+static __always_inline int patch_cmp(const void *key, const void *elt)
 {
        struct text_poke_loc *tp = (struct text_poke_loc *) elt;
 
         * Skip the binary search if there is a single member in the vector.
         */
        if (unlikely(desc->nr_entries > 1)) {
-               tp = bsearch(ip, desc->vec, desc->nr_entries,
-                            sizeof(struct text_poke_loc),
-                            patch_cmp);
+               tp = __inline_bsearch(ip, desc->vec, desc->nr_entries,
+                                     sizeof(struct text_poke_loc),
+                                     patch_cmp);
                if (!tp)
                        goto out_put;
        } else {
 
 
 dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code)
 {
+       /*
+        * poke_int3_handler() is completely self contained code; it does (and
+        * must) *NOT* call out to anything, lest it hits upon yet another
+        * INT3.
+        */
        if (poke_int3_handler(regs))
                return;