diff options
Diffstat (limited to 'fs/jfs/jfs_logmgr.c')
| -rw-r--r-- | fs/jfs/jfs_logmgr.c | 14 | 
1 files changed, 1 insertions, 13 deletions
| diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c index 0e5d412c0b01..6b68df395892 100644 --- a/fs/jfs/jfs_logmgr.c +++ b/fs/jfs/jfs_logmgr.c @@ -2493,7 +2493,7 @@ exit:  }  #ifdef CONFIG_JFS_STATISTICS -static int jfs_lmstats_proc_show(struct seq_file *m, void *v) +int jfs_lmstats_proc_show(struct seq_file *m, void *v)  {  	seq_printf(m,  		       "JFS Logmgr stats\n" @@ -2510,16 +2510,4 @@ static int jfs_lmstats_proc_show(struct seq_file *m, void *v)  		       lmStat.partial_page);  	return 0;  } - -static int jfs_lmstats_proc_open(struct inode *inode, struct file *file) -{ -	return single_open(file, jfs_lmstats_proc_show, NULL); -} - -const struct file_operations jfs_lmstats_proc_fops = { -	.open		= jfs_lmstats_proc_open, -	.read		= seq_read, -	.llseek		= seq_lseek, -	.release	= single_release, -};  #endif /* CONFIG_JFS_STATISTICS */ |