summaryrefslogtreecommitdiffstats
path: root/silence-noise.patch
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@fedoraproject.org>2013-11-01 08:46:47 -0400
committerJosh Boyer <jwboyer@fedoraproject.org>2013-11-01 08:46:47 -0400
commit69fef575e3fbb5ee6952a4f4868e31e368c4a248 (patch)
treed30eefb43b7d19a1ad7a66fdf81e97a88c6ec37b /silence-noise.patch
parent105477709de0a26ea3d8b77ac3aa6379eba165b1 (diff)
downloadkernel-69fef575e3fbb5ee6952a4f4868e31e368c4a248.tar.gz
kernel-69fef575e3fbb5ee6952a4f4868e31e368c4a248.tar.xz
kernel-69fef575e3fbb5ee6952a4f4868e31e368c4a248.zip
Linux v3.12-rc7-79-g4f794ee
- Set NR_CPUS=1024 on non-debug x86_64 builds (MAXSMP is set on debug)
Diffstat (limited to 'silence-noise.patch')
-rw-r--r--silence-noise.patch20
1 files changed, 6 insertions, 14 deletions
diff --git a/silence-noise.patch b/silence-noise.patch
index 1e4d7c57..a8032597 100644
--- a/silence-noise.patch
+++ b/silence-noise.patch
@@ -7,28 +7,20 @@ Some systems, such as EFI-based Apple systems, won't necessarily have an
i8042 to initialize. We shouldn't be printing an error message in this
case, since not detecting the chip is the correct behavior.
---
- drivers/input/serio/i8042.c | 4 +---
- 1 files changed, 1 insertions(+), 3 deletions(-)
-
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
-index 170f71e..4f3e632 100644
+index 52c9ebf..c374a96 100644
--- a/drivers/input/serio/i8042.c
+++ b/drivers/input/serio/i8042.c
-@@ -701,10 +701,8 @@ static int __devinit i8042_check_aux(void)
-
+@@ -855,7 +855,6 @@ static int __init i8042_check_aux(void)
static int i8042_controller_check(void)
{
-- if (i8042_flush() == I8042_BUFFER_SIZE) {
+ if (i8042_flush()) {
- pr_err("No controller found\n");
-+ if (i8042_flush() == I8042_BUFFER_SIZE)
return -ENODEV;
-- }
-
- return 0;
- }
---
-1.6.0.1
+ }
+--
+
Socket fuzzers like sfuzz will trigger this printk a lot, even though it's
ratelimited. It isn't particularly useful, so just remove it.