X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fnx-match.h;h=bd4fea27e092b79478d7a50468fe538a2a5865b0;hb=406e37ecf554529e9380ef06863d85ccc94009d1;hp=c790333d19f7bd9408937d0879971f4625ec2caa;hpb=f393f81e425658cdfddf29ca23086bf66d6b733c;p=openvswitch diff --git a/lib/nx-match.h b/lib/nx-match.h index c790333d..bd4fea27 100644 --- a/lib/nx-match.h +++ b/lib/nx-match.h @@ -18,6 +18,9 @@ #define NX_MATCH_H 1 #include +#include +#include +#include "openvswitch/types.h" struct cls_rule; struct ds; @@ -50,6 +53,34 @@ int nxm_check_reg_load(const struct nx_action_reg_load *, const struct flow *); void nxm_execute_reg_move(const struct nx_action_reg_move *, struct flow *); void nxm_execute_reg_load(const struct nx_action_reg_load *, struct flow *); +int nxm_field_bytes(uint32_t header); +int nxm_field_bits(uint32_t header); + +const char *nxm_parse_field_bits(const char *s, + uint32_t *headerp, int *ofsp, int *n_bitsp); +void nxm_format_field_bits(struct ds *, uint32_t header, int ofs, int n_bits); + +/* Dealing with the 'ofs_nbits' members of struct nx_action_reg_load and struct + * nx_action_multipath. */ + +static inline ovs_be16 +nxm_encode_ofs_nbits(int ofs, int n_bits) +{ + return htons((ofs << 6) | (n_bits - 1)); +} + +static inline int +nxm_decode_ofs(ovs_be16 ofs_nbits) +{ + return ntohs(ofs_nbits) >> 6; +} + +static inline int +nxm_decode_n_bits(ovs_be16 ofs_nbits) +{ + return (ntohs(ofs_nbits) & 0x3f) + 1; +} + /* Upper bound on the length of an nx_match. The longest nx_match (assuming * we implement 4 registers) would be: *