From 21a438465ca0dee88d13d9dd9621929116c95614 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Tue, 9 Jul 2019 10:04:18 -0400 Subject: vat: unload unused vat plugins If the corresponding vpp plugin is absent, return a non-zero clib_error_t * from vat_plugin_register ("xxx plugin not loaded"). The vat plugin calls dlclose on the vat plugin, and it disappears. Depending on the plugin configuration, this can reduce the vpp virtual size by several gigabytes. Added a VAT_PLUGIN() macro to vat_helper_macros, clean up boilerplate vat_plugin_register() implementations. Fixed a number of non-standard vat_plugin_register methods. Type: refactor Change-Id: Iac908e5af7d5497c78d6aa9c3c51cdae08374045 Signed-off-by: Dave Barach --- src/plugins/mactime/mactime_test.c | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'src/plugins/mactime') diff --git a/src/plugins/mactime/mactime_test.c b/src/plugins/mactime/mactime_test.c index 4557e57dbff..c9c1a475ad9 100644 --- a/src/plugins/mactime/mactime_test.c +++ b/src/plugins/mactime/mactime_test.c @@ -300,25 +300,7 @@ mactime_api_hookup (vat_main_t * vam) #undef _ } -clib_error_t * -vat_plugin_register (vat_main_t * vam) -{ - mactime_test_main_t *sm = &mactime_test_main; - u8 *name; - - sm->vat_main = vam; - - /* Ask the vpp engine for the first assigned message-id */ - name = format (0, "mactime_%08x%c", api_version, 0); - sm->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name); - - if (sm->msg_id_base != (u16) ~ 0) - mactime_api_hookup (vam); - - vec_free (name); - - return 0; -} +VAT_PLUGIN_REGISTER (mactime); /* * fd.io coding-style-patch-verification: ON -- cgit 1.2.3-korg