Re: [ovs-dev] [PATCH 2/3] dpif-provider: Clean up comments around ct functions.

2016-09-19 Thread Ben Pfaff
On Fri, Sep 16, 2016 at 11:27:01AM -0700, Justin Pettit wrote:
> Signed-off-by: Justin Pettit 

Acked-by: Ben Pfaff 
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev


[ovs-dev] [PATCH 2/3] dpif-provider: Clean up comments around ct functions.

2016-09-16 Thread Justin Pettit
Signed-off-by: Justin Pettit 
---
 lib/dpif-provider.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/dpif-provider.h b/lib/dpif-provider.h
index 21fb0ba..3152e22 100644
--- a/lib/dpif-provider.h
+++ b/lib/dpif-provider.h
@@ -401,7 +401,7 @@ struct dpif_class {
 /* Conntrack entry dumping interface.
  *
  * These functions are used by ct-dpif.c to provide a datapath-agnostic
- * dumping interface to the connection trackes provided by the
+ * dumping interface to the connection trackers provided by the
  * datapaths.
  *
  * ct_dump_start() should put in '*state' a pointer to a newly allocated
@@ -412,11 +412,11 @@ struct dpif_class {
  * ct_dump_next() should fill 'entry' with information from a connection
  * and prepare to dump the next one on a subsequest invocation.
  *
- * ct_dump_done should perform any cleanup necessary (including
+ * ct_dump_done() should perform any cleanup necessary (including
  * deallocating the 'state' structure, if applicable). */
 int (*ct_dump_start)(struct dpif *, struct ct_dpif_dump_state **state,
  const uint16_t *zone);
-int (*ct_dump_next)(struct dpif *, struct ct_dpif_dump_state *,
+int (*ct_dump_next)(struct dpif *, struct ct_dpif_dump_state *state,
 struct ct_dpif_entry *entry);
 int (*ct_dump_done)(struct dpif *, struct ct_dpif_dump_state *state);
 
-- 
1.9.1

___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev