X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=ovsdb%2Fexecution.c;h=176858240c87f1f294d03a3226155ceaf9d6bd9e;hb=48e1b7fb9b2e0f6c7cf3f54eda9679ec0130e737;hp=708cc60dd58352090b7f9bcf7e09774ec2c6fc18;hpb=e9387de4a2601ed2768baaa9bc92a3ef27f1145a;p=openvswitch diff --git a/ovsdb/execution.c b/ovsdb/execution.c index 708cc60d..17685824 100644 --- a/ovsdb/execution.c +++ b/ovsdb/execution.c @@ -200,7 +200,7 @@ exit: return results; } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_commit(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result OVS_UNUSED) { @@ -270,7 +270,7 @@ parse_row(const struct json *json, const struct ovsdb_table *table, } } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_insert(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result) { @@ -341,7 +341,7 @@ ovsdb_execute_insert(struct ovsdb_execution *x, struct ovsdb_parser *parser, return error; } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_select(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result) { @@ -408,7 +408,7 @@ update_row_cb(const struct ovsdb_row *row, void *ur_) return true; } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_update(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result) { @@ -465,7 +465,7 @@ mutate_row_cb(const struct ovsdb_row *row, void *mr_) return true; } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_mutate(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result) { @@ -522,7 +522,7 @@ delete_row_cb(const struct ovsdb_row *row, void *dr_) return true; } -struct ovsdb_error * +static struct ovsdb_error * ovsdb_execute_delete(struct ovsdb_execution *x, struct ovsdb_parser *parser, struct json *result) {