Blame SOURCES/rhel-rt.rules

876737
# udev rules specific to RHEL-RT Realtime kernel
876737
876737
# insure /dev/rtc points to /dev/rtc0
876737
# we use PROGRAM rather than SYMLINK because there is
c0b4cb
# a (good) possibility that a /dev/rtc device file
876737
# already exists and we want to replace it (hence the
876737
# ln -sf)
876737
KERNEL=="rtc0", PROGRAM+="/bin/ln -sf rtc0 /dev/rtc"
876737
876737
# Give permission to the realtime group to write a zero to /dev/cpu_dma_latency
c0b4cb
# This will tell the power management system not to transition to a high cstate
876737
KERNEL=="cpu_dma_latency", GROUP="realtime"
c0b4cb
c0b4cb
# Give permission to the realtime group to read the per cpu msr and cpuid
c0b4cb
# registers. This is needed by cyclictest in rt-tests when using the new
c0b4cb
# feature to read the smi counters. This is necessary but not sufficient
c0b4cb
# A program that wants to access these registers will also need CAP_SYS_RAWIO
c0b4cb
SUBSYSTEM=="msr", GROUP="realtime", MODE="0640"
c0b4cb
SUBSYSTEM=="cpuid", GROUP="realtime", MODE="0640"