2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

ovsdb_monitor: Fix style of prototypes.

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>
This commit is contained in:
Han Zhou
2019-02-15 12:25:58 -08:00
committed by Ben Pfaff
parent a3f4202655
commit be08459576
3 changed files with 42 additions and 42 deletions

View File

@@ -1578,7 +1578,7 @@ ovsdb_jsonrpc_monitor_cond_change(struct ovsdb_jsonrpc_session *s,
struct json *update_json; struct json *update_json;
update_json = ovsdb_monitor_get_update(m->dbmon, false, true, 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) { if (update_json) {
struct jsonrpc_msg *msg; struct jsonrpc_msg *msg;
struct json *p; 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, return ovsdb_monitor_get_update(m->dbmon, initial, false,
&m->unflushed, m->condition, m->version); m->condition, m->version, &m->unflushed);
} }
static bool static bool

View File

@@ -165,14 +165,14 @@ typedef struct json *
bool initial, unsigned long int *changed, bool initial, unsigned long int *changed,
size_t n_columns); 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( 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( 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( static void ovsdb_monitor_changes_destroy(
struct ovsdb_monitor_changes *changes); struct ovsdb_monitor_changes *);
static void ovsdb_monitor_table_track_changes(struct ovsdb_monitor_table *mt, static void ovsdb_monitor_table_track_changes(struct ovsdb_monitor_table *,
uint64_t unflushed); uint64_t unflushed);
static uint32_t static uint32_t
@@ -1121,9 +1121,9 @@ struct json *
ovsdb_monitor_get_update( ovsdb_monitor_get_update(
struct ovsdb_monitor *dbmon, struct ovsdb_monitor *dbmon,
bool initial, bool cond_updated, bool initial, bool cond_updated,
uint64_t *unflushed_,
struct ovsdb_monitor_session_condition *condition, 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 ovsdb_monitor_json_cache_node *cache_node = NULL;
struct shash_node *node; struct shash_node *node;

View File

@@ -44,73 +44,73 @@ enum ovsdb_monitor_version {
OVSDB_MONITOR_VERSION_MAX OVSDB_MONITOR_VERSION_MAX
}; };
struct ovsdb_monitor *ovsdb_monitor_create(struct ovsdb *db, struct ovsdb_monitor *ovsdb_monitor_create(struct ovsdb *,
struct ovsdb_jsonrpc_monitor *jsonrpc_monitor); struct ovsdb_jsonrpc_monitor *);
void ovsdb_monitors_remove(struct ovsdb *); void ovsdb_monitors_remove(struct ovsdb *);
void ovsdb_monitors_commit(struct ovsdb *, const struct ovsdb_txn *); void ovsdb_monitors_commit(struct ovsdb *, const struct ovsdb_txn *);
void ovsdb_monitor_prereplace_db(struct ovsdb *); 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, void ovsdb_monitor_add_jsonrpc_monitor(struct ovsdb_monitor *,
struct ovsdb_jsonrpc_monitor *jsonrpc_monitor); struct ovsdb_jsonrpc_monitor *);
void ovsdb_monitor_remove_jsonrpc_monitor(struct ovsdb_monitor *dbmon, void ovsdb_monitor_remove_jsonrpc_monitor(struct ovsdb_monitor *,
struct ovsdb_jsonrpc_monitor *jsonrpc_monitor, struct ovsdb_jsonrpc_monitor *,
uint64_t unflushed); uint64_t unflushed);
void ovsdb_monitor_add_table(struct ovsdb_monitor *m, void ovsdb_monitor_add_table(struct ovsdb_monitor *,
const struct ovsdb_table *table); const struct ovsdb_table *);
const char * ovsdb_monitor_add_column(struct ovsdb_monitor *dbmon, const char * ovsdb_monitor_add_column(struct ovsdb_monitor *,
const struct ovsdb_table *table, const struct ovsdb_table *,
const struct ovsdb_column *column, const struct ovsdb_column *,
enum ovsdb_monitor_selection select, enum ovsdb_monitor_selection,
bool monitored); bool monitored);
bool bool
ovsdb_monitor_table_exists(struct ovsdb_monitor *m, ovsdb_monitor_table_exists(struct ovsdb_monitor *,
const struct ovsdb_table *table); 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 initial,
bool cond_updated, bool cond_updated,
uint64_t *unflushed_transaction, struct ovsdb_monitor_session_condition *,
struct ovsdb_monitor_session_condition *condition, enum ovsdb_monitor_version,
enum ovsdb_monitor_version version); uint64_t *unflushed_transaction);
void ovsdb_monitor_table_add_select(struct ovsdb_monitor *dbmon, void ovsdb_monitor_table_add_select(struct ovsdb_monitor *,
const struct ovsdb_table *table, const struct ovsdb_table *,
enum ovsdb_monitor_selection select); 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); 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 * struct ovsdb_monitor_session_condition *
ovsdb_monitor_session_condition_create(void); ovsdb_monitor_session_condition_create(void);
void void
ovsdb_monitor_session_condition_destroy( ovsdb_monitor_session_condition_destroy(
struct ovsdb_monitor_session_condition *condition); struct ovsdb_monitor_session_condition *);
struct ovsdb_error * struct ovsdb_error *
ovsdb_monitor_table_condition_create( ovsdb_monitor_table_condition_create(
struct ovsdb_monitor_session_condition *condition, struct ovsdb_monitor_session_condition *,
const struct ovsdb_table *table, const struct ovsdb_table *,
const struct json *json_cnd); const struct json *json_cnd);
void void
ovsdb_monitor_condition_bind(struct ovsdb_monitor *dbmon, ovsdb_monitor_condition_bind(struct ovsdb_monitor *,
struct ovsdb_monitor_session_condition *cond); struct ovsdb_monitor_session_condition *);
struct ovsdb_error * struct ovsdb_error *
ovsdb_monitor_table_condition_update( ovsdb_monitor_table_condition_update(
struct ovsdb_monitor *dbmon, struct ovsdb_monitor *,
struct ovsdb_monitor_session_condition *condition, struct ovsdb_monitor_session_condition *,
const struct ovsdb_table *table, const struct ovsdb_table *,
const struct json *cond_json); const struct json *cond_json);
#endif #endif