Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1265913 > unrolled thread
| Started by | Yang Shi <yang.shi@linaro.org> |
|---|---|
| First post | 2015-11-09 19:10 +0100 |
| Last post | 2015-11-09 19:20 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it Yang Shi <yang.shi@linaro.org> - 2015-11-09 19:10 +0100
[PATCH 1/2] arm64: remove redundant FRAME_POINTER kconfig option Yang Shi <yang.shi@linaro.org> - 2015-11-09 19:10 +0100
Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it "Shi, Yang" <yang.shi@linaro.org> - 2015-11-09 19:20 +0100
Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it Catalin Marinas <catalin.marinas@arm.com> - 2015-11-09 19:30 +0100
Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it Catalin Marinas <catalin.marinas@arm.com> - 2015-11-09 19:20 +0100
| From | Yang Shi <yang.shi@linaro.org> |
|---|---|
| Date | 2015-11-09 19:10 +0100 |
| Subject | [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it |
| Message-ID | <qsZ3c-1rz-11@gated-at.bofh.it> |
According to the discussion on the mailing list, this version adds a new patch
to force select FRAME_POINTER for ARM64.
Change v2 --> v1:
1. Adds a new patch to force select FRAME_POINTER
2. Notes that this change adds a dependency on DEBUG_KERNEL for building with
frame pointers
Yang Shi (2):
arm64: remove redundant FRAME_POINTER kconfig option
arm64: force to select FRAME_POINTER
arch/arm64/Kconfig | 1 +
arch/arm64/Kconfig.debug | 4 ----
2 files changed, 1 insertion(+), 4 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Yang Shi <yang.shi@linaro.org> |
|---|---|
| Date | 2015-11-09 19:10 +0100 |
| Subject | [PATCH 1/2] arm64: remove redundant FRAME_POINTER kconfig option |
| Message-ID | <qsZ3e-1rz-41@gated-at.bofh.it> |
| In reply to | #1265913 |
FRAME_POINTER is defined in lib/Kconfig.debug, it is unnecessary to redefine it in arch/arm64/Kconfig.debug. Actually, the one defined in arm64 directory is never used. This adds a dependency on DEBUG_KERNEL for building with frame pointers. Signed-off-by: Yang Shi <yang.shi@linaro.org> --- arch/arm64/Kconfig.debug | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/arm64/Kconfig.debug b/arch/arm64/Kconfig.debug index d6285ef..915dea7 100644 --- a/arch/arm64/Kconfig.debug +++ b/arch/arm64/Kconfig.debug @@ -2,10 +2,6 @@ menu "Kernel hacking" source "lib/Kconfig.debug" -config FRAME_POINTER - bool - default y - config ARM64_PTDUMP bool "Export kernel pagetable layout to userspace via debugfs" depends on DEBUG_KERNEL -- 2.0.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Shi, Yang" <yang.shi@linaro.org> |
|---|---|
| Date | 2015-11-09 19:20 +0100 |
| Subject | Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it |
| Message-ID | <qsZcS-1uY-5@gated-at.bofh.it> |
| In reply to | #1265913 |
On 11/9/2015 10:14 AM, Catalin Marinas wrote: > On Mon, Nov 09, 2015 at 09:43:55AM -0800, Yang Shi wrote: >> According to the discussion on the mailing list, this version adds a new patch >> to force select FRAME_POINTER for ARM64. >> >> Change v2 --> v1: >> 1. Adds a new patch to force select FRAME_POINTER >> 2. Notes that this change adds a dependency on DEBUG_KERNEL for building with >> frame pointers >> >> >> Yang Shi (2): >> arm64: remove redundant FRAME_POINTER kconfig option >> arm64: force to select FRAME_POINTER > > Do you really need two patches for this? I just thought it may be clearer in this way. If nobody thinks it is necessary, I definitely could merge them into one. Thanks, Yang > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2015-11-09 19:30 +0100 |
| Subject | Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it |
| Message-ID | <qsZmz-1yW-27@gated-at.bofh.it> |
| In reply to | #1265921 |
On Mon, Nov 09, 2015 at 10:16:32AM -0800, Shi, Yang wrote: > On 11/9/2015 10:14 AM, Catalin Marinas wrote: > >On Mon, Nov 09, 2015 at 09:43:55AM -0800, Yang Shi wrote: > >>According to the discussion on the mailing list, this version adds a new patch > >>to force select FRAME_POINTER for ARM64. > >> > >>Change v2 --> v1: > >>1. Adds a new patch to force select FRAME_POINTER > >>2. Notes that this change adds a dependency on DEBUG_KERNEL for building with > >>frame pointers > >> > >> > >>Yang Shi (2): > >> arm64: remove redundant FRAME_POINTER kconfig option > >> arm64: force to select FRAME_POINTER > > > >Do you really need two patches for this? > > I just thought it may be clearer in this way. If nobody thinks it is > necessary, I definitely could merge them into one. Please merge them into one. -- Catalin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2015-11-09 19:20 +0100 |
| Subject | Re: [PATCH V2 0/2] arm64: cleanup FRAME_POINTER kconfig option and force to select it |
| Message-ID | <qsZcS-1uY-7@gated-at.bofh.it> |
| In reply to | #1265913 |
On Mon, Nov 09, 2015 at 09:43:55AM -0800, Yang Shi wrote: > According to the discussion on the mailing list, this version adds a new patch > to force select FRAME_POINTER for ARM64. > > Change v2 --> v1: > 1. Adds a new patch to force select FRAME_POINTER > 2. Notes that this change adds a dependency on DEBUG_KERNEL for building with > frame pointers > > > Yang Shi (2): > arm64: remove redundant FRAME_POINTER kconfig option > arm64: force to select FRAME_POINTER Do you really need two patches for this? -- Catalin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web