Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932427Ab0FBNi7 (ORCPT ); Wed, 2 Jun 2010 09:38:59 -0400 Received: from mail-px0-f174.google.com ([209.85.212.174]:42094 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758075Ab0FBNi5 (ORCPT ); Wed, 2 Jun 2010 09:38:57 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:content-transfer-encoding :in-reply-to:user-agent; b=dDVDE/6ZOFHWqOEEWDJbacPCsuer3c2pCHTbXoer6vwto7gNFwnGRzNaiLyDA3fJsE uxUBelMHu8hMcTYpa58zT5N1SwErrQmo4Kt+RqwlO0Qgs7nWWkXWi46z75O9JD6W7kep OQwi8zSEjwK8NZVclM6Y9fY29tkEE5mskJLGM= Date: Wed, 2 Jun 2010 06:39:10 -0700 From: mark gross <640e9920@gmail.com> To: Arve =?iso-8859-1?B?SGr4bm5lduVn?= Cc: markgross@thegnar.org, Florian Mickler , 640e9920@gmail.com, "Rafael J. Wysocki" , Alan Stern , Peter Zijlstra , Linux PM , Brian Swetland , Alan Cox , Matthew Garrett , Thomas Gleixner , LKML , Ingo Molnar Subject: Re: [linux-pm] [PATCH 0/8] Suspend block api (version 8) Message-ID: <20100602133910.GA9106@gvim.org> Reply-To: markgross@thegnar.org References: <201005312338.55109.rjw@sisk.pl> <20100531232617.GF31155@gvim.org> <20100601090737.4bc243d9@schatten.dmk.lab> <20100601140519.GC1281@gvim.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1770 Lines: 40 On Tue, Jun 01, 2010 at 08:50:02PM -0700, Arve Hj?nnev?g wrote: > On Tue, Jun 1, 2010 at 7:05 AM, mark gross <640e9920@gmail.com> wrote: > > On Tue, Jun 01, 2010 at 09:07:37AM +0200, Florian Mickler wrote: > ... > >> +static void update_target_val(int pm_qos_class, s32 val) > >> +{ > >> + ? ? s32 extreme_value; > >> + ? ? s32 new_value; > >> + ? ? extreme_value = atomic_read(&pm_qos_array[pm_qos_class]->target_value); > >> + ? ? new_value = pm_qos_array[pm_qos_class]->comparitor(val,extreme_value); > >> + ? ? if (extreme_value != new_value) > >> + ? ? ? ? ? ? atomic_set(&pm_qos_array[pm_qos_class]->target_value,new_value); > >> +} > >> + > > > > Only works 1/2 the time, but I like the idea! > > It fails to get the righ answer when constraints are reduced. ?But, this > > idea is a good improvement i'll roll into the next pm_qos update! > > > > I think it would be a better idea to track your constraints with a > sorted data structure. That way you can to better than O(n) for both > directions. If you have a lot of constraints with the same value, it > may even be worthwhile to have a two stage structure where for > instance you use a rbtree for the unique values and list for identical > constraints. I don't agree, we went through this tree vrs list discussion a few times before in other areas of the kernel. Wherever the list tended to be short, a simple list wins. However; we can try it, after we have some metrics and stress test cases identified we can measure its effectivenes against. --mgross -- 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/