ofproto was logging the datapath ID passed in as part of its settings, but
that's allowed to be 0. Instead, it needs to log the datapath ID that is
actually in use.
if (!p->datapath_id) {
p->datapath_id = pick_datapath_id(&dpif);
}
- VLOG_INFO("using datapath ID %012"PRIx64, settings->datapath_id);
+ VLOG_INFO("using datapath ID %012"PRIx64, p->datapath_id);
p->mfr_desc = settings->mfr_desc;
p->hw_desc = settings->hw_desc;
p->sw_desc = settings->sw_desc;