diff options
author | Jan Kara <jack@suse.cz> | 2011-04-29 00:24:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-05-06 17:52:31 -0700 |
commit | 0078bff5283d1fd6417b840eda6dab912b7a5560 (patch) | |
tree | 96e3c823a7ce0be46297f52b59b6d15973a9a61b /drivers/char/Kconfig | |
parent | a1d9a09ae8003380a7f2297ee4367947cbdf874f (diff) | |
download | linux-0078bff5283d1fd6417b840eda6dab912b7a5560.tar.bz2 |
Allow setting of number of raw devices as a module parameter
Allow setting of maximal number of raw devices as a module parameter. This
requires changing of static array into a vmalloced one (the array is going to
be too large for kmalloc).
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char/Kconfig')
-rw-r--r-- | drivers/char/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index ad59b4e0a9b5..49502bc5360a 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -523,7 +523,7 @@ config RAW_DRIVER with the O_DIRECT flag. config MAX_RAW_DEVS - int "Maximum number of RAW devices to support (1-8192)" + int "Maximum number of RAW devices to support (1-65536)" depends on RAW_DRIVER default "256" help |