Re: [patch V4 part 4 22/24] x86/mce: Address objtools noinstr complaints

2020-05-14 Thread Andy Lutomirski
On Tue, May 5, 2020 at 7:16 AM Thomas Gleixner wrote: > > Mark the relevant functions noinstr, use the plain non-instrumented MSR > accessors. The only odd part is the instr_begin()/end() pair around the > indirect machine_check_vector() call as objtool can't figure that out. The > possible

[patch V4 part 4 22/24] x86/mce: Address objtools noinstr complaints

2020-05-05 Thread Thomas Gleixner
Mark the relevant functions noinstr, use the plain non-instrumented MSR accessors. The only odd part is the instr_begin()/end() pair around the indirect machine_check_vector() call as objtool can't figure that out. The possible invoked functions are annotated correctly. Signed-off-by: Thomas