Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/linux Fix ppoll signature (int ->u_int)



details:   https://anonhg.NetBSD.org/src/rev/9ead39fc0371
branches:  trunk
changeset: 333925:9ead39fc0371
user:      njoly <njoly%NetBSD.org@localhost>
date:      Sat Nov 22 13:18:45 2014 +0000

description:
Fix ppoll signature (int ->u_int)

diffstat:

 sys/compat/linux/arch/alpha/syscalls.master   |  4 ++--
 sys/compat/linux/arch/amd64/syscalls.master   |  4 ++--
 sys/compat/linux/arch/arm/syscalls.master     |  4 ++--
 sys/compat/linux/arch/i386/syscalls.master    |  4 ++--
 sys/compat/linux/arch/m68k/syscalls.master    |  4 ++--
 sys/compat/linux/arch/mips/syscalls.master    |  4 ++--
 sys/compat/linux/arch/powerpc/syscalls.master |  4 ++--
 sys/compat/linux/common/linux_misc.c          |  6 +++---
 8 files changed, 17 insertions(+), 17 deletions(-)

diffs (153 lines):

diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/alpha/syscalls.master
--- a/sys/compat/linux/arch/alpha/syscalls.master       Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/alpha/syscalls.master       Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.88 2014/05/29 10:35:26 njoly Exp $
+       $NetBSD: syscalls.master,v 1.89 2014/11/22 13:18:45 njoly Exp $
 ;
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -729,7 +729,7 @@
 462    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 463    UNIMPL          pselect6
-464    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+464    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 465    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/amd64/syscalls.master
--- a/sys/compat/linux/arch/amd64/syscalls.master       Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/amd64/syscalls.master       Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.52 2014/05/31 08:51:19 njoly Exp $
+       $NetBSD: syscalls.master,v 1.53 2014/11/22 13:18:45 njoly Exp $
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -490,7 +490,7 @@
 269    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 270    UNIMPL          pselect6
-271    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+271    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 272    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/arm/syscalls.master
--- a/sys/compat/linux/arch/arm/syscalls.master Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/arm/syscalls.master Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.61 2014/05/31 08:51:19 njoly Exp $
+       $NetBSD: syscalls.master,v 1.62 2014/11/22 13:18:45 njoly Exp $
 
 ; Derived from sys/compat/linux/arch/*/syscalls.master
 ; and from Linux 2.4.12 arch/arm/kernel/calls.S
@@ -531,7 +531,7 @@
 334    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 335    UNIMPL          pselect6
-336    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+336    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 337    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/i386/syscalls.master
--- a/sys/compat/linux/arch/i386/syscalls.master        Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/i386/syscalls.master        Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.118 2014/05/31 08:51:19 njoly Exp $
+       $NetBSD: syscalls.master,v 1.119 2014/11/22 13:18:45 njoly Exp $
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -504,7 +504,7 @@
 307    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 308    UNIMPL          pselect6
-309    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+309    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 310    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/m68k/syscalls.master
--- a/sys/compat/linux/arch/m68k/syscalls.master        Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/m68k/syscalls.master        Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.88 2014/05/31 08:51:19 njoly Exp $
+       $NetBSD: syscalls.master,v 1.89 2014/11/22 13:18:45 njoly Exp $
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -512,7 +512,7 @@
 300    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 301    UNIMPL          pselect6
-302    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+302    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 303    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/mips/syscalls.master
--- a/sys/compat/linux/arch/mips/syscalls.master        Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/mips/syscalls.master        Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.56 2014/05/31 08:51:19 njoly Exp $  
+       $NetBSD: syscalls.master,v 1.57 2014/11/22 13:18:45 njoly Exp $  
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -501,7 +501,7 @@
 300    STD             { int|linux_sys||faccessat(int fd, const char *path, \
                            int amode); }
 301    UNIMPL          pselect6
-302    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+302    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 303    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/arch/powerpc/syscalls.master
--- a/sys/compat/linux/arch/powerpc/syscalls.master     Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/arch/powerpc/syscalls.master     Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.65 2014/05/31 08:51:19 njoly Exp $  
+       $NetBSD: syscalls.master,v 1.66 2014/11/22 13:18:45 njoly Exp $  
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -478,7 +478,7 @@
 278    UNIMPL          spu_run
 279    UNIMPL          spu_create
 280    UNIMPL          pselect6
-281    STD             { int|linux_sys||ppoll(struct pollfd *fds, int nfds, \
+281    STD             { int|linux_sys||ppoll(struct pollfd *fds, u_int nfds, \
                            struct linux_timespec *timeout, \
                            linux_sigset_t *sigset); }
 282    UNIMPL          unshare
diff -r 7ea03892f191 -r 9ead39fc0371 sys/compat/linux/common/linux_misc.c
--- a/sys/compat/linux/common/linux_misc.c      Sat Nov 22 13:13:10 2014 +0000
+++ b/sys/compat/linux/common/linux_misc.c      Sat Nov 22 13:18:45 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_misc.c,v 1.229 2014/05/29 10:35:27 njoly Exp $   */
+/*     $NetBSD: linux_misc.c,v 1.230 2014/11/22 13:18:45 njoly Exp $   */
 
 /*-
  * Copyright (c) 1995, 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.229 2014/05/29 10:35:27 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.230 2014/11/22 13:18:45 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -928,7 +928,7 @@
 {
        /* {
                syscallarg(struct pollfd *) fds;
-               syscallarg(int) nfds;
+               syscallarg(u_int) nfds;
                syscallarg(struct linux_timespec *) timeout;
                syscallarg(linux_sigset_t *) sigset;
        } */



Home | Main Index | Thread Index | Old Index