Home
last modified time | relevance | path

Searched refs:sb_n_free (Results 1 – 3 of 3) sorted by relevance

/linux-4.19.296/fs/hpfs/
Dalloc.c15 if (sbi->sb_n_free != (unsigned)-1) { in hpfs_claim_alloc()
16 if (unlikely(!sbi->sb_n_free)) { in hpfs_claim_alloc()
18 sbi->sb_n_free = -1; in hpfs_claim_alloc()
21 sbi->sb_n_free--; in hpfs_claim_alloc()
28 if (sbi->sb_n_free != (unsigned)-1) { in hpfs_claim_free()
29 if (unlikely(sbi->sb_n_free >= sbi->sb_fs_size)) { in hpfs_claim_free()
31 sbi->sb_n_free = -1; in hpfs_claim_free()
34 sbi->sb_n_free++; in hpfs_claim_free()
Dsuper.c184 if (sbi->sb_n_free == (unsigned)-1) in hpfs_statfs()
185 sbi->sb_n_free = count_bitmaps(s); in hpfs_statfs()
190 buf->f_bfree = sbi->sb_n_free; in hpfs_statfs()
191 buf->f_bavail = sbi->sb_n_free; in hpfs_statfs()
632 sbi->sb_n_free = -1; in hpfs_fill_super()
Dhpfs_fn.h72 unsigned sb_n_free; /* free blocks for statfs, or -1 */ member