From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753374AbcFTJlO (ORCPT ); Mon, 20 Jun 2016 05:41:14 -0400 Received: from cn.fujitsu.com ([59.151.112.132]:21760 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1754150AbcFTJlF (ORCPT ); Mon, 20 Jun 2016 05:41:05 -0400 X-IronPort-AV: E=Sophos;i="5.22,518,1449504000"; d="scan'208";a="7871883" From: Zhao Lei To: CC: Peter Zijlstra , Ingo Molnar , KOSAKI Motohiro , Zhao Lei Subject: [PATCH v4 0/3] cpuacct: Introduce cpuacct.usage_all to show all cpu stats together(was: [PATCH v2 0/3] cpuacct: Show all detail stats in one file) Date: Mon, 20 Jun 2016 17:37:17 +0800 Message-ID: X-Mailer: git-send-email 1.8.5.1 MIME-Version: 1.0 Content-Type: text/plain X-yoursite-MailScanner-ID: A23A5498F592.A68EB X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: zhaolei@cn.fujitsu.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In current code, we can get cpuacct data from several files, but each file have its limit. For example: we can get cpu usage in user and kernel mode by cpuacct.stat, but we can't get detail data of each cpu in above file. we can get each cpu's kernel mode usage in cpuacct.usage_percpu_sys, but we can't get user mode data in the same time. This patch introduce cpuacct.usage_all, to show all detailed cpu accounting data altogether: # cat cpuacct.usage_all cpu user system 0 3809760299 5807968992 1 3250329855 454612211 .. Any aspects of statistics data can be get from this file with a simple data-processing code. Changelog v3->v4: 1: Rebase on top of 4.7-rc4 Changelog v2->v3: 1: Change title of PATCH 3/3 from: cpuacct: Show all detail stats in one file to cpuacct: Introduce cpuacct.usage_all to show all cpu stats together 2: Fix spelling typos in patch's description. Suggested by: Ingo Molnar Changelog v1->v2: 1: Rewrite subject in PATCH 1/3 and 2/3 to fix typos and make it more accurate. 2: Use a variable for the cpustat array itself to make code clean(avoid lot of 'kcpustat->'). 3: Add missed newline between variable definitions and the first non-definition C statement. Above are suggested by: Ingo Molnar 4: Remove '[]' in CPUID, to make it easier to parse. Suggested by: Peter Zijlstra Zhao Lei (3): cpuacct: Merge cpuacct_usage_index and cpuacct_stat_index cpuacct: Use loop to avoid copies of the similar code in cpuacct_stats_show() cpuacct: Introduce cpuacct.usage_all to show all cpu stats together kernel/sched/cpuacct.c | 114 +++++++++++++++++++++++++++++++------------------ 1 file changed, 73 insertions(+), 41 deletions(-) -- 1.8.5.1