netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Satyam Sharma <satyam@infradead.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Keiichi Kii <k-keiichi@bx.jp.nec.com>,
	Netdev <netdev@vger.kernel.org>,
	Joel Becker <joel.becker@oracle.com>,
	Matt Mackall <mpm@selenic.com>,
	David Miller <davem@davemloft.net>
Subject: Re: [PATCH v3 -mm 9/9] netconsole: Support dynamic reconfiguration using configfs
Date: Tue, 31 Jul 2007 06:10:21 +0530 (IST)	[thread overview]
Message-ID: <alpine.LFD.0.999.0707310603570.17287@enigma.security.iitk.ac.in> (raw)
In-Reply-To: <20070730171306.49b49818.akpm@linux-foundation.org>



On Mon, 30 Jul 2007, Andrew Morton wrote:

> On Mon, 30 Jul 2007 08:19:10 +0530
> Satyam Sharma <satyam@infradead.org> wrote:
> 
> > +/*
> > + * Wrapper over simple_strtol (base 10) with sanity and range checking.
> > + * We return (signed) long only because we may want to return errors.
> > + * Do not use this to convert numbers that are allowed to be negative.
> > + */
> > +static long strtol10_check_range(const char *cp, long min, long max)
> > +{
> > +	long ret;
> > +	char *p = (char *) cp;
> > +
> > +	WARN_ON(min < 0);
> > +	WARN_ON(max < min);
> > +
> > +	ret = simple_strtol(p, &p, 10);
> > +
> > +	if (*p && (*p != '\n')) {
> > +		printk(KERN_ERR "netconsole: invalid input\n");
> > +		return -EINVAL;
> > +	}
> > +	if ((ret < min) || (ret > max)) {
> > +		printk(KERN_ERR "netconsole: input %ld must be between "
> > +				"%ld and %ld\n", ret, min, max);
> > +		return -EINVAL;
> > +	}
> > +
> > +	return ret;
> > +}
> 
> There's probably other code around the place which does this.  It might
> be worth making this function a general-purpose thing.

Probably, yes, I thought along similar lines.

[ BTW somewhere in the 9/9 patch I remember having to define a
  __U16_MAX as well. That could be pushed out to some generic
  or appropriate header as well, possibly. ]


Satyam

  reply	other threads:[~2007-07-31  0:28 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-30  2:47 [PATCH v3 -mm 0/9] netconsole: Multiple targets and dynamic reconfigurability Satyam Sharma
2007-07-30  2:47 ` [PATCH v3 -mm 1/9] netconsole: Cleanups, codingstyle, prettyfication Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 2/9] netconsole: Remove bogus check Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 3/9] netconsole: Simplify boot/module option setup logic Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 4/9] netconsole: Use netif_running() in write_msg() Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 5/9] netconsole: Add some useful tips to documentation Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 6/9] netconsole: Introduce netconsole_target Satyam Sharma
2007-07-30  2:48 ` [PATCH v3 -mm 7/9] netconsole: Introduce netconsole_netdev_notifier Satyam Sharma
2007-07-30  2:49 ` [PATCH v3 -mm 8/9] netconsole: Support multiple logging targets Satyam Sharma
2007-07-30  2:49 ` [PATCH v3 -mm 9/9] netconsole: Support dynamic reconfiguration using configfs Satyam Sharma
2007-07-31  0:13   ` Andrew Morton
2007-07-31  0:40     ` Satyam Sharma [this message]
2007-07-31  0:12 ` [PATCH v3 -mm 0/9] netconsole: Multiple targets and dynamic reconfigurability Andrew Morton
2007-07-31  0:33   ` Satyam Sharma

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=alpine.LFD.0.999.0707310603570.17287@enigma.security.iitk.ac.in \
    --to=satyam@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=davem@davemloft.net \
    --cc=joel.becker@oracle.com \
    --cc=k-keiichi@bx.jp.nec.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mpm@selenic.com \
    --cc=netdev@vger.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;
as well as URLs for NNTP newsgroup(s).