From: Ethan Jackson Date: Sun, 9 Oct 2011 22:03:53 +0000 (-0700) Subject: cfm: Show extended mode in cfm/show appctl command. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95b0fad8d144bb80b46f675e7541943b9e70d229;p=openvswitch cfm: Show extended mode in cfm/show appctl command. --- diff --git a/lib/cfm.c b/lib/cfm.c index bdd3839c..e6fea3a6 100644 --- a/lib/cfm.c +++ b/lib/cfm.c @@ -532,7 +532,8 @@ cfm_print_details(struct ds *ds, const struct cfm *cfm) struct remote_mp *rmp; ds_put_format(ds, "---- %s ----\n", cfm->name); - ds_put_format(ds, "MPID %"PRIu64":%s%s\n", cfm->mpid, + ds_put_format(ds, "MPID %"PRIu64":%s%s%s\n", cfm->mpid, + cfm->extended ? " extended" : "", cfm->fault ? " fault" : "", cfm->unexpected_recv ? " unexpected_recv" : "");