From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Hutchings Subject: Re: [PATCH iproute2 v4] ipbatch: fix use of 'ip netns exec' Date: Tue, 9 Jul 2013 19:13:22 +0100 Message-ID: <1373393602.2523.4.camel@bwh-desktop.uk.level5networks.com> References: <1373376013.4979.148.camel@edumazet-glaptop> <1373385312-4899-1-git-send-email-nicolas.dichtel@6wind.com> <1373386764.2523.1.camel@bwh-desktop.uk.level5networks.com> <51DC417F.5080708@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: , , , To: Return-path: Received: from webmail.solarflare.com ([12.187.104.25]:43533 "EHLO webmail.solarflare.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751722Ab3GISN0 (ORCPT ); Tue, 9 Jul 2013 14:13:26 -0400 In-Reply-To: <51DC417F.5080708@6wind.com> Sender: netdev-owner@vger.kernel.org List-ID: On Tue, 2013-07-09 at 18:59 +0200, Nicolas Dichtel wrote: > Le 09/07/2013 18:19, Ben Hutchings a =C3=A9crit : > > On Tue, 2013-07-09 at 17:55 +0200, Nicolas Dichtel wrote: > > [...] > >> diff --git a/ip/ipnetns.c b/ip/ipnetns.c > >> index fa2b681..cdc3101 100644 > >> --- a/ip/ipnetns.c > >> +++ b/ip/ipnetns.c > >> @@ -42,6 +42,7 @@ > >> #define MS_SHARED (1 << 20) > >> #endif > >> > >> +extern char *batch_file; > I let Stephen choose, he suggest me this. >=20 > > > > Should be declared in a header file. > > > >> #ifndef HAVE_SETNS > >> static int setns(int fd, int nstype) > >> @@ -185,6 +186,42 @@ static int netns_exec(int argc, char **argv) > >> /* Setup bind mounts for config files in /etc */ > >> bind_etc(name); > >> > >> + if (batch_file) { > >> + int status; > >> + pid_t pid; > >> + > >> + pid =3D fork(); > >> + if (pid < 0) { > >> + perror("fork"); > >> + return EXIT_FAILURE; > > > > return -1; > man exit says: > The use of EXIT_SUCCESS and EXIT_FAILURE is slightly more portable (t= o non-UNIX=20 > environments) than the use of 0 and some nonzero value like 1 or -1. >=20 > And in fact, it was so before my patch. As your own earlier comment says, do_cmd() negates the return value. Ben. --=20 Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked.