From: Derrick Brashear Date: Wed, 24 Feb 2010 00:45:21 +0000 (-0500) Subject: irix syscall arg fix for rx X-Git-Tag: openafs-devel-1_5_73~120 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d459825b233a55d51e2218f2546e28eb12468316;p=packages%2Fo%2Fopenafs.git irix syscall arg fix for rx rx uses the afs syscall to get network info in userspace. fix things to pass a useful set of args in Change-Id: I541f90d43ff79ba7a026832403d485b7738a53b8 Reviewed-on: http://gerrit.openafs.org/1379 Reviewed-by: Chaz Chandler Tested-by: Chaz Chandler Reviewed-by: Derrick Brashear --- diff --git a/src/rx/rx_user.c b/src/rx/rx_user.c index eb62ed791..b5b1dd0b2 100644 --- a/src/rx/rx_user.c +++ b/src/rx/rx_user.c @@ -454,7 +454,7 @@ rxi_syscall(afs_uint32 a3, afs_uint32 a4, void *a5) old = signal(SIGSYS, SIG_IGN); #if defined(AFS_SGI_ENV) - rcode = afs_syscall(a3, a4, a5); + rcode = afs_syscall(AFS_SYSCALL, 28, a3, a4, a5); #else rcode = syscall(AFS_SYSCALL, 28 /* AFSCALL_CALL */ , a3, a4, a5); #endif /* AFS_SGI_ENV */