1
0
Fork 0

cpu-partitioning: kernel cmdline parameter changed to tuned.non_isolcpus

It's more descriptive to use 'tuned.non_isolcpus' kernel boot command line
parameter for dracut preudev scripts provided by Tuned than the
previously used 'tuned.cpumask'.

Related: rhbz#1395899

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
Jaroslav Škarvada 2017-03-07 15:30:56 +01:00
parent 6350862bbd
commit 6906738603
No known key found for this signature in database
GPG key ID: D8E1C00E076E840B
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
cpumask="$(getargs tuned.cpumask)"
cpumask="$(getargs tuned.non_isolcpus)"
file=/sys/devices/virtual/workqueue/cpumask

View file

@ -44,4 +44,4 @@ priority=10
initrd_remove_dir=True
initrd_dst_img=tuned-initrd.img
initrd_add_dir=${tmpdir}
cmdline= nohz=on nohz_full=${isolated_cores} rcu_nocbs=${isolated_cores} tuned.cpumask=${not_isolated_cpumask} intel_pstate=disable nosoftlockup
cmdline= nohz=on nohz_full=${isolated_cores} rcu_nocbs=${isolated_cores} tuned.non_isolcpus=${not_isolated_cpumask} intel_pstate=disable nosoftlockup