[PATCH 1/2] make module param bint handle nul value

From: Dave Young
Date: Tue Jan 31 2012 - 21:30:35 EST


Allow bint param accept nul values, just do same as bool param.

Signed-off-by: Dave Young <dyoung@xxxxxxxxxx>
Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx>
---
kernel/params.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.orig/kernel/params.c 2012-01-28 16:54:57.000000000 +0800
+++ linux-2.6/kernel/params.c 2012-01-31 16:16:18.723368198 +0800
@@ -97,7 +97,8 @@ static int parse_one(char *param,
for (i = 0; i < num_params; i++) {
if (parameq(param, params[i].name)) {
/* No one handled NULL, so do it here. */
- if (!val && params[i].ops->set != param_set_bool)
+ if (!val && params[i].ops->set != param_set_bool
+ && params[i].ops->set != param_set_bint)
return -EINVAL;
pr_debug("They are equal! Calling %p\n",
params[i].ops->set);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/