Commit 5be9ed25 authored by Huang Ying's avatar Huang Ying Committed by H. Peter Anvin

x86, mce: Move debugfs mce dir creating to mce.c

Because more debugfs files under mce dir will be create in mce.c.

ChangeLog:

v5:

- Rebased on x86-tip.git/mce
Signed-off-by: default avatarHuang Ying <ying.huang@intel.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
parent 0dcc6685
...@@ -22,6 +22,7 @@ struct mce_bank { ...@@ -22,6 +22,7 @@ struct mce_bank {
}; };
int mce_severity(struct mce *a, int tolerant, char **msg); int mce_severity(struct mce *a, int tolerant, char **msg);
struct dentry *mce_get_debugfs_dir(void);
extern int mce_ser; extern int mce_ser;
......
...@@ -197,7 +197,7 @@ static int __init severities_debugfs_init(void) ...@@ -197,7 +197,7 @@ static int __init severities_debugfs_init(void)
{ {
struct dentry *dmce = NULL, *fseverities_coverage = NULL; struct dentry *dmce = NULL, *fseverities_coverage = NULL;
dmce = debugfs_create_dir("mce", NULL); dmce = mce_get_debugfs_dir();
if (dmce == NULL) if (dmce == NULL)
goto err_out; goto err_out;
fseverities_coverage = debugfs_create_file("severities-coverage", fseverities_coverage = debugfs_create_file("severities-coverage",
...@@ -209,8 +209,6 @@ static int __init severities_debugfs_init(void) ...@@ -209,8 +209,6 @@ static int __init severities_debugfs_init(void)
return 0; return 0;
err_out: err_out:
if (dmce)
debugfs_remove(dmce);
return -ENOMEM; return -ENOMEM;
} }
late_initcall(severities_debugfs_init); late_initcall(severities_debugfs_init);
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/debugfs.h>
#include <asm/processor.h> #include <asm/processor.h>
#include <asm/hw_irq.h> #include <asm/hw_irq.h>
...@@ -2003,3 +2004,15 @@ static int __init mcheck_disable(char *str) ...@@ -2003,3 +2004,15 @@ static int __init mcheck_disable(char *str)
return 1; return 1;
} }
__setup("nomce", mcheck_disable); __setup("nomce", mcheck_disable);
#ifdef CONFIG_DEBUG_FS
struct dentry *mce_get_debugfs_dir(void)
{
static struct dentry *dmce;
if (!dmce)
dmce = debugfs_create_dir("mce", NULL);
return dmce;
}
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment