systemd: assign real-time budget
This commit is contained in:
parent
d05ae4b444
commit
5a486a940c
|
@ -5,5 +5,18 @@ After=network.target sound.target
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=@prefix@/bin/mpd --no-daemon
|
ExecStart=@prefix@/bin/mpd --no-daemon
|
||||||
|
|
||||||
|
# allow MPD to use real-time priority 50
|
||||||
|
LimitRTPRIO=50
|
||||||
|
LimitRTTIME=-1
|
||||||
|
|
||||||
|
# move MPD to a top-level cgroup, as real-time budget assignment fails
|
||||||
|
# in cgroup /system/mpd.service, because /system has a zero real-time
|
||||||
|
# budget; see
|
||||||
|
# http://www.freedesktop.org/wiki/Software/systemd/MyServiceCantGetRealtime/
|
||||||
|
ControlGroup=cpu:/mpd
|
||||||
|
|
||||||
|
# assign a real-time budget
|
||||||
|
ControlGroupAttribute=cpu.rt_runtime_us 500000
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in New Issue