fix a bug that memory is limited to the first NUMA node when using cgroup
This commit is contained in:
Родитель
4e0e4a2d1e
Коммит
2fa7452e49
|
@ -120,7 +120,8 @@ if $CGInstalled && ! $cgDisabled; then
|
|||
while [ $maxLoop -gt 0 ]
|
||||
do
|
||||
memsFile=$(GetMemsFile "$groupName")
|
||||
echo 0 > "$memsFile"
|
||||
numaMaxIndex=$((`lscpu | grep 'NUMA node(s)' | awk '{print $NF}'` - 1))
|
||||
echo 0-$numaMaxIndex > "$memsFile"
|
||||
ec=$?
|
||||
if [ $ec -eq 0 ]
|
||||
then
|
||||
|
|
Загрузка…
Ссылка в новой задаче