]> git.proxmox.com Git - ovs.git/commitdiff
dpif-provider: Clean up comments around ct functions.
authorJustin Pettit <jpettit@ovn.org>
Thu, 11 Aug 2016 19:50:55 +0000 (12:50 -0700)
committerJustin Pettit <jpettit@ovn.org>
Mon, 19 Sep 2016 16:06:21 +0000 (09:06 -0700)
Signed-off-by: Justin Pettit <jpettit@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
lib/dpif-provider.h

index 21fb0ba33eea64600a729401639f6888f6259868..3152e226ee049a83e8ddfaee258ef15e05cc1795 100644 (file)
@@ -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);