s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args

definition.

Discussed with:	bde
MFC after:	2 weeks
This commit is contained in:
Konstantin Belousov 2009-06-10 14:09:05 +00:00
parent c4702e66f4
commit e4d9bdc105
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193923
5 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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);

View File

@ -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;

View File

@ -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