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

MPLS parsing overhead over 100 times #35

Open
gsankara opened this issue Nov 4, 2019 · 0 comments
Open

MPLS parsing overhead over 100 times #35

gsankara opened this issue Nov 4, 2019 · 0 comments

Comments

@gsankara
Copy link

gsankara commented Nov 4, 2019

When adding VLAN and MPLS headers to TCP/UDP packets and their respective parsing routines, I see a huge jump in the parsing time increases 100 times with MPLS. This is not seen with VLAN header packet parsing < 5 microseconds when used instead of MPLS.

Both are 4 byte headers as I know. Any reasons behind this skew ?

transition select(hdr.ethernet.etherType) {
        16w0x8847: parse_mpls;
        16w0x800: parse_ipv4;
        16w0x86dd: parse_ipv6;
        16w0x8100: parse_vlan;
    default: accept;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant