[PATCH 3/7] kcov: allow using KCOV_TRACE_UNIQ_[PC|EDGE] modes together

From: Jiao, Joey
Date: Tue Jan 14 2025 - 00:36:47 EST


KCOV_TRACE_UNIQ_PC and KCOV_TRACE_UNIQ_EDGE modes can be used
separately, and now they can be used together to simulate current
KCOV_TRACE_PC mode without sequence info.

Signed-off-by: Jiao, Joey <quic_jiangenj@xxxxxxxxxxx>
---
kernel/kcov.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/kernel/kcov.c b/kernel/kcov.c
index 5a0ead92729294d99db80bb4e0f5b04c8b025dba..c04bbec9ac3186a5145240de8ac609ad8a7ca733 100644
--- a/kernel/kcov.c
+++ b/kernel/kcov.c
@@ -716,6 +716,8 @@ static int kcov_close(struct inode *inode, struct file *filep)

static int kcov_get_mode(unsigned long arg)
{
+ int mode = 0;
+
if (arg == KCOV_TRACE_PC)
return KCOV_MODE_TRACE_PC;
else if (arg == KCOV_TRACE_CMP)
@@ -724,12 +726,14 @@ static int kcov_get_mode(unsigned long arg)
#else
return -ENOTSUPP;
#endif
- else if (arg == KCOV_TRACE_UNIQ_PC)
- return KCOV_MODE_TRACE_UNIQ_PC;
- else if (arg == KCOV_TRACE_UNIQ_EDGE)
- return KCOV_MODE_TRACE_UNIQ_EDGE;
- else
+ if (arg & KCOV_TRACE_UNIQ_PC)
+ mode |= KCOV_MODE_TRACE_UNIQ_PC;
+ if (arg & KCOV_TRACE_UNIQ_EDGE)
+ mode |= KCOV_MODE_TRACE_UNIQ_EDGE;
+ if (!mode)
return -EINVAL;
+
+ return mode;
}

/*

--
2.47.1