On Thu, Feb 06, 2025 at 02:09:45PM +1030, Gustavo A. R. Silva wrote: > diff --git a/include/linux/tty_buffer.h b/include/linux/tty_buffer.h > index 31125e3be3c5..80a9d7832c97 100644 > --- a/include/linux/tty_buffer.h > +++ b/include/linux/tty_buffer.h > @@ -7,7 +7,7 @@ > #include <linux/mutex.h> > #include <linux/workqueue.h> > > -struct tty_buffer { > +struct tty_buffer_hdr { > union { > struct tty_buffer *next; > struct llist_node free; > @@ -15,9 +15,13 @@ struct tty_buffer { > unsigned int used; > unsigned int size; > unsigned int commit; > - unsigned int lookahead; /* Lazy update on recv, can become less than "read" */ > + unsigned int lookahead; /* Lazy update on recv, can become less than "read" */ Coding style change?