Message ID | 1576917150-31678-1-git-send-email-pkushwaha@marvell.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | arm64: Remove __exception_text_start and __exception_text_end from asm/section.h | expand |
On 12/21/2019 02:02 PM, Prabhakar Kushwaha wrote: > Linux commit b6e43c0e3129 ("arm64: remove __exception annotations") has > removed __exception_text_start and __exception_text_end sections. > > So removing reference of __exception_text_start and __exception_text_end > from from asm/section.h. > > Signed-off-by: Prabhakar Kushwaha <pkushwaha@marvell.com> > Cc: James Morse <james.morse@arm.com> Looks good. Reviewed-by: Anshuman Khandual <anshuman.khandual@arm.com> > --- > arch/arm64/include/asm/sections.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/arch/arm64/include/asm/sections.h b/arch/arm64/include/asm/sections.h > index 25a73aab438f..3994169985ef 100644 > --- a/arch/arm64/include/asm/sections.h > +++ b/arch/arm64/include/asm/sections.h > @@ -8,7 +8,6 @@ > #include <asm-generic/sections.h> > > extern char __alt_instructions[], __alt_instructions_end[]; > -extern char __exception_text_start[], __exception_text_end[]; > extern char __hibernate_exit_text_start[], __hibernate_exit_text_end[]; > extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[]; > extern char __hyp_text_start[], __hyp_text_end[]; >
Hi Prabhakar, On 21/12/2019 08:32, Prabhakar Kushwaha wrote: > Linux commit b6e43c0e3129 ("arm64: remove __exception annotations") has > removed __exception_text_start and __exception_text_end sections. > > So removing reference of __exception_text_start and __exception_text_end > from from asm/section.h. Oops. Thanks for catching this. (please run get_maintainer.pl, you missed both arm64 maintainers from CC!) For what its worth: Acked-by: James Morse <james.morse@arm.com> Thanks, James
diff --git a/arch/arm64/include/asm/sections.h b/arch/arm64/include/asm/sections.h index 25a73aab438f..3994169985ef 100644 --- a/arch/arm64/include/asm/sections.h +++ b/arch/arm64/include/asm/sections.h @@ -8,7 +8,6 @@ #include <asm-generic/sections.h> extern char __alt_instructions[], __alt_instructions_end[]; -extern char __exception_text_start[], __exception_text_end[]; extern char __hibernate_exit_text_start[], __hibernate_exit_text_end[]; extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[]; extern char __hyp_text_start[], __hyp_text_end[];
Linux commit b6e43c0e3129 ("arm64: remove __exception annotations") has removed __exception_text_start and __exception_text_end sections. So removing reference of __exception_text_start and __exception_text_end from from asm/section.h. Signed-off-by: Prabhakar Kushwaha <pkushwaha@marvell.com> Cc: James Morse <james.morse@arm.com> --- arch/arm64/include/asm/sections.h | 1 - 1 file changed, 1 deletion(-)