]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/extable.h
UBUNTU: SAUCE: LSM stacking: procfs: add smack subdir to attrs
[mirror_ubuntu-artful-kernel.git] / include / linux / extable.h
CommitLineData
0ef76537
PG
1#ifndef _LINUX_EXTABLE_H
2#define _LINUX_EXTABLE_H
3
49aadcf1 4#include <linux/stddef.h> /* for NULL */
a94c33dd 5#include <linux/types.h>
49aadcf1 6
0ef76537
PG
7struct module;
8struct exception_table_entry;
9
10const struct exception_table_entry *
a94c33dd
TM
11search_extable(const struct exception_table_entry *base,
12 const size_t num,
0ef76537
PG
13 unsigned long value);
14void sort_extable(struct exception_table_entry *start,
15 struct exception_table_entry *finish);
16void sort_main_extable(void);
17void trim_init_extable(struct module *m);
18
19/* Given an address, look for it in the exception tables */
20const struct exception_table_entry *search_exception_tables(unsigned long add);
21
22#ifdef CONFIG_MODULES
23/* For extable.c to search modules' exception tables. */
24const struct exception_table_entry *search_module_extables(unsigned long addr);
25#else
26static inline const struct exception_table_entry *
27search_module_extables(unsigned long addr)
28{
29 return NULL;
30}
31#endif /*CONFIG_MODULES*/
32
33#endif /* _LINUX_EXTABLE_H */