Lines Matching defs:ctl
403 u64 ctl = event->hw.config;
405 ctl |= RTIT_CTL_TRACEEN;
409 wrmsrl(MSR_IA32_RTIT_CTL, ctl);
411 WRITE_ONCE(event->hw.config, ctl);
527 u64 ctl = READ_ONCE(event->hw.config);
530 if (!(ctl & RTIT_CTL_TRACEEN))
533 ctl &= ~RTIT_CTL_TRACEEN;
535 wrmsrl(MSR_IA32_RTIT_CTL, ctl);
537 WRITE_ONCE(event->hw.config, ctl);
1750 u64 ctl;
1752 ret = rdmsrl_safe_on_cpu(cpu, MSR_IA32_RTIT_CTL, &ctl);
1753 if (!ret && (ctl & RTIT_CTL_TRACEEN))