* [PATCH] removes unused variable from kernel/sysctl.h
@ 2009-04-16 17:52 Sukanto Ghosh
2009-04-16 19:06 ` Jaswinder Singh Rajput
2009-05-05 12:36 ` Jiri Kosina
0 siblings, 2 replies; 4+ messages in thread
From: Sukanto Ghosh @ 2009-04-16 17:52 UTC (permalink / raw)
To: trivial; +Cc: linux-kernel
This patch removes the unused variable 'val' from the
__do_proc_dointvec() function
in kernel/sysctl.h. The integer has been declared and used as 'val =
-val' and there is
no reference to it anywhere.
Although I am this doesn't affects the kernel binary because gcc
removes it, still it
might be confusing for people reading the code.
Signed-off-by: Sukanto Ghosh <sukanto.cse.iitb@gmail.com>
----
--- linux-2.6.29.1/kernel/sysctl.c.orig 2009-04-16 19:57:21.000000000 +0530
+++ linux-2.6.29.1/kernel/sysctl.c 2009-04-16 19:58:26.000000000 +0530
@@ -2198,7 +2198,7 @@ static int __do_proc_dointvec(void *tbl_
void *data)
{
#define TMPBUFLEN 21
- int *i, vleft, first=1, neg, val;
+ int *i, vleft, first=1, neg;
unsigned long lval;
size_t left, len;
@@ -2251,8 +2251,6 @@ static int __do_proc_dointvec(void *tbl_
len = p-buf;
if ((len < left) && *p && !isspace(*p))
break;
- if (neg)
- val = -val;
s += len;
left -= len;
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] removes unused variable from kernel/sysctl.h 2009-04-16 17:52 [PATCH] removes unused variable from kernel/sysctl.h Sukanto Ghosh @ 2009-04-16 19:06 ` Jaswinder Singh Rajput 2009-04-23 5:29 ` Sukanto Ghosh 2009-05-05 12:36 ` Jiri Kosina 1 sibling, 1 reply; 4+ messages in thread From: Jaswinder Singh Rajput @ 2009-04-16 19:06 UTC (permalink / raw) To: Sukanto Ghosh; +Cc: trivial, linux-kernel Hello Sukanto, On Thu, 2009-04-16 at 23:22 +0530, Sukanto Ghosh wrote: > This patch removes the unused variable 'val' from the > __do_proc_dointvec() function > in kernel/sysctl.h. The integer has been declared and used as 'val = > -val' and there is > no reference to it anywhere. > Although I am this doesn't affects the kernel binary because gcc > removes it, still it > might be confusing for people reading the code. > This patch is already submitted by Tomohiro Kusumi on Thu Dec 27 2007: http://lkml.indiana.edu/hypermail/linux/kernel/0712.3/0557.html > > Signed-off-by: Sukanto Ghosh <sukanto.cse.iitb@gmail.com> > > ---- > > --- linux-2.6.29.1/kernel/sysctl.c.orig 2009-04-16 19:57:21.000000000 +0530 > +++ linux-2.6.29.1/kernel/sysctl.c 2009-04-16 19:58:26.000000000 +0530 > @@ -2198,7 +2198,7 @@ static int __do_proc_dointvec(void *tbl_ > void *data) This is a very old function and have almost no git history, its old name was do_proc_dointvec on 2005-04-16 15:20:36 when git tree was made and then only(almost) function name is changed. > { > #define TMPBUFLEN 21 > - int *i, vleft, first=1, neg, val; > + int *i, vleft, first=1, neg; > unsigned long lval; > size_t left, len; > > @@ -2251,8 +2251,6 @@ static int __do_proc_dointvec(void *tbl_ > len = p-buf; > if ((len < left) && *p && !isspace(*p)) > break; > - if (neg) > - val = -val; So you need to do further investigation. Is this a typo or some other mistake. -- JSR ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] removes unused variable from kernel/sysctl.h 2009-04-16 19:06 ` Jaswinder Singh Rajput @ 2009-04-23 5:29 ` Sukanto Ghosh 0 siblings, 0 replies; 4+ messages in thread From: Sukanto Ghosh @ 2009-04-23 5:29 UTC (permalink / raw) To: Jaswinder Singh Rajput; +Cc: trivial, linux-kernel Hi, On Fri, Apr 17, 2009 at 12:36 AM, Jaswinder Singh Rajput <jaswinder@kernel.org> wrote: > Hello Sukanto, > > On Thu, 2009-04-16 at 23:22 +0530, Sukanto Ghosh wrote: >> This patch removes the unused variable 'val' from the >> __do_proc_dointvec() function >> in kernel/sysctl.h. The integer has been declared and used as 'val = >> -val' and there is >> no reference to it anywhere. >> Although I am this doesn't affects the kernel binary because gcc >> removes it, still it >> might be confusing for people reading the code. >> > > This patch is already submitted by Tomohiro Kusumi on Thu Dec 27 2007: > > http://lkml.indiana.edu/hypermail/linux/kernel/0712.3/0557.html I asked Tomohiro regarding this and got the following reply: ---- I think they just missed that patch since I found my name on the following page regarding this patch. http://lkml.org/lkml/2008/5/30/335 I think it's obvious that the val is unnecessary and someone probably just forgot to remove it when they cleaned up that code. ----- > >> >> Signed-off-by: Sukanto Ghosh <sukanto.cse.iitb@gmail.com> >> >> ---- >> >> --- linux-2.6.29.1/kernel/sysctl.c.orig 2009-04-16 19:57:21.000000000 +0530 >> +++ linux-2.6.29.1/kernel/sysctl.c 2009-04-16 19:58:26.000000000 +0530 >> @@ -2198,7 +2198,7 @@ static int __do_proc_dointvec(void *tbl_ >> void *data) > > This is a very old function and have almost no git history, its old name > was do_proc_dointvec on 2005-04-16 15:20:36 when git tree was made and > then only(almost) function name is changed. > >> { >> #define TMPBUFLEN 21 >> - int *i, vleft, first=1, neg, val; >> + int *i, vleft, first=1, neg; >> unsigned long lval; >> size_t left, len; >> >> @@ -2251,8 +2251,6 @@ static int __do_proc_dointvec(void *tbl_ >> len = p-buf; >> if ((len < left) && *p && !isspace(*p)) >> break; >> - if (neg) >> - val = -val; > > So you need to do further investigation. Is this a typo or some other > mistake. Considering that this function is currently working properly and the variable 'val' is not used anywhere, it is obvious that removing the variable will not affect the functionality of the function in any manner. It seems that either people haven't noticed this unused variable before Tomohiro did, or they did not see merit in submitting the trivial patch. But I believe such code cleanups are required. If you (maintainers) feel that it is worth it, should I re-submit the patch ? -- Regards, Sukanto Ghosh ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] removes unused variable from kernel/sysctl.h 2009-04-16 17:52 [PATCH] removes unused variable from kernel/sysctl.h Sukanto Ghosh 2009-04-16 19:06 ` Jaswinder Singh Rajput @ 2009-05-05 12:36 ` Jiri Kosina 1 sibling, 0 replies; 4+ messages in thread From: Jiri Kosina @ 2009-05-05 12:36 UTC (permalink / raw) To: Sukanto Ghosh; +Cc: linux-kernel, Andrew Morton On Thu, 16 Apr 2009, Sukanto Ghosh wrote: > This patch removes the unused variable 'val' from the > __do_proc_dointvec() function > in kernel/sysctl.h. The integer has been declared and used as 'val = > -val' and there is > no reference to it anywhere. > Although I am this doesn't affects the kernel binary because gcc > removes it, still it > might be confusing for people reading the code. > > > Signed-off-by: Sukanto Ghosh <sukanto.cse.iitb@gmail.com> > > ---- > > --- linux-2.6.29.1/kernel/sysctl.c.orig 2009-04-16 19:57:21.000000000 +0530 > +++ linux-2.6.29.1/kernel/sysctl.c 2009-04-16 19:58:26.000000000 +0530 > @@ -2198,7 +2198,7 @@ static int __do_proc_dointvec(void *tbl_ > void *data) > { > #define TMPBUFLEN 21 > - int *i, vleft, first=1, neg, val; > + int *i, vleft, first=1, neg; > unsigned long lval; > size_t left, len; > > @@ -2251,8 +2251,6 @@ static int __do_proc_dointvec(void *tbl_ > len = p-buf; > if ((len < left) && *p && !isspace(*p)) > break; > - if (neg) > - val = -val; > s += len; > left -= len; This doesn't seem to be picked up by anyone, CCing akpm. -- Jiri Kosina SUSE Labs ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-05-05 12:36 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-04-16 17:52 [PATCH] removes unused variable from kernel/sysctl.h Sukanto Ghosh 2009-04-16 19:06 ` Jaswinder Singh Rajput 2009-04-23 5:29 ` Sukanto Ghosh 2009-05-05 12:36 ` Jiri Kosina
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox