aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_xxx.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2007-03-04 22:36:48 +0000
committerRobert Watson <rwatson@FreeBSD.org>2007-03-04 22:36:48 +0000
commit0c14ff0eb52ddc7fdbacc5c8645d79afcaf73e3a (patch)
treef27b57bdc76f93b33f438468bf58343b920adf0f /sys/kern/kern_xxx.c
parent9f3cef91087c68f23d917212fc7b88e7c266feef (diff)
downloadsrc-0c14ff0eb52ddc7fdbacc5c8645d79afcaf73e3a.tar.gz
src-0c14ff0eb52ddc7fdbacc5c8645d79afcaf73e3a.zip
Remove 'MPSAFE' annotations from the comments above most system calls: all
system calls now enter without Giant held, and then in some cases, acquire Giant explicitly. Remove a number of other MPSAFE annotations in the credential code and tweak one or two other adjacent comments.
Notes
Notes: svn path=/head/; revision=167211
Diffstat (limited to 'sys/kern/kern_xxx.c')
-rw-r--r--sys/kern/kern_xxx.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/kern/kern_xxx.c b/sys/kern/kern_xxx.c
index 81c2df4608cc..d5e476d2e2eb 100644
--- a/sys/kern/kern_xxx.c
+++ b/sys/kern/kern_xxx.c
@@ -54,9 +54,6 @@ struct gethostname_args {
u_int len;
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
ogethostname(td, uap)
@@ -82,9 +79,6 @@ struct sethostname_args {
u_int len;
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
osethostname(td, uap)
@@ -108,9 +102,6 @@ struct ogethostid_args {
int dummy;
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
ogethostid(td, uap)
@@ -129,9 +120,6 @@ struct osethostid_args {
long hostid;
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
osethostid(td, uap)
@@ -149,9 +137,6 @@ osethostid(td, uap)
return (0);
}
-/*
- * MPSAFE
- */
int
oquota(td, uap)
struct thread *td;
@@ -175,9 +160,6 @@ struct uname_args {
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
uname(td, uap)
@@ -258,9 +240,6 @@ struct getdomainname_args {
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
getdomainname(td, uap)
@@ -286,9 +265,6 @@ struct setdomainname_args {
};
#endif
-/*
- * MPSAFE
- */
/* ARGSUSED */
int
setdomainname(td, uap)