* [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts"
@ 2020-01-10 2:56 Hewenliang
2020-01-13 21:04 ` Steven Rostedt
2020-01-17 10:08 ` [tip: sched/core] " tip-bot2 for Hewenliang
0 siblings, 2 replies; 5+ messages in thread
From: Hewenliang @ 2020-01-10 2:56 UTC (permalink / raw)
To: rostedt, mingo, peterz, juri.lelli, vincent.guittot, bsegall,
mgorman, linux-kernel
Cc: hewenliang4
There is a spelling misake in comments of cpuidle_idle_call. Fix it.
Signed-off-by: Hewenliang <hewenliang4@huawei.com>
---
kernel/sched/idle.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
index f65ef1e2f204..d29ebe8c63dd 100644
--- a/kernel/sched/idle.c
+++ b/kernel/sched/idle.c
@@ -158,7 +158,7 @@ static void cpuidle_idle_call(void)
/*
* Suspend-to-idle ("s2idle") is a system state in which all user space
* has been frozen, all I/O devices have been suspended and the only
- * activity happens here and in iterrupts (if any). In that case bypass
+ * activity happens here and in interrupts (if any). In that case bypass
* the cpuidle governor and go stratight for the deepest idle state
* available. Possibly also suspend the local tick and the entire
* timekeeping to prevent timer interrupts from kicking us out of idle
--
2.19.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts"
2020-01-10 2:56 [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts" Hewenliang
@ 2020-01-13 21:04 ` Steven Rostedt
2020-01-14 10:02 ` Peter Zijlstra
2020-01-17 10:08 ` [tip: sched/core] " tip-bot2 for Hewenliang
1 sibling, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2020-01-13 21:04 UTC (permalink / raw)
To: peterz
Cc: Hewenliang, mingo, juri.lelli, vincent.guittot, bsegall, mgorman,
linux-kernel
Peter,
I guess you could just pull this into one of your queues.
Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
-- Steve
On Thu, 9 Jan 2020 21:56:04 -0500
Hewenliang <hewenliang4@huawei.com> wrote:
> There is a spelling misake in comments of cpuidle_idle_call. Fix it.
>
> Signed-off-by: Hewenliang <hewenliang4@huawei.com>
> ---
> kernel/sched/idle.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
> index f65ef1e2f204..d29ebe8c63dd 100644
> --- a/kernel/sched/idle.c
> +++ b/kernel/sched/idle.c
> @@ -158,7 +158,7 @@ static void cpuidle_idle_call(void)
> /*
> * Suspend-to-idle ("s2idle") is a system state in which all user space
> * has been frozen, all I/O devices have been suspended and the only
> - * activity happens here and in iterrupts (if any). In that case bypass
> + * activity happens here and in interrupts (if any). In that case bypass
> * the cpuidle governor and go stratight for the deepest idle state
> * available. Possibly also suspend the local tick and the entire
> * timekeeping to prevent timer interrupts from kicking us out of idle
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts"
2020-01-13 21:04 ` Steven Rostedt
@ 2020-01-14 10:02 ` Peter Zijlstra
2020-01-14 14:16 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Peter Zijlstra @ 2020-01-14 10:02 UTC (permalink / raw)
To: Steven Rostedt
Cc: Hewenliang, mingo, juri.lelli, vincent.guittot, bsegall, mgorman,
linux-kernel
On Mon, Jan 13, 2020 at 04:04:13PM -0500, Steven Rostedt wrote:
>
> Peter,
>
> I guess you could just pull this into one of your queues.
Only because you replied, otherwise I tend to ignore such patches.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts"
2020-01-14 10:02 ` Peter Zijlstra
@ 2020-01-14 14:16 ` Steven Rostedt
0 siblings, 0 replies; 5+ messages in thread
From: Steven Rostedt @ 2020-01-14 14:16 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Hewenliang, mingo, juri.lelli, vincent.guittot, bsegall, mgorman,
linux-kernel
On Tue, 14 Jan 2020 11:02:24 +0100
Peter Zijlstra <peterz@infradead.org> wrote:
> On Mon, Jan 13, 2020 at 04:04:13PM -0500, Steven Rostedt wrote:
> >
> > Peter,
> >
> > I guess you could just pull this into one of your queues.
>
> Only because you replied, otherwise I tend to ignore such patches.
I figured you do, that's why I replied ;-)
We don't want misspellings to distract code reviewers from the code do
we? :-)
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* [tip: sched/core] idle: fix spelling mistake "iterrupts" -> "interrupts"
2020-01-10 2:56 [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts" Hewenliang
2020-01-13 21:04 ` Steven Rostedt
@ 2020-01-17 10:08 ` tip-bot2 for Hewenliang
1 sibling, 0 replies; 5+ messages in thread
From: tip-bot2 for Hewenliang @ 2020-01-17 10:08 UTC (permalink / raw)
To: linux-tip-commits
Cc: Hewenliang, Peter Zijlstra (Intel), Steven Rostedt (VMware), x86, LKML
The following commit has been merged into the sched/core branch of tip:
Commit-ID: 3e0de271fff77abb933f1b69c213854c3eda9125
Gitweb: https://git.kernel.org/tip/3e0de271fff77abb933f1b69c213854c3eda9125
Author: Hewenliang <hewenliang4@huawei.com>
AuthorDate: Thu, 09 Jan 2020 21:56:04 -05:00
Committer: Peter Zijlstra <peterz@infradead.org>
CommitterDate: Fri, 17 Jan 2020 10:19:22 +01:00
idle: fix spelling mistake "iterrupts" -> "interrupts"
There is a spelling misake in comments of cpuidle_idle_call. Fix it.
Signed-off-by: Hewenliang <hewenliang4@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Link: https://lkml.kernel.org/r/20200110025604.34373-1-hewenliang4@huawei.com
---
kernel/sched/idle.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
index ffa959e..b743bf3 100644
--- a/kernel/sched/idle.c
+++ b/kernel/sched/idle.c
@@ -158,7 +158,7 @@ static void cpuidle_idle_call(void)
/*
* Suspend-to-idle ("s2idle") is a system state in which all user space
* has been frozen, all I/O devices have been suspended and the only
- * activity happens here and in iterrupts (if any). In that case bypass
+ * activity happens here and in interrupts (if any). In that case bypass
* the cpuidle governor and go stratight for the deepest idle state
* available. Possibly also suspend the local tick and the entire
* timekeeping to prevent timer interrupts from kicking us out of idle
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-01-17 10:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10 2:56 [PATCH] idle: fix spelling mistake "iterrupts" -> "interrupts" Hewenliang
2020-01-13 21:04 ` Steven Rostedt
2020-01-14 10:02 ` Peter Zijlstra
2020-01-14 14:16 ` Steven Rostedt
2020-01-17 10:08 ` [tip: sched/core] " tip-bot2 for Hewenliang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®