1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/debugfs.h>
3 #include <linux/seq_file.h>
5 #include <asm/ptdump.h>
7 static int ptdump_show(struct seq_file
*m
, void *v
)
9 struct ptdump_info
*info
= m
->private;
11 ptdump_walk_pgd(m
, info
);
15 static int ptdump_open(struct inode
*inode
, struct file
*file
)
17 return single_open(file
, ptdump_show
, inode
->i_private
);
20 static const struct file_operations ptdump_fops
= {
24 .release
= single_release
,
27 void ptdump_debugfs_register(struct ptdump_info
*info
, const char *name
)
29 debugfs_create_file(name
, 0400, NULL
, info
, &ptdump_fops
);