projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b429b0c
)
ACPI sysfs.c strlen fix
author
Pavel Vasilyev
<pavel@pavlinux.ru>
Tue, 5 Jun 2012 04:02:05 +0000
(
00:02
-0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 16 Jul 2012 16:04:07 +0000
(09:04 -0700)
commit
9f132652d94c96476b0b0a8caf0c10e96ab10fa8
upstream.
Current code is ignoring the last character of "enable" and "disable"
in comparisons.
https://bugzilla.kernel.org/show_bug.cgi?id=33732
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/acpi/sysfs.c
patch
|
blob
|
history
diff --git
a/drivers/acpi/sysfs.c
b/drivers/acpi/sysfs.c
index
9f66181
..
240a244
100644
(file)
--- a/
drivers/acpi/sysfs.c
+++ b/
drivers/acpi/sysfs.c
@@
-173,7
+173,7
@@
static int param_set_trace_state(const char *val, struct kernel_param *kp)
{
int result = 0;
- if (!strncmp(val, "enable", strlen("enable")
- 1
)) {
+ if (!strncmp(val, "enable", strlen("enable"))) {
result = acpi_debug_trace(trace_method_name, trace_debug_level,
trace_debug_layer, 0);
if (result)
@@
-181,7
+181,7
@@
static int param_set_trace_state(const char *val, struct kernel_param *kp)
goto exit;
}
- if (!strncmp(val, "disable", strlen("disable")
- 1
)) {
+ if (!strncmp(val, "disable", strlen("disable"))) {
int name = 0;
result = acpi_debug_trace((char *)&name, trace_debug_level,
trace_debug_layer, 0);