mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	This patch refactors the arm page table dumping code, so multiple tables may be registered with the framework. This patch refers below commits of arm64. (4674fdb9f1("arm64: mm: dump: make page table dumping reusable")) (4ddb9bf833("arm64: dump: Make ptdump debugfs a separate option")) Reviewed-by: Kees Cook <keescook@chromium.org> Tested-by: Laura Abbott <labbott@redhat.com> Reviewed-by: Laura Abbott <labbott@redhat.com> Signed-off-by: Jinbum Park <jinb.park7@gmail.com> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			718 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			718 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
#include <linux/debugfs.h>
 | 
						|
#include <linux/seq_file.h>
 | 
						|
 | 
						|
#include <asm/ptdump.h>
 | 
						|
 | 
						|
static int ptdump_show(struct seq_file *m, void *v)
 | 
						|
{
 | 
						|
	struct ptdump_info *info = m->private;
 | 
						|
 | 
						|
	ptdump_walk_pgd(m, info);
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
static int ptdump_open(struct inode *inode, struct file *file)
 | 
						|
{
 | 
						|
	return single_open(file, ptdump_show, inode->i_private);
 | 
						|
}
 | 
						|
 | 
						|
static const struct file_operations ptdump_fops = {
 | 
						|
	.open		= ptdump_open,
 | 
						|
	.read		= seq_read,
 | 
						|
	.llseek		= seq_lseek,
 | 
						|
	.release	= single_release,
 | 
						|
};
 | 
						|
 | 
						|
int ptdump_debugfs_register(struct ptdump_info *info, const char *name)
 | 
						|
{
 | 
						|
	struct dentry *pe;
 | 
						|
 | 
						|
	pe = debugfs_create_file(name, 0400, NULL, info, &ptdump_fops);
 | 
						|
	return pe ? 0 : -ENOMEM;
 | 
						|
 | 
						|
}
 |