From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: Re: [PATCH v2 5/6] xen/arm: Dissociate logical and hardware CPU ID Date: Tue, 17 Sep 2013 16:02:42 +0100 Message-ID: <52386F12.80505@linaro.org> References: <1378900784-16949-1-git-send-email-julien.grall@linaro.org> <1378900784-16949-6-git-send-email-julien.grall@linaro.org> <1379428795.11304.113.camel@hastur.hellion.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1379428795.11304.113.camel@hastur.hellion.org.uk> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell Cc: stefano.stabellini@eu.citrix.com, patches@linaro.org, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On 09/17/2013 03:39 PM, Ian Campbell wrote: > On Wed, 2013-09-11 at 12:59 +0100, Julien Grall wrote: > >> + dt_for_each_child_node( cpus, cpu ) >> + { >> + u32 hwid; >> + >> + if ( !dt_device_type_is_equal(cpu, "cpu") ) >> + continue; > > This could eventually use dt_find_node_by_type which I added in my start > of day rework. I would assume your patch will go in first so I'll try > and remember to do that when I rebase... cpu node must be under /cpus. dt_find_node_by_type will look at all the nodes (not only the child) so we can't replace by this call. -- Julien Grall