nx-match: Make nxm_field_bytes(), nxm_field_bits() public.
authorBen Pfaff <blp@nicira.com>
Thu, 16 Dec 2010 21:57:08 +0000 (13:57 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 17 Dec 2010 22:31:40 +0000 (14:31 -0800)
lib/nx-match.c
lib/nx-match.h

index 92d3b9e4569068e10b92168b70d549cae7e82786..04c75b8b02ca5ad85970d564bc7d9c1ca565a7bd 100644 (file)
@@ -123,7 +123,7 @@ nxm_field_lookup(uint32_t header)
 
 /* Returns the width of the data for a field with the given 'header', in
  * bytes. */
-static int
+int
 nxm_field_bytes(uint32_t header)
 {
     unsigned int length = NXM_LENGTH(header);
@@ -132,7 +132,7 @@ nxm_field_bytes(uint32_t header)
 
 /* Returns the width of the data for a field with the given 'header', in
  * bits. */
-static int
+int
 nxm_field_bits(uint32_t header)
 {
     return nxm_field_bytes(header) * 8;
index d0e1c653e48e7f3296acf545b6d2ad8b4b2a8e46..07d695de015b9eae3d192f830a186f0f6c48a8e9 100644 (file)
@@ -53,6 +53,9 @@ 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);
+
 /* Dealing with the 'ofs_nbits' members of struct nx_action_reg_load and struct
  * nx_action_multipath. */