Home
last modified time | relevance | path

Searched refs:pm_nxtfree (Results 1 – 5 of 5) sorted by relevance

/freebsd-13-stable/usr.sbin/makefs/msdos/
HDmsdosfs_vfsops.c281 pmp->pm_nxtfree = getulong(fp->fsinxtfree); in msdosfs_mount()
293 if ((pmp->pm_nxtfree == 0xffffffffUL) || in msdosfs_mount()
294 (pmp->pm_nxtfree > pmp->pm_maxcluster)) in msdosfs_mount()
384 putulong(fp->fsinxtfree, pmp->pm_nxtfree); in msdosfs_fsiflush()
HDmsdosfs_fat.c693 pmp->pm_nxtfree = start + count; in chainalloc()
694 if (pmp->pm_nxtfree > pmp->pm_maxcluster) in chainalloc()
695 pmp->pm_nxtfree = CLUST_FIRST; in chainalloc()
752 newst = pmp->pm_nxtfree; in clusteralloc1()
/freebsd-13-stable/sys/fs/msdosfs/
HDmsdosfs_vfsops.c786 pmp->pm_nxtfree = getulong(fp->fsinxtfree); in mountmsdosfs()
787 if (pmp->pm_nxtfree > pmp->pm_maxcluster) in mountmsdosfs()
788 pmp->pm_nxtfree = CLUST_FIRST; in mountmsdosfs()
802 if (pmp->pm_nxtfree < CLUST_FIRST) in mountmsdosfs()
803 pmp->pm_nxtfree = CLUST_FIRST; in mountmsdosfs()
1094 putulong(fp->fsinxtfree, pmp->pm_nxtfree); in msdosfs_fsiflush()
HDmsdosfs_fat.c714 pmp->pm_nxtfree = start + count; in chainalloc()
715 if (pmp->pm_nxtfree > pmp->pm_maxcluster) in chainalloc()
716 pmp->pm_nxtfree = CLUST_FIRST; in chainalloc()
778 newst = pmp->pm_nxtfree; in clusteralloc1()
HDmsdosfsmount.h106 u_long pm_nxtfree; /* next place to search for a free cluster */ member