lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 15 Jun 2010 19:23:47 +0200
From:	Florian Mickler <florian@...kler.org>
To:	James Bottomley <James.Bottomley@...e.de>
Cc:	Frederic Weisbecker <fweisbec@...il.com>,
	Jonathan Corbet <corbet@....net>, markgross@...gnar.org,
	linville@...driver.com, linux-kernel@...r.kernel.org,
	pm list <linux-pm@...ts.linux-foundation.org>,
	Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 3/3] pm_qos: only schedule work when in interrupt
 context

Hi James!

On Mon, 14 Jun 2010 16:46:40 +0200
florian@...kler.org wrote:

> With this patch we only schedule the work when in interrupt context.
> 
> Before update_request was callable from interrupt-context there was a
> 1:1 relation between a change in the request-value and a notification.
> This patch restores that behaviour for all constraints that have update_request
> never called from interrupt context.
> 
> The notifier mutex serializes calls to blocking_notifier_call_chain, so
> that we are serialized against any pending or currently executing notification.
> 
> Signed-off-by: Florian Mickler <florian@...kler.org>
> ---
>  kernel/pm_qos_params.c |   10 +++++++---
>  1 files changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c
> index 9346906..c06cae9 100644
> --- a/kernel/pm_qos_params.c
> +++ b/kernel/pm_qos_params.c
> @@ -152,11 +152,15 @@ static s32 min_compare(s32 v1, s32 v2)
>  static void pm_qos_call_notifiers(struct pm_qos_object *o,
>  				  unsigned long curr_value)
>  {
> -	schedule_work(&o->notify);
> -
>  	if (o->atomic_notifiers)
>  		atomic_notifier_call_chain(o->atomic_notifiers,
> -					   curr_value, NULL);
> +				(unsigned long) curr_value, NULL);
> +
> +	if (in_interrupt()) 
> +		schedule_work(&o->notify);
> +	else 
> +		blocking_notifier_call_chain(o->blocking_notifiers, 
> +				(unsigned long) curr_value, NULL);
>  }
>  
>  static void update_notify(struct work_struct *work)

What about this? Is this ok? I don't know if it is benign to use
in_interrupt() here. I took this idea from the
execute_in_process_context() implementation. 


If this is ok, should I rebase them on your two pm_qos patches (plists
and the kzalloc removal)? 

Did you already thought about some debugging stuff that would suffice
the android needs? I kind of thought about either registerieng some
notifier callback or using the perf/tracing infrastructure. 
But I have not looked into it yet.

Cheers,
Flo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ