Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp1014228pxb; Tue, 17 Aug 2021 01:28:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzLuNmFVLXoxic58icCleyuYUk/z0uLurvPyn3veqhswLItLL84f/ZBsJGd+6vT1G1iXhVn X-Received: by 2002:a17:906:1412:: with SMTP id p18mr2643343ejc.545.1629188929021; Tue, 17 Aug 2021 01:28:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1629188929; cv=none; d=google.com; s=arc-20160816; b=heoezomFdpBfB0ivGAdQO6RVhxBQ78e4IanAmm6gyJkT5q0M3palR+oCCFoVvsC1+6 a6KmpIbp6qEDPybWfaOs5n4Q+QiSu5GiFr0I8gBz76Pvx6cXbQL97mV5lPYVf+5K2C3/ w+relEDWzhAi3WwZMkMAYuC68fYhRyZ2brYgtntNihMb9AeStW00gZ1bC4Q9cmuQG9F2 G1d++GuklU8rE9ZjxAY+5Gxzix/Ch4cCFwcvnKbdiFPx/lRXcKhc0PN11hu5tvowPeLo UBVflGoff4r/CFbvXj/QuJrncPtoHd3FhiW+seLZorih0uyh2a5Tmzpod1QQKqS7bIE+ TN5g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=PfLybH5uToBHqmmspXoBv46+nS7bfF0+CA4UjBbqiOk=; b=Orm+waeVivte4/zse8+ajKvUiIVwEeVug7QQJlH873C+acJ0tdsXNRtWjoTBvmLsCN OQDBERbaO1b9w0kGOLxlTzB6L7meZ8ymGaf8AcEpRvV5uJCRaQfb3KC0gbM8WVtBd8U+ t+TF8IEy3MnLdsAXSleRBNtaCr4GjTkHjDslbRPQiizVEOdDvGIR+W/qBiXoc1BdaExA dwELxRlqDGnnU9O2ToHdJEwgjtVnsCjBI5vL54dmijU4VKYD+1Bt3BnZ95gTmXQbp1B7 GF+ojb0WQc5WHeVafqBZfM9bLvOmIUhhAT8CZ2E3DNFntaz8+oZ+ARkArEiwZulPubDo Kl6Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id me14si1422766ejb.611.2021.08.17.01.28.26; Tue, 17 Aug 2021 01:28:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239315AbhHQIZA (ORCPT + 99 others); Tue, 17 Aug 2021 04:25:00 -0400 Received: from mga14.intel.com ([192.55.52.115]:11571 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239243AbhHQIYm (ORCPT ); Tue, 17 Aug 2021 04:24:42 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10078"; a="215746813" X-IronPort-AV: E=Sophos;i="5.84,328,1620716400"; d="scan'208";a="215746813" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2021 01:24:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,328,1620716400"; d="scan'208";a="471080322" Received: from nntpat99-84.inn.intel.com ([10.125.99.84]) by orsmga008.jf.intel.com with ESMTP; 17 Aug 2021 01:24:06 -0700 From: Alexey Bayduraev To: Arnaldo Carvalho de Melo Cc: Jiri Olsa , Namhyung Kim , Alexander Shishkin , Peter Zijlstra , Ingo Molnar , linux-kernel , Andi Kleen , Adrian Hunter , Alexander Antonov , Alexei Budankov , Riccardo Mancini Subject: [PATCH v11 12/24] perf record: Introduce --threads command line option Date: Tue, 17 Aug 2021 11:23:15 +0300 Message-Id: X-Mailer: git-send-email 2.19.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Provide --threads option in perf record command line interface. The option creates a data streaming thread for each cpu in the system. Document --threads option in Documentation/perf-record.txt. Reviewed-by: Riccardo Mancini Tested-by: Riccardo Mancini Signed-off-by: Alexey Bayduraev --- tools/perf/Documentation/perf-record.txt | 4 +++ tools/perf/builtin-record.c | 44 +++++++++++++++++++++++- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt index f1079ee7f2ec..0408e677c117 100644 --- a/tools/perf/Documentation/perf-record.txt +++ b/tools/perf/Documentation/perf-record.txt @@ -695,6 +695,10 @@ measurements: wait -n ${perf_pid} exit $? +--threads:: +Write collected trace data into several data files using parallel threads. +The option creates a data streaming thread for each cpu in the system. + include::intel-hybrid.txt[] SEE ALSO diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 06160627f975..246a5746a195 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -122,6 +122,11 @@ static const char *thread_msg_tags[THREAD_MSG__MAX] = { "UNDEFINED", "READY" }; +enum thread_spec { + THREAD_SPEC__UNDEFINED = 0, + THREAD_SPEC__CPU, +}; + struct record { struct perf_tool tool; struct record_opts opts; @@ -2781,6 +2786,16 @@ static void record__thread_mask_free(struct thread_mask *mask) record__mmap_cpu_mask_free(&mask->affinity); } +static int record__parse_threads(const struct option *opt, const char *str, int unset) +{ + struct record_opts *opts = opt->value; + + if (unset || !str || !strlen(str)) + opts->threads_spec = THREAD_SPEC__CPU; + + return 0; +} + static int parse_output_max_size(const struct option *opt, const char *str, int unset) { @@ -3224,6 +3239,9 @@ static struct option __record_options[] = { "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n" "\t\t\t Alternatively, ctl-fifo / ack-fifo will be opened and used as ctl-fd / ack-fd.", parse_control_option), + OPT_CALLBACK_OPTARG(0, "threads", &record.opts, NULL, "spec", + "write collected trace data into several data files using parallel threads", + record__parse_threads), OPT_END() }; @@ -3273,6 +3291,27 @@ static int record__alloc_thread_masks(struct record *rec, int nr_threads, int nr return ret; } +static int record__init_thread_cpu_masks(struct record *rec, struct perf_cpu_map *cpus) +{ + int t, ret, nr_cpus = perf_cpu_map__nr(cpus); + + ret = record__alloc_thread_masks(rec, nr_cpus, cpu__max_cpu()); + if (ret) + return ret; + + rec->nr_threads = nr_cpus; + pr_debug("threads: nr_threads=%d\n", rec->nr_threads); + + for (t = 0; t < rec->nr_threads; t++) { + set_bit(cpus->map[t], rec->thread_masks[t].maps.bits); + pr_debug("thread_masks[%d]: maps mask [%d]\n", t, cpus->map[t]); + set_bit(cpus->map[t], rec->thread_masks[t].affinity.bits); + pr_debug("thread_masks[%d]: affinity mask [%d]\n", t, cpus->map[t]); + } + + return 0; +} + static int record__init_thread_default_masks(struct record *rec, struct perf_cpu_map *cpus) { int ret; @@ -3292,7 +3331,10 @@ static int record__init_thread_masks(struct record *rec) { struct perf_cpu_map *cpus = rec->evlist->core.cpus; - return record__init_thread_default_masks(rec, cpus); + if (!record__threads_enabled(rec)) + return record__init_thread_default_masks(rec, cpus); + + return record__init_thread_cpu_masks(rec, cpus); } static void record__fini_thread_masks(struct record *rec) -- 2.19.0