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=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED 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 26F00C43381 for ; Fri, 1 Mar 2019 15:43:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ED44120850 for ; Fri, 1 Mar 2019 15:43:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388647AbfCAPnd (ORCPT ); Fri, 1 Mar 2019 10:43:33 -0500 Received: from mga01.intel.com ([192.55.52.88]:64865 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728325AbfCAPnd (ORCPT ); Fri, 1 Mar 2019 10:43:33 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Mar 2019 07:43:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,428,1544515200"; d="scan'208";a="118824777" Received: from linux.intel.com ([10.54.29.200]) by orsmga007.jf.intel.com with ESMTP; 01 Mar 2019 07:43:32 -0800 Received: from [10.252.14.197] (abudanko-mobl.ccr.corp.intel.com [10.252.14.197]) by linux.intel.com (Postfix) with ESMTP id BE2E85804B4; Fri, 1 Mar 2019 07:43:29 -0800 (PST) Subject: [PATCH v5 03/10] perf session: define bytes_transferred and bytes_compressed metrics From: Alexey Budankov To: Arnaldo Carvalho de Melo Cc: Jiri Olsa , Namhyung Kim , Alexander Shishkin , Peter Zijlstra , Ingo Molnar , Andi Kleen , linux-kernel References: <4d1b11a4-77ed-d9af-ed22-875fc17b6050@linux.intel.com> Organization: Intel Corp. Message-ID: Date: Fri, 1 Mar 2019 18:43:28 +0300 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <4d1b11a4-77ed-d9af-ed22-875fc17b6050@linux.intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Define bytes_transferred and bytes_compressed metrics to calculate comp_ratio=transferred/compressed in the end of the data collection. bytes_transferred accumulates the amount of bytes that was extracted from the mmaped kernel buffers for compression. bytes_compressed accumulates the amount of bytes that was received after applying compression to move to a storage. Signed-off-by: Alexey Budankov --- tools/perf/builtin-record.c | 8 ++++++++ tools/perf/util/env.h | 1 + tools/perf/util/session.h | 2 ++ 3 files changed, 11 insertions(+) diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 9b02a68e8c23..ab121bc27c6d 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -1449,6 +1449,14 @@ static int __cmd_record(struct record *rec, int argc, const char **argv) record__mmap_read_all(rec, true); record__aio_mmap_read_sync(rec); + if (!quiet && rec->session->bytes_transferred && rec->session->bytes_compressed) { + float ratio = (float)rec->session->bytes_transferred/(float)rec->session->bytes_compressed; + + session->header.env.comp_ratio = ratio + 0.5; + fprintf(stderr, "[ perf record: Compressed %.3f MB to %.3f MB, ratio is %.3f ]\n", + rec->session->bytes_transferred / 1024.0 / 1024.0, rec->session->bytes_compressed / 1024.0 / 1024.0, ratio); + } + if (forks) { int exit_status; diff --git a/tools/perf/util/env.h b/tools/perf/util/env.h index d01b8355f4ca..fb39e9af128f 100644 --- a/tools/perf/util/env.h +++ b/tools/perf/util/env.h @@ -64,6 +64,7 @@ struct perf_env { struct memory_node *memory_nodes; unsigned long long memory_bsize; u64 clockid_res_ns; + u32 comp_ratio; }; extern struct perf_env perf_env; diff --git a/tools/perf/util/session.h b/tools/perf/util/session.h index d96eccd7d27f..0e14884f28b2 100644 --- a/tools/perf/util/session.h +++ b/tools/perf/util/session.h @@ -35,6 +35,8 @@ struct perf_session { struct ordered_events ordered_events; struct perf_data *data; struct perf_tool *tool; + u64 bytes_transferred; + u64 bytes_compressed; }; struct perf_tool; -- 2.20.1