Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755568Ab0FIMRH (ORCPT ); Wed, 9 Jun 2010 08:17:07 -0400 Received: from ist.d-labs.de ([213.239.218.44]:36726 "EHLO mx01.d-labs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752687Ab0FIMRF (ORCPT ); Wed, 9 Jun 2010 08:17:05 -0400 Date: Wed, 9 Jun 2010 14:16:43 +0200 From: Florian Mickler To: Johannes Berg Cc: pm list , james.bottomley@suse.de, markgross@thegnar.org, mgross@linux.intel.com, "John W. Linville" , "David S. Miller" , Javier Cardona , Jouni Malinen , Rui Paulo , Kalle Valo , linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, Thomas Gleixner Subject: Re: [RFC PATCH 1/2] mac80211: make max_network_latency notifier atomic safe Message-ID: <20100609141643.14e9aedc@schatten.dmk.lab> In-Reply-To: <1276080128.14580.5.camel@jlt3.sipsolutions.net> References: <1276074915-26879-1-git-send-email-florian@mickler.org> <1276076287.3727.15.camel@jlt3.sipsolutions.net> <20100609122050.1dd18132@schatten.dmk.lab> <1276080128.14580.5.camel@jlt3.sipsolutions.net> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.18.9; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2125 Lines: 58 On Wed, 09 Jun 2010 12:42:08 +0200 Johannes Berg wrote: > On Wed, 2010-06-09 at 12:20 +0200, Florian Mickler wrote: > > > A third possibility would be to make it dependent on the > > type of the constraint, if blocking notifiers are allowed or not. > > But that would sacrifice API consistency (update_request for one > > constraint is allowed to be called in interrupt context and > > update_request for another would be not). > > I don't see what's wrong with the fourth possibility: Allow calling > pm_qos_update_request() from atomic context, but change _it_ to schedule > off a work that calls the blocking notifier chain. That avoids the > complexity in notify-API users since they have process context, and also > in request-API users since they can call it from any context. > > johannes That was also my first idea, but then I thought about qos and thought atomic notification are necessary. Do you see any value in having atomic notification? I have the following situation before my eyes: Driver A gets an interrupt and needs (to service that interrupt) the cpu to guarantee a latency of X because the device is a bit icky. Now, in that situation, if we don't immediately (without scheduling in between) notify the system to be in that latency-mode the driver won't function properly. Is this a realistic scene? At the moment we only have process context notification and only 2 listeners. I think providing for atomic as well as "relaxed" notification could be useful. If atomic notification is deemed unnecessary, I have no problems to just use schedule_work() in update request. Anyway, it is probably best to split this. I.e. first make update_request callable from atomic contexts with doing the schedule_work in update_request and then as an add on provide for constraints_objects with atomic notifications. Flo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/