]> Pileus Git - ~andy/linux/commitdiff
[PATCH] alpha: key management syscalls
authorRichard Henderson <rth@twiddle.net>
Thu, 21 Apr 2005 18:28:26 +0000 (11:28 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 21 Apr 2005 18:28:26 +0000 (11:28 -0700)
Allocate syscall numbers for add_key, request_key, keyctl.

arch/alpha/kernel/systbls.S
include/asm-alpha/unistd.h

index faab8c2a03ebda9eb4e12c35f5398733320484f0..3864b33562ee973643c7800e1129c1fa3239d2ed 100644 (file)
@@ -458,6 +458,9 @@ sys_call_table:
        .quad sys_mq_notify
        .quad sys_mq_getsetattr
        .quad sys_waitid
+       .quad sys_add_key
+       .quad sys_request_key                   /* 440 */
+       .quad sys_keyctl
 
        .size sys_call_table, . - sys_call_table
        .type sys_call_table, @object
index c4e70e8617eb6b269891c06ace602dce81f12998..535bc425f243bd7cb9fd0b469c50cc2d3bdb102c 100644 (file)
 #define __NR_mq_notify                 436
 #define __NR_mq_getsetattr             437
 #define __NR_waitid                    438
+#define __NR_add_key                   439
+#define __NR_request_key               440
+#define __NR_keyctl                    441
 
-#define NR_SYSCALLS                    439
+#define NR_SYSCALLS                    442
 
 #if defined(__GNUC__)