From d459825b233a55d51e2218f2546e28eb12468316 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Tue, 23 Feb 2010 19:45:21 -0500 Subject: [PATCH] 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 --- src/rx/rx_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5