OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vfsp
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/compat/common/
compat_sysctl_09_43.c
74
struct vfsops *
vfsp
;
local
83
vfsp
= vfs_getopsbyname(mountcompatnames[vfsnum]);
84
if (
vfsp
== NULL)
87
vfc.vfc_vfsops =
vfsp
;
88
strncpy(vfc.vfc_name,
vfsp
->vfs_name, sizeof(vfc.vfc_name));
90
vfc.vfc_refcount =
vfsp
->vfs_refcount;
92
vfc.vfc_mountroot =
vfsp
->vfs_mountroot;
94
vfs_delref(
vfsp
);
/src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs_ctldir.c
1161
zfsctl_lookup_objset(vfs_t *
vfsp
, uint64_t objsetid, zfsvfs_t **zfsvfsp)
1164
zfsvfs_t *zfsvfs =
vfsp
->vfs_data;
1170
error = sfs_vnode_get(
vfsp
, LK_EXCLUSIVE,
1191
zfsctl_umount_snapshots(vfs_t *
vfsp
, int fflags, cred_t *cr)
1194
zfsvfs_t *zfsvfs =
vfsp
->vfs_data;
1220
error = sfs_vnode_get(
vfsp
, LK_EXCLUSIVE,
1309
vfs_t *
vfsp
;
local
1323
vfsp
= vfs_mountalloc(vp->v_vfsp->mnt_op, vp);
1324
if (
vfsp
== NULL) {
1328
vfsp
->mnt_op->vfs_refcount++
[
all
...]
zfs_ioctl.c
1466
vfs_t *
vfsp
;
local
1480
vfsp
= (*zfvp)->z_vfs;
1481
vfs_ref(
vfsp
);
1488
error = vfs_busy(
vfsp
, 0);
1489
vfs_rel(
vfsp
);
3064
vfs_t *
vfsp
;
local
3068
TAILQ_FOREACH(
vfsp
, &mountlist, mnt_list) {
3069
if (strcmp(refstr_value(
vfsp
->vfs_resource), resource) == 0) {
3070
if (vfs_busy(
vfsp
, MBF_MNTLSTLOCK) != 0)
3071
vfsp
= NULL
3572
vfs_t *
vfsp
;
local
[
all
...]
/src/sys/kern/
vfs_mount.c
188
struct vfsops *
vfsp
= NULL;
local
193
LIST_FOREACH(
vfsp
, &vfs_list, vfs_list)
194
if (!strncmp(
vfsp
->vfs_name, fstypename,
197
if (
vfsp
== NULL) {
201
vfsp
->vfs_refcount++;
204
if ((mp = vfs_mountalloc(
vfsp
, NULL)) == NULL)
209
(void)strlcpy(mp->mnt_stat.f_fstypename,
vfsp
->vfs_name,
Completed in 33 milliseconds
Indexes created Mon Jun 22 00:25:11 UTC 2026