]> git.proxmox.com Git - ovs.git/commitdiff
rconn: Remove write-only struct members.
authorBen Pfaff <blp@ovn.org>
Tue, 11 Jun 2019 16:55:15 +0000 (09:55 -0700)
committerBen Pfaff <blp@ovn.org>
Fri, 5 Jul 2019 20:35:05 +0000 (13:35 -0700)
Acked-by: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
lib/rconn.c

index a5b31d099efd9f8c921358b9a7cbeb4fe39b2375..ba95bb3a1a611acac63a2a95d791a063242d67a9 100644 (file)
@@ -118,12 +118,6 @@ struct rconn {
     bool probably_admitted;
     time_t last_admitted;
 
-    /* These values are simply for statistics reporting, not used directly by
-     * anything internal to the rconn (or ofproto for that matter). */
-    unsigned int n_attempted_connections, n_successful_connections;
-    time_t creation_time;
-    unsigned long int total_time_connected;
-
     /* Throughout this file, "probe" is shorthand for "inactivity probe".  When
      * no activity has been observed from the peer for a while, we send out an
      * echo request as an inactivity probe packet.  We should receive back a
@@ -272,11 +266,6 @@ rconn_create(int probe_interval, int max_backoff, uint8_t dscp,
     rc->probably_admitted = false;
     rc->last_admitted = time_now();
 
-    rc->n_attempted_connections = 0;
-    rc->n_successful_connections = 0;
-    rc->creation_time = time_now();
-    rc->total_time_connected = 0;
-
     rc->last_activity = time_now();
 
     rconn_set_probe_interval(rc, probe_interval);
@@ -468,7 +457,6 @@ reconnect(struct rconn *rc)
     if (rconn_logging_connection_attempts__(rc)) {
         VLOG_INFO("%s: connecting...", rc->name);
     }
-    rc->n_attempted_connections++;
     retval = vconn_open(rc->target, rc->allowed_versions, rc->dscp,
                         &rc->vconn);
     if (!retval) {
@@ -512,7 +500,6 @@ run_CONNECTING(struct rconn *rc)
     int retval = vconn_connect(rc->vconn);
     if (!retval) {
         VLOG(rc->reliable ? VLL_INFO : VLL_DBG, "%s: connected", rc->name);
-        rc->n_successful_connections++;
         state_transition(rc, S_ACTIVE);
         rc->version = vconn_get_version(rc->vconn);
         rc->last_connected = rc->state_entered;
@@ -1286,9 +1273,6 @@ state_transition(struct rconn *rc, enum state state)
     if (is_connected_state(state) && !is_connected_state(rc->state)) {
         rc->probably_admitted = false;
     }
-    if (rconn_is_connected(rc)) {
-        rc->total_time_connected += elapsed_in_this_state(rc);
-    }
     VLOG_DBG("%s: entering %s", rc->name, state_name(state));
     rc->state = state;
     rc->state_entered = time_now();