summaryrefslogtreecommitdiff
path: root/libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-09-21 03:03:11 -0700
committerroot <root@rshg054.dnsready.net>2013-09-21 03:03:11 -0700
commitd3285d3c8cd7a90ac8766e0ce54c6eafaad7a5f2 (patch)
tree16903ca6eab9912b737843e2d20e8b793eb84809 /libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch
parent42fbe2d214b850ded06b23ca33f3aa2880e60dbb (diff)
Sat Sep 21 02:56:25 PDT 2013
Diffstat (limited to 'libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch')
-rw-r--r--libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch b/libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch
deleted file mode 100644
index 6ef275bda..000000000
--- a/libre/linux-libre-lts/3.0.54-ptrace-i686-build.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From: H. Peter Anvin <hpa@linux.intel.com>
-Date: Wed, 21 Nov 2012 06:21:02 +0000 (-0800)
-Subject: x86-32: Export kernel_stack_pointer() for modules
-X-Git-Tag: v3.6.9~50
-X-Git-Url: https://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fstable%2Flinux-stable.git;a=commitdiff_plain;h=051d62f6f239a9427fcab244a310610ed8bedb43
-
-x86-32: Export kernel_stack_pointer() for modules
-
-commit cb57a2b4cff7edf2a4e32c0163200e9434807e0a upstream.
-
-Modules, in particular oprofile (and possibly other similar tools)
-need kernel_stack_pointer(), so export it using EXPORT_SYMBOL_GPL().
-
-Link: http://lkml.kernel.org/r/20120912135059.GZ8285@erda.amd.com
-Cc: Yang Wei <wei.yang@windriver.com>
-Cc: Robert Richter <robert.richter@amd.com>
-Cc: Jun Zhang <jun.zhang@intel.com>
-Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
-
-diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c
-index 947cf90..9ee1787 100644
---- a/arch/x86/kernel/ptrace.c
-+++ b/arch/x86/kernel/ptrace.c
-@@ -21,6 +21,7 @@
- #include <linux/signal.h>
- #include <linux/perf_event.h>
- #include <linux/hw_breakpoint.h>
-+#include <linux/module.h>
-
- #include <asm/uaccess.h>
- #include <asm/pgtable.h>
-@@ -192,6 +193,7 @@ unsigned long kernel_stack_pointer(struct pt_regs *regs)
-
- return (unsigned long)regs;
- }
-+EXPORT_SYMBOL_GPL(kernel_stack_pointer);
-
- static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long regno)
- {