X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fodp-util.h;h=821b2c412246178132b65dbef1585f92ce8c866f;hb=1e7db67406082b4abdfd8bc5137e19de73f0f3e4;hp=2712cb007583513579621e93dffd6705c2a77c63;hpb=0a37839c03307cc4cc726d27a7348c05d469c5eb;p=sliver-openvswitch.git diff --git a/lib/odp-util.h b/lib/odp-util.h index 2712cb007..821b2c412 100644 --- a/lib/odp-util.h +++ b/lib/odp-util.h @@ -35,6 +35,36 @@ struct nlattr; struct ofpbuf; struct simap; +#define SLOW_PATH_REASONS \ + /* These reasons are mutually exclusive. */ \ + SPR(SLOW_CFM, "cfm", "Consists of CFM packets") \ + SPR(SLOW_BFD, "bfd", "Consists of BFD packets") \ + SPR(SLOW_LACP, "lacp", "Consists of LACP packets") \ + SPR(SLOW_STP, "stp", "Consists of STP packets") \ + SPR(SLOW_CONTROLLER, "controller", \ + "Sends \"packet-in\" messages to the OpenFlow controller") \ + SPR(SLOW_ACTION, "action", \ + "Uses action(s) not supported by datapath") + +/* Indexes for slow-path reasons. Client code uses "enum slow_path_reason" + * values instead of these, these are just a way to construct those. */ +enum { +#define SPR(ENUM, STRING, EXPLANATION) ENUM##_INDEX, + SLOW_PATH_REASONS +#undef SPR +}; + +/* Reasons why a subfacet might not be fast-pathable. + * + * Each reason is a separate bit to allow reasons to be combined. */ +enum slow_path_reason { +#define SPR(ENUM, STRING, EXPLANATION) ENUM = 1 << ENUM##_INDEX, + SLOW_PATH_REASONS +#undef SPR +}; + +const char *slow_path_reason_to_explanation(enum slow_path_reason); + #define ODPP_LOCAL ODP_PORT_C(OVSP_LOCAL) #define ODPP_NONE ODP_PORT_C(UINT32_MAX) @@ -141,9 +171,11 @@ const char *odp_key_fitness_to_string(enum odp_key_fitness); void commit_odp_tunnel_action(const struct flow *, struct flow *base, struct ofpbuf *odp_actions); -void commit_odp_actions(const struct flow *, struct flow *base, - struct ofpbuf *odp_actions, struct flow_wildcards *wc, - int *mpls_depth_delta); +enum slow_path_reason commit_odp_actions(const struct flow *, + struct flow *base, + struct ofpbuf *odp_actions, + struct flow_wildcards *wc, + int *mpls_depth_delta); /* ofproto-dpif interface. * @@ -199,14 +231,4 @@ void odp_put_tunnel_action(const struct flow_tnl *tunnel, void odp_put_pkt_mark_action(const uint32_t pkt_mark, struct ofpbuf *odp_actions); -/* Reasons why a subfacet might not be fast-pathable. */ -enum slow_path_reason { - SLOW_CFM = 1, /* CFM packets need per-packet processing. */ - SLOW_LACP, /* LACP packets need per-packet processing. */ - SLOW_STP, /* STP packets need per-packet processing. */ - SLOW_BFD, /* BFD packets need per-packet processing. */ - SLOW_CONTROLLER, /* Packets must go to OpenFlow controller. */ - __SLOW_MAX -}; - #endif /* odp-util.h */