Home
last modified time | relevance | path

Searched refs:sfs (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_003_pos.ksh63 spool=smallpool.$$; sfs=smallfs.$$
65 log_must zfs create $spool/$sfs
71 zfs set compression=off $spool/$sfs
72 zfs set compression=on $spool/$sfs
73 zfs set compression=off $spool/$sfs
74 zfs set compression=on $spool/$sfs
75 zfs set compression=off $spool/$sfs
/f-stack/freebsd/kern/
H A Dkern_sendfile.c115 KASSERT(sfs->count == 0, ("sendfile sync %p still busy", sfs)); in sendfile_sync_destroy()
117 cv_destroy(&sfs->cv); in sendfile_sync_destroy()
125 mtx_lock(&sfs->mtx); in sendfile_sync_signal()
126 KASSERT(sfs->count > 0, ("sendfile sync %p not busy", sfs)); in sendfile_sync_signal()
128 if (!sfs->waiting) { in sendfile_sync_signal()
704 sfs = NULL; in vn_sendfile()
730 sfs = malloc(sizeof(*sfs), M_SENDFILE, M_WAITOK | M_ZERO); in vn_sendfile()
1032 sfs->count++; in vn_sendfile()
1109 sfs->count++; in vn_sendfile()
1239 if (sfs != NULL) { in vn_sendfile()
[all …]
H A Dvfs_default.c951 struct statfs *sfs; in vop_stdallocate() local
988 sfs = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK); in vop_stdallocate()
989 error = VFS_STATFS(vp->v_mount, sfs, td); in vop_stdallocate()
991 maxfilesize = sfs->f_maxfilesize; in vop_stdallocate()
992 free(sfs, M_STATFS); in vop_stdallocate()
/f-stack/freebsd/contrib/openzfs/lib/libspl/os/freebsd/
H A Dmnttab.c95 statfs2mnttab(struct statfs *sfs, struct mnttab *mp) in statfs2mnttab() argument
102 flags = sfs->f_flags; in statfs2mnttab()
124 mp->mnt_special = strdup(sfs->f_mntfromname); in statfs2mnttab()
125 mp->mnt_mountp = strdup(sfs->f_mntonname); in statfs2mnttab()
126 mp->mnt_fstype = strdup(sfs->f_fstypename); in statfs2mnttab()
136 struct statfs *sfs; in statfs_init() local
153 sfs = realloc(gsfs, allfs * sizeof (gsfs[0])); in statfs_init()
154 if (sfs != NULL) in statfs_init()
155 gsfs = sfs; in statfs_init()
H A Dgetmntany.c43 struct statfs sfs; in getextmntent() local
56 if (statfs(path, &sfs) != 0) { in getextmntent()
61 statfs2mnttab(&sfs, (struct mnttab *)entry); in getextmntent()
/f-stack/freebsd/contrib/openzfs/lib/libspl/include/os/freebsd/sys/
H A Dmnttab.h81 extern void statfs2mnttab(struct statfs *sfs, struct mnttab *mp);