The clock source is used for kernel timers, and it is important to use a high-quality one because game servers use kernel timers constantly. Using a poor clock source can lead to problems with the game skipping or with the FPS being unstable/dipping.
Normally the kernel picks the best clocksource automatically. To see its current choice, use this command:
Code: Select all
cat /sys/devices/system/clocksource/clocksource0/current_clocksource
You can see what other clock sources are available with this command:
Code: Select all
cat /sys/devices/system/clocksource/clocksource0/available_clocksource
Code: Select all
xen acpi_pm hpet tsc
Usually "tsc" is the best choice, but you can try any of the others out, as well, by changing the setting on the fly. To do this, just echo the one you want into the current_clocksource. For example:
Code: Select all
echo hpet > /sys/devices/system/clocksource/clocksource0/available_clocksource