Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
       [not found] <20130726204721.849052763@linuxfoundation.org>
@ 2013-07-26 20:47 ` Greg Kroah-Hartman
  2013-07-27 14:05   ` Steven J. Hill
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2013-07-26 20:47 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, stable, Markos Chandras, Steven J. Hill,
	Ralf Baechle, linux-mips

3.10-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Markos Chandras <markos.chandras@imgtec.com>

commit 25c87eae1725ed77a8b44d782a86abdc279b4ede upstream.

FAULT_INJECTION_STACKTRACE_FILTER selects FRAME_POINTER but
that symbol is not available for MIPS.

Fixes the following problem on a randconfig:
warning: (LOCKDEP && FAULT_INJECTION_STACKTRACE_FILTER && LATENCYTOP &&
 KMEMCHECK) selects FRAME_POINTER which has unmet direct dependencies
(DEBUG_KERNEL && (CRIS || M68K || FRV || UML || AVR32 || SUPERH || BLACKFIN ||
MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS)

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5441/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 lib/Kconfig.debug |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1272,7 +1272,7 @@ config FAULT_INJECTION_STACKTRACE_FILTER
 	depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT
 	depends on !X86_64
 	select STACKTRACE
-	select FRAME_POINTER if !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
+	select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
 	help
 	  Provide stacktrace filter for fault-injection capabilities
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
  2013-07-26 20:47 ` [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS Greg Kroah-Hartman
@ 2013-07-27 14:05   ` Steven J. Hill
  2013-07-27 14:05     ` Steven J. Hill
  0 siblings, 1 reply; 3+ messages in thread
From: Steven J. Hill @ 2013-07-27 14:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-kernel@vger.kernel.org
  Cc: Greg Kroah-Hartman, stable@vger.kernel.org, Markos Chandras,
	Ralf Baechle, linux-mips@linux-mips.org

[-- Attachment #1: Type: text/plain, Size: 2222 bytes --]

Looks good. Thanks Greg.

Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>

Sent from my Verizon Wireless 4G LTE Smartphone


----- Reply message -----
From: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>
To: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>, "stable@vger.kernel.org" <stable@vger.kernel.org>, "Markos Chandras" <Markos.Chandras@imgtec.com>, "Steven J. Hill" <Steven.Hill@imgtec.com>, "Ralf Baechle" <ralf@linux-mips.org>, "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>
Subject: [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
Date: Fri, Jul 26, 2013 4:48 PM



3.10-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Markos Chandras <markos.chandras@imgtec.com>

commit 25c87eae1725ed77a8b44d782a86abdc279b4ede upstream.

FAULT_INJECTION_STACKTRACE_FILTER selects FRAME_POINTER but
that symbol is not available for MIPS.

Fixes the following problem on a randconfig:
warning: (LOCKDEP && FAULT_INJECTION_STACKTRACE_FILTER && LATENCYTOP &&
 KMEMCHECK) selects FRAME_POINTER which has unmet direct dependencies
(DEBUG_KERNEL && (CRIS || M68K || FRV || UML || AVR32 || SUPERH || BLACKFIN ||
MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS)

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5441/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 lib/Kconfig.debug |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1272,7 +1272,7 @@ config FAULT_INJECTION_STACKTRACE_FILTER
         depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT
         depends on !X86_64
         select STACKTRACE
-       select FRAME_POINTER if !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
+       select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
         help
           Provide stacktrace filter for fault-injection capabilities




[-- Attachment #2: Type: text/html, Size: 3738 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
  2013-07-27 14:05   ` Steven J. Hill
@ 2013-07-27 14:05     ` Steven J. Hill
  0 siblings, 0 replies; 3+ messages in thread
From: Steven J. Hill @ 2013-07-27 14:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-kernel@vger.kernel.org
  Cc: stable@vger.kernel.org, Markos Chandras, Ralf Baechle,
	linux-mips@linux-mips.org

[-- Attachment #1: Type: text/plain, Size: 2222 bytes --]

Looks good. Thanks Greg.

Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>

Sent from my Verizon Wireless 4G LTE Smartphone


----- Reply message -----
From: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>
To: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>, "stable@vger.kernel.org" <stable@vger.kernel.org>, "Markos Chandras" <Markos.Chandras@imgtec.com>, "Steven J. Hill" <Steven.Hill@imgtec.com>, "Ralf Baechle" <ralf@linux-mips.org>, "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>
Subject: [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
Date: Fri, Jul 26, 2013 4:48 PM



3.10-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Markos Chandras <markos.chandras@imgtec.com>

commit 25c87eae1725ed77a8b44d782a86abdc279b4ede upstream.

FAULT_INJECTION_STACKTRACE_FILTER selects FRAME_POINTER but
that symbol is not available for MIPS.

Fixes the following problem on a randconfig:
warning: (LOCKDEP && FAULT_INJECTION_STACKTRACE_FILTER && LATENCYTOP &&
 KMEMCHECK) selects FRAME_POINTER which has unmet direct dependencies
(DEBUG_KERNEL && (CRIS || M68K || FRV || UML || AVR32 || SUPERH || BLACKFIN ||
MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS)

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5441/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 lib/Kconfig.debug |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1272,7 +1272,7 @@ config FAULT_INJECTION_STACKTRACE_FILTER
         depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT
         depends on !X86_64
         select STACKTRACE
-       select FRAME_POINTER if !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
+       select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
         help
           Provide stacktrace filter for fault-injection capabilities




[-- Attachment #2: Type: text/html, Size: 3738 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-07-27 14:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20130726204721.849052763@linuxfoundation.org>
2013-07-26 20:47 ` [ 58/79] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS Greg Kroah-Hartman
2013-07-27 14:05   ` Steven J. Hill
2013-07-27 14:05     ` Steven J. Hill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox