Thread (21 messages) flat view 21 messages, 5 authors, 2015-12-13

Re: [PATCH 2/3] selftests: add membarrier syscall test

From: Michael Ellerman <hidden>
Date: 2015-08-31 06:54:04
Also in: lkml

On Fri, 2015-07-10 at 16:58 -0400, Mathieu Desnoyers wrote:
From: Pranith Kumar <redacted>

This patch adds a self test for the membarrier system call.

CC: Michael Ellerman <mpe-Gsx/Oe8HsFggBc27wqDAHg@public.gmane.org>
Sorry I only just saw this due to some over zealous filtering on my end.

quoted hunk ↗ jump to hunk
diff --git a/tools/testing/selftests/membarrier/Makefile b/tools/testing/selftests/membarrier/Makefile
new file mode 100644
index 0000000..877a503
--- /dev/null
+++ b/tools/testing/selftests/membarrier/Makefile
@@ -0,0 +1,11 @@
+CFLAGS += -g -I../../../../usr/include/
+
+all:
+	$(CC) $(CFLAGS) membarrier_test.c -o membarrier_test

+TEST_PROGS := membarrier_test
You don't need to specify the rule, the implict one will do exactly the same,
so you can just do:

TEST_PROGS := membarrier_test

all: $(TEST_PROGS)
quoted hunk ↗ jump to hunk
diff --git a/tools/testing/selftests/membarrier/membarrier_test.c b/tools/testing/selftests/membarrier/membarrier_test.c
new file mode 100644
index 0000000..3c9f217
--- /dev/null
+++ b/tools/testing/selftests/membarrier/membarrier_test.c
@@ -0,0 +1,71 @@
+#define _GNU_SOURCE
+#define __EXPORTED_HEADERS__
Why are you exporting that?

I suspect to try and get around the "Attempt to use kernel headers from user space" warning.

But you're correctly building against the installed headers, not the kernel
headers, so you don't need to do that.
+
+#include <linux/membarrier.h>
+#include <asm-generic/unistd.h>
This should just be <unistd.h>


cheers
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help