Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1627413
| From | Sjoerd Simons <sjoerd.simons@collabora.co.uk> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] RFC: serial: core: Dynamic minor support |
| Date | 2017-04-20 14:50 +0200 |
| Message-ID | <tyjH4-ye-13@gated-at.bofh.it> (permalink) |
| References | <tyj4l-kL-11@gated-at.bofh.it> <tyje1-o7-13@gated-at.bofh.it> |
| Organization | Collabora Ltd. |
On Thu, 2017-04-20 at 14:15 +0200, Greg Kroah-Hartman wrote:
> On Thu, Apr 20, 2017 at 02:03:57PM +0200, Sjoerd Simons wrote:
> > --- a/include/linux/serial_core.h
> > +++ b/include/linux/serial_core.h
> > @@ -31,6 +31,8 @@
> > #include <linux/sysrq.h>
> > #include <uapi/linux/serial_core.h>
> >
> > +#define LOW_DENSITY_UART_MAJOR 204
>
> Where are you stealing this from?
Heh, 204 is defined as the "Low-density serial ports" in
devices.txt. As documented in the commit message, i've repurposed that
for dynamic minors (if configured). Maybe it's better to request a new
major for this purpose? But then again, then just means 204 will go
unused when the option is on so...
Lots of drivers do have it as a hard-coded number, seemed sane to put
it a bit more central for some potential later cleanup in other
drivers.
>
> > +
> > #ifdef CONFIG_SERIAL_CORE_CONSOLE
> > #define uart_console(port) \
> > ((port)->cons && (port)->cons->index == (port)->line)
> > @@ -313,6 +315,10 @@ struct uart_driver {
> > */
> > struct uart_state *state;
> > struct tty_driver *tty_driver;
> > +
> > +#ifdef CONFIG_SERIAL_DYNAMIC_MINORS
> > + struct list_head dynamic_uarts;
> > +#endif
>
> Why not just always have this?
Trying to save a few bytes if the option is unused; Maybe overdoing it
:)
> Nice first try though!
Thanks, If there are no big comments onthe general approach i'll respin
without RFC soonish addressing your other comments.
--
Sjoerd Simons
Collabora Ltd.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] RFC: serial: core: Dynamic minor support Sjoerd Simons <sjoerd.simons@collabora.co.uk> - 2017-04-20 14:10 +0200
Re: [PATCH] RFC: serial: core: Dynamic minor support Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-04-20 14:20 +0200
Re: [PATCH] RFC: serial: core: Dynamic minor support Sjoerd Simons <sjoerd.simons@collabora.co.uk> - 2017-04-20 14:50 +0200
Re: [PATCH] RFC: serial: core: Dynamic minor support Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-04-20 15:00 +0200
csiph-web