diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-01-12 18:02:20 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-01-12 18:02:20 -0500 |
commit | 90ab5ee94171b3e28de6bb42ee30b527014e0be7 (patch) | |
tree | fcf89889f6e881f2b231d3d20287c08174ce4b54 /drivers/block/drbd | |
parent | 476bc0015bf09dad39d36a8b19f76f0c181d1ec9 (diff) |
module_param: make bool parameters really bool (drivers & misc)
module_param(bool) used to counter-intuitively take an int. In
fddd5201 (mid-2009) we allowed bool or int/unsigned int using a messy
trick.
It's time to remove the int/unsigned int option. For this version
it'll simply give a warning, but it'll break next kernel version.
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/block/drbd')
-rw-r--r-- | drivers/block/drbd/drbd_int.h | 4 | ||||
-rw-r--r-- | drivers/block/drbd/drbd_main.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index 9cf20355ceec..8d680562ba73 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h | |||
@@ -59,8 +59,8 @@ | |||
59 | 59 | ||
60 | /* module parameter, defined in drbd_main.c */ | 60 | /* module parameter, defined in drbd_main.c */ |
61 | extern unsigned int minor_count; | 61 | extern unsigned int minor_count; |
62 | extern int disable_sendpage; | 62 | extern bool disable_sendpage; |
63 | extern int allow_oos; | 63 | extern bool allow_oos; |
64 | extern unsigned int cn_idx; | 64 | extern unsigned int cn_idx; |
65 | 65 | ||
66 | #ifdef CONFIG_DRBD_FAULT_INJECTION | 66 | #ifdef CONFIG_DRBD_FAULT_INJECTION |
diff --git a/drivers/block/drbd/drbd_main.c b/drivers/block/drbd/drbd_main.c index 0358e55356c8..211fc44f84be 100644 --- a/drivers/block/drbd/drbd_main.c +++ b/drivers/block/drbd/drbd_main.c | |||
@@ -117,8 +117,8 @@ module_param(fault_devs, int, 0644); | |||
117 | 117 | ||
118 | /* module parameter, defined */ | 118 | /* module parameter, defined */ |
119 | unsigned int minor_count = DRBD_MINOR_COUNT_DEF; | 119 | unsigned int minor_count = DRBD_MINOR_COUNT_DEF; |
120 | int disable_sendpage; | 120 | bool disable_sendpage; |
121 | int allow_oos; | 121 | bool allow_oos; |
122 | unsigned int cn_idx = CN_IDX_DRBD; | 122 | unsigned int cn_idx = CN_IDX_DRBD; |
123 | int proc_details; /* Detail level in proc drbd*/ | 123 | int proc_details; /* Detail level in proc drbd*/ |
124 | 124 | ||