dhcp: use per-thread vlib main instead of global one

Type: fix

Change-Id: I8890aa5cc3c576fc9fb68735549dfab721714310
Signed-off-by: Benoît Ganne <bganne@cisco.com>
(cherry picked from commit dcd4aa2110e274f9185e1e5b47ec22d66cc23136)
This commit is contained in:
Benoît Ganne
2020-05-20 18:53:50 +02:00
committed by Andrew Yourtchenko
parent 2da3548777
commit 1e02f19305

@ -276,10 +276,10 @@ dhcp_client_for_us (u32 bi, vlib_buffer_t * b,
udp_header_t * udp, dhcp_header_t * dhcp)
{
dhcp_client_main_t *dcm = &dhcp_client_main;
vlib_main_t *vm = dcm->vlib_main;
vlib_main_t *vm = vlib_get_main ();
dhcp_client_t *c;
uword *p;
f64 now = vlib_time_now (dcm->vlib_main);
f64 now = vlib_time_now (vm);
u8 dhcp_message_type = 0;
dhcp_option_t *o;