From: Marco Elver <elver@google.com> To: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Cc: kasan-dev@googlegroups.com, linux-kernel@vger.kernel.org, Dmitry Vyukov <dvyukov@google.com>, Andrey Konovalov <andreyknvl@gmail.com>, Thomas Gleixner <tglx@linutronix.de>, Steven Rostedt <rostedt@goodmis.org>, Clark Williams <williams@redhat.com>, Andrew Morton <akpm@linux-foundation.org> Subject: Re: [PATCH 0/5] kcov: PREEMPT_RT fixup + misc Date: Mon, 6 Sep 2021 18:13:11 +0200 [thread overview] Message-ID: <CANpmjNPZMVkr5BpywHTY_m+ndLTeWrMLTog=yGG=VLg_miqUvQ@mail.gmail.com> (raw) In-Reply-To: <20210830172627.267989-1-bigeasy@linutronix.de> On Mon, 30 Aug 2021 at 19:26, Sebastian Andrzej Siewior <bigeasy@linutronix.de> wrote: > The last patch in series is follow-up to address the PREEMPT_RT issue > within in kcov reported by Clark [0]. > Patches 1-3 are smaller things that I noticed while staring at it. > Patch 4 is small change which makes replacement in #5 simpler / more > obvious. > I tested this with the three examples in the documentation folder and I > didn't notice higher latency with kcov enabled. Debug or not, I don't > see a reason to make the lock a raw_spin_lock_t annd it would complicate > memory allocation as mentioned in #5. Thanks for sorting this out. Given syzkaller is exercising all of KCOV's feature, I let syzkaller run for a few hours with PROVE_LOCKING (and PROVE_RAW_LOCK_NESTING) on, and looks fine: Acked-by: Marco Elver <elver@google.com> Tested-by: Marco Elver <elver@google.com> > One thing I noticed and have no idea if this is right or not: > The code seems to mix long and uint64_t for the reported instruction > pointer / position in the buffer. For instance > __sanitizer_cov_trace_pc() refers to a 64bit pointer (in the comment) > while the area pointer itself is (long *). The problematic part is that > a 32bit application on a 64bit pointer will expect a four byte pointer > while kernel uses an eight byte pointer. I think the code is consistent in using 'unsigned long' for writing regular pos/IP (except write_comp_data(), which has a comment about it). The mentions of 64-bit in comments might be inaccurate though. But I think it's working as expected: - on 64-bit kernels, pos/IP can be up to 64-bit; - on 32-bit kernels, pos/IP can only be up to 32-bit. User space necessarily has to know about the bit-ness of its kernel, because the coverage information is entirely dependent on the kernel image. I think the examples in documentation weren't exhaustive in this regard. At least that's my take -- Dmitry or Andrey would know for sure (Dmitry is currently on vacation, but hopefully can clarify next week). Thanks, -- Marco
next prev parent reply other threads:[~2021-09-06 16:13 UTC|newest] Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-30 17:26 Sebastian Andrzej Siewior 2021-08-30 17:26 ` [PATCH 1/5] Documentation/kcov: Include types.h in the example Sebastian Andrzej Siewior 2021-09-17 14:34 ` Dmitry Vyukov 2021-08-30 17:26 ` [PATCH 2/5] Documentation/kcov: Define `ip' " Sebastian Andrzej Siewior 2021-09-17 14:37 ` Dmitry Vyukov 2021-08-30 17:26 ` [PATCH 3/5] kcov: Allocate per-CPU memory on the relevant node Sebastian Andrzej Siewior 2021-09-17 14:38 ` Dmitry Vyukov 2021-08-30 17:26 ` [PATCH 4/5] kcov: Avoid enable+disable interrupts if !in_task() Sebastian Andrzej Siewior 2021-09-17 14:50 ` Dmitry Vyukov 2021-08-30 17:26 ` [PATCH 5/5] kcov: Replace local_irq_save() with a local_lock_t Sebastian Andrzej Siewior 2021-09-17 14:58 ` Dmitry Vyukov 2021-09-06 16:13 ` Marco Elver [this message] 2021-09-06 16:28 ` [PATCH 0/5] kcov: PREEMPT_RT fixup + misc Sebastian Andrzej Siewior 2021-09-20 9:26 ` Marco Elver 2021-09-20 9:50 ` Sebastian Andrzej Siewior
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to='CANpmjNPZMVkr5BpywHTY_m+ndLTeWrMLTog=yGG=VLg_miqUvQ@mail.gmail.com' \ --to=elver@google.com \ --cc=akpm@linux-foundation.org \ --cc=andreyknvl@gmail.com \ --cc=bigeasy@linutronix.de \ --cc=dvyukov@google.com \ --cc=kasan-dev@googlegroups.com \ --cc=linux-kernel@vger.kernel.org \ --cc=rostedt@goodmis.org \ --cc=tglx@linutronix.de \ --cc=williams@redhat.com \ --subject='Re: [PATCH 0/5] kcov: PREEMPT_RT fixup + misc' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.