PM: Do not require dev spew to get PM_DEBUG
In order to enable things like PM_TRACE, you're required to enable PM_DEBUG, which sends a large spew of messages on boot, and often times can overflow dmesg buffer. Create new PM_VERBOSE and shift that to be the option that enables drivers/base/power's messages. Signed-off-by: Ben Collins <bcollins@ubuntu.com> Cc: "Rafael J. Wysocki" <rjw@sisk.pl> Cc: Pavel Machek <pavel@ucw.cz> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
328616e3b7
commit
a0349828d6
2 changed files with 13 additions and 6 deletions
|
@ -5,6 +5,6 @@ obj-$(CONFIG_PM_TRACE) += trace.o
|
||||||
ifeq ($(CONFIG_DEBUG_DRIVER),y)
|
ifeq ($(CONFIG_DEBUG_DRIVER),y)
|
||||||
EXTRA_CFLAGS += -DDEBUG
|
EXTRA_CFLAGS += -DDEBUG
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_PM_DEBUG),y)
|
ifeq ($(CONFIG_PM_VERBOSE),y)
|
||||||
EXTRA_CFLAGS += -DDEBUG
|
EXTRA_CFLAGS += -DDEBUG
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -33,13 +33,20 @@ config PM_DEBUG
|
||||||
bool "Power Management Debug Support"
|
bool "Power Management Debug Support"
|
||||||
depends on PM
|
depends on PM
|
||||||
---help---
|
---help---
|
||||||
This option enables verbose debugging support in the Power Management
|
This option enables various debugging support in the Power Management
|
||||||
code. This is helpful when debugging and reporting various PM bugs,
|
code. This is helpful when debugging and reporting PM bugs, like
|
||||||
like suspend support.
|
suspend support.
|
||||||
|
|
||||||
|
config PM_VERBOSE
|
||||||
|
bool "Verbose Power Management debugging"
|
||||||
|
depends on PM_DEBUG
|
||||||
|
default n
|
||||||
|
---help---
|
||||||
|
This option enables verbose messages from the Power Management code.
|
||||||
|
|
||||||
config DISABLE_CONSOLE_SUSPEND
|
config DISABLE_CONSOLE_SUSPEND
|
||||||
bool "Keep console(s) enabled during suspend/resume (DANGEROUS)"
|
bool "Keep console(s) enabled during suspend/resume (DANGEROUS)"
|
||||||
depends on PM && PM_DEBUG
|
depends on PM_DEBUG
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
This option turns off the console suspend mechanism that prevents
|
This option turns off the console suspend mechanism that prevents
|
||||||
|
@ -50,7 +57,7 @@ config DISABLE_CONSOLE_SUSPEND
|
||||||
|
|
||||||
config PM_TRACE
|
config PM_TRACE
|
||||||
bool "Suspend/resume event tracing"
|
bool "Suspend/resume event tracing"
|
||||||
depends on PM && PM_DEBUG && X86_32 && EXPERIMENTAL
|
depends on PM_DEBUG && X86_32 && EXPERIMENTAL
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
This enables some cheesy code to save the last PM event point in the
|
This enables some cheesy code to save the last PM event point in the
|
||||||
|
|
Loading…
Reference in a new issue