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=-3.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED, 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 D335EECDE43 for ; Thu, 18 Oct 2018 13:12:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 986812145D for ; Thu, 18 Oct 2018 13:12:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="E8KVKdN/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 986812145D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728050AbeJRVM7 (ORCPT ); Thu, 18 Oct 2018 17:12:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:52992 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727567AbeJRVM7 (ORCPT ); Thu, 18 Oct 2018 17:12:59 -0400 Received: from localhost.localdomain (NE2965lan1.rev.em-net.ne.jp [210.141.244.193]) (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 928092145D; Thu, 18 Oct 2018 13:11:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1539868320; bh=NV8cfs3n7FymRtTxxFREa29hRdu3Gncfr3vi3J57B/o=; h=From:To:Cc:Subject:Date:From; b=E8KVKdN/MeJnjNopoDT+0r5mov1KwaMyGugCZ5vYXOXSzAjAa0ZuKQaZMbPvOAcOb 0fmozCoDA33/NfgZGLW1jnphIQTHMQwJxP2gyG9XXrDWFp/0n3bxfqo0YiqwGgLM+L wP2nmKN3yhh31zf8ugZHm3vgd3WP7qa6/w00UW+8= From: Masami Hiramatsu To: Steven Rostedt , Shuah Khan Cc: Tom Zanussi , Masami Hiramatsu , linux-kernel@vger.kernel.org Subject: [PATCH v2 0/3] tracing: Fix synthetic event parser Date: Thu, 18 Oct 2018 22:11:37 +0900 Message-Id: <153986829702.18251.1286066460999338772.stgit@devbox> X-Mailer: git-send-email 2.13.6 User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Here are 2 fixes for synthetic event parser and its testcase. One bug is that the synthetic_events can not accept "unsigned" modifier for the field type, and another one is not allowing the last independent semicolon. I found that there is no testcase for checking it too. So the last patch in this series adding a testcase for synthetic event parser. Thank you, --- Masami Hiramatsu (3): tracing: Fix synthetic event to accept unsigned modifier tracing: Fix synthetic event to allow semicolon at end selftests: ftrace: Add synthetic event syntax testcase kernel/trace/trace_events_hist.c | 32 ++++++-- .../inter-event/trigger-synthetic-event-syntax.tc | 80 ++++++++++++++++++++ 2 files changed, 105 insertions(+), 7 deletions(-) create mode 100644 tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic-event-syntax.tc -- Masami Hiramatsu (Linaro)