Skip to content

Commit

Permalink
Add ice interface to netlink test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Nov 27, 2024
1 parent 4e27ab9 commit 1feb9b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion net.pl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

my $scriptname = "$0 @ARGV";

my @allifaces = qw(bge bnxt em igc ix ixl re vio vmx);
my @allifaces = qw(bge bnxt em ice igc ix ixl re vio vmx);
my @allmodifymodes = qw(none jumbo nolro nopf notso);
my @allpseudos = qw(none bridge carp gif gif6 gre veb vlan vxlan wg);
my @allsetupmodes = (qw(build install upgrade sysupgrade keep kernel reboot
Expand Down
3 changes: 2 additions & 1 deletion netlink-html.pl
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

my $now = strftime("%FT%TZ", gmtime);

my @allifaces = qw(bge bnxt em igc ix ixl re vio vmx);
my @allifaces = qw(bge bnxt em ice igc ix ixl re vio vmx);

my %opts;
getopts('d:h:lv', \%opts) or do {
Expand Down Expand Up @@ -310,6 +310,7 @@ sub html_hier_test_row_utilization {
"iface-bge" => 10 ** 9,
"iface-bnxt" => 10 * 10 ** 9,
"iface-em" => 10 ** 9,
"iface-ice" => 10 * 10 ** 9, # XXX faster devices exist
"iface-igc" => 2.5 * 10 ** 9,
"iface-ix" => 10 * 10 ** 9,
"iface-ixl" => 10 * 10 ** 9,
Expand Down
2 changes: 1 addition & 1 deletion netlink.pl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
use lib dirname($0);
use Netstat;

my @allifaces = qw(none bge bnxt em igc ix ixl re vio vmx);
my @allifaces = qw(none bge bnxt em ice igc ix ixl re vio vmx);
my @allmodifymodes = qw(none jumbo nolro nopf notso);
my @allpseudos = qw(none bridge carp gif gif6 gre veb vlan vxlan wg);
my @alltestmodes = sort qw(all icmp tcp udp splice);
Expand Down

0 comments on commit 1feb9b7

Please sign in to comment.