summaryrefslogtreecommitdiffstats
path: root/sys/kern/vnode_if.src
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
committerjulian <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
commit5596676e6c6c1e81e899cd0531f9b1c28a292669 (patch)
treeb1a19fcdf05759281fab0d89efb13f0fdf42102e /sys/kern/vnode_if.src
parent83e00d4274950d2b531c24692cd123538ffbddb9 (diff)
downloadFreeBSD-src-5596676e6c6c1e81e899cd0531f9b1c28a292669.zip
FreeBSD-src-5596676e6c6c1e81e899cd0531f9b1c28a292669.tar.gz
KSE Milestone 2
Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
Diffstat (limited to 'sys/kern/vnode_if.src')
-rw-r--r--sys/kern/vnode_if.src40
1 files changed, 20 insertions, 20 deletions
diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src
index e275617..43ff6b5 100644
--- a/sys/kern/vnode_if.src
+++ b/sys/kern/vnode_if.src
@@ -59,7 +59,7 @@
#
vop_islocked {
IN struct vnode *vp;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -126,7 +126,7 @@ vop_open {
IN struct vnode *vp;
IN int mode;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -136,7 +136,7 @@ vop_close {
IN struct vnode *vp;
IN int fflag;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -146,7 +146,7 @@ vop_access {
IN struct vnode *vp;
IN int mode;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -156,7 +156,7 @@ vop_getattr {
IN struct vnode *vp;
OUT struct vattr *vap;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -166,7 +166,7 @@ vop_setattr {
IN struct vnode *vp;
IN struct vattr *vap;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -194,7 +194,7 @@ vop_write {
#
vop_lease {
IN struct vnode *vp;
- IN struct proc *p;
+ IN struct thread *td;
IN struct ucred *cred;
IN int flag;
};
@@ -208,7 +208,7 @@ vop_ioctl {
IN caddr_t data;
IN int fflag;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -218,7 +218,7 @@ vop_poll {
IN struct vnode *vp;
IN int events;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -244,7 +244,7 @@ vop_fsync {
IN struct vnode *vp;
IN struct ucred *cred;
IN int waitfor;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -341,7 +341,7 @@ vop_readlink {
#
vop_inactive {
IN struct vnode *vp;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -349,7 +349,7 @@ vop_inactive {
#
vop_reclaim {
IN struct vnode *vp;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -358,7 +358,7 @@ vop_reclaim {
vop_lock {
IN struct vnode *vp;
IN int flags;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -367,7 +367,7 @@ vop_lock {
vop_unlock {
IN struct vnode *vp;
IN int flags;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -479,7 +479,7 @@ vop_getacl {
IN acl_type_t type;
OUT struct acl *aclp;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -490,7 +490,7 @@ vop_setacl {
IN acl_type_t type;
IN struct acl *aclp;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -501,7 +501,7 @@ vop_aclcheck {
IN acl_type_t type;
IN struct acl *aclp;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -513,7 +513,7 @@ vop_getextattr {
IN const char *name;
INOUT struct uio *uio;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -525,7 +525,7 @@ vop_setextattr {
IN const char *name;
INOUT struct uio *uio;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
@@ -534,7 +534,7 @@ vop_setextattr {
vop_createvobject {
IN struct vnode *vp;
IN struct ucred *cred;
- IN struct proc *p;
+ IN struct thread *td;
};
#
OpenPOWER on IntegriCloud