.. | .. |
---|
1 | 1 | // SPDX-License-Identifier: GPL-2.0 |
---|
2 | 2 | #include <linux/debugfs.h> |
---|
| 3 | +#include <linux/memory_hotplug.h> |
---|
3 | 4 | #include <linux/seq_file.h> |
---|
4 | 5 | |
---|
5 | 6 | #include <asm/ptdump.h> |
---|
.. | .. |
---|
7 | 8 | static int ptdump_show(struct seq_file *m, void *v) |
---|
8 | 9 | { |
---|
9 | 10 | struct ptdump_info *info = m->private; |
---|
10 | | - ptdump_walk_pgd(m, info); |
---|
| 11 | + |
---|
| 12 | + get_online_mems(); |
---|
| 13 | + ptdump_walk(m, info); |
---|
| 14 | + put_online_mems(); |
---|
11 | 15 | return 0; |
---|
12 | 16 | } |
---|
13 | 17 | DEFINE_SHOW_ATTRIBUTE(ptdump); |
---|
14 | 18 | |
---|
15 | | -int ptdump_debugfs_register(struct ptdump_info *info, const char *name) |
---|
| 19 | +void ptdump_debugfs_register(struct ptdump_info *info, const char *name) |
---|
16 | 20 | { |
---|
17 | | - struct dentry *pe; |
---|
18 | | - pe = debugfs_create_file(name, 0400, NULL, info, &ptdump_fops); |
---|
19 | | - return pe ? 0 : -ENOMEM; |
---|
20 | | - |
---|
| 21 | + debugfs_create_file(name, 0400, NULL, info, &ptdump_fops); |
---|
21 | 22 | } |
---|