X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ofproto%2Fstatus.c;h=133bde0c9c3791b2f829a5bb240f7a4aa5f2bc17;hb=11bbff1b79a97c377021560b8a262af95a0dd1b9;hp=1b13e65cb5d8ba7f9941165dc00f65b1a1e85c70;hpb=a4af00400a835eb87569ba40e21874c05e872c0f;p=openvswitch diff --git a/ofproto/status.c b/ofproto/status.c index 1b13e65c..133bde0c 100644 --- a/ofproto/status.c +++ b/ofproto/status.c @@ -132,12 +132,11 @@ config_status_cb(struct status_reply *sr, void *ofproto_) const struct ofproto *ofproto = ofproto_; uint64_t datapath_id; struct svec listeners; - int probe_interval, max_backoff; size_t i; datapath_id = ofproto_get_datapath_id(ofproto); if (datapath_id) { - status_reply_put(sr, "datapath-id=%"PRIx64, datapath_id); + status_reply_put(sr, "datapath-id=%016"PRIx64, datapath_id); } svec_init(&listeners); @@ -146,16 +145,6 @@ config_status_cb(struct status_reply *sr, void *ofproto_) status_reply_put(sr, "management%zu=%s", i, listeners.names[i]); } svec_destroy(&listeners); - - probe_interval = ofproto_get_probe_interval(ofproto); - if (probe_interval) { - status_reply_put(sr, "probe-interval=%d", probe_interval); - } - - max_backoff = ofproto_get_max_backoff(ofproto); - if (max_backoff) { - status_reply_put(sr, "max-backoff=%d", max_backoff); - } } static void