From: tip-bot for Rik van Riel <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: fweisbec@gmail.com, rkrcmar@redhat.com, efault@gmx.de,
torvalds@linux-foundation.org, peterz@infradead.org,
linux-kernel@vger.kernel.org, tglx@linutronix.de,
riel@redhat.com, pbonzini@redhat.com, mingo@kernel.org,
wanpeng.li@hotmail.com, hpa@zytor.com
Subject: [tip:timers/nohz] sched/cputime: Drop local_irq_save/restore from irqtime_account_irq()
Date: Thu, 14 Jul 2016 03:38:59 -0700 [thread overview]
Message-ID: <tip-553bf6bbfd8a540c70aee28eb50e24caff456a03@git.kernel.org> (raw)
In-Reply-To: <1468421405-20056-6-git-send-email-fweisbec@gmail.com>
Commit-ID: 553bf6bbfd8a540c70aee28eb50e24caff456a03
Gitweb: http://git.kernel.org/tip/553bf6bbfd8a540c70aee28eb50e24caff456a03
Author: Rik van Riel <riel@redhat.com>
AuthorDate: Wed, 13 Jul 2016 16:50:05 +0200
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Thu, 14 Jul 2016 10:42:35 +0200
sched/cputime: Drop local_irq_save/restore from irqtime_account_irq()
Paolo pointed out that irqs are already blocked when irqtime_account_irq()
is called. That means there is no reason to call local_irq_save/restore()
again.
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Radim Krcmar <rkrcmar@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Wanpeng Li <wanpeng.li@hotmail.com>
Link: http://lkml.kernel.org/r/1468421405-20056-6-git-send-email-fweisbec@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
kernel/sched/cputime.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c
index 16a873c..ea0f6f3 100644
--- a/kernel/sched/cputime.c
+++ b/kernel/sched/cputime.c
@@ -49,15 +49,12 @@ DEFINE_PER_CPU(seqcount_t, irq_time_seq);
*/
void irqtime_account_irq(struct task_struct *curr)
{
- unsigned long flags;
s64 delta;
int cpu;
if (!sched_clock_irqtime)
return;
- local_irq_save(flags);
-
cpu = smp_processor_id();
delta = sched_clock_cpu(cpu) - __this_cpu_read(irq_start_time);
__this_cpu_add(irq_start_time, delta);
@@ -75,7 +72,6 @@ void irqtime_account_irq(struct task_struct *curr)
__this_cpu_add(cpu_softirq_time, delta);
irq_time_write_end();
- local_irq_restore(flags);
}
EXPORT_SYMBOL_GPL(irqtime_account_irq);
prev parent reply other threads:[~2016-07-14 10:39 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-13 14:50 [GIT PULL] cputime fixes and cleanups Frederic Weisbecker
2016-07-13 14:50 ` [PATCH 1/5] sched,time: Count actually elapsed irq & softirq time Frederic Weisbecker
2016-07-14 10:37 ` [tip:timers/nohz] sched/cputime: " tip-bot for Rik van Riel
2016-08-09 3:59 ` [PATCH 1/5] sched,time: " Wanpeng Li
2016-08-09 14:06 ` Rik van Riel
2016-08-09 23:07 ` Wanpeng Li
2016-08-10 7:51 ` Wanpeng Li
2016-08-09 23:25 ` Wanpeng Li
2016-08-09 23:31 ` Wanpeng Li
2016-08-09 23:35 ` Wanpeng Li
2016-08-09 23:39 ` Wanpeng Li
2016-08-10 5:07 ` Rik van Riel
2016-08-10 6:33 ` Wanpeng Li
2016-08-10 16:52 ` [PATCH] time,virt: resync steal time when guest & host lose sync Rik van Riel
2016-08-11 10:11 ` Wanpeng Li
2016-08-12 2:44 ` Rik van Riel
2016-08-12 7:09 ` Wanpeng Li
2016-08-12 15:58 ` Rik van Riel
2016-08-13 15:36 ` Frederic Weisbecker
2016-08-15 8:53 ` Wanpeng Li
2016-08-15 11:38 ` Wanpeng Li
2016-08-15 15:00 ` Rik van Riel
2016-08-15 22:19 ` Wanpeng Li
2016-08-16 1:31 ` Wanpeng Li
2016-08-16 2:11 ` Rik van Riel
2016-08-16 6:54 ` Wanpeng Li
2016-08-16 14:01 ` Rik van Riel
2016-08-16 23:08 ` Wanpeng Li
2016-08-12 16:33 ` Paolo Bonzini
2016-08-12 17:23 ` Rik van Riel
2016-08-13 7:18 ` Paolo Bonzini
2016-08-13 8:42 ` Ingo Molnar
2016-08-14 1:50 ` Rik van Riel
2016-08-18 8:23 ` Wanpeng Li
2016-07-13 14:50 ` [PATCH 2/5] nohz,cputime: Replace VTIME_GEN irq time code with IRQ_TIME_ACCOUNTING code Frederic Weisbecker
2016-07-14 10:37 ` [tip:timers/nohz] sched/cputime: " tip-bot for Rik van Riel
2016-07-13 14:50 ` [PATCH 3/5] sched: Complete cleanup of old vtime gen irqtime accounting Frederic Weisbecker
2016-07-14 10:38 ` [tip:timers/nohz] sched/cputime: Clean up the old vtime gen irqtime accounting completely tip-bot for Frederic Weisbecker
2016-07-13 14:50 ` [PATCH 4/5] sched: Reorganize vtime native irqtime accounting headers Frederic Weisbecker
2016-07-14 10:38 ` [tip:timers/nohz] sched/cputime: " tip-bot for Frederic Weisbecker
2016-07-13 14:50 ` [PATCH 5/5] time: Drop local_irq_save/restore from irqtime_account_irq Frederic Weisbecker
2016-07-14 10:38 ` tip-bot for Rik van Riel [this message]
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=tip-553bf6bbfd8a540c70aee28eb50e24caff456a03@git.kernel.org \
--to=tipbot@zytor.com \
--cc=efault@gmx.de \
--cc=fweisbec@gmail.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=rkrcmar@redhat.com \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=wanpeng.li@hotmail.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox