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=-5.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_2 autolearn=no 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 F34F4C48BE5 for ; Wed, 16 Jun 2021 19:17:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D0FBB61246 for ; Wed, 16 Jun 2021 19:17:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232598AbhFPTTL (ORCPT ); Wed, 16 Jun 2021 15:19:11 -0400 Received: from mail.kernel.org ([198.145.29.99]:49816 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232650AbhFPTTJ (ORCPT ); Wed, 16 Jun 2021 15:19:09 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C97B060FEA; Wed, 16 Jun 2021 19:17:02 +0000 (UTC) Date: Wed, 16 Jun 2021 15:17:01 -0400 From: Steven Rostedt To: Masami Hiramatsu Cc: Devin Moore , LKML , Ingo Molnar Subject: Re: [PATCH v4 0/6] bootconfig: Add mixed subkeys and value under the same key Message-ID: <20210616151701.0c9c6059@gandalf.local.home> In-Reply-To: <20210611085635.f1655f08b7d8abc009776b6b@kernel.org> References: <162262192121.264090.6540508908529705156.stgit@devnote2> <20210610234809.9d1e92cb3f04842e14c3d011@kernel.org> <20210610122607.3817da31@oasis.local.home> <20210610123852.606aa3a4@oasis.local.home> <20210611085635.f1655f08b7d8abc009776b6b@kernel.org> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 11 Jun 2021 08:56:35 +0900 Masami Hiramatsu wrote: > kernel { > trace_options = sym-addr > trace_events = "initcall:*" > # tp_printk > trace_buf_size = 1M > ftrace = function > ftrace_filter = "vfs*" > } I'm creating a ktest test for boot up on bootconfigs and writing a verifier for each of the configs you sent me. On the first config I looked at "boottrace.bconf", I found a bug. The above should be: trace_event = "initcall:*" and not "trace_events" as "trace_events" is not a boot option ;-) -- Steve