Stephen Brennan | 71f8c15 | 2022-05-16 17:05:07 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | #ifndef LINUX_KALLSYMS_INTERNAL_H_ |
| 3 | #define LINUX_KALLSYMS_INTERNAL_H_ |
| 4 | |
| 5 | #include <linux/types.h> |
| 6 | |
Ard Biesheuvel | 951bcae | 2024-04-15 18:20:43 +0200 | [diff] [blame] | 7 | extern const int kallsyms_offsets[]; |
| 8 | extern const u8 kallsyms_names[]; |
Stephen Brennan | 71f8c15 | 2022-05-16 17:05:07 -0700 | [diff] [blame] | 9 | |
Ard Biesheuvel | 951bcae | 2024-04-15 18:20:43 +0200 | [diff] [blame] | 10 | extern const unsigned int kallsyms_num_syms; |
| 11 | extern const unsigned long kallsyms_relative_base; |
Stephen Brennan | 71f8c15 | 2022-05-16 17:05:07 -0700 | [diff] [blame] | 12 | |
Ard Biesheuvel | 951bcae | 2024-04-15 18:20:43 +0200 | [diff] [blame] | 13 | extern const char kallsyms_token_table[]; |
| 14 | extern const u16 kallsyms_token_index[]; |
Stephen Brennan | 71f8c15 | 2022-05-16 17:05:07 -0700 | [diff] [blame] | 15 | |
Ard Biesheuvel | 951bcae | 2024-04-15 18:20:43 +0200 | [diff] [blame] | 16 | extern const unsigned int kallsyms_markers[]; |
| 17 | extern const u8 kallsyms_seqs_of_names[]; |
Stephen Brennan | 71f8c15 | 2022-05-16 17:05:07 -0700 | [diff] [blame] | 18 | |
| 19 | #endif // LINUX_KALLSYMS_INTERNAL_H_ |