From f29e85f9fa888e5544b19db78a752c03337ca14d Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 1 Nov 2017 03:29:13 -0700 Subject: VOM fixes for 9090 - ships in the night commits Change-Id: I4b03a4f86a7e0e47874715398ca9f8ff0f5386ee Signed-off-by: Neale Ranns --- src/vpp-api/vom/bridge_domain_entry.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/vpp-api/vom/bridge_domain_entry.cpp') diff --git a/src/vpp-api/vom/bridge_domain_entry.cpp b/src/vpp-api/vom/bridge_domain_entry.cpp index 4041e315352..7a1245b0f4d 100644 --- a/src/vpp-api/vom/bridge_domain_entry.cpp +++ b/src/vpp-api/vom/bridge_domain_entry.cpp @@ -39,8 +39,8 @@ bridge_domain_entry::bridge_domain_entry(const mac_address_t& mac, , m_tx_itf(tx_itf.singular()) { /* - * the route goes in the default table - */ + * the entry goes in the default bridge-domain + */ bridge_domain bd(bridge_domain::DEFAULT_TABLE); m_bd = bd.singular(); @@ -92,8 +92,8 @@ void bridge_domain_entry::update(const bridge_domain_entry& r) { /* - * create the table if it is not yet created - */ + * create the table if it is not yet created + */ if (rc_t::OK != m_hw.rc()) { HW::enqueue(new create_cmd(m_hw, m_mac, m_bd->id(), m_tx_itf->handle())); } @@ -151,10 +151,10 @@ bridge_domain_entry::event_handler::handle_populate(const client_db::key_t& key) << mac.to_string() << itf->to_string(); /* - * Write each of the discovered interfaces into the OM, - * but disable the HW Command q whilst we do, so that no - * commands are sent to VPP - */ + * Write each of the discovered interfaces into the OM, + * but disable the HW Command q whilst we do, so that no + * commands are sent to VPP + */ OM::commit(key, bd_e); } } -- cgit 1.2.3-korg