1
0
Fork 0
alistair23-linux/include/linux/ptdump.h

22 lines
446 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_PTDUMP_H
#define _LINUX_PTDUMP_H
#include <linux/mm_types.h>
struct ptdump_range {
unsigned long start;
unsigned long end;
};
struct ptdump_state {
void (*note_page)(struct ptdump_state *st, unsigned long addr,
int level, unsigned long val);
const struct ptdump_range *range;
};
void ptdump_walk_pgd(struct ptdump_state *st, struct mm_struct *mm);
#endif /* _LINUX_PTDUMP_H */