Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

baby hero test scale #586

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dash-pipeline/bmv2/stages/outbound_mapping.p4
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ control outbound_mapping_stage(inout headers_t hdr,
set_private_link_mapping(hdr, meta);
@defaultonly drop(meta);
}
size = 8388608;
const default_action = drop(meta);

ATTACH_TABLE_COUNTER(ca_to_pa_counter)
Expand Down
1 change: 1 addition & 0 deletions dash-pipeline/bmv2/stages/outbound_routing.p4
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ control outbound_routing_stage(inout headers_t hdr,
route_service_tunnel(hdr, meta);
drop(meta);
}
size = 4194304;
const default_action = drop(meta);

ATTACH_TABLE_COUNTER(routing_counter)
Expand Down
2 changes: 1 addition & 1 deletion test/test-cases/functional/saic/tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ All tests must be run from within a `dash-saichallenger-client` container. You c
Fetch and build bmv2 and collaterals. You may skip if you've already done this.
```
git clone https://github.com/sonic-net/DASH.git
cd dash-pipeline
cd ./DASH/dash-pipeline
make clean && make all
```
Launch the switch (console #1):
Expand Down
Loading
Loading