[PATCH -next] samples: Define dummy __NR_keyctl if undefined
From: Guenter Roeck
Date: Tue Mar 17 2020 - 09:32:24 EST
mips:allmodconfig fails to build.
samples/watch_queue/watch_test.c: In function âkeyctl_watch_keyâ:
samples/watch_queue/watch_test.c:34:17: error: â__NR_keyctlâ undeclared
Declare dummy __NR_keyctl if it is undefined to fix the problem.
Cc: David Howells <dhowells@xxxxxxxxxx>
Fixes: 631ec151fd96 ("Add sample notification program")
Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx>
---
samples/watch_queue/watch_test.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/samples/watch_queue/watch_test.c b/samples/watch_queue/watch_test.c
index 0eaff5dc04c3..ad11417a87f0 100644
--- a/samples/watch_queue/watch_test.c
+++ b/samples/watch_queue/watch_test.c
@@ -26,6 +26,9 @@
#ifndef __NR_watch_devices
#define __NR_watch_devices -1
#endif
+#ifndef __NR_keyctl
+#define __NR_keyctl -1
+#endif
#define BUF_SIZE 256
--
2.17.1