aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/extable.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/extable.c')
-rw-r--r--kernel/extable.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/kernel/extable.c b/kernel/extable.c
index 0df6253730be..25d39b0c3a1b 100644
--- a/kernel/extable.c
+++ b/kernel/extable.c
@@ -15,11 +15,21 @@
15 along with this program; if not, write to the Free Software 15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17*/ 17*/
18#include <linux/ftrace.h>
18#include <linux/module.h> 19#include <linux/module.h>
20#include <linux/mutex.h>
19#include <linux/init.h> 21#include <linux/init.h>
20#include <linux/ftrace.h> 22
21#include <asm/uaccess.h>
22#include <asm/sections.h> 23#include <asm/sections.h>
24#include <asm/uaccess.h>
25
26/*
27 * mutex protecting text section modification (dynamic code patching).
28 * some users need to sleep (allocating memory...) while they hold this lock.
29 *
30 * NOT exported to modules - patching kernel text is a really delicate matter.
31 */
32DEFINE_MUTEX(text_mutex);
23 33
24extern struct exception_table_entry __start___ex_table[]; 34extern struct exception_table_entry __start___ex_table[];
25extern struct exception_table_entry __stop___ex_table[]; 35extern struct exception_table_entry __stop___ex_table[];