* [PATCH] Fixed typo in comments
@ 2023-01-16 22:22 Semen Zhydenko
2023-01-17 3:23 ` Bagas Sanjaya
2023-01-18 22:08 ` Semen Zhydenko
0 siblings, 2 replies; 5+ messages in thread
From: Semen Zhydenko @ 2023-01-16 22:22 UTC (permalink / raw)
To: linux-kernel; +Cc: Semen Zhydenko
diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 63a8ce7177dd..6430c00b05a9 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -1324,7 +1324,7 @@ static int __timer_delete(struct timer_list *timer, bool shutdown)
* If @shutdown is set then the lock has to be taken whether the
* timer is pending or not to protect against a concurrent rearm
* which might hit between the lockless pending check and the lock
- * aquisition. By taking the lock it is ensured that such a newly
+ * acquisition. By taking the lock it is ensured that such a newly
* enqueued timer is dequeued and cannot end up with
* timer->function == NULL in the expiry code.
*
--
2.37.1 (Apple Git-137.1)
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Fixed typo in comments
2023-01-16 22:22 [PATCH] Fixed typo in comments Semen Zhydenko
@ 2023-01-17 3:23 ` Bagas Sanjaya
[not found] ` <CACbEQFHP90RYNEBGP5jvPNVYciuiUwA7G0Gp9_8KAKc4-hgUTA@mail.gmail.com>
2023-01-18 22:08 ` Semen Zhydenko
1 sibling, 1 reply; 5+ messages in thread
From: Bagas Sanjaya @ 2023-01-17 3:23 UTC (permalink / raw)
To: Semen Zhydenko, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 993 bytes --]
On Mon, Jan 16, 2023 at 11:22:54PM +0100, Semen Zhydenko wrote:
> diff --git a/kernel/time/timer.c b/kernel/time/timer.c
> index 63a8ce7177dd..6430c00b05a9 100644
> --- a/kernel/time/timer.c
> +++ b/kernel/time/timer.c
> @@ -1324,7 +1324,7 @@ static int __timer_delete(struct timer_list *timer, bool shutdown)
> * If @shutdown is set then the lock has to be taken whether the
> * timer is pending or not to protect against a concurrent rearm
> * which might hit between the lockless pending check and the lock
> - * aquisition. By taking the lock it is ensured that such a newly
> + * acquisition. By taking the lock it is ensured that such a newly
> * enqueued timer is dequeued and cannot end up with
> * timer->function == NULL in the expiry code.
> *
No patch description, really?
Also please read Documentation/process/submitting-patches.rst for how to
properly submit kernel patches.
--
An old man doll... just what I always wanted! - Clara
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Fixed typo in comments
[not found] ` <CACbEQFHP90RYNEBGP5jvPNVYciuiUwA7G0Gp9_8KAKc4-hgUTA@mail.gmail.com>
@ 2023-01-18 2:12 ` Bagas Sanjaya
0 siblings, 0 replies; 5+ messages in thread
From: Bagas Sanjaya @ 2023-01-18 2:12 UTC (permalink / raw)
To: Semen Zhydenko; +Cc: linux-kernel
On 1/17/23 23:38, Semen Zhydenko wrote:
> Thank you for review, will try to update my patch/email accordingly
>
Please do not top-post, let alone sending HTML email (like this one),
as mailing lists (like LKML) don't like HTML emails for often being
used in spam. Reply inline with appropriate context and configure
your mailer to write and send plain-text email instead.
Thanks anyway.
--
An old man doll... just what I always wanted! - Clara
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] Fixed typo in comments
2023-01-16 22:22 [PATCH] Fixed typo in comments Semen Zhydenko
2023-01-17 3:23 ` Bagas Sanjaya
@ 2023-01-18 22:08 ` Semen Zhydenko
2023-01-19 2:20 ` Bagas Sanjaya
1 sibling, 1 reply; 5+ messages in thread
From: Semen Zhydenko @ 2023-01-18 22:08 UTC (permalink / raw)
To: linux-kernel, bagasdotme; +Cc: Semen Zhydenko
To change one typo in kernel/time/timer.c
Typo is "aquisition" proper spelling should be "acquisition".
Signed-off-by: Semen Zhydenko <semen.zhydenko@gmail.com>
---
kernel/time/timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 63a8ce7177dd..6430c00b05a9 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -1324,7 +1324,7 @@ static int __timer_delete(struct timer_list *timer, bool shutdown)
* If @shutdown is set then the lock has to be taken whether the
* timer is pending or not to protect against a concurrent rearm
* which might hit between the lockless pending check and the lock
- * aquisition. By taking the lock it is ensured that such a newly
+ * acquisition. By taking the lock it is ensured that such a newly
* enqueued timer is dequeued and cannot end up with
* timer->function == NULL in the expiry code.
*
--
2.37.1 (Apple Git-137.1)
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Fixed typo in comments
2023-01-18 22:08 ` Semen Zhydenko
@ 2023-01-19 2:20 ` Bagas Sanjaya
0 siblings, 0 replies; 5+ messages in thread
From: Bagas Sanjaya @ 2023-01-19 2:20 UTC (permalink / raw)
To: Semen Zhydenko, linux-kernel; +Cc: John Stultz, Thomas Gleixner, Stephen Boyd
On 1/19/23 05:08, Semen Zhydenko wrote:
> To change one typo in kernel/time/timer.c
> Typo is "aquisition" proper spelling should be "acquisition".
>
This is v2, isn't it? Don't forget to pass -v to git-format-path(1)
to mark it as v2 patch.
I have also Cc'ed the relevant subsystem maintainers.
Thanks.
--
An old man doll... just what I always wanted! - Clara
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-19 2:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-16 22:22 [PATCH] Fixed typo in comments Semen Zhydenko
2023-01-17 3:23 ` Bagas Sanjaya
[not found] ` <CACbEQFHP90RYNEBGP5jvPNVYciuiUwA7G0Gp9_8KAKc4-hgUTA@mail.gmail.com>
2023-01-18 2:12 ` Bagas Sanjaya
2023-01-18 22:08 ` Semen Zhydenko
2023-01-19 2:20 ` Bagas Sanjaya
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox