diff options
author | 2014-10-27 12:52:29 +0100 | |
---|---|---|
committer | 2014-10-27 12:52:29 +0100 | |
commit | d5432503bfb49f3425bad0b850714ffd8b533cfc (patch) | |
tree | 97926e7eea0b6d8b0e8bf98748dd9c0ef4c718ad /kernel/trace/trace_stack.c | |
parent | ALSA: hda/realtek - New SSID for Headset quirk (diff) | |
parent | Merge remote-tracking branches 'asoc/fix/adau1761', 'asoc/fix/fsl', 'asoc/fix/intel', 'asoc/fix/s6000' and 'asoc/fix/sgtl5000' into asoc-linus (diff) | |
download | wireguard-linux-d5432503bfb49f3425bad0b850714ffd8b533cfc.tar.xz wireguard-linux-d5432503bfb49f3425bad0b850714ffd8b533cfc.zip |
Merge tag 'asoc-v3.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v3.18
A few small driver fixes for v3.18 plus the removal of the s6000 support
since the relevant chip is no longer supported in mainline.
Diffstat (limited to 'kernel/trace/trace_stack.c')
-rw-r--r-- | kernel/trace/trace_stack.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/trace/trace_stack.c b/kernel/trace/trace_stack.c index 8a4e5cb66a4c..16eddb308c33 100644 --- a/kernel/trace/trace_stack.c +++ b/kernel/trace/trace_stack.c @@ -13,7 +13,6 @@ #include <linux/sysctl.h> #include <linux/init.h> #include <linux/fs.h> -#include <linux/magic.h> #include <asm/setup.h> @@ -171,8 +170,7 @@ check_stack(unsigned long ip, unsigned long *stack) i++; } - if ((current != &init_task && - *(end_of_stack(current)) != STACK_END_MAGIC)) { + if (task_stack_end_corrupted(current)) { print_max_stack(); BUG(); } |