Home
last modified time | relevance | path

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

/fs/bfs/
Dinode.c323 struct bfs_super_block *bfs_sb; in bfs_fill_super() local
341 bfs_sb = (struct bfs_super_block *)sbh->b_data; in bfs_fill_super()
342 if (le32_to_cpu(bfs_sb->s_magic) != BFS_MAGIC) { in bfs_fill_super()
345 s->s_id, le32_to_cpu(bfs_sb->s_magic)); in bfs_fill_super()
348 if (BFS_UNCLEAN(bfs_sb, s) && !silent) in bfs_fill_super()
353 if (le32_to_cpu(bfs_sb->s_start) > le32_to_cpu(bfs_sb->s_end) || in bfs_fill_super()
354 le32_to_cpu(bfs_sb->s_start) < BFS_BSIZE) { in bfs_fill_super()
359 info->si_lasti = (le32_to_cpu(bfs_sb->s_start) - BFS_BSIZE) / in bfs_fill_super()
383 info->si_blocks = (le32_to_cpu(bfs_sb->s_end) + 1) >> BFS_BSIZE_BITS; in bfs_fill_super()
384 info->si_freeb = (le32_to_cpu(bfs_sb->s_end) + 1 in bfs_fill_super()
[all …]