* [PATCH V2] hangcheck-timer: Fix typo in comment
@ 2017-03-23 14:02 Zhang, Shile (Nokia - CN/Hangzhou)
2017-03-23 20:53 ` Greg Kroah-Hartman
2017-03-23 21:41 ` [PATCH v3] " Shile Zhang
0 siblings, 2 replies; 4+ messages in thread
From: Zhang, Shile (Nokia - CN/Hangzhou) @ 2017-03-23 14:02 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Arnd Bergmann, linux-kernel@vger.kernel.org
Correct patch for the typo.
Sorry for I sent first patch w/o commit log and second patch with incorrect fix.
Thanks!
----
Fix the typo "alloted" -> "allotted" in comment.
Signed-off-by: Shile Zhang <shile.zhang@nokia.com>
---
drivers/char/hangcheck-timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c
index 4f33737..5406b90 100644
--- a/drivers/char/hangcheck-timer.c
+++ b/drivers/char/hangcheck-timer.c
@@ -32,7 +32,7 @@
* timer and 180 seconds for the margin of error. IOW, a timer is set
* for 60 seconds. When the timer fires, the callback checks the
* actual duration that the timer waited. If the duration exceeds the
- * alloted time and margin (here 60 + 180, or 240 seconds), the machine
+ * allotted time and margin (here 60 + 180, or 240 seconds), the machine
* is restarted. A healthy machine will have the duration match the
* expected timeout very closely.
*/
--
2.6.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH V2] hangcheck-timer: Fix typo in comment
2017-03-23 14:02 [PATCH V2] hangcheck-timer: Fix typo in comment Zhang, Shile (Nokia - CN/Hangzhou)
@ 2017-03-23 20:53 ` Greg Kroah-Hartman
2017-03-23 21:41 ` [PATCH v3] " Shile Zhang
1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2017-03-23 20:53 UTC (permalink / raw)
To: Zhang, Shile (Nokia - CN/Hangzhou)
Cc: Arnd Bergmann, linux-kernel@vger.kernel.org
On Thu, Mar 23, 2017 at 02:02:58PM +0000, Zhang, Shile (Nokia - CN/Hangzhou) wrote:
> Correct patch for the typo.
> Sorry for I sent first patch w/o commit log and second patch with incorrect fix.
> Thanks!
> ----
Notes like this go below the --- line, if they are above, they end up in
the changelog itself :(
v3?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3] hangcheck-timer: Fix typo in comment
2017-03-23 14:02 [PATCH V2] hangcheck-timer: Fix typo in comment Zhang, Shile (Nokia - CN/Hangzhou)
2017-03-23 20:53 ` Greg Kroah-Hartman
@ 2017-03-23 21:41 ` Shile Zhang
2017-03-23 21:47 ` Zhang, Shile (Nokia - CN/Hangzhou)
1 sibling, 1 reply; 4+ messages in thread
From: Shile Zhang @ 2017-03-23 21:41 UTC (permalink / raw)
To: Arnd Bergmann, Greg Kroah-Hartman; +Cc: linux-kernel, Shile Zhang
Fix the typo "alloted" -> "allotted" in comment.
Signed-off-by: Shile Zhang <shile.zhang@nokia.com>
---
drivers/char/hangcheck-timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c
index 4f33737..5406b90 100644
--- a/drivers/char/hangcheck-timer.c
+++ b/drivers/char/hangcheck-timer.c
@@ -32,7 +32,7 @@
* timer and 180 seconds for the margin of error. IOW, a timer is set
* for 60 seconds. When the timer fires, the callback checks the
* actual duration that the timer waited. If the duration exceeds the
- * alloted time and margin (here 60 + 180, or 240 seconds), the machine
+ * allotted time and margin (here 60 + 180, or 240 seconds), the machine
* is restarted. A healthy machine will have the duration match the
* expected timeout very closely.
*/
--
2.6.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [PATCH v3] hangcheck-timer: Fix typo in comment
2017-03-23 21:41 ` [PATCH v3] " Shile Zhang
@ 2017-03-23 21:47 ` Zhang, Shile (Nokia - CN/Hangzhou)
0 siblings, 0 replies; 4+ messages in thread
From: Zhang, Shile (Nokia - CN/Hangzhou) @ 2017-03-23 21:47 UTC (permalink / raw)
To: Arnd Bergmann, Greg Kroah-Hartman; +Cc: linux-kernel@vger.kernel.org
>Fix the typo "alloted" -> "allotted" in comment.
>
>Signed-off-by: Shile Zhang <shile.zhang@nokia.com>
>---
> drivers/char/hangcheck-timer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c
>index 4f33737..5406b90 100644
>--- a/drivers/char/hangcheck-timer.c
>+++ b/drivers/char/hangcheck-timer.c
>@@ -32,7 +32,7 @@
> * timer and 180 seconds for the margin of error. IOW, a timer is set
> * for 60 seconds. When the timer fires, the callback checks the
> * actual duration that the timer waited. If the duration exceeds the
>- * alloted time and margin (here 60 + 180, or 240 seconds), the machine
>+ * allotted time and margin (here 60 + 180, or 240 seconds), the machine
> * is restarted. A healthy machine will have the duration match the
> * expected timeout very closely.
> */
>--
>2.6.2
Hi Greg,
Sorry for trouble!
Dose this format is OK in this version?
Thanks!
BR, Shile
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-23 21:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-23 14:02 [PATCH V2] hangcheck-timer: Fix typo in comment Zhang, Shile (Nokia - CN/Hangzhou)
2017-03-23 20:53 ` Greg Kroah-Hartman
2017-03-23 21:41 ` [PATCH v3] " Shile Zhang
2017-03-23 21:47 ` Zhang, Shile (Nokia - CN/Hangzhou)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox