fix a bug that memory is limited to the first NUMA node when using cgroup

This commit is contained in:
zclok010 2019-03-28 17:26:35 +08:00
Родитель 4e0e4a2d1e
Коммит 2fa7452e49
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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