On Fri, 08 Nov 2013 21:04:26 +0900
Masami Hiramatsu <[email protected]> wrote:


> >  static void do_sync_core(void *info)
> >  {
> >     sync_core();
> > @@ -648,15 +687,15 @@ void *text_poke_bp(void *addr, const void *opcode, 
> > size_t len, void *handler)
> >      */
> >     smp_wmb();
> >  
> > -   text_poke(addr, &int3, sizeof(int3));
> > +   text_poke_part(addr, &int3, sizeof(int3));
> 
> Anyway, text_poke itself will cause a BUG if it hits an error, but 
> text_poke_part() seems
> silently failing. It should handle the error correctly (or call BUG()).
> 

text_poke_part() shouldn't do a bug on error, but this code probably
should.

        if (text_poke_part(addr, &int3, sizeof(int3)))
                BUG();

Note, I would avoid doing:

        BUG_ON(text_poke_part(...));

as we don't want "side effects" in the BUG() macros. You may do:

        ret = text_poke_part(...);
        BUG_ON(ret);

Which has the added benefit of the implicit "unlikely" in the BUG_ON()
macro.

Or we can have do_sync_core() be able to handle errors and have their
callers handle them too.

-- Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to