Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
Skip ofed check
Browse files Browse the repository at this point in the history
-should not be necessary if proper packages (lib-rdma) are installed
-may not have ofed installed
  • Loading branch information
atheurer committed Jan 12, 2021
1 parent d18bbee commit e803122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launch-trex.sh
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ if [ -d ${trex_dir} -a -d ${tmp_dir} ]; then
else
vlan_opt=""
fi
trex_server_cmd="./t-rex-64 -i -c ${trex_cpus} --checksum-offload --cfg ${yaml_file} --iom 0 -v 4 --prefix trafficgen_trex_ ${vlan_opt}"
trex_server_cmd="./t-rex-64 -i -c ${trex_cpus} --no-ofed-check --checksum-offload --cfg ${yaml_file} --iom 0 -v 4 --prefix trafficgen_trex_ ${vlan_opt}"
echo "about to run: ${trex_server_cmd}"
echo "trex yaml:"
echo "-------------------------------------------------------------------"
Expand Down

2 comments on commit e803122

@k-rister
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is an interesting requirement -- meaning that I'm shocked I have never had a problem with this because I don't recall every doing anything to satisfy an ofed dependencies.

@atheurer
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this check is only made when mlx interfaces are used.

Please sign in to comment.