summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2005-05-27 19:23:48 +0000
committerpjd <pjd@FreeBSD.org>2005-05-27 19:23:48 +0000
commitac435fbb1323186ea673f31083501e500c7f5710 (patch)
tree941df0ab7d15146073b28416d06842aa5416ceb9
parent788f75ddb2af03ab6d72cd8c4c1318452b406c06 (diff)
downloadFreeBSD-src-ac435fbb1323186ea673f31083501e500c7f5710.zip
FreeBSD-src-ac435fbb1323186ea673f31083501e500c7f5710.tar.gz
Remove (now) unused argument 'td' from cvtstatfs().
-rw-r--r--sys/kern/vfs_extattr.c13
-rw-r--r--sys/kern/vfs_syscalls.c13
2 files changed, 12 insertions, 14 deletions
diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c
index e59bc09..d12a65f 100644
--- a/sys/kern/vfs_extattr.c
+++ b/sys/kern/vfs_extattr.c
@@ -443,7 +443,7 @@ getfsstat(td, uap)
/*
* Get old format filesystem statistics.
*/
-static void cvtstatfs(struct thread *, struct statfs *, struct ostatfs *);
+static void cvtstatfs(struct statfs *, struct ostatfs *);
#ifndef _SYS_SYSPROTO_H_
struct freebsd4_statfs_args {
@@ -466,7 +466,7 @@ freebsd4_statfs(td, uap)
error = kern_statfs(td, uap->path, UIO_USERSPACE, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -494,7 +494,7 @@ freebsd4_fstatfs(td, uap)
error = kern_fstatfs(td, uap->fd, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -564,7 +564,7 @@ freebsd4_getfsstat(td, uap)
sb.f_fsid.val[0] = sb.f_fsid.val[1] = 0;
sp = &sb;
}
- cvtstatfs(td, sp, &osb);
+ cvtstatfs(sp, &osb);
error = copyout(&osb, sfsp, sizeof(osb));
if (error) {
vfs_unbusy(mp, td);
@@ -615,7 +615,7 @@ freebsd4_fhstatfs(td, uap)
error = kern_fhstatfs(td, fh, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -623,8 +623,7 @@ freebsd4_fhstatfs(td, uap)
* Convert a new format statfs structure to an old format statfs structure.
*/
static void
-cvtstatfs(td, nsp, osp)
- struct thread *td;
+cvtstatfs(nsp, osp)
struct statfs *nsp;
struct ostatfs *osp;
{
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index e59bc09..d12a65f 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -443,7 +443,7 @@ getfsstat(td, uap)
/*
* Get old format filesystem statistics.
*/
-static void cvtstatfs(struct thread *, struct statfs *, struct ostatfs *);
+static void cvtstatfs(struct statfs *, struct ostatfs *);
#ifndef _SYS_SYSPROTO_H_
struct freebsd4_statfs_args {
@@ -466,7 +466,7 @@ freebsd4_statfs(td, uap)
error = kern_statfs(td, uap->path, UIO_USERSPACE, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -494,7 +494,7 @@ freebsd4_fstatfs(td, uap)
error = kern_fstatfs(td, uap->fd, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -564,7 +564,7 @@ freebsd4_getfsstat(td, uap)
sb.f_fsid.val[0] = sb.f_fsid.val[1] = 0;
sp = &sb;
}
- cvtstatfs(td, sp, &osb);
+ cvtstatfs(sp, &osb);
error = copyout(&osb, sfsp, sizeof(osb));
if (error) {
vfs_unbusy(mp, td);
@@ -615,7 +615,7 @@ freebsd4_fhstatfs(td, uap)
error = kern_fhstatfs(td, fh, &sf);
if (error)
return (error);
- cvtstatfs(td, &sf, &osb);
+ cvtstatfs(&sf, &osb);
return (copyout(&osb, uap->buf, sizeof(osb)));
}
@@ -623,8 +623,7 @@ freebsd4_fhstatfs(td, uap)
* Convert a new format statfs structure to an old format statfs structure.
*/
static void
-cvtstatfs(td, nsp, osp)
- struct thread *td;
+cvtstatfs(nsp, osp)
struct statfs *nsp;
struct ostatfs *osp;
{
OpenPOWER on IntegriCloud