Steven Price | 30d621f | 2020-02-03 17:36:20 -0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | |
| 3 | #ifndef _LINUX_PTDUMP_H |
| 4 | #define _LINUX_PTDUMP_H |
| 5 | |
| 6 | #include <linux/mm_types.h> |
| 7 | |
| 8 | struct ptdump_range { |
| 9 | unsigned long start; |
| 10 | unsigned long end; |
| 11 | }; |
| 12 | |
| 13 | struct ptdump_state { |
| 14 | void (*note_page)(struct ptdump_state *st, unsigned long addr, |
| 15 | int level, unsigned long val); |
| 16 | const struct ptdump_range *range; |
| 17 | }; |
| 18 | |
| 19 | void ptdump_walk_pgd(struct ptdump_state *st, struct mm_struct *mm); |
| 20 | |
| 21 | #endif /* _LINUX_PTDUMP_H */ |