From: Frederic Weisbecker <frederic@kernel.org> To: Peter Zijlstra <peterz@infradead.org>, Ingo Molnar <mingo@kernel.org> Cc: LKML <linux-kernel@vger.kernel.org>, Frederic Weisbecker <frederic@kernel.org>, Jacek Anaszewski <jacek.anaszewski@gmail.com>, Wanpeng Li <wanpengli@tencent.com>, "Rafael J . Wysocki" <rjw@rjwysocki.net>, Benjamin Herrenschmidt <benh@kernel.crashing.org>, Rik van Riel <riel@surriel.com>, Thomas Gleixner <tglx@linutronix.de>, Yauheni Kaliuta <yauheni.kaliuta@redhat.com>, Viresh Kumar <viresh.kumar@linaro.org>, Pavel Machek <pavel@ucw.cz> Subject: [PATCH 3/6] procfs: Use all-in-one vtime aware kcpustat accessor Date: Wed, 20 Nov 2019 00:22:15 +0100 [thread overview] Message-ID: <20191119232218.4206-4-frederic@kernel.org> (raw) In-Reply-To: <20191119232218.4206-1-frederic@kernel.org> Now that we can read also user and guest time safely under vtime, use the relevant accessor to fix frozen kcpustat values on nohz_full CPUs. Reported-by: Yauheni Kaliuta <yauheni.kaliuta@redhat.com> Signed-off-by: Frederic Weisbecker <frederic@kernel.org> Cc: Yauheni Kaliuta <yauheni.kaliuta@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Rik van Riel <riel@surriel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Wanpeng Li <wanpengli@tencent.com> Cc: Ingo Molnar <mingo@kernel.org> --- fs/proc/stat.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/fs/proc/stat.c b/fs/proc/stat.c index 5c6bd0ae3802..b2ee5418dece 100644 --- a/fs/proc/stat.c +++ b/fs/proc/stat.c @@ -120,18 +120,21 @@ static int show_stat(struct seq_file *p, void *v) getboottime64(&boottime); for_each_possible_cpu(i) { + u64 cpu_user, cpu_nice, cpu_sys, cpu_guest, cpu_guest_nice; struct kernel_cpustat *kcs = &kcpustat_cpu(i); - user += kcs->cpustat[CPUTIME_USER]; - nice += kcs->cpustat[CPUTIME_NICE]; - system += kcpustat_field(kcs, CPUTIME_SYSTEM, i); + kcpustat_cputime(kcs, i, &cpu_user, &cpu_nice, + &cpu_sys, &cpu_guest, &cpu_guest_nice); + user += cpu_user; + nice += cpu_nice; + system += cpu_sys; idle += get_idle_time(kcs, i); iowait += get_iowait_time(kcs, i); irq += kcs->cpustat[CPUTIME_IRQ]; softirq += kcs->cpustat[CPUTIME_SOFTIRQ]; steal += kcs->cpustat[CPUTIME_STEAL]; - guest += kcs->cpustat[CPUTIME_GUEST]; - guest_nice += kcs->cpustat[CPUTIME_GUEST_NICE]; + guest += cpu_guest; + guest_nice += guest_nice; sum += kstat_cpu_irqs_sum(i); sum += arch_irq_stat_cpu(i); @@ -159,17 +162,14 @@ static int show_stat(struct seq_file *p, void *v) for_each_online_cpu(i) { struct kernel_cpustat *kcs = &kcpustat_cpu(i); + kcpustat_cputime(kcs, i, &user, &nice, + &system, &guest, &guest_nice); /* Copy values here to work around gcc-2.95.3, gcc-2.96 */ - user = kcs->cpustat[CPUTIME_USER]; - nice = kcs->cpustat[CPUTIME_NICE]; - system = kcpustat_field(kcs, CPUTIME_SYSTEM, i); idle = get_idle_time(kcs, i); iowait = get_iowait_time(kcs, i); irq = kcs->cpustat[CPUTIME_IRQ]; softirq = kcs->cpustat[CPUTIME_SOFTIRQ]; steal = kcs->cpustat[CPUTIME_STEAL]; - guest = kcs->cpustat[CPUTIME_GUEST]; - guest_nice = kcs->cpustat[CPUTIME_GUEST_NICE]; seq_printf(p, "cpu%d", i); seq_put_decimal_ull(p, " ", nsec_to_clock_t(user)); seq_put_decimal_ull(p, " ", nsec_to_clock_t(nice)); -- 2.23.0
next prev parent reply other threads:[~2019-11-19 23:22 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-11-19 23:22 [PATCH 0/6] sched/nohz: Make the rest of kcpustat vtime aware v2 Frederic Weisbecker 2019-11-19 23:22 ` [PATCH 1/6] sched/cputime: Support other fields on kcpustat_field() Frederic Weisbecker 2019-11-20 11:51 ` Ingo Molnar 2019-11-20 21:04 ` Peter Zijlstra 2019-11-19 23:22 ` [PATCH 2/6] sched/vtime: Bring all-in-one kcpustat accessor for vtime fields Frederic Weisbecker 2019-11-20 12:04 ` Ingo Molnar 2019-11-20 15:00 ` Frederic Weisbecker 2019-11-19 23:22 ` Frederic Weisbecker [this message] 2019-11-19 23:22 ` [PATCH 4/6] cpufreq: Use vtime aware kcpustat accessors for user time Frederic Weisbecker 2019-11-19 23:22 ` [PATCH 5/6] leds: Use all-in-one vtime aware kcpustat accessor Frederic Weisbecker 2019-11-19 23:22 ` [PATCH 6/6] rackmeter: Use " Frederic Weisbecker 2019-11-21 2:44 [PATCH 0/6] sched/nohz: Make the rest of kcpustat vtime aware v3 Frederic Weisbecker 2019-11-21 2:44 ` [PATCH 3/6] procfs: Use all-in-one vtime aware kcpustat accessor Frederic Weisbecker 2019-12-08 15:57 ` Paul Orlyk 2019-12-09 15:50 ` Frederic Weisbecker
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20191119232218.4206-4-frederic@kernel.org \ --to=frederic@kernel.org \ --cc=benh@kernel.crashing.org \ --cc=jacek.anaszewski@gmail.com \ --cc=linux-kernel@vger.kernel.org \ --cc=mingo@kernel.org \ --cc=pavel@ucw.cz \ --cc=peterz@infradead.org \ --cc=riel@surriel.com \ --cc=rjw@rjwysocki.net \ --cc=tglx@linutronix.de \ --cc=viresh.kumar@linaro.org \ --cc=wanpengli@tencent.com \ --cc=yauheni.kaliuta@redhat.com \ --subject='Re: [PATCH 3/6] procfs: Use all-in-one vtime aware kcpustat accessor' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).