Home
last modified time | relevance | path

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

/linux-4.4.14/fs/hpfs/
Dalloc.c14 if (sbi->sb_n_free != (unsigned)-1) { in hpfs_claim_alloc()
15 if (unlikely(!sbi->sb_n_free)) { in hpfs_claim_alloc()
17 sbi->sb_n_free = -1; in hpfs_claim_alloc()
20 sbi->sb_n_free--; in hpfs_claim_alloc()
27 if (sbi->sb_n_free != (unsigned)-1) { in hpfs_claim_free()
28 if (unlikely(sbi->sb_n_free >= sbi->sb_fs_size)) { in hpfs_claim_free()
30 sbi->sb_n_free = -1; in hpfs_claim_free()
33 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()
634 sbi->sb_n_free = -1; in hpfs_fill_super()
Dhpfs_fn.h72 unsigned sb_n_free; /* free blocks for statfs, or -1 */ member