Re: [PATCH printk v3 4/6] printk: introduce struct console_buffers

From: John Ogness
Date: Tue Jan 03 2023 - 05:04:56 EST


On 2022-12-21, John Ogness <john.ogness@xxxxxxxxxxxxx> wrote:
> --- a/kernel/printk/internal.h
> +++ b/kernel/printk/internal.h
> @@ -81,3 +81,13 @@ u16 printk_parse_prefix(const char *text, int *level,
>
> static inline bool printk_percpu_data_ready(void) { return false; }
> #endif /* CONFIG_PRINTK */
> +
> +/**
> + * console_buffers - Buffers to read/format/output printk messages.

This documentation is not included in the kerneldocs, but it should at
least be proper kerneldoc format. It should be:

* struct console_buffers - Buffers to read/format/output printk messages.

John