diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
| commit | e4d9bdc1052880746dbf29edfbd8cb8c11fc4ea0 (patch) | |
| tree | c5a4b4f78af104078e0351189ab6920720fe2add /sys | |
| parent | c4702e66f403efe96d460ffc485b7f81d1e1587a (diff) | |
Notes
Diffstat (limited to 'sys')
| -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 | ||||
| -rw-r--r-- | sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c | 2 | ||||
| -rw-r--r-- | sys/kern/uipc_mqueue.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 50541f6f74ea..f22adb764417 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 8d2029786ad2..d328f3b4289a 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 77c1ee48f495..409dc739c3ad 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); diff --git a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c index 6d8d4eb9866a..9d86c95a0940 100644 --- a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c +++ b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c @@ -198,7 +198,7 @@ _xfs_open( int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap) { int error; diff --git a/sys/kern/uipc_mqueue.c b/sys/kern/uipc_mqueue.c index 9343f54c996e..5ed14417bc3c 100644 --- a/sys/kern/uipc_mqueue.c +++ b/sys/kern/uipc_mqueue.c @@ -1092,7 +1092,7 @@ struct vop_open_args { int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; }; #endif |
