X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fofproto-dpif-xlate.h;h=8b01d4e462edc3f90e4f5ff4bb3f5beac7bddc9b;hb=72310b041cfa7d8e2ee5fb585348223ac7c22497;hp=11a180ae0128c8e90b71b5b875b7394b6aeb6b45;hpb=ce3955bed734b7459a8bdb3180284bf35dddaa7b;p=sliver-openvswitch.git diff --git a/ofproto/ofproto-dpif-xlate.h b/ofproto/ofproto-dpif-xlate.h index 11a180ae0..8b01d4e46 100644 --- a/ofproto/ofproto-dpif-xlate.h +++ b/ofproto/ofproto-dpif-xlate.h @@ -73,6 +73,12 @@ struct xlate_in { * not if we are just revalidating. */ bool may_learn; + /* If the caller of xlate_actions() doesn't need the flow_wildcards + * contained in struct xlate_out. 'skip_wildcards' can be set to true + * disabling the expensive wildcard computation. When true, 'wc' in struct + * xlate_out is undefined and should not be read. */ + bool skip_wildcards; + /* The rule initiating translation or NULL. If both 'rule' and 'ofpacts' * are NULL, xlate_actions() will do the initial rule lookup itself. */ struct rule_dpif *rule; @@ -123,7 +129,8 @@ void xlate_ofproto_set(struct ofproto_dpif *, const char *name, const struct mbridge *, const struct dpif_sflow *, const struct dpif_ipfix *, const struct netflow *, enum ofp_config_flags, bool forward_bpdu, - bool has_in_band) + bool has_in_band, bool variable_length_userdata, + size_t mpls_label_stack_length) OVS_REQ_WRLOCK(xlate_rwlock); void xlate_remove_ofproto(struct ofproto_dpif *) OVS_REQ_WRLOCK(xlate_rwlock); @@ -146,24 +153,20 @@ void xlate_ofport_remove(struct ofport_dpif *) OVS_REQ_WRLOCK(xlate_rwlock); int xlate_receive(const struct dpif_backer *, struct ofpbuf *packet, const struct nlattr *key, size_t key_len, - struct flow *, enum odp_key_fitness *, - struct ofproto_dpif **, odp_port_t *odp_in_port) + struct flow *, struct ofproto_dpif **, struct dpif_ipfix **, + struct dpif_sflow **, struct netflow **, + odp_port_t *odp_in_port) OVS_EXCLUDED(xlate_rwlock); void xlate_actions(struct xlate_in *, struct xlate_out *) OVS_EXCLUDED(xlate_rwlock); void xlate_in_init(struct xlate_in *, struct ofproto_dpif *, - const struct flow *, struct rule_dpif *, - uint16_t tcp_flags, const struct ofpbuf *packet); + const struct flow *, struct rule_dpif *, uint16_t tcp_flags, + const struct ofpbuf *packet); void xlate_out_uninit(struct xlate_out *); void xlate_actions_for_side_effects(struct xlate_in *); void xlate_out_copy(struct xlate_out *dst, const struct xlate_out *src); -struct dpif_sflow *xlate_get_sflow(const struct ofproto_dpif *) - OVS_EXCLUDED(xlate_rwlock); -struct dpif_ipfix *xlate_get_ipfix(const struct ofproto_dpif *) - OVS_EXCLUDED(xlate_rwlock); - int xlate_send_packet(const struct ofport_dpif *, struct ofpbuf *); #endif /* ofproto-dpif-xlate.h */