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

Update simple_l3 P4 program actions to use PSA pre-defined actions #302

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions build/networking/examples/simple_l3/simple_l3.p4
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ control ingress(
)
{
action send(PortId_t port) {
ostd.egress_port = (PortId_t) port;
send_to_port(ostd, port);
}

action drop() {
ostd.drop = true;
ingress_drop(ostd);
}

table ipv4_host {
Expand Down
4 changes: 2 additions & 2 deletions build/networking/scripts/distro_pkg_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ ubuntu_install_build_pkgs() {
pyelftools \
scapy \
six \
cmake>=3.15.0 \
"cmake>=3.15.0" \
meson==0.59.4 \
ninja>=1.8.2
"ninja>=1.8.2"

# Cleanup
apt-get -y clean all
Expand Down