[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180722132853.21816-1-ysato@users.sourceforge.jp>
Date: Sun, 22 Jul 2018 22:28:53 +0900
From: Yoshinori Sato <ysato@...rs.sourceforge.jp>
To: linux-kernel@...r.kernel.org, tglx@...utronix.de,
gregkh@...uxfoundation.org, pombredanne@...b.com,
kstewart@...uxfoundation.org
Cc: Yoshinori Sato <ysato@...rs.sourceforge.jp>
Subject: [PATCH] checksyscalls.sh: Add ignore rseq.
This syscall depend on HAVE_RSEQ.
So, if HAVE_RSEQ is not defined, it should be ignored.
Signed-off-by: Yoshinori Sato <ysato@...rs.sourceforge.jp>
---
scripts/checksyscalls.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh
index ee3dfb5be6cd..ff0a8c51e126 100755
--- a/scripts/checksyscalls.sh
+++ b/scripts/checksyscalls.sh
@@ -199,6 +199,10 @@ cat << EOF
#define __IGNORE_getpmsg
#define __IGNORE_putpmsg
#define __IGNORE_vserver
+
+#ifndef CONFIG_HAVE_RSEQ
+#define __IGNORE_rseq
+#endif
EOF
}
--
2.11.0
Powered by blists - more mailing lists