浏览代码

raw: set range for MAX_RAW_DEVS

The Kconfig symbol MAX_RAW_DEVS is meant to be between 1 and 65536. But
those boundaries are not enforced by its Kconfig entry.

Note that MAX_RAW_DEVS is used to set MAX_RAW_MINORS in
drivers/char/raw.c. If one would accidentally set MAX_RAW_DEVS to an
invalid value, that invalid value will actually end up being used in
raw_init().

So add an appropriate range to this Kconfig entry.

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Paul Bolle 11 年之前
父节点
当前提交
7143479a6a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/char/Kconfig

+ 1 - 0
drivers/char/Kconfig

@@ -499,6 +499,7 @@ config RAW_DRIVER
 config MAX_RAW_DEVS
 config MAX_RAW_DEVS
 	int "Maximum number of RAW devices to support (1-65536)"
 	int "Maximum number of RAW devices to support (1-65536)"
 	depends on RAW_DRIVER
 	depends on RAW_DRIVER
+	range 1 65536
 	default "256"
 	default "256"
 	help
 	help
 	  The maximum number of RAW devices that are supported.
 	  The maximum number of RAW devices that are supported.