Searched refs:pm_nxtfree (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/fs/msdosfs/
H A Dmsdosfsmount.h101 u_long pm_nxtfree; /* next place to search for a free cluster */ member in struct:msdosfsmount
H A Dmsdosfs_vfsops.c677 pmp->pm_nxtfree = getulong(fp->fsinxtfree);
678 if (pmp->pm_nxtfree > pmp->pm_maxcluster)
679 pmp->pm_nxtfree = CLUST_FIRST;
687 * Finish initializing pmp->pm_nxtfree (just in case the first few
690 * value if there is no fsinfo. We will use pmp->pm_nxtfree
693 if (pmp->pm_nxtfree < CLUST_FIRST)
694 pmp->pm_nxtfree = CLUST_FIRST;
905 putulong(fp->fsinxtfree, pmp->pm_nxtfree);
H A Dmsdosfs_fat.c709 pmp->pm_nxtfree = start + count;
710 if (pmp->pm_nxtfree > pmp->pm_maxcluster)
711 pmp->pm_nxtfree = CLUST_FIRST;
773 newst = pmp->pm_nxtfree;

Completed in 73 milliseconds