Commit aa7d93506cc26378be6964692cd0dd34cffaee25

Authored by Heiko Carstens
Committed by Ingo Molnar
1 parent cd689985cf

latencytop: Change Kconfig dependency.

Change latencytop Kconfig entry so it doesn't list the archictectures
that support it. Instead introduce HAVE_LATENCY_SUPPORT which any
architecture can set. Should reduce patch conflicts.

Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Holger Wolf <wolf@linux.vnet.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 2 changed files with 4 additions and 1 deletions Side-by-side Diff

... ... @@ -44,6 +44,9 @@
44 44 config STACKTRACE_SUPPORT
45 45 def_bool y
46 46  
  47 +config HAVE_LATENCYTOP_SUPPORT
  48 + def_bool y
  49 +
47 50 config SEMAPHORE_SLEEPERS
48 51 def_bool y
49 52  
... ... @@ -581,7 +581,7 @@
581 581 select STACKTRACE
582 582 select SCHEDSTATS
583 583 select SCHED_DEBUG
584   - depends on X86 || X86_64
  584 + depends on HAVE_LATENCYTOP_SUPPORT
585 585 help
586 586 Enable this option if you want to use the LatencyTOP tool
587 587 to find out which userspace is blocking on what kernel operations.