From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752017AbeAZVaE (ORCPT ); Fri, 26 Jan 2018 16:30:04 -0500 Received: from mail-pf0-f196.google.com ([209.85.192.196]:45278 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751237AbeAZVaB (ORCPT ); Fri, 26 Jan 2018 16:30:01 -0500 X-Google-Smtp-Source: AH8x224ehkrElOV66shJ2Ka2RuVRA8PQNIlk5GtkmhcgRJ5+cvEbKv3KYT4RPv9p3AvI5UL6yYFzDg== Subject: Re: [PATCH] of: use hash based search in of_find_node_by_phandle From: Frank Rowand To: Chintan Pandya , robh+dt@kernel.org, devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org References: <1516875247-19599-1-git-send-email-cpandya@codeaurora.org> <5a7793df-725e-608d-778b-cb81fde0cc64@gmail.com> <13846fcb-3aa2-a4fb-1bd8-e624855f105d@codeaurora.org> <2ac0d70d-074d-5eff-77e9-29d1a246a3ef@gmail.com> Message-ID: Date: Fri, 26 Jan 2018 13:29:59 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <2ac0d70d-074d-5eff-77e9-29d1a246a3ef@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/26/18 13:27, Frank Rowand wrote: > On 01/26/18 00:22, Chintan Pandya wrote: >> >> >> On 1/26/2018 1:24 AM, Frank Rowand wrote: >>> On 01/25/18 02:14, Chintan Pandya wrote: >>>> of_find_node_by_phandle() takes a lot of time finding >>>> right node when your intended device is too right-side >>>> in the fdt. Reason is, we search each device serially >>>> from the fdt, starting from left-most to right-most. >>> Please give me a pointer to the code that is doing >>> this search. >>> >>> -Frank >> You can refer include/linux/of.h >> >> #define for_each_of_allnodes_from(from, dn) \ >>         for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn)) >> #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) >> >> where __of_find_all_nodes() does >> >> struct device_node *__of_find_all_nodes(struct device_node *prev) >> { >>         struct device_node *np; >>         if (!prev) { >>                 np = of_root; >>         } else if (prev->child) { >>                 np = prev->child; >>         } else { >>                 /* Walk back up looking for a sibling, or the end of the structure */ >>                 np = prev; >>                 while (np->parent && !np->sibling) >>                         np = np->parent; >>                 np = np->sibling; /* Might be null at the end of the tree */ >>         } >>         return np; >> } >> > > Let me restate my question. > > Can you point me to the driver code that is invoking > the search? > > -Frank > And also the .dts devicetree source file that you are seeing large overhead with.