]> git.proxmox.com Git - ovs.git/commitdiff
ovsdb_monitor: Fix style of prototypes.
authorHan Zhou <hzhou8@ebay.com>
Fri, 15 Feb 2019 20:25:58 +0000 (12:25 -0800)
committerBen Pfaff <blp@ovn.org>
Fri, 22 Feb 2019 22:51:17 +0000 (14:51 -0800)
Ommiting the parameter names in prototypes, as suggested by coding
style: Omit parameter names from function prototypes when the names
do not give useful information.

Adjust orders of parameters as suggested by coding style.

Signed-off-by: Han Zhou <hzhou8@ebay.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
ovsdb/jsonrpc-server.c
ovsdb/monitor.c
ovsdb/monitor.h

index 7c7a277f0d49f1df28e045e3725af32c62393d08..77f15d95cd4082b2a1509c7734dde37623f28504 100644 (file)
@@ -1578,7 +1578,7 @@ ovsdb_jsonrpc_monitor_cond_change(struct ovsdb_jsonrpc_session *s,
     struct json *update_json;
 
     update_json = ovsdb_monitor_get_update(m->dbmon, false, true,
-                                    &m->unflushed, m->condition, m->version);
+                                    m->condition, m->version, &m->unflushed);
     if (update_json) {
         struct jsonrpc_msg *msg;
         struct json *p;
@@ -1653,7 +1653,7 @@ ovsdb_jsonrpc_monitor_compose_update(struct ovsdb_jsonrpc_monitor *m,
     }
 
     return ovsdb_monitor_get_update(m->dbmon, initial, false,
-                                    &m->unflushed, m->condition, m->version);
+                                    m->condition, m->version, &m->unflushed);
 }
 
 static bool
index 29cf93e28c09d104445e6a6ffadd2d5e1d0c74e6..1175e2846df7d40487a4db6bbafc9dde640f4ffe 100644 (file)
@@ -165,14 +165,14 @@ typedef struct json *
      bool initial, unsigned long int *changed,
      size_t n_columns);
 
-static void ovsdb_monitor_destroy(struct ovsdb_monitor *dbmon);
+static void ovsdb_monitor_destroy(struct ovsdb_monitor *);
 static struct ovsdb_monitor_changes * ovsdb_monitor_table_add_changes(
-    struct ovsdb_monitor_table *mt, uint64_t next_txn);
+    struct ovsdb_monitor_table *, uint64_t next_txn);
 static struct ovsdb_monitor_changes *ovsdb_monitor_table_find_changes(
-    struct ovsdb_monitor_table *mt, uint64_t unflushed);
+    struct ovsdb_monitor_table *, uint64_t unflushed);
 static void ovsdb_monitor_changes_destroy(
-                                  struct ovsdb_monitor_changes *changes);
-static void ovsdb_monitor_table_track_changes(struct ovsdb_monitor_table *mt,
+                                  struct ovsdb_monitor_changes *);
+static void ovsdb_monitor_table_track_changes(struct ovsdb_monitor_table *,
                                   uint64_t unflushed);
 
 static uint32_t
@@ -1121,9 +1121,9 @@ struct json *
 ovsdb_monitor_get_update(
              struct ovsdb_monitor *dbmon,
              bool initial, bool cond_updated,
-             uint64_t *unflushed_,
              struct ovsdb_monitor_session_condition *condition,
-             enum ovsdb_monitor_version version)
+             enum ovsdb_monitor_version version,
+             uint64_t *unflushed_)
 {
     struct ovsdb_monitor_json_cache_node *cache_node = NULL;
     struct shash_node *node;
index eb3ff270c9f317b03ac685731899422ede081671..9bc06133fa6bf171d84ca6e80dbdda4e6f54aaa7 100644 (file)
@@ -44,73 +44,73 @@ enum ovsdb_monitor_version {
       OVSDB_MONITOR_VERSION_MAX
 };
 
-struct ovsdb_monitor *ovsdb_monitor_create(struct ovsdb *db,
-                       struct ovsdb_jsonrpc_monitor *jsonrpc_monitor);
+struct ovsdb_monitor *ovsdb_monitor_create(struct ovsdb *,
+                       struct ovsdb_jsonrpc_monitor *);
 void ovsdb_monitors_remove(struct ovsdb *);
 void ovsdb_monitors_commit(struct ovsdb *, const struct ovsdb_txn *);
 
 void ovsdb_monitor_prereplace_db(struct ovsdb *);
 
-struct ovsdb_monitor *ovsdb_monitor_add(struct ovsdb_monitor *dbmon);
+struct ovsdb_monitor *ovsdb_monitor_add(struct ovsdb_monitor *);
 
-void ovsdb_monitor_add_jsonrpc_monitor(struct ovsdb_monitor *dbmon,
-                       struct ovsdb_jsonrpc_monitor *jsonrpc_monitor);
+void ovsdb_monitor_add_jsonrpc_monitor(struct ovsdb_monitor *,
+                       struct ovsdb_jsonrpc_monitor *);
 
-void ovsdb_monitor_remove_jsonrpc_monitor(struct ovsdb_monitor *dbmon,
-                               struct ovsdb_jsonrpc_monitor *jsonrpc_monitor,
+void ovsdb_monitor_remove_jsonrpc_monitor(struct ovsdb_monitor *,
+                               struct ovsdb_jsonrpc_monitor *,
                                uint64_t unflushed);
 
-void ovsdb_monitor_add_table(struct ovsdb_monitor *m,
-                             const struct ovsdb_table *table);
+void ovsdb_monitor_add_table(struct ovsdb_monitor *,
+                             const struct ovsdb_table *);
 
-const char * ovsdb_monitor_add_column(struct ovsdb_monitor *dbmon,
-                                      const struct ovsdb_table *table,
-                                      const struct ovsdb_column *column,
-                                      enum ovsdb_monitor_selection select,
+const char * ovsdb_monitor_add_column(struct ovsdb_monitor *,
+                                      const struct ovsdb_table *,
+                                      const struct ovsdb_column *,
+                                      enum ovsdb_monitor_selection,
                                       bool monitored);
 bool
-ovsdb_monitor_table_exists(struct ovsdb_monitor *m,
-                           const struct ovsdb_table *table);
+ovsdb_monitor_table_exists(struct ovsdb_monitor *,
+                           const struct ovsdb_table *);
 
-struct json *ovsdb_monitor_get_update(struct ovsdb_monitor *dbmon,
+struct json *ovsdb_monitor_get_update(struct ovsdb_monitor *,
                                       bool initial,
                                       bool cond_updated,
-                                      uint64_t *unflushed_transaction,
-                                      struct ovsdb_monitor_session_condition *condition,
-                                      enum ovsdb_monitor_version version);
+                                      struct ovsdb_monitor_session_condition *,
+                                      enum ovsdb_monitor_version,
+                                      uint64_t *unflushed_transaction);
 
-void ovsdb_monitor_table_add_select(struct ovsdb_monitor *dbmon,
-                                    const struct ovsdb_table *table,
-                                    enum ovsdb_monitor_selection select);
+void ovsdb_monitor_table_add_select(struct ovsdb_monitor *,
+                                    const struct ovsdb_table *,
+                                    enum ovsdb_monitor_selection);
 
-bool ovsdb_monitor_needs_flush(struct ovsdb_monitor *dbmon,
+bool ovsdb_monitor_needs_flush(struct ovsdb_monitor *,
                                uint64_t next_transaction);
 
-void ovsdb_monitor_get_initial(const struct ovsdb_monitor *dbmon);
+void ovsdb_monitor_get_initial(const struct ovsdb_monitor *);
 
-void ovsdb_monitor_get_memory_usage(struct simap *usage);
+void ovsdb_monitor_get_memory_usage(struct simap *);
 
 struct ovsdb_monitor_session_condition *
 ovsdb_monitor_session_condition_create(void);
 
 void
 ovsdb_monitor_session_condition_destroy(
-                          struct ovsdb_monitor_session_condition *condition);
+                          struct ovsdb_monitor_session_condition *);
 struct ovsdb_error *
 ovsdb_monitor_table_condition_create(
-                          struct ovsdb_monitor_session_condition *condition,
-                          const struct ovsdb_table *table,
+                          struct ovsdb_monitor_session_condition *,
+                          const struct ovsdb_table *,
                           const struct json *json_cnd);
 
 void
-ovsdb_monitor_condition_bind(struct ovsdb_monitor *dbmon,
-                             struct ovsdb_monitor_session_condition *cond);
+ovsdb_monitor_condition_bind(struct ovsdb_monitor *,
+                             struct ovsdb_monitor_session_condition *);
 
 struct ovsdb_error *
 ovsdb_monitor_table_condition_update(
-                           struct ovsdb_monitor *dbmon,
-                           struct ovsdb_monitor_session_condition *condition,
-                           const struct ovsdb_table *table,
+                           struct ovsdb_monitor *,
+                           struct ovsdb_monitor_session_condition *,
+                           const struct ovsdb_table *,
                            const struct json *cond_json);
 
 #endif