From: Matteo Croce Date: Tue, 18 Jun 2019 14:49:34 +0000 (+0200) Subject: ip vrf: use hook to change VRF in the child X-Git-Tag: v5.2.0~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d81d4ba15d74a51f23f61a2ddb792689e5db95f0;p=thirdparty%2Fiproute2.git ip vrf: use hook to change VRF in the child On vrf exec, reset the VRF associations in the child process, via the new hook added to cmd_exec(). In this way, the parent doesn't have to reset the VRF associations before spawning other processes. Signed-off-by: Matteo Croce Signed-off-by: Stephen Hemminger --- diff --git a/ip/ipvrf.c b/ip/ipvrf.c index aebcb2532..f589f7f8f 100644 --- a/ip/ipvrf.c +++ b/ip/ipvrf.c @@ -441,6 +441,13 @@ out: return rc; } +static int do_switch(void *arg) +{ + char *vrf = arg; + + return vrf_switch(vrf); +} + static int ipvrf_exec(int argc, char **argv) { if (argc < 1) { @@ -452,10 +459,7 @@ static int ipvrf_exec(int argc, char **argv) return -1; } - if (vrf_switch(argv[0])) - return -1; - - return -cmd_exec(argv[1], argv + 1, !!batch_mode, NULL, NULL); + return -cmd_exec(argv[1], argv + 1, !!batch_mode, do_switch, argv[0]); } /* reset VRF association of current process to default VRF;