[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1508744542-11181-1-git-send-email-sumit.semwal@linaro.org>
Date: Mon, 23 Oct 2017 13:12:22 +0530
From: Sumit Semwal <sumit.semwal@...aro.org>
To: linux-kselftest@...r.kernel.org, linux-kernel@...r.kernel.org,
shuah@...nel.org
Cc: will.deacon@....com, panand@...hat.com, paul.elder@...t.edu,
Sumit Semwal <sumit.semwal@...aro.org>
Subject: [PATCH] selftests: breakpoints: fix compile error on breakpoint_test_arm64
The current mainline breakpoints test for arm64 fails to compile with
breakpoint_test_arm64.c: In function ‘set_watchpoint’:
breakpoint_test_arm64.c:97:28: error: storage size of ‘dreg_state’ isn’t known
struct user_hwdebug_state dreg_state;
Adding a direct include for asm/ptrace.h helps it to build, and passes
the test on mainline on hikey.
Signed-off-by: Sumit Semwal <sumit.semwal@...aro.org>
---
tools/testing/selftests/breakpoints/breakpoint_test_arm64.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/testing/selftests/breakpoints/breakpoint_test_arm64.c b/tools/testing/selftests/breakpoints/breakpoint_test_arm64.c
index 960d02100c26..2d95e5adde72 100644
--- a/tools/testing/selftests/breakpoints/breakpoint_test_arm64.c
+++ b/tools/testing/selftests/breakpoints/breakpoint_test_arm64.c
@@ -19,6 +19,7 @@
#define _GNU_SOURCE
+#include <asm/ptrace.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/ptrace.h>
--
2.7.4
Powered by blists - more mailing lists