From: Jaswinder Singh Rajput <jaswinder@kernel.org>
To: Sukanto Ghosh <sukanto.cse.iitb@gmail.com>
Cc: trivial@kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] removes unused variable from kernel/sysctl.h
Date: Fri, 17 Apr 2009 00:36:20 +0530 [thread overview]
Message-ID: <1239908780.10567.8.camel@ht.satnam> (raw)
In-Reply-To: <a85e78f50904161052s71dabbe9p17ac68b35331eae@mail.gmail.com>
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
next prev parent reply other threads:[~2009-04-16 19:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-16 17:52 Sukanto Ghosh
2009-04-16 19:06 ` Jaswinder Singh Rajput [this message]
2009-04-23 5:29 ` Sukanto Ghosh
2009-05-05 12:36 ` Jiri Kosina
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=1239908780.10567.8.camel@ht.satnam \
--to=jaswinder@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sukanto.cse.iitb@gmail.com \
--cc=trivial@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome