From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 868C4C433EF for ; Thu, 9 Sep 2021 13:31:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 71CBF60F4A for ; Thu, 9 Sep 2021 13:31:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1357731AbhIINcy (ORCPT ); Thu, 9 Sep 2021 09:32:54 -0400 Received: from mail.kernel.org ([198.145.29.99]:35414 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1357665AbhIINPZ (ORCPT ); Thu, 9 Sep 2021 09:15:25 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 555746023D; Thu, 9 Sep 2021 12:48:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631191727; bh=fvr7YWvjjLwZAaltIMSEaPVyp9IkvahaMWcXNJTEqxY=; h=From:To:Cc:Subject:Date:From; b=J/+yZvFzf8E9qxTG0Vr4wDKnjqeME7LqxBK+p4o3HWlQkqaNSqlcWllXWC3PFeddl SMZppRDPKswR47bnHXLs3/oUdsvhTWHO6ssXru3UX8PBboKRhy47XeHshf+yHStTQI aelaApzmSckjlKXtu9iacy+0xMhP165vvc1h2aYiLyNLD9+lVwQuolz5s9c9qnWLNz gBET/WELcAgFU6q/E+Gx3p4t5rWeEJC6BOMAZ8NDmFHiVDBK53JfvUy+vZRFd/N8h7 xrMyIs/0AwGgDs2zhad/YlLYiAMaZUGH6kaem3g4Yocr4NNNLQj0vIX3hg4015lUH9 KRSz7TUfMvwFA== From: Masami Hiramatsu To: Steven Rostedt Cc: linux-kernel@vger.kernel.org, Masami Hiramatsu Subject: [PATCH 0/3] tracing/boot: bootconfig: Fixes and API name change Date: Thu, 9 Sep 2021 21:48:43 +0900 Message-Id: <163119172318.151131.7138254940364392100.stgit@devnote2> X-Mailer: git-send-email 2.25.1 User-Agent: StGit/0.19 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Here is a series of patches to fix some issues on boot-time tracing and bootconfig. Yesterday I sent a bugfix(*), and today I found some other issues. (*) https://lore.kernel.org/all/163112988361.74896.2267026262061819145.stgit@devnote2/T/#u This includes following patches. [1/3] tracing/boot: Fix trace_boot_hist_add_array() to check array is value [2/3] tracing/boot: Fix to check the histogram control param is a leaf node [3/3] bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey() - Rename xbc_node_find_child() to xbc_node_find_subkey() to avoid confusing "child" and "subkey" words. Thank you, --- Masami Hiramatsu (3): tracing/boot: Fix trace_boot_hist_add_array() to check array is value tracing/boot: Fix to check the histogram control param is a leaf node bootconfig: Rename xbc_node_find_child() to xbc_node_find_subkey() include/linux/bootconfig.h | 4 ++-- kernel/trace/trace_boot.c | 35 +++++++++++++++++------------------ lib/bootconfig.c | 8 ++++---- 3 files changed, 23 insertions(+), 24 deletions(-) -- Masami Hiramatsu (Linaro)