File tree Expand file tree Collapse file tree 5 files changed +7
-3
lines changed
dpd-client/tests/integration_tests Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
22
# ###
23
23
# ### <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
24
24
25
+ export RUST_BACKTRACE=1
26
+
25
27
set -o errexit
26
28
set -o pipefail
27
29
set -o xtrace
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if [ $SDE_CALC != $SDE_DEB_SHA256 ]; then
12
12
echo " downloaded tofino_sde has a bad checksum"
13
13
exit 1
14
14
fi
15
- pfexec dpkg -i $PKG
15
+ sudo dpkg -i $PKG
16
16
17
17
export SDE=/opt/oxide/tofino_sde
18
18
export LD_LIBRARY_PATH=" $SDE /lib:$LD_LIBRARY_PATH "
Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ p4_artifacts*
20
20
21
21
# OS artifacts
22
22
.DS_Store
23
+ ! .github
Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ use dpd_client::ResponseValue;
35
35
// This table has further shrunk to 4022 entries with the open source
36
36
// compiler. That is being tracked as issue #1092, which will presumably
37
37
// subsume #1013.
38
- const IPV4_LPM_SIZE : usize = 4022 ; // ipv4 forwarding table
38
+ // update: with the move to 8192 entries we're now at 8124
39
+ const IPV4_LPM_SIZE : usize = 8125 ; // ipv4 forwarding table
39
40
const IPV6_LPM_SIZE : usize = 1023 ; // ipv6 forwarding table
40
41
const SWITCH_IPV4_ADDRS_SIZE : usize = 511 ; // ipv4 addrs assigned to our ports
41
42
const SWITCH_IPV6_ADDRS_SIZE : usize = 511 ; // ipv6 addrs assigned to our ports
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const bit<16> L2_ISOLATED_FLAG = 0x8000;
5
5
// is going to need to come either through ATCAM/ALPM or code restructuring.
6
6
const int IPV4_NAT_TABLE_SIZE = 1024 ; // nat routing table
7
7
const int IPV6_NAT_TABLE_SIZE = 1024 ; // nat routing table
8
- const int IPV4_LPM_SIZE = 4096 ; // ipv4 forwarding table
8
+ const int IPV4_LPM_SIZE = 8192 ; // ipv4 forwarding table
9
9
const int IPV6_LPM_SIZE = 1024 ; // ipv6 forwarding table
10
10
11
11
const int IPV4_ARP_SIZE = 512 ; // arp cache
You can’t perform that action at this time.
0 commit comments