mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
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:
parent
c4702e66f4
commit
e4d9bdc105
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193923
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user