From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dumazet Subject: Re: [PATCH] sysctl: fix min/max handling in __do_proc_doulongvec_minmax() Date: Thu, 07 Oct 2010 11:51:21 +0200 Message-ID: <1286445081.2912.15.camel@edumazet-laptop> References: <1286025469.2582.1806.camel@edumazet-laptop> <20101004085913.GR14068@sgi.com> <1286183058.18293.26.camel@edumazet-laptop> <20101004093439.GG5189@cr0.nay.redhat.com> <1286187030.18293.33.camel@edumazet-laptop> <20101004103545.GJ5189@cr0.nay.redhat.com> <1286188701.18293.57.camel@edumazet-laptop> <20101005130117.GK5170@cr0.nay.redhat.com> <20101007071859.GD5471@cr0.nay.redhat.com> <20101007092538.GE5471@cr0.nay.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Robin Holt , Andrew Morton , linux-kernel , Willy Tarreau , "David S. Miller" , netdev@vger.kernel.org, James Morris , "Pekka Savola (ipv6)" , Patrick McHardy , Alexey Kuznetsov , ebiederm@xmission.com To: =?ISO-8859-1?Q?Am=E9rico?= Wang Return-path: Received: from mail-fx0-f46.google.com ([209.85.161.46]:34973 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753423Ab0JGJv1 (ORCPT ); Thu, 7 Oct 2010 05:51:27 -0400 In-Reply-To: <20101007092538.GE5471@cr0.nay.redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: Le jeudi 07 octobre 2010 =C3=A0 17:25 +0800, Am=C3=A9rico Wang a =C3=A9= crit : > >> > > > >Here is the final one. >=20 > Oops, that one is not correct. Hopefully this one > is correct. >=20 > ---------------> >=20 > Eric D. noticed that we may trigger an OOPS if we leave ->extra{1,2} > to NULL when we use proc_doulongvec_minmax(). >=20 > Actually, we don't need to store min/max values in a vector, > because all the elements in the vector should share the same min/max > value, like what proc_dointvec_minmax() does. >=20 If we assert same min/max limits are to be applied to all elements, a much simpler fix than yours would be : diff --git a/kernel/sysctl.c b/kernel/sysctl.c index f88552c..8e45451 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -2485,7 +2485,7 @@ static int __do_proc_doulongvec_minmax(void *data= , struct ctl_table *table, int kbuf[left] =3D 0; } =20 - for (; left && vleft--; i++, min++, max++, first=3D0) { + for (; left && vleft--; i++, first=3D0) { unsigned long val; =20 if (write) { Please dont send huge patches like this to 'fix' a bug, especially on slow path. =46irst we fix the bug, _then_ we can try to make code more=20 efficient or more pretty or shorter. So the _real_ question is : Should the min/max limits should be a single pair, shared by all elements, or a vector of limits.