Skip to content

Commit

Permalink
Reduce outbound routing to 4k and mapping to 8k
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyzhai committed Nov 12, 2024
1 parent 40e1289 commit 1ca5dd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dash-pipeline/bmv2/stages/outbound_mapping.p4
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ control outbound_mapping_stage(
set_private_link_mapping(hdr, meta);
@defaultonly drop(meta);
}
size = 8 * 1024 * 1024;
size = 8 * 1024;
const default_action = drop(meta);

ATTACH_TABLE_COUNTER(ca_to_pa_counter)
Expand Down
2 changes: 1 addition & 1 deletion dash-pipeline/bmv2/stages/outbound_routing.p4
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ control outbound_routing_stage(
route_service_tunnel(hdr, meta);
drop(meta);
}
size = 4 * 1024 * 1024;
size = 4 * 1024;
const default_action = drop(meta);

ATTACH_TABLE_COUNTER(routing_counter)
Expand Down

0 comments on commit 1ca5dd2

Please sign in to comment.