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 81D57C433F5 for ; Thu, 9 Sep 2021 13:31:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6AC1E611BF for ; Thu, 9 Sep 2021 13:31:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1358307AbhIINc0 (ORCPT ); Thu, 9 Sep 2021 09:32:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:35416 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1357680AbhIINPZ (ORCPT ); Thu, 9 Sep 2021 09:15:25 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 0B4DF611C7; Thu, 9 Sep 2021 13:12:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631193125; bh=dNJFtrF78qzIQitC46Mph76KRxuj/uQ+e9tYRuJPMS8=; h=From:To:Cc:Subject:Date:From; b=hWfP3mb4q02clcV5wHcI9kTMAvBuT6xXHX60s4fxlAidqb2ohtZYeM+oZX+ZITT/0 ujmOkcaRHm4zdYO85iVowNBBAyyK7wd1t/l6XBK1Q2sHIK38OItcbc/TIrluiqMtcL KIGL5hsTE2Ag3AbLUBYCyJcur6BXPAm5WaMM+k7ozWqDkeF0j+D2ero/w7BdcTaT6K E5yJXDYNv4c0sSrYf6sn8B+r3NBG0WZQ7kpw15kC/FvmpgHOHy1FAMbKhIRHwAssHa DeCU6/Zb19ahrPsSL8lGgZLu4gZBVHmYy8EaO64JyEyDVS4GVf+dJ52n5jP2A400nk nf+Qh6qw2Z4tg== 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 22:12:03 +0900 Message-Id: <163119312321.159092.9694278669123009540.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 | 37 ++++++++++++++++++------------------- lib/bootconfig.c | 8 ++++---- 3 files changed, 24 insertions(+), 25 deletions(-) -- Masami Hiramatsu (Linaro)