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

/freebsd-13-stable/usr.sbin/makefs/msdos/
H A Dmsdosfs_vfsops.c283 pmp->pm_nxtfree = getulong(fp->fsinxtfree);
295 if ((pmp->pm_nxtfree == 0xffffffffUL) ||
296 (pmp->pm_nxtfree > pmp->pm_maxcluster))
386 putulong(fp->fsinxtfree, pmp->pm_nxtfree);
H A Dmsdosfs_fat.c697 pmp->pm_nxtfree = start + count;
698 if (pmp->pm_nxtfree > pmp->pm_maxcluster)
699 pmp->pm_nxtfree = CLUST_FIRST;
756 newst = pmp->pm_nxtfree;
/freebsd-13-stable/sys/fs/msdosfs/
H A Dmsdosfsmount.h105 u_long pm_nxtfree; /* next place to search for a free cluster */ member in struct:msdosfsmount
H A Dmsdosfs_vfsops.c662 pmp->pm_nxtfree = getulong(fp->fsinxtfree);
663 if (pmp->pm_nxtfree > pmp->pm_maxcluster)
664 pmp->pm_nxtfree = CLUST_FIRST;
672 * Finish initializing pmp->pm_nxtfree (just in case the first few
675 * value if there is no fsinfo. We will use pmp->pm_nxtfree
678 if (pmp->pm_nxtfree < CLUST_FIRST)
679 pmp->pm_nxtfree = CLUST_FIRST;
895 putulong(fp->fsinxtfree, pmp->pm_nxtfree);
H A Dmsdosfs_fat.c708 pmp->pm_nxtfree = start + count;
709 if (pmp->pm_nxtfree > pmp->pm_maxcluster)
710 pmp->pm_nxtfree = CLUST_FIRST;
772 newst = pmp->pm_nxtfree;

Completed in 72 milliseconds