diff mbox

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

Message ID 1474050422-4330-2-git-send-email-jpettit@ovn.org
State Accepted
Headers show

Commit Message

Justin Pettit Sept. 16, 2016, 6:27 p.m. UTC
Signed-off-by: Justin Pettit <jpettit@ovn.org>
---
 lib/dpif-provider.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Ben Pfaff Sept. 19, 2016, 3:20 p.m. UTC | #1
On Fri, Sep 16, 2016 at 11:27:01AM -0700, Justin Pettit wrote:
> Signed-off-by: Justin Pettit <jpettit@ovn.org>

Acked-by: Ben Pfaff <blp@ovn.org>
diff mbox

Patch

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);