Skip to content

Commit 43bc159

Browse files
Suneeth-Drli9
authored andcommitted
Fix: path to daemon programs
There was a variable mismatch in the bin/run-daemon script which introduced with the commit a0910a2 as result of which any daemon programs were not getting started and thus the server programs for all the networking microbenchmarks were not started. This commit fixes that by replacing the mismatched variables with appropiate names. Fixes: a0910a2(monitors: move monitors to be under programs dir) Applies cleanly on top of 2e94d95(intel/lkp-tests: master) Signed-off-by: Suneeth D <Suneeth.D@amd.com>
1 parent a68ddb7 commit 43bc159

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/run-daemon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ if [ -n "$nr_instances" ]; then
4444
export instance_cgroup=$cg
4545
setup_cgroup "$cg"
4646
numa_bind=$(numa_node_binding "$i")
47-
$numa_bind $runner_path "$@" &
47+
$numa_bind $program_path "$@" &
4848
to_wait="$to_wait $!"
4949
i=$((i+1))
5050
[ "$i" -gt "$nr_instances" ] && break
5151
done
5252
done
5353
wait $to_wait
5454
else
55-
exec $runner_path "$@"
55+
exec $program_path "$@"
5656
fi

0 commit comments

Comments
 (0)