printk: printk: Remove unnecessary statements'len = 0;'
Commit Message
In the following two functions, len has already been assigned a value of
0 when defining the variable, so remove 'len=0;'.
Signed-off-by: Li kunyu <kunyu@nfschina.com>
---
kernel/printk/printk.c | 2 --
1 file changed, 2 deletions(-)
Comments
On Mon 2023-10-23 14:23:59, Li kunyu wrote:
> In the following two functions, len has already been assigned a value of
> 0 when defining the variable, so remove 'len=0;'.
>
> Signed-off-by: Li kunyu <kunyu@nfschina.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
The patch has been committed into printk/linux.git, branch for-6.7.
Best Regards,
Petr
@@ -1669,7 +1669,6 @@ static int syslog_print_all(char __user *buf, int size, bool clear)
prb_rec_init_rd(&r, &info, text, PRINTK_MESSAGE_MAX);
- len = 0;
prb_for_each_record(seq, prb, seq, &r) {
int textlen;
@@ -4188,7 +4187,6 @@ bool kmsg_dump_get_buffer(struct kmsg_dump_iter *iter, bool syslog,
prb_rec_init_rd(&r, &info, buf, size);
- len = 0;
prb_for_each_record(seq, prb, seq, &r) {
if (r.info->seq >= iter->next_seq)
break;