Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement load balance for cgroup2 #87

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions bash/library/bench-base
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,93 @@ function validate_clocksource() {
return 1
fi
}

function disable_balance_v1()
{
local cpulist="$1"; shift
local cpu=""
local file=
local flags_cur=
for cpu in `echo ${cpulist} | sed -e 's/,/ /g'`; do
for file in $(find /proc/sys/kernel/sched_domain/cpu$cpu -name flags -print); do
flags_cur=$(cat $file)
flags_cur=$((flags_cur & 0xfffe))
echo $flags_cur > $file
done
done
}

function enable_balance_v1()
{
local cpulist="$1"; shift
local cpu=""
local file=
local flags_cur=
for cpu in `echo ${cpulist} | sed -e 's/,/ /g'`; do
for file in $(find /proc/sys/kernel/sched_domain/cpu$cpu -name flags -print); do
flags_cur=$(cat $file)
flags_cur=$((flags_cur | 0x1))
echo $flags_cur > $file
done
done
}

function enable_balance_v2()
{
echo member > /sys/fs/cgroup/crucible_no_balance/cpuset.cpus.partition
echo -cpuset > /sys/fs/cgroup/cgroup.subtree_control
rmdir /sys/fs/cgroup/crucible_no_balance
}

function disable_balance_v2()
{
local cpulist="$1"; shift
echo +cpuset > /sys/fs/cgroup/cgroup.subtree_control
mkdir -p /sys/fs/cgroup/crucible_no_balance
echo $cpulist > /sys/fs/cgroup/crucible_no_balance/cpuset.cpus
echo isolated > /sys/fs/cgroup/crucible_no_balance/cpuset.cpus.partition
}

function enable_balance()
{
local cpulist="$1"; shift
local debug="$1"; shift

if [ -n "$debug" ]; then
echo Y > /sys/kernel/debug/sched/verbose
fi

cmd=$(mount | grep cgroup | awk '{ print $1 }')
if [[ "$cmd" =~ "cgroup2" ]]; then
enable_balance_v2
else
enable_balance_v1 $cpulist
fi

if [ -n "$debug" ]; then
echo N > /sys/kernel/debug/sched/verbose
fi
}

function disable_balance()
{
local cpulist="$1"; shift
local debug="$1"; shift

if [ -n "$debug" ]; then
echo Y > /sys/kernel/debug/sched/verbose
fi

cmd=$(mount | grep cgroup | awk '{ print $1 }')
if [[ "$cmd" =~ "cgroup2" ]]; then
disable_balance_v2 $cpulist
else
disable_balance_v1 $cpulist
fi

if [ -n "$debug" ]; then
echo N > /sys/kernel/debug/sched/verbose
fi
}


Loading