diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-02-20 16:57:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-20 20:10:13 -0500 |
commit | b446b60e4eb5e5457120c4728ada871b1209c1d0 (patch) | |
tree | 1fcff840a5cfb61399b9eac843d5b74e9e6b45e0 | |
parent | f4fa27c16ba9b6910c5b815e5c13a7e8249277f0 (diff) |
[PATCH] rework reserved major handling
Several people have reported failures in dynamic major device number handling
due to the recent changes in there to avoid handing out the local/experimental
majors.
Rolf reports that this is due to a gcc-4.1.0 bug.
The patch refactors that code a lot in an attempt to provoke the compiler into
behaving.
Cc: Rolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | block/genhd.c | 9 | ||||
-rw-r--r-- | drivers/base/core.c | 14 | ||||
-rw-r--r-- | fs/char_dev.c | 8 | ||||
-rw-r--r-- | include/linux/kdev_t.h | 1 |
4 files changed, 19 insertions, 13 deletions
diff --git a/block/genhd.c b/block/genhd.c index 36bd3e12a6d4..050a1f0f3a86 100644 --- a/block/genhd.c +++ b/block/genhd.c | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <linux/module.h> | 5 | #include <linux/module.h> |
6 | #include <linux/fs.h> | 6 | #include <linux/fs.h> |
7 | #include <linux/genhd.h> | 7 | #include <linux/genhd.h> |
8 | #include <linux/kdev_t.h> | ||
8 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
9 | #include <linux/blkdev.h> | 10 | #include <linux/blkdev.h> |
10 | #include <linux/init.h> | 11 | #include <linux/init.h> |
@@ -61,13 +62,7 @@ int register_blkdev(unsigned int major, const char *name) | |||
61 | /* temporary */ | 62 | /* temporary */ |
62 | if (major == 0) { | 63 | if (major == 0) { |
63 | for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) { | 64 | for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) { |
64 | /* | 65 | if (is_lanana_major(index)) |
65 | * Disallow the LANANA-assigned LOCAL/EXPERIMENTAL | ||
66 | * majors | ||
67 | */ | ||
68 | if ((60 <= index && index <= 63) || | ||
69 | (120 <= index && index <= 127) || | ||
70 | (240 <= index && index <= 254)) | ||
71 | continue; | 66 | continue; |
72 | if (major_names[index] == NULL) | 67 | if (major_names[index] == NULL) |
73 | break; | 68 | break; |
diff --git a/drivers/base/core.c b/drivers/base/core.c index a8ac34ba6107..d04fd33dcd91 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -28,6 +28,20 @@ int (*platform_notify)(struct device * dev) = NULL; | |||
28 | int (*platform_notify_remove)(struct device * dev) = NULL; | 28 | int (*platform_notify_remove)(struct device * dev) = NULL; |
29 | 29 | ||
30 | /* | 30 | /* |
31 | * Detect the LANANA-assigned LOCAL/EXPERIMENTAL majors | ||
32 | */ | ||
33 | bool is_lanana_major(unsigned int major) | ||
34 | { | ||
35 | if (major >= 60 && major <= 63) | ||
36 | return 1; | ||
37 | if (major >= 120 && major <= 127) | ||
38 | return 1; | ||
39 | if (major >= 240 && major <= 254) | ||
40 | return 1; | ||
41 | return 0; | ||
42 | } | ||
43 | |||
44 | /* | ||
31 | * sysfs bindings for devices. | 45 | * sysfs bindings for devices. |
32 | */ | 46 | */ |
33 | 47 | ||
diff --git a/fs/char_dev.c b/fs/char_dev.c index e6194e2b9bb9..78ced721554d 100644 --- a/fs/char_dev.c +++ b/fs/char_dev.c | |||
@@ -6,6 +6,7 @@ | |||
6 | 6 | ||
7 | #include <linux/init.h> | 7 | #include <linux/init.h> |
8 | #include <linux/fs.h> | 8 | #include <linux/fs.h> |
9 | #include <linux/kdev_t.h> | ||
9 | #include <linux/slab.h> | 10 | #include <linux/slab.h> |
10 | #include <linux/string.h> | 11 | #include <linux/string.h> |
11 | 12 | ||
@@ -108,12 +109,7 @@ __register_chrdev_region(unsigned int major, unsigned int baseminor, | |||
108 | /* temporary */ | 109 | /* temporary */ |
109 | if (major == 0) { | 110 | if (major == 0) { |
110 | for (i = ARRAY_SIZE(chrdevs)-1; i > 0; i--) { | 111 | for (i = ARRAY_SIZE(chrdevs)-1; i > 0; i--) { |
111 | /* | 112 | if (is_lanana_major(i)) |
112 | * Disallow the LANANA-assigned LOCAL/EXPERIMENTAL | ||
113 | * majors | ||
114 | */ | ||
115 | if ((60 <= i && i <= 63) || (120 <= i && i <= 127) || | ||
116 | (240 <= i && i <= 254)) | ||
117 | continue; | 113 | continue; |
118 | if (chrdevs[i] == NULL) | 114 | if (chrdevs[i] == NULL) |
119 | break; | 115 | break; |
diff --git a/include/linux/kdev_t.h b/include/linux/kdev_t.h index bceea527dd37..4c2c3737e415 100644 --- a/include/linux/kdev_t.h +++ b/include/linux/kdev_t.h | |||
@@ -87,6 +87,7 @@ static inline unsigned sysv_minor(u32 dev) | |||
87 | return dev & 0x3ffff; | 87 | return dev & 0x3ffff; |
88 | } | 88 | } |
89 | 89 | ||
90 | bool is_lanana_major(unsigned int major); | ||
90 | 91 | ||
91 | #else /* __KERNEL__ */ | 92 | #else /* __KERNEL__ */ |
92 | 93 | ||