diff options
author | kib <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
commit | 2a37bc559bc0ddf30ffe24c4c169cf3905ef0339 (patch) | |
tree | c5a4b4f78af104078e0351189ab6920720fe2add /sys/fs | |
parent | a051f2b40a4877c3751f6b94fc1814b53f846a4d (diff) | |
download | FreeBSD-src-2a37bc559bc0ddf30ffe24c4c169cf3905ef0339.zip FreeBSD-src-2a37bc559bc0ddf30ffe24c4c169cf3905ef0339.tar.gz |
s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args
definition.
Discussed with: bde
MFC after: 2 weeks
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/cd9660/cd9660_vnops.c | 2 | ||||
-rw-r--r-- | sys/fs/fifofs/fifo_vnops.c | 2 | ||||
-rw-r--r-- | sys/fs/msdosfs/msdosfs_vnops.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 50541f6..f22adb7 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -165,7 +165,7 @@ cd9660_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap; { struct vnode *vp = ap->a_vp; diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c index 8d20297..d328f3b 100644 --- a/sys/fs/fifofs/fifo_vnops.c +++ b/sys/fs/fifofs/fifo_vnops.c @@ -167,7 +167,7 @@ fifo_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + struct file *a_fp; } */ *ap; { struct vnode *vp = ap->a_vp; diff --git a/sys/fs/msdosfs/msdosfs_vnops.c b/sys/fs/msdosfs/msdosfs_vnops.c index 77c1ee4..409dc73 100644 --- a/sys/fs/msdosfs/msdosfs_vnops.c +++ b/sys/fs/msdosfs/msdosfs_vnops.c @@ -214,7 +214,7 @@ msdosfs_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap; { struct denode *dep = VTODE(ap->a_vp); |