mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 14:48:06 +00:00
PM: sleep: Add pm_debug_messages kernel command line option
Debug messages from the system suspend/hibernation infrastructure are disabled by default, and can only be enabled after the system has boot up via /sys/power/pm_debug_messages. This makes the hibernation resume hard to track as it involves system boot up across hibernation. There's no chance for software_resume() to track the resume process, for example. Add a kernel command line option to set pm_debug_messages during boot up. Signed-off-by: Chen Yu <yu.c.chen@intel.com> [ rjw: Subject & changelog ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
b5252a6cbb
commit
db96a75946
2 changed files with 10 additions and 0 deletions
|
@ -3719,6 +3719,9 @@
|
||||||
Override pmtimer IOPort with a hex value.
|
Override pmtimer IOPort with a hex value.
|
||||||
e.g. pmtmr=0x508
|
e.g. pmtmr=0x508
|
||||||
|
|
||||||
|
pm_debug_messages [SUSPEND,KNL]
|
||||||
|
Enable suspend/resume debug messages during boot up.
|
||||||
|
|
||||||
pnp.debug=1 [PNP]
|
pnp.debug=1 [PNP]
|
||||||
Enable PNP debug messages (depends on the
|
Enable PNP debug messages (depends on the
|
||||||
CONFIG_PNP_DEBUG_MESSAGES option). Change at run-time
|
CONFIG_PNP_DEBUG_MESSAGES option). Change at run-time
|
||||||
|
|
|
@ -535,6 +535,13 @@ static ssize_t pm_debug_messages_store(struct kobject *kobj,
|
||||||
|
|
||||||
power_attr(pm_debug_messages);
|
power_attr(pm_debug_messages);
|
||||||
|
|
||||||
|
static int __init pm_debug_messages_setup(char *str)
|
||||||
|
{
|
||||||
|
pm_debug_messages_on = true;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
__setup("pm_debug_messages", pm_debug_messages_setup);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __pm_pr_dbg - Print a suspend debug message to the kernel log.
|
* __pm_pr_dbg - Print a suspend debug message to the kernel log.
|
||||||
* @defer: Whether or not to use printk_deferred() to print the message.
|
* @defer: Whether or not to use printk_deferred() to print the message.
|
||||||
|
|
Loading…
Add table
Reference in a new issue