X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fnx-match.h;h=7d316d80029ea9e434c9440b5c0372b71d077878;hb=f40869bdf6feca4d3ff7c59a1fb1f7ac101bc967;hp=f504ad07d9deb7c4086f0bd2eb907831cbd1d187;hpb=81a76618be9ea195a1e4a881ba9591728891d10b;p=sliver-openvswitch.git diff --git a/lib/nx-match.h b/lib/nx-match.h index f504ad07d..7d316d800 100644 --- a/lib/nx-match.h +++ b/lib/nx-match.h @@ -29,10 +29,12 @@ struct match; struct mf_subfield; struct ofpact_reg_move; struct ofpact_reg_load; +struct ofpact_stack; struct ofpbuf; struct nx_action_reg_load; struct nx_action_reg_move; + /* Nicira Extended Match (NXM) flexible flow match helper functions. * * See include/openflow/nicira-ext.h for NXM specification. @@ -65,6 +67,8 @@ enum ofperr nxm_reg_move_from_openflow(const struct nx_action_reg_move *, struct ofpbuf *ofpacts); enum ofperr nxm_reg_load_from_openflow(const struct nx_action_reg_load *, struct ofpbuf *ofpacts); +enum ofperr nxm_reg_load_from_openflow12_set_field( + const struct ofp12_action_set_field * oasf, struct ofpbuf *ofpacts); enum ofperr nxm_reg_move_check(const struct ofpact_reg_move *, const struct flow *); @@ -81,6 +85,30 @@ void nxm_execute_reg_load(const struct ofpact_reg_load *, struct flow *); void nxm_reg_load(const struct mf_subfield *, uint64_t src_data, struct flow *); +void nxm_parse_stack_action(struct ofpact_stack *, const char *); + +void nxm_format_stack_push(const struct ofpact_stack *, struct ds *); +void nxm_format_stack_pop(const struct ofpact_stack *, struct ds *); + +enum ofperr nxm_stack_push_from_openflow(const struct nx_action_stack *, + struct ofpbuf *ofpacts); +enum ofperr nxm_stack_pop_from_openflow(const struct nx_action_stack *, + struct ofpbuf *ofpacts); +enum ofperr nxm_stack_push_check(const struct ofpact_stack *, + const struct flow *); +enum ofperr nxm_stack_pop_check(const struct ofpact_stack *, + const struct flow *); + +void nxm_stack_push_to_nxast(const struct ofpact_stack *, + struct ofpbuf *openflow); +void nxm_stack_pop_to_nxast(const struct ofpact_stack *, + struct ofpbuf *openflow); + +void nxm_execute_stack_push(const struct ofpact_stack *, + const struct flow *, struct ofpbuf *); +void nxm_execute_stack_pop(const struct ofpact_stack *, + struct flow *, struct ofpbuf *); + int nxm_field_bytes(uint32_t header); int nxm_field_bits(uint32_t header);