From 96c4168ddc5291a6bab4fd60620db2b04f892af1 Mon Sep 17 00:00:00 2001 From: Maksim Panchenko Date: Wed, 6 May 2020 11:52:16 -0700 Subject: [PATCH] [BOLT] Ignore kernel interrupts by default (cherry picked from FBD21431563) --- bolt/src/DataAggregator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bolt/src/DataAggregator.cpp b/bolt/src/DataAggregator.cpp index f065234d73fb..17baa33cbfd8 100644 --- a/bolt/src/DataAggregator.cpp +++ b/bolt/src/DataAggregator.cpp @@ -113,14 +113,14 @@ WriteAutoFDOData("autofdo", static cl::opt IgnoreInterruptLBR("ignore-interrupt-lbr", - cl::desc("Ignore kernel interrupt LBR that happens asynchronously"), - cl::init(false), + cl::desc("ignore kernel interrupt LBR that happens asynchronously"), + cl::init(true), cl::ZeroOrMore, cl::cat(AggregatorCategory)); static cl::opt FilterPID("pid", - cl::desc("Only use samples from process with specified PID"), + cl::desc("only use samples from process with specified PID"), cl::init(0), cl::Optional, cl::cat(AggregatorCategory));