From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: markgross@thegnar.org
Cc: Dan Carpenter <error27@gmail.com>,
James Bottomley <James.Bottomley@suse.de>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jonathan Corbet <corbet@lwn.net>,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] pm_qos_params: cleanup: terminate a string
Date: Thu, 09 Sep 2010 21:21:24 +0000 [thread overview]
Message-ID: <201009092321.24644.rjw@sisk.pl> (raw)
In-Reply-To: <20100909025619.GA5049@gvim.org>
On Thursday, September 09, 2010, mark gross wrote:
> On Thu, Sep 09, 2010 at 12:13:59AM +0200, Rafael J. Wysocki wrote:
> > On Tuesday, September 07, 2010, mark gross wrote:
> > > On Mon, Sep 06, 2010 at 11:22:27PM -0700, mark gross wrote:
> > > > On Fri, Sep 03, 2010 at 02:41:06PM +0200, Dan Carpenter wrote:
> > ...
> > >
> > > updated patch
> > >
> > > Signed-off-by: mark gross <markgross@thegnar.org>
> > >
> > > --mgross
> > >
> > > Subject: [PATCH] correct some pr_debug misuse and add a stronger parrameter check to
> > > pm_qos_write for the ascii hex value case. Thanks to Dan Carpenter for
> > > pointing out the problem!
> > >
> > > ---
> > > kernel/pm_qos_params.c | 6 ++++--
> > > 1 files changed, 4 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> > > index f42d3f7..aae58d2 100644
> > > --- a/kernel/pm_qos_params.c
> > > +++ b/kernel/pm_qos_params.c
> > > @@ -155,7 +155,7 @@ static void update_target(int pm_qos_class)
> > > call_notifier = 1;
> > > atomic_set(&pm_qos_array[pm_qos_class]->target_value,
> > > extreme_value);
> > > - pr_debug(KERN_ERR "new target for qos %d is %d\n", pm_qos_class,
> > > + pr_debug("new target for qos %d is %d\n", pm_qos_class,
> > > atomic_read(&pm_qos_array[pm_qos_class]->target_value));
> > > }
> > > spin_unlock_irqrestore(&pm_qos_lock, flags);
> >
> > The above doesn't apply to the Linus' tree any more. Care to fix?
> >
> > Rafael
>
> no problem. (I screwed up on my fetch and forgot to merge the linus
> remote....) This bit doesn't apply post 2.6.35.
> --mgross
Thanks, applied to suspend-2.6/linux-next .
Rafael
> Signed-off-by: mark gross <markgross@thegnar.org)
>
>
> From 64753f68e2baaef21783192566469abc54aca90d Mon Sep 17 00:00:00 2001
> From: mgross <mgross@mgross-laptop.(none)>
> Date: Wed, 8 Sep 2010 19:52:39 -0700
> Subject: [PATCH] make it harder to misuse the pm_qos user mode api.
>
> ---
> kernel/pm_qos_params.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> index b7e4c36..645e541 100644
> --- a/kernel/pm_qos_params.c
> +++ b/kernel/pm_qos_params.c
> @@ -389,10 +389,12 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
> } else if (count = 11) { /* len('0x12345678/0') */
> if (copy_from_user(ascii_value, buf, 11))
> return -EFAULT;
> + if (strlen(ascii_value) != 10)
> + return -EINVAL;
> x = sscanf(ascii_value, "%x", &value);
> if (x != 1)
> return -EINVAL;
> - pr_debug(KERN_ERR "%s, %d, 0x%x\n", ascii_value, x, value);
> + pr_debug("%s, %d, 0x%x\n", ascii_value, x, value);
> } else
> return -EINVAL;
>
>
WARNING: multiple messages have this Message-ID (diff)
From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: markgross@thegnar.org
Cc: Dan Carpenter <error27@gmail.com>,
James Bottomley <James.Bottomley@suse.de>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jonathan Corbet <corbet@lwn.net>,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] pm_qos_params: cleanup: terminate a string
Date: Thu, 9 Sep 2010 23:21:24 +0200 [thread overview]
Message-ID: <201009092321.24644.rjw@sisk.pl> (raw)
In-Reply-To: <20100909025619.GA5049@gvim.org>
On Thursday, September 09, 2010, mark gross wrote:
> On Thu, Sep 09, 2010 at 12:13:59AM +0200, Rafael J. Wysocki wrote:
> > On Tuesday, September 07, 2010, mark gross wrote:
> > > On Mon, Sep 06, 2010 at 11:22:27PM -0700, mark gross wrote:
> > > > On Fri, Sep 03, 2010 at 02:41:06PM +0200, Dan Carpenter wrote:
> > ...
> > >
> > > updated patch
> > >
> > > Signed-off-by: mark gross <markgross@thegnar.org>
> > >
> > > --mgross
> > >
> > > Subject: [PATCH] correct some pr_debug misuse and add a stronger parrameter check to
> > > pm_qos_write for the ascii hex value case. Thanks to Dan Carpenter for
> > > pointing out the problem!
> > >
> > > ---
> > > kernel/pm_qos_params.c | 6 ++++--
> > > 1 files changed, 4 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> > > index f42d3f7..aae58d2 100644
> > > --- a/kernel/pm_qos_params.c
> > > +++ b/kernel/pm_qos_params.c
> > > @@ -155,7 +155,7 @@ static void update_target(int pm_qos_class)
> > > call_notifier = 1;
> > > atomic_set(&pm_qos_array[pm_qos_class]->target_value,
> > > extreme_value);
> > > - pr_debug(KERN_ERR "new target for qos %d is %d\n", pm_qos_class,
> > > + pr_debug("new target for qos %d is %d\n", pm_qos_class,
> > > atomic_read(&pm_qos_array[pm_qos_class]->target_value));
> > > }
> > > spin_unlock_irqrestore(&pm_qos_lock, flags);
> >
> > The above doesn't apply to the Linus' tree any more. Care to fix?
> >
> > Rafael
>
> no problem. (I screwed up on my fetch and forgot to merge the linus
> remote....) This bit doesn't apply post 2.6.35.
> --mgross
Thanks, applied to suspend-2.6/linux-next .
Rafael
> Signed-off-by: mark gross <markgross@thegnar.org)
>
>
> From 64753f68e2baaef21783192566469abc54aca90d Mon Sep 17 00:00:00 2001
> From: mgross <mgross@mgross-laptop.(none)>
> Date: Wed, 8 Sep 2010 19:52:39 -0700
> Subject: [PATCH] make it harder to misuse the pm_qos user mode api.
>
> ---
> kernel/pm_qos_params.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> index b7e4c36..645e541 100644
> --- a/kernel/pm_qos_params.c
> +++ b/kernel/pm_qos_params.c
> @@ -389,10 +389,12 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
> } else if (count == 11) { /* len('0x12345678/0') */
> if (copy_from_user(ascii_value, buf, 11))
> return -EFAULT;
> + if (strlen(ascii_value) != 10)
> + return -EINVAL;
> x = sscanf(ascii_value, "%x", &value);
> if (x != 1)
> return -EINVAL;
> - pr_debug(KERN_ERR "%s, %d, 0x%x\n", ascii_value, x, value);
> + pr_debug("%s, %d, 0x%x\n", ascii_value, x, value);
> } else
> return -EINVAL;
>
>
next prev parent reply other threads:[~2010-09-09 21:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-03 12:41 [patch] pm_qos_params: cleanup: terminate a string Dan Carpenter
2010-09-03 12:41 ` Dan Carpenter
2010-09-07 6:22 ` mark gross
2010-09-07 6:22 ` mark gross
2010-09-07 13:38 ` mark gross
2010-09-07 13:38 ` mark gross
2010-09-07 21:38 ` Dan Carpenter
2010-09-07 21:38 ` Dan Carpenter
2010-09-08 22:13 ` Rafael J. Wysocki
2010-09-08 22:13 ` Rafael J. Wysocki
2010-09-09 2:56 ` mark gross
2010-09-09 2:56 ` mark gross
2010-09-09 21:21 ` Rafael J. Wysocki [this message]
2010-09-09 21:21 ` Rafael J. Wysocki
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=201009092321.24644.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=James.Bottomley@suse.de \
--cc=corbet@lwn.net \
--cc=error27@gmail.com \
--cc=fweisbec@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=markgross@thegnar.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 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.