X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=ofproto%2Fstatus.c;h=a8f522d61097b558866755fce81acd81cd823740;hb=5136ce492c414f377f7be9ae32b259abb9f76580;hp=dbedf10e018fa2432103dd4c9d5dfa510ce62b5e;hpb=79c9f2ee7883b52860c76c3730725f5731402874;p=openvswitch diff --git a/ofproto/status.c b/ofproto/status.c index dbedf10e..a8f522d6 100644 --- a/ofproto/status.c +++ b/ofproto/status.c @@ -24,6 +24,7 @@ #include #include "dynamic-string.h" #include "list.h" +#include "ofp-util.h" #include "ofpbuf.h" #include "ofproto.h" #include "openflow/nicira-ext.h" @@ -32,10 +33,10 @@ #include "svec.h" #include "timeval.h" #include "vconn.h" - -#define THIS_MODULE VLM_status #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(status) + struct status_category { struct list node; char *name; @@ -97,7 +98,7 @@ rconn_status_cb(struct status_reply *sr, void *rconn_) uint32_t remote_ip = rconn_get_remote_ip(rconn); uint32_t local_ip = rconn_get_local_ip(rconn); - status_reply_put(sr, "name=%s", rconn_get_name(rconn)); + status_reply_put(sr, "name=%s", rconn_get_target(rconn)); if (remote_ip) { status_reply_put(sr, "remote-ip="IP_FMT, IP_ARGS(&remote_ip)); status_reply_put(sr, "remote-port=%d", @@ -130,7 +131,6 @@ static void config_status_cb(struct status_reply *sr, void *ofproto_) { const struct ofproto *ofproto = ofproto_; - struct ofproto_controller controller; uint64_t datapath_id; struct svec listeners; size_t i; @@ -146,14 +146,6 @@ config_status_cb(struct status_reply *sr, void *ofproto_) status_reply_put(sr, "management%zu=%s", i, listeners.names[i]); } svec_destroy(&listeners); - - ofproto_get_controller(ofproto, &controller); - if (controller.probe_interval) { - status_reply_put(sr, "probe-interval=%d", controller.probe_interval); - } - if (controller.max_backoff) { - status_reply_put(sr, "max-backoff=%d", controller.max_backoff); - } } static void