Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp219195imm; Tue, 19 Jun 2018 19:43:04 -0700 (PDT) X-Google-Smtp-Source: ADUXVKKweD8XIU4BQ5taAr99dy62PLpJTQQxuupZ7tVwPcQ8b3x8ajkb+44s0HzRpQZuX2lthyDc X-Received: by 2002:a62:8b0a:: with SMTP id j10-v6mr20595526pfe.28.1529462584008; Tue, 19 Jun 2018 19:43:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1529462583; cv=none; d=google.com; s=arc-20160816; b=UeZmwyC/3GnjMH5lDPaWserv98bmfnSdK2Q6ZEEtqxuqPjt1ufmQu5xfadn0qHnaAd 5oLoz2c8DOcEL3b/amtJ+Vo/NUBDPXJe6YxWbQAuK4SB4vMiL/7D/g/UbHBjHrC2sEm0 A3vJQFtU+nqPD2rCmKDbScgFhpvLI3t2dbhsVjXlq9Es6H6brI/PAeCz7q9ynVxXLc/r /I3mwlmbfyL6os9J3kmoezuqwe3Z5keXAHK/KaOrqkx2zreKLMSXRT7PNOFf4qbN0qUa hCGdyEkL4uT4ZbINwCQlOGyOsOEIK8w3brNOWrGlhtBh+z40lGUeGmBlkGwD3QjQYsXY 9sQg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=vzlrShOM4WBw3aOVq+7SouVGZCv57pLQfuSn3/TbU0w=; b=GVrT0b42UHMI4Y9PBJy74i9bMC75R7ckUjtMuIWtQwbmoLFcmYg+GNjsCldGuFa4sz 2Kud2VR/lr8TIZFIsFS9J8MK9y2TNgQ2Guc4OSTOMLJjd3YqgjUCoAhSHmnviWbrs5GD hqBLqSYlG8k2lt2d4QTEsW5+f2PbP98ueqhcBqFgzUGaygG/+uQQ6guvib/8z/L3GA4i OENgy10pRPY1ZUTqJkmOAmCA1duf0pYsG2nZKC8QOxKPFP1jOCB8ywtQMxcI4zrEBQtL H7n8EvxoLK+pED2CxeUqeAvZrq/oCIb0W4V3L20JZ8a7wqWfpgMAYNmZYbtcsh3oQw3k Zf9g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b30-v6si1453359pli.427.2018.06.19.19.42.50; Tue, 19 Jun 2018 19:43:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754273AbeFTCmM (ORCPT + 99 others); Tue, 19 Jun 2018 22:42:12 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:40238 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753685AbeFTCmL (ORCPT ); Tue, 19 Jun 2018 22:42:11 -0400 Received: from localhost (s169.156.222.122.fls.vectant.ne.jp [122.222.156.169]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 3C4CBFC3; Wed, 20 Jun 2018 02:42:10 +0000 (UTC) Date: Wed, 20 Jun 2018 11:42:07 +0900 From: Greg Kroah-Hartman To: Todd Poynor Cc: Rob Herring , Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-team@android.com, Todd Poynor Subject: Re: [PATCH] drivers: base: initcall_debug logs for driver probe times Message-ID: <20180620024207.GA2694@kroah.com> References: <20180620023903.242758-1-toddpoynor@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180620023903.242758-1-toddpoynor@gmail.com> User-Agent: Mutt/1.10.0 (2018-05-17) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 19, 2018 at 07:39:03PM -0700, Todd Poynor wrote: > From: Todd Poynor > > Add initcall_debug logs for each driver device probe call, for example: > > probe of a3800000.ramoops returned after 3007 usecs > > This replaces the previous code added to report times for deferred > probes. It also reports OF platform bus device creates that were > formerly lumped together in a single entry for function > of_platform_default_populate_init, as well as helping to annotate other > initcalls that involve device probing. > > Signed-off-by: Todd Poynor > --- > drivers/base/dd.c | 50 +++++++++++++++++++++++------------------------ > 1 file changed, 24 insertions(+), 26 deletions(-) New features with less lines of code, nice! I'll queue this up soon, very good work. greg k-h