summaryrefslogtreecommitdiff
path: root/linux/perf.c
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2017-11-29 04:30:01 +0100
committerRobert Swiecki <robert@swiecki.net>2017-11-29 04:30:01 +0100
commit212959bb84e132a0f1d4c2df19bc2d47c1edac1c (patch)
treed2ea86785302d1e9206249add9bdc9b2a6c5715a /linux/perf.c
parentfd9636aa7a5317c20ecc9bbb08b19c506eca47eb (diff)
downloadhonggfuzz-212959bb84e132a0f1d4c2df19bc2d47c1edac1c.tar.gz
linux/pt: Seems << 11 makes it less stable in terms of IP points
Diffstat (limited to 'linux/perf.c')
-rw-r--r--linux/perf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/perf.c b/linux/perf.c
index 61e80adb..07556129 100644
--- a/linux/perf.c
+++ b/linux/perf.c
@@ -163,7 +163,7 @@ static bool arch_perfCreate(run_t* run, pid_t pid, dynFileMethod_t method, int*
case _HF_DYNFILE_IPT_BLOCK:
LOG_D("Using: (Intel PT) type=%" PRIu32 " for PID: %d", perfIntelPtPerfType, pid);
pe.type = perfIntelPtPerfType;
- pe.config = (1U << 10); /* Disable RETCompression */
+ pe.config = (1U << 11); /* Disable RETCompression */
break;
default:
LOG_E("Unknown perf mode: '%d' for PID: %d", method, pid);