]> git.baikalelectronics.ru Git - kernel.git/commit
kernel: make kcov_common_handle consider the current context
authorAleksandr Nogikh <nogikh@google.com>
Thu, 29 Oct 2020 17:36:18 +0000 (17:36 +0000)
committerJakub Kicinski <kuba@kernel.org>
Tue, 3 Nov 2020 02:00:20 +0000 (18:00 -0800)
commitc5681cedfa78974e2e27c9e57a5422dc103b6874
treeae9485a2eee965fbe97dba350887c00cb71e7c9e
parent7801f6f364029f706778aae9732b25041b899e0e
kernel: make kcov_common_handle consider the current context

kcov_common_handle is a method that is used to obtain a "default" KCOV
remote handle of the current process. The handle can later be passed
to kcov_remote_start in order to collect coverage for the processing
that is initiated by one process, but done in another. For details see
Documentation/dev-tools/kcov.rst and comments in kernel/kcov.c.

Presently, if kcov_common_handle is called in an IRQ context, it will
return a handle for the interrupted process. This may lead to
unreliable and incorrect coverage collection.

Adjust the behavior of kcov_common_handle in the following way. If it
is called in a task context, return the common handle for the
currently running task. Otherwise, return 0.

Signed-off-by: Aleksandr Nogikh <nogikh@google.com>
Reviewed-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
kernel/kcov.c