All of lore.kernel.org
 help / color / mirror / Atom feed
* what is "temporary" about code in "__register_chrdev_region()"?
@ 2009-07-17 13:44 Robert P. J. Day
  0 siblings, 0 replies; only message in thread
From: Robert P. J. Day @ 2009-07-17 13:44 UTC (permalink / raw)
  To: Linux Kernel Mailing List


  i was just perusing the code for that routine in fs/char_dev.c and
noticed the label that some of that code was, well, temporary:

        /* temporary */     [line 99]
        if (major == 0) {
                for (i = ARRAY_SIZE(chrdevs)-1; i > 0; i--) {
                        if (chrdevs[i] == NULL)
                                break;
                }

                if (i == 0) {
                        ret = -EBUSY;
                        goto out;
                }
                major = i;
                ret = major;
        }

  so what's "temporary" about it?  that it can (dynamically) handle a
major number of zero?  is that supposed to represent a first step in
migrating to alloc_chrdev_region(), or what?  i'm just curious,

rday
--

========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

        Linux Consulting, Training and Annoying Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Twitter:                                       http://twitter.com/rpjday
"Kernel Newbie Corner" column @ linux.com:          http://cli.gs/WG6WYX
========================================================================

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-07-17 13:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-17 13:44 what is "temporary" about code in "__register_chrdev_region()"? Robert P. J. Day

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.