diff --git a/kernel/kcov.c b/kernel/kcov.c
index 6b8368be89c8e59fcdae30a4702f2146b5d0bffd..80bfe71bbe13ea45f7434ede1b453d42669b594d 100644
--- a/kernel/kcov.c
+++ b/kernel/kcov.c
@@ -1023,6 +1023,8 @@ EXPORT_SYMBOL(kcov_remote_stop);
 /* See the comment before kcov_remote_start() for usage details. */
 u64 kcov_common_handle(void)
 {
+	if (!in_task())
+		return 0;
 	return current->kcov_handle;
 }
 EXPORT_SYMBOL(kcov_common_handle);