[V2] printk: fix a typo of comment

Message ID 0C7C980DB815FAE1+Y3yNXJCqZ3Nzxa5V@TP-P15V.lan
State New
Headers
Series [V2] printk: fix a typo of comment |

Commit Message

Wang Honghui Nov. 22, 2022, 8:50 a.m. UTC
  Fix a typo of comment

Signed-off-by: Wang Honghui <honghui.wang@ucas.com.cn>
---
 kernel/printk/printk_ringbuffer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Petr Mladek Nov. 22, 2022, 11:16 a.m. UTC | #1
On Tue 2022-11-22 16:50:36, Wang Honghui wrote:
> Fix a typo of comment
> 
> Signed-off-by: Wang Honghui <honghui.wang@ucas.com.cn>

JFYI, the patch has been committed into printk/linux.git, branch for-6.2.

Best Regards,
Petr

PS: I have added John's Reviewed-by from v1 [1]. This version of the patch
    just fixed the typo that John mentioned there

[1] https://lore.kernel.org/r/874jurqt5g.fsf@jogness.linutronix.de
  
Wang Honghui Nov. 23, 2022, 9:21 a.m. UTC | #2
Thanks,Best Regards!Wang Honghui&nbsp;&nbsp;------------------&nbsp;Original&nbsp;------------------From: &nbsp;"Petr&nbsp;Mladek"<pmladek@suse.com>;Date: &nbsp;Tue, Nov 22, 2022 07:16 PMTo: &nbsp;"Wang Honghui"<honghui.wang@ucas.com.cn>; Cc: &nbsp;"Sergey Senozhatsky"<senozhatsky@chromium.org>; "Steven Rostedt"<rostedt@goodmis.org>; "John Ogness"<john.ogness@linutronix.de>; "linux-kernel"<linux-kernel@vger.kernel.org>; Subject: &nbsp;Re: [PATCH V2] printk: fix a typo of comment&nbsp;On Tue 2022-11-22 16:50:36, Wang Honghui wrote:&gt; Fix a typo of comment&gt; &gt; Signed-off-by: Wang Honghui <honghui.wang@ucas.com.cn>JFYI, the patch has been committed into printk/linux.git, branch for-6.2.Best Regards,PetrPS: I have added John's Reviewed-by from v1 [1]. This version of the patch just fixed the typo that John mentioned there[1] https://lore.kernel.org/r/874jurqt5g.fsf@jogness.linutronix.de</honghui.wang@ucas.com.cn></linux-kernel@vger.kernel.org></john.ogness@linutronix.de></rostedt@goodmis.org></senozhatsky@chromium.org></honghui.wang@ucas.com.cn></pmladek@suse.com>
  

Patch

diff --git a/kernel/printk/printk_ringbuffer.c b/kernel/printk/printk_ringbuffer.c
index 2b7b6ddab4f7..2dc4d5a1f1ff 100644
--- a/kernel/printk/printk_ringbuffer.c
+++ b/kernel/printk/printk_ringbuffer.c
@@ -203,7 +203,7 @@ 
  *	prb_rec_init_wr(&r, 5);
  *
  *	// try to extend, but only if it does not exceed 32 bytes
- *	if (prb_reserve_in_last(&e, &test_rb, &r, printk_caller_id()), 32) {
+ *	if (prb_reserve_in_last(&e, &test_rb, &r, printk_caller_id(), 32)) {
  *		snprintf(&r.text_buf[r.info->text_len],
  *			 r.text_buf_size - r.info->text_len, "hello");
  *