Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1743315
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [kprobes/x86] a19b2e3d78: WARNING:at_kernel/locking/lockdep.c:#trace_hardirqs_off_caller |
| Date | 2017-10-02 22:50 +0200 |
| Message-ID | <uwfPj-ur-277@gated-at.bofh.it> (permalink) |
| References | <uvzd7-2so-3@gated-at.bofh.it> <uw3ux-4tG-3@gated-at.bofh.it> <uwfPg-ur-233@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, Oct 03, 2017 at 12:46:05AM +0900, Masami Hiramatsu wrote: > On Mon, 2 Oct 2017 09:33:16 +0200 > Peter Zijlstra <peterz@infradead.org> wrote: > > > [ 87.018115] Call Trace: > > > [ 87.025046] trace_hardirqs_off+0xd/0xf > > > [ 87.034185] setjmp_pre_handler+0x6c/0x95 > > > [ 87.043738] kprobe_ftrace_handler+0xc3/0xf4 > > > > > > So setjmp_pre_handler() does: > > > > regs->flags &= ~X86_EFLAGS_IF; > > trace_hardirqs_off(); > > regs->ip = (unsigned long)(jp->entry); > > > > Which clears IF on the regs, but those will only take effect after an > > IRET, not instantly. This messes up he IRQ state tracing, which you're > > telling it will instantly disable IRQs. > > Thanks for analyzing! > And right, since IRQ should be off while jump handler, it changes > regs->flags. (but ...why?) Otherwise the IRET could re-enable interrupts? > > A possible 'fix' would be to do local_irq_disable() in front of that, > > but I got pretty lost in that stuff so I can't say for sure if that > > makes sense or not. > > I'm not sure how lockdep traces irq-disabling state, but it seems > that "enabling" irq state(trace_hardirqs_on()) is already missing > from kprobes. If you could point me at where that is supposed to happen I can have a look at how that tracing works. I got lost in the code this morning. > I'm considering to remove disabling-irq itself from jprobe. > (Frankly to say, I would like to remove jprobe itself...) That would obviously also solve all problems :-)
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [kprobes/x86] a19b2e3d78: WARNING:at_kernel/locking/lockdep.c:#trace_hardirqs_off_caller Peter Zijlstra <peterz@infradead.org> - 2017-10-02 09:40 +0200 Re: [kprobes/x86] a19b2e3d78: WARNING:at_kernel/locking/lockdep.c:#trace_hardirqs_off_caller Linus Torvalds <torvalds@linux-foundation.org> - 2017-10-02 22:50 +0200 Re: [kprobes/x86] a19b2e3d78: WARNING:at_kernel/locking/lockdep.c:#trace_hardirqs_off_caller Peter Zijlstra <peterz@infradead.org> - 2017-10-02 22:50 +0200 Re: [kprobes/x86] a19b2e3d78: WARNING:at_kernel/locking/lockdep.c:#trace_hardirqs_off_caller Masami Hiramatsu <mhiramat@kernel.org> - 2017-10-02 22:50 +0200
csiph-web