diff options
Diffstat (limited to 'src/vnet/feature/registration.c')
-rw-r--r-- | src/vnet/feature/registration.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/vnet/feature/registration.c b/src/vnet/feature/registration.c index 1deeeef904c..b05d1dc8b0d 100644 --- a/src/vnet/feature/registration.c +++ b/src/vnet/feature/registration.c @@ -201,12 +201,18 @@ vnet_feature_arc_init (vlib_main_t * vm, * Nonexistent graph nodes are tolerated. */ if (p == 0) - return clib_error_return (0, "feature node '%s' not found", a_name); + { + clib_warning ("feature node '%s' not found", a_name); + continue; + } a_index = p[0]; p = hash_get_mem (index_by_name, b_name); if (p == 0) - return clib_error_return (0, "feature node '%s' not found", b_name); + { + clib_warning ("feature node '%s' not found", b_name); + continue; + } b_index = p[0]; /* add a before b to the original set of constraints */ |