-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 80192 b: refs/heads/master c: 6d7d743 h: refs/heads/master v: v3
- Loading branch information
Huang, Ying
authored and
Ingo Molnar
committed
Jan 30, 2008
1 parent
ca4dfd2
commit a07a0de
Showing
6 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4d022e35fd7e07c522c7863fee6f07e53cf3fc14 | ||
refs/heads/master: 6d7d7433750c7c6eec93d7b3206019e329228686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Architecture specific debugfs files | ||
* | ||
* Copyright (C) 2007, Intel Corp. | ||
* Huang Ying <ying.huang@intel.com> | ||
* | ||
* This file is released under the GPLv2. | ||
*/ | ||
|
||
#include <linux/debugfs.h> | ||
#include <linux/stat.h> | ||
#include <linux/init.h> | ||
|
||
#include <asm/setup.h> | ||
|
||
#ifdef CONFIG_DEBUG_BOOT_PARAMS | ||
static struct debugfs_blob_wrapper boot_params_blob = { | ||
.data = &boot_params, | ||
.size = sizeof(boot_params), | ||
}; | ||
|
||
static int __init boot_params_kdebugfs_init(void) | ||
{ | ||
int error; | ||
struct dentry *dbp, *version, *data; | ||
|
||
dbp = debugfs_create_dir("boot_params", NULL); | ||
if (!dbp) { | ||
error = -ENOMEM; | ||
goto err_return; | ||
} | ||
version = debugfs_create_x16("version", S_IRUGO, dbp, | ||
&boot_params.hdr.version); | ||
if (!version) { | ||
error = -ENOMEM; | ||
goto err_dir; | ||
} | ||
data = debugfs_create_blob("data", S_IRUGO, dbp, | ||
&boot_params_blob); | ||
if (!data) { | ||
error = -ENOMEM; | ||
goto err_version; | ||
} | ||
return 0; | ||
err_version: | ||
debugfs_remove(version); | ||
err_dir: | ||
debugfs_remove(dbp); | ||
err_return: | ||
return error; | ||
} | ||
#endif | ||
|
||
static int __init arch_kdebugfs_init(void) | ||
{ | ||
int error = 0; | ||
|
||
#ifdef CONFIG_DEBUG_BOOT_PARAMS | ||
error = boot_params_kdebugfs_init(); | ||
#endif | ||
|
||
return error; | ||
} | ||
|
||
arch_initcall(arch_kdebugfs_init); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters