All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Jones <davej@codemonkey.org.uk>
To: Mike Travis <travis@sgi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Ingo Molnar <mingo@elte.hu>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Len Brown <len.brown@intel.com>
Subject: Re: [PATCH 04/12] cpumask: pass cpumask by reference to acpi-cpufreq
Date: Tue, 25 Mar 2008 22:15:54 -0400	[thread overview]
Message-ID: <20080326021554.GA8388@codemonkey.org.uk> (raw)
In-Reply-To: <20080326013812.324977000@polaris-admin.engr.sgi.com>

On Tue, Mar 25, 2008 at 06:38:15PM -0700, Mike Travis wrote:
 > Pass cpumask_t variables by reference in acpi-cpufreq functions.
 > 
 > Based on:
 > 	git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
 > 	git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
 > 
 > Cc: Len Brown <len.brown@intel.com>
 > Cc: Dave Jones <davej@codemonkey.org.uk>
 > Signed-off-by: Mike Travis <travis@sgi.com>

As this is dependant on non-cpufreq bits, I'm assuming this is going
via Ingo.  From a quick eyeball of this, and the change its dependant on,
it looks ok to me.

	Dave

-- 
http://www.codemonkey.org.uk

WARNING: multiple messages have this Message-ID (diff)
From: Dave Jones <davej@codemonkey.org.uk>
To: Mike Travis <travis@sgi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Ingo Molnar <mingo@elte.hu>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Len Brown <len.brown@intel.com>
Subject: Re: [PATCH 04/12] cpumask: pass cpumask by reference to acpi-cpufreq
Date: Tue, 25 Mar 2008 22:15:54 -0400	[thread overview]
Message-ID: <20080326021554.GA8388@codemonkey.org.uk> (raw)
In-Reply-To: <20080326013812.324977000@polaris-admin.engr.sgi.com>

On Tue, Mar 25, 2008 at 06:38:15PM -0700, Mike Travis wrote:
 > Pass cpumask_t variables by reference in acpi-cpufreq functions.
 > 
 > Based on:
 > 	git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
 > 	git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
 > 
 > Cc: Len Brown <len.brown@intel.com>
 > Cc: Dave Jones <davej@codemonkey.org.uk>
 > Signed-off-by: Mike Travis <travis@sgi.com>

As this is dependant on non-cpufreq bits, I'm assuming this is going
via Ingo.  From a quick eyeball of this, and the change its dependant on,
it looks ok to me.

	Dave

-- 
http://www.codemonkey.org.uk

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2008-03-26  2:16 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-26  1:38 [PATCH 00/12] cpumask: reduce stack pressure from local/passed cpumask variables v2 Mike Travis
2008-03-26  1:38 ` Mike Travis
2008-03-26  1:38 ` [PATCH 01/12] cpumask: Convert cpumask_of_cpu to allocated array v2 Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 02/12] cpumask: pass pointer to cpumask for set_cpus_allowed() v2 Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 03/12] cpumask: reduce stack pressure in sched_affinity Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 04/12] cpumask: pass cpumask by reference to acpi-cpufreq Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  2:15   ` Dave Jones [this message]
2008-03-26  2:15     ` Dave Jones
2008-03-26  1:38 ` [PATCH 05/12] init: move large array from stack to _initdata section Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 06/12] cpumask: create pointer to node_to_cpumask array element v2 Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 07/12] cpumask: reduce stack usage in SD_x_INIT initializers Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 08/12] cpumask: pass temp cpumask variables in init_sched_build_groups Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 09/12] sched: fix memory leak in build_sched_domains Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 10/12] cpumask: reduce stack usage " Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 11/12] cpumask: reduce stack pressure in cpu_coregroup_map v2 Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  1:38 ` [PATCH 12/12] cpu/node mask: reduce stack usage using MASK_NONE, MASK_ALL Mike Travis
2008-03-26  1:38   ` Mike Travis
2008-03-26  6:18 ` [PATCH 00/12] cpumask: reduce stack pressure from local/passed cpumask variables v2 Ingo Molnar
2008-03-26  6:18   ` Ingo Molnar
2008-03-26 15:53   ` Mike Travis
2008-03-26 15:53     ` Mike Travis
  -- strict thread matches above, loose matches on Subject: below --
2008-03-25  2:31 [PATCH 00/12] cpumask: reduce stack pressure from local/passed cpumask variables Mike Travis
2008-03-25  2:31 ` [PATCH 04/12] cpumask: pass cpumask by reference to acpi-cpufreq Mike Travis
2008-03-25  2:31   ` Mike Travis

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=20080326021554.GA8388@codemonkey.org.uk \
    --to=davej@codemonkey.org.uk \
    --cc=akpm@linux-foundation.org \
    --cc=len.brown@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mingo@elte.hu \
    --cc=travis@sgi.com \
    /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.