]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
char: misc: restore MISC_DYNAMIC_MINOR on device_create() failure
authorVladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Mon, 18 May 2015 17:11:46 +0000 (20:11 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 31 May 2015 21:38:21 +0000 (06:38 +0900)
commitb575f7124ab33b2a4239613bcc870380308fe0a7
treeb8b35a0f055588f9e2f4361c601d8e01bc64c52d
parentb144ce2d37619e05afdb0a15676500d76a64b1be
char: misc: restore MISC_DYNAMIC_MINOR on device_create() failure

On attempt to register a dynamic minor misc device its minor number is
updated to a virtual minor number prior to device_create() call,
however on error path misc->minor == MISC_DYNAMIC_MINOR is not
restored.

Following the rule of thumb that a function returning an error must
not change the state of the caller, assign MISC_DYNAMIC_MINOR back.

The problem is met in a sutuation, when subsys_initcall(misc_init) is
not yet called and misc_class is not created, but misc_register()
modifies statically defined ".minor = MISC_DYNAMIC_MINOR", therefore
implicitly changing the client's logic on next attempt (e.g. retrying
from deferred list) to register a misc device, whose minor number is
converted from dynamic to some unknown static one.

Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/misc.c