[BOLT] Ignore kernel interrupts by default

(cherry picked from FBD21431563)
This commit is contained in:
Maksim Panchenko 2020-05-06 11:52:16 -07:00
parent 7b61bdf8ea
commit 96c4168ddc
1 changed files with 3 additions and 3 deletions

View File

@ -113,14 +113,14 @@ WriteAutoFDOData("autofdo",
static cl::opt<bool>
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<unsigned long long>
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));