[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <51DC417F.5080708@6wind.com>
Date: Tue, 09 Jul 2013 18:59:43 +0200
From: Nicolas Dichtel <nicolas.dichtel@...nd.com>
To: Ben Hutchings <bhutchings@...arflare.com>
CC: eric.dumazet@...il.com, shemminger@...tta.com,
netdev@...r.kernel.org, junwei.zhang@...nd.com
Subject: Re: [PATCH iproute2 v4] ipbatch: fix use of 'ip netns exec'
Le 09/07/2013 18:19, Ben Hutchings a écrit :
> 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.
>
> 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 = 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 (to non-UNIX
environments) than the use of 0 and some nonzero value like 1 or -1.
And in fact, it was so before my patch.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists