Searched refs:vops (Results 1 – 8 of 8) sorted by relevance
| /src/sys/contrib/dev/broadcom/brcm80211/brcmfmac/ |
| H A D | fwvid.h | 35 const struct brcmf_fwvid_ops *vops = ifp->drvr->vops; in brcmf_fwvid_feat_attach() local 37 if (!vops->feat_attach) in brcmf_fwvid_feat_attach() 40 vops->feat_attach(ifp); in brcmf_fwvid_feat_attach() 46 const struct brcmf_fwvid_ops *vops = ifp->drvr->vops; in brcmf_fwvid_set_sae_password() local 48 if (!vops || !vops->set_sae_password) in brcmf_fwvid_set_sae_password() 51 return vops->set_sae_password(ifp, crypto); in brcmf_fwvid_set_sae_password() 56 if (!drvr->vops) in brcmf_fwvid_alloc_fweh_info() 59 return drvr->vops->alloc_fweh_info(drvr); in brcmf_fwvid_alloc_fweh_info() 64 const struct brcmf_fwvid_ops *vops = ifp->drvr->vops; in brcmf_fwvid_activate_events() local 66 if (!vops || !vops->activate_events) in brcmf_fwvid_activate_events() [all …]
|
| H A D | fwvid.c | 27 const struct brcmf_fwvid_ops *vops; member 59 .vops = _vid ## _VOPS \ 66 .vops = _vid ## _VOPS \ 105 const struct brcmf_fwvid_ops *vops) in brcmf_fwvid_register_vendor() argument 110 if (WARN_ON(!vmod) || WARN_ON(!vops) || in brcmf_fwvid_register_vendor() 111 WARN_ON(!vops->alloc_fweh_info)) in brcmf_fwvid_register_vendor() 122 fwvid_list[fwvid].vops = vops; in brcmf_fwvid_register_vendor() 155 fwvid_list[fwvid].vops = NULL; in brcmf_fwvid_unregister_vendor() 188 drvr->vops = fwvid_list[fwvid].vops; in brcmf_fwvid_attach() 208 if (drvr->vops) { in brcmf_fwvid_detach() [all …]
|
| H A D | core.h | 146 const struct brcmf_fwvid_ops *vops; member
|
| /src/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | vnode.h | 96 #define vn_matchops(vp, vops) ((vp)->v_op == &(vops)) argument
|
| /src/sys/sys/ |
| H A D | vnode.h | 684 void cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops); 693 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument 707 int getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops,
|
| /src/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zfs_ctldir.c | 168 const char *tag, struct vop_vector *vops, in sfs_vgetx() argument 183 error = getnewvnode(tag, mp, vops, &vp); in sfs_vgetx()
|
| /src/sys/kern/ |
| H A D | vfs_cache.c | 4236 cache_validate_vop_vector(struct mount *mp, struct vop_vector *vops) in cache_validate_vop_vector() argument 4244 if (vops->vop_fplookup_vexec == NULL || in cache_validate_vop_vector() 4245 vops->vop_fplookup_vexec == cache_vop_bad_vexec) in cache_validate_vop_vector() 4247 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector() 4249 if (vops->vop_fplookup_symlink == NULL || in cache_validate_vop_vector() 4250 vops->vop_fplookup_symlink == cache_vop_bad_symlink) in cache_validate_vop_vector() 4252 vops, mp->mnt_vfc->vfc_name); in cache_validate_vop_vector()
|
| H A D | vfs_subr.c | 2073 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops, in getnewvnode() argument 2082 KASSERT(vops->registered, in getnewvnode() 2083 ("%s: not registered vector op %p\n", __func__, vops)); in getnewvnode() 2084 cache_validate_vop_vector(mp, vops); in getnewvnode() 2132 vp->v_op = vops; in getnewvnode() 2138 if (mp == NULL && vops != &dead_vnodeops) in getnewvnode()
|