Commit 5fe7042d authored by Andrey Konovalov's avatar Andrey Konovalov Committed by Linus Torvalds

kcov: use t->kcov_mode as enabled indicator

Currently kcov_remote_start() and kcov_remote_stop() check t->kcov to find
out whether the coverage is already being collected by the current task.
Use t->kcov_mode for that instead.  This doesn't change the overall
behavior in any way, but serves as a preparation for the following softirq
coverage collection support patch.
Signed-off-by: default avatarAndrey Konovalov <andreyknvl@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Reviewed-by: default avatarDmitry Vyukov <dvyukov@google.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Alexander Potapenko <glider@google.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Marco Elver <elver@google.com>
Cc: Andrey Konovalov <andreyknvl@gmail.com>
Link: http://lkml.kernel.org/r/f70377945d1d8e6e4916cbce871a12303d6186b4.1585233617.git.andreyknvl@google.com
Link: http://lkml.kernel.org/r/ee1a1dec43059da5d7664c85c1addc89c4cd58de.1584655448.git.andreyknvl@google.comSigned-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent eeb91f9a
...@@ -746,26 +746,33 @@ static const struct file_operations kcov_fops = { ...@@ -746,26 +746,33 @@ static const struct file_operations kcov_fops = {
* In turns kcov_remote_stop() clears those pointers from task_struct to stop * In turns kcov_remote_stop() clears those pointers from task_struct to stop
* collecting coverage and copies all collected coverage into the kcov area. * collecting coverage and copies all collected coverage into the kcov area.
*/ */
static inline bool kcov_mode_enabled(unsigned int mode)
{
return (mode & ~KCOV_IN_CTXSW) != KCOV_MODE_DISABLED;
}
void kcov_remote_start(u64 handle) void kcov_remote_start(u64 handle)
{ {
struct task_struct *t = current;
struct kcov_remote *remote; struct kcov_remote *remote;
struct kcov *kcov; struct kcov *kcov;
unsigned int mode;
void *area; void *area;
struct task_struct *t;
unsigned int size; unsigned int size;
enum kcov_mode mode;
int sequence; int sequence;
if (WARN_ON(!kcov_check_handle(handle, true, true, true))) if (WARN_ON(!kcov_check_handle(handle, true, true, true)))
return; return;
if (WARN_ON(!in_task())) if (WARN_ON(!in_task()))
return; return;
t = current;
/* /*
* Check that kcov_remote_start is not called twice * Check that kcov_remote_start is not called twice
* nor called by user tasks (with enabled kcov). * nor called by user tasks (with enabled kcov).
*/ */
if (WARN_ON(t->kcov)) mode = READ_ONCE(t->kcov_mode);
if (WARN_ON(kcov_mode_enabled(mode)))
return; return;
kcov_debug("handle = %llx\n", handle); kcov_debug("handle = %llx\n", handle);
...@@ -863,13 +870,20 @@ static void kcov_move_area(enum kcov_mode mode, void *dst_area, ...@@ -863,13 +870,20 @@ static void kcov_move_area(enum kcov_mode mode, void *dst_area,
void kcov_remote_stop(void) void kcov_remote_stop(void)
{ {
struct task_struct *t = current; struct task_struct *t = current;
struct kcov *kcov = t->kcov; struct kcov *kcov;
void *area = t->kcov_area; unsigned int mode;
unsigned int size = t->kcov_size; void *area;
int sequence = t->kcov_sequence; unsigned int size;
int sequence;
if (!kcov) mode = READ_ONCE(t->kcov_mode);
barrier();
if (!kcov_mode_enabled(mode))
return; return;
kcov = t->kcov;
area = t->kcov_area;
size = t->kcov_size;
sequence = t->kcov_sequence;
kcov_stop(t); kcov_stop(t);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment