OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vfsp
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/coda/
coda_vfsops.c
159
coda_mount(struct mount *
vfsp
, /* Allocated and initialized by mount(2) */
177
if (
vfsp
->mnt_flag & MNT_GETARGS)
185
if (CODA_MOUNTED(
vfsp
)) {
249
vfsp
->mnt_data = mi;
250
vfsp
->mnt_stat.f_fsidx.__fsid_val[0] = 0;
251
vfsp
->mnt_stat.f_fsidx.__fsid_val[1] = makefstype(MOUNT_CODA);
252
vfsp
->mnt_stat.f_fsid =
vfsp
->mnt_stat.f_fsidx.__fsid_val[0];
253
vfsp
->mnt_stat.f_namemax = CODA_MAXNAMLEN;
254
mi->mi_vfsp =
vfsp
;
[
all
...]
cnode.h
160
#define vftomi(
vfsp
) ((struct coda_mntinfo *)(
vfsp
->mnt_data))
161
#define CODA_MOUNTED(
vfsp
) ((vftomi(
vfsp
) != (struct coda_mntinfo *)0) \
162
&& (vftomi(
vfsp
)->mi_started))
/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/sys/fs/nfs/client/
nfs_clsubs.c
93
ncl_uninit(struct vfsconf *
vfsp
)
369
ncl_init(struct vfsconf *
vfsp
)
/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 17 milliseconds
Indexes created Sat Feb 21 01:20:28 UTC 2026