lkml.org 
[lkml]   [2020]   [Mar]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH -next] samples: Define dummy __NR_keyctl if undefined
Date
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@redhat.com>
Fixes: 631ec151fd96 ("Add sample notification program")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
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
\
 
 \ /
  Last update: 2020-03-17 14:33    [W:0.751 / U:0.044 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site