summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2001-10-18 05:21:52 +0000
committermarcel <marcel@FreeBSD.org>2001-10-18 05:21:52 +0000
commit8542877fb0234ca544727110593979c5574ce8c8 (patch)
tree7314914d8113efc5ae3c3d8c324e5f3d4cd2691e /sys
parent1d7ce16d9a3572244364209ace928055430d9188 (diff)
downloadFreeBSD-src-8542877fb0234ca544727110593979c5574ce8c8.zip
FreeBSD-src-8542877fb0234ca544727110593979c5574ce8c8.tar.gz
Fix typos in previous commit:
o s/sys_narg/sy_narg/ o s/SYS_MPSAFE/SYF_MPSAFE/
Diffstat (limited to 'sys')
-rw-r--r--sys/ia64/ia64/trap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/trap.c b/sys/ia64/ia64/trap.c
index 8d6d719..d174737 100644
--- a/sys/ia64/ia64/trap.c
+++ b/sys/ia64/ia64/trap.c
@@ -612,7 +612,7 @@ syscall(int code, u_int64_t *args, struct trapframe *framep)
/*
* Try to run the syscall without Giant if the syscall is MP safe.
*/
- if ((callp->sys_narg & SYS_MPSAFE) == 0)
+ if ((callp->sy_narg & SYF_MPSAFE) == 0)
mtx_lock(&Giant);
#ifdef KTRACE
if (KTRPOINT(p, KTR_SYSCALL))
OpenPOWER on IntegriCloud