linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: fix build error in sigcontext.h
@ 2014-06-11 20:14 Mark Salter
  2014-06-18 10:10 ` Catalin Marinas
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Salter @ 2014-06-11 20:14 UTC (permalink / raw)
  To: Catalin Marinas; +Cc: linux-arm-kernel, linux-kernel, Mark Salter

I'm seeing this build failure for arm64:

    CC [M]  Documentation/filesystems/configfs/configfs_example_macros.o
  In file included from /usr/include/bits/sigcontext.h:27:0,
                   from /usr/include/signal.h:340,
                   from /usr/include/sys/wait.h:30,
                   from Documentation/accounting/getdelays.c:24:
  .../linux/usr/include/asm/sigcontext.h:61:2: error: unknown type name ‘u64’
    u64 esr;
    ^
  make[2]: *** [Documentation/accounting/getdelays] Error 1

This was introduced by commit 15af1942dd61ee23:

  arm64: Expose ESR_EL1 information to user when SIGSEGV/SIGBUS

Using __u64 instead of u64 fixes the problem.

Signed-off-by: Mark Salter <msalter@redhat.com>
---
 arch/arm64/include/uapi/asm/sigcontext.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/include/uapi/asm/sigcontext.h b/arch/arm64/include/uapi/asm/sigcontext.h
index b72cf40..ee469be 100644
--- a/arch/arm64/include/uapi/asm/sigcontext.h
+++ b/arch/arm64/include/uapi/asm/sigcontext.h
@@ -58,7 +58,7 @@ struct fpsimd_context {
 
 struct esr_context {
 	struct _aarch64_ctx head;
-	u64 esr;
+	__u64 esr;
 };
 
 #endif /* _UAPI__ASM_SIGCONTEXT_H */
-- 
1.9.0


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

* Re: [PATCH] arm64: fix build error in sigcontext.h
  2014-06-11 20:14 [PATCH] arm64: fix build error in sigcontext.h Mark Salter
@ 2014-06-18 10:10 ` Catalin Marinas
  0 siblings, 0 replies; 2+ messages in thread
From: Catalin Marinas @ 2014-06-18 10:10 UTC (permalink / raw)
  To: Mark Salter; +Cc: linux-arm-kernel, linux-kernel

On Wed, Jun 11, 2014 at 09:14:42PM +0100, Mark Salter wrote:
> I'm seeing this build failure for arm64:
> 
>     CC [M]  Documentation/filesystems/configfs/configfs_example_macros.o
>   In file included from /usr/include/bits/sigcontext.h:27:0,
>                    from /usr/include/signal.h:340,
>                    from /usr/include/sys/wait.h:30,
>                    from Documentation/accounting/getdelays.c:24:
>   .../linux/usr/include/asm/sigcontext.h:61:2: error: unknown type name ‘u64’
>     u64 esr;
>     ^
>   make[2]: *** [Documentation/accounting/getdelays] Error 1
> 
> This was introduced by commit 15af1942dd61ee23:
> 
>   arm64: Expose ESR_EL1 information to user when SIGSEGV/SIGBUS
> 
> Using __u64 instead of u64 fixes the problem.
> 
> Signed-off-by: Mark Salter <msalter@redhat.com>

Applied. Thanks.

-- 
Catalin

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

end of thread, other threads:[~2014-06-18 10:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-11 20:14 [PATCH] arm64: fix build error in sigcontext.h Mark Salter
2014-06-18 10:10 ` Catalin Marinas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).