Skip to content

Commit

Permalink
Try with len that is multiple of 8
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Oct 18, 2024
1 parent b40b73c commit d1be7d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
fi
}
for mtu in 1500 65536; do
for mtu in 1496 65536; do
sudo ip link set dev lo mtu "$mtu"
for server in msquic neqo; do
for client in msquic neqo; do
Expand Down Expand Up @@ -180,7 +180,10 @@ jobs:
# Re-enable turboboost, hyperthreading and use powersave governor.
- name: Restore machine
run: sudo /root/bin/unprep.sh
run: |
sudo /root/bin/unprep.sh
# In case the previous test failed:
sudo ip link set dev lo mtu 65536
if: success() || failure() || cancelled()

- name: Post-process perf data
Expand Down

0 comments on commit d1be7d4

Please sign in to comment.