aboutsummaryrefslogtreecommitdiff
path: root/lib/nx-match.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-12-16 13:56:47 -0800
committerBen Pfaff <blp@nicira.com>2010-12-17 14:31:40 -0800
commitc979df0569a8e3a5e923f569b8302d1cbdf7610c (patch)
tree3b18b933e3c8904d281ffe1309985e22124ad5f8 /lib/nx-match.h
parent459749fe9b667cbc67f64aa8a6853512d442262f (diff)
nx-match: New helper functions for working with ofs_nbits in NXM actions.
Diffstat (limited to 'lib/nx-match.h')
-rw-r--r--lib/nx-match.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/nx-match.h b/lib/nx-match.h
index c790333d..d0e1c653 100644
--- a/lib/nx-match.h
+++ b/lib/nx-match.h
@@ -18,6 +18,9 @@
#define NX_MATCH_H 1
#include <stdint.h>
+#include <sys/types.h>
+#include <netinet/in.h>
+#include "openvswitch/types.h"
struct cls_rule;
struct ds;
@@ -50,6 +53,27 @@ 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 *);
+/* 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:
*