From: Wang Weidong <wangweidong1@huawei.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: David Miller <davem@davemloft.net>,
Vlad Yasevich <vyasevich@gmail.com>,
Daniel Borkmann <dborkman@redhat.com>,
linux-sctp@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [PATCH net-next] sctp: add a checking for sctp_sysctl_net_register
Date: Thu, 08 May 2014 11:26:27 +0000 [thread overview]
Message-ID: <536B69E3.1090104@huawei.com> (raw)
In-Reply-To: <20140508111126.GC9696@hmsreliant.think-freely.org>
On 2014/5/8 19:11, Neil Horman wrote:
> On Thu, May 08, 2014 at 03:55:05PM +0800, Wang Weidong wrote:
>> When register_net_sysctl failed, we should free the
>> sysctl_table while the net_namespace is not init_net.
>>
>> Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
>> ---
>> net/sctp/sysctl.c | 5 +++++
>> 1 file changed, 5 insertions(+)
>>
>> diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
>> index 844d2b0..4c17694 100644
>> --- a/net/sctp/sysctl.c
>> +++ b/net/sctp/sysctl.c
>> @@ -450,6 +450,11 @@ int sctp_sysctl_net_register(struct net *net)
>> }
>>
>> net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
>> + if (net->sctp.sysctl_header = NULL) {
>> + if (!net_eq(net, &init_net))
>> + kfree(table);
>> + return -ENOMEM;
>> + }
> Sorry, we're not special casing this in 3 places. Why not just revert the
> origonal commit so that all the sysctl tables can be handled the same way
> Neil
>
Hi Neil,
The original commit avoids to kmemdup
>> return 0;
>> }
>>
>> --
>> 1.7.12
>>
>>
>>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Wang Weidong <wangweidong1@huawei.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: David Miller <davem@davemloft.net>,
Vlad Yasevich <vyasevich@gmail.com>,
Daniel Borkmann <dborkman@redhat.com>,
<linux-sctp@vger.kernel.org>, <netdev@vger.kernel.org>
Subject: Re: [PATCH net-next] sctp: add a checking for sctp_sysctl_net_register
Date: Thu, 8 May 2014 19:26:27 +0800 [thread overview]
Message-ID: <536B69E3.1090104@huawei.com> (raw)
In-Reply-To: <20140508111126.GC9696@hmsreliant.think-freely.org>
On 2014/5/8 19:11, Neil Horman wrote:
> On Thu, May 08, 2014 at 03:55:05PM +0800, Wang Weidong wrote:
>> When register_net_sysctl failed, we should free the
>> sysctl_table while the net_namespace is not init_net.
>>
>> Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
>> ---
>> net/sctp/sysctl.c | 5 +++++
>> 1 file changed, 5 insertions(+)
>>
>> diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
>> index 844d2b0..4c17694 100644
>> --- a/net/sctp/sysctl.c
>> +++ b/net/sctp/sysctl.c
>> @@ -450,6 +450,11 @@ int sctp_sysctl_net_register(struct net *net)
>> }
>>
>> net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
>> + if (net->sctp.sysctl_header == NULL) {
>> + if (!net_eq(net, &init_net))
>> + kfree(table);
>> + return -ENOMEM;
>> + }
> Sorry, we're not special casing this in 3 places. Why not just revert the
> origonal commit so that all the sysctl tables can be handled the same way
> Neil
>
Hi Neil,
The original commit avoids to kmemdup
>> return 0;
>> }
>>
>> --
>> 1.7.12
>>
>>
>>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
next prev parent reply other threads:[~2014-05-08 11:26 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-08 7:55 [PATCH net-next] sctp: add a checking for sctp_sysctl_net_register Wang Weidong
2014-05-08 7:55 ` Wang Weidong
2014-05-08 9:40 ` tingwei liu
2014-05-08 9:40 ` tingwei liu
2014-05-08 11:11 ` Neil Horman
2014-05-08 11:11 ` Neil Horman
2014-05-08 11:26 ` Wang Weidong [this message]
2014-05-08 11:26 ` Wang Weidong
2014-05-08 11:31 ` Wang Weidong
2014-05-08 11:31 ` Wang Weidong
2014-05-08 11:41 ` Neil Horman
2014-05-08 11:41 ` Neil Horman
2014-05-08 11:57 ` Wang Weidong
2014-05-08 11:57 ` Wang Weidong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=536B69E3.1090104@huawei.com \
--to=wangweidong1@huawei.com \
--cc=davem@davemloft.net \
--cc=dborkman@redhat.com \
--cc=linux-sctp@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nhorman@tuxdriver.com \
--cc=vyasevich@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.