mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Staticise the coda vfsop pointer.
This commit is contained in:
parent
b9a4338d29
commit
eeff042fb3
4 changed files with 2 additions and 4 deletions
|
|
@ -95,6 +95,7 @@ int coda_vnop_print_entry = 0;
|
|||
static int coda_lockdebug = 0;
|
||||
|
||||
/* Definition of the vfs operation vector */
|
||||
static int (**coda_vnodeop_p)(void *);
|
||||
|
||||
/*
|
||||
* Some NetBSD details:
|
||||
|
|
|
|||
|
|
@ -79,8 +79,6 @@ int coda_vop_error __P((void *));
|
|||
int coda_vop_nop __P((void *));
|
||||
int coda_fbsd_getpages __P((void *));
|
||||
|
||||
int (**coda_vnodeop_p)(void *);
|
||||
|
||||
int coda_rdwr(struct vnode *vp, struct uio *uiop, enum uio_rw rw,
|
||||
int ioflag, struct ucred *cred, struct thread *td);
|
||||
int coda_grab_vnode(dev_t dev, ino_t ino, struct vnode **vpp);
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ int coda_vnop_print_entry = 0;
|
|||
static int coda_lockdebug = 0;
|
||||
|
||||
/* Definition of the vfs operation vector */
|
||||
static int (**coda_vnodeop_p)(void *);
|
||||
|
||||
/*
|
||||
* Some NetBSD details:
|
||||
|
|
|
|||
|
|
@ -79,8 +79,6 @@ int coda_vop_error __P((void *));
|
|||
int coda_vop_nop __P((void *));
|
||||
int coda_fbsd_getpages __P((void *));
|
||||
|
||||
int (**coda_vnodeop_p)(void *);
|
||||
|
||||
int coda_rdwr(struct vnode *vp, struct uio *uiop, enum uio_rw rw,
|
||||
int ioflag, struct ucred *cred, struct thread *td);
|
||||
int coda_grab_vnode(dev_t dev, ino_t ino, struct vnode **vpp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue