MPLS: cannot delete a path from the CLI

Change-Id: I7f85870ef99405727312a5de6839c8875c9fa1c5
Signed-off-by: Neale Ranns <nranns@cisco.com>
This commit is contained in:
Neale Ranns
2017-06-09 12:41:00 -07:00
committed by Chris Luke
parent 27b390e87d
commit 76481d0994

View File

@ -428,7 +428,7 @@ vnet_mpls_local_label (vlib_main_t * vm,
}
else
{
fib_node_index_t lfe, fib_index;
fib_node_index_t fib_index;
u32 fi;
if (NULL == rpaths)
@ -469,19 +469,31 @@ vnet_mpls_local_label (vlib_main_t * vm,
goto done;
}
lfe = fib_table_entry_path_add2(fib_index,
&pfx,
FIB_SOURCE_CLI,
FIB_ENTRY_FLAG_NONE,
rpaths);
if (FIB_NODE_INDEX_INVALID == lfe)
if (is_del)
{
error = clib_error_return (0, "Failed to create %U-%U in MPLS table-id %d",
format_mpls_unicast_label, local_label,
format_mpls_eos_bit, eos,
table_id);
goto done;
fib_table_entry_path_remove2(fib_index,
&pfx,
FIB_SOURCE_CLI,
rpaths);
}
else
{
fib_node_index_t lfe;
lfe = fib_table_entry_path_add2(fib_index,
&pfx,
FIB_SOURCE_CLI,
FIB_ENTRY_FLAG_NONE,
rpaths);
if (FIB_NODE_INDEX_INVALID == lfe)
{
error = clib_error_return (0, "Failed to create %U-%U in MPLS table-id %d",
format_mpls_unicast_label, local_label,
format_mpls_eos_bit, eos,
table_id);
goto done;
}
}
}