/* SPDX-License-Identifier: GPL-2.0 */ /* * fs/bfs/bfs.h * Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com> */ #ifndef _FS_BFS_BFS_H #define _FS_BFS_BFS_H #include <linux/bfs_fs.h> /* * BFS file system in-core superblock info */ struct bfs_sb_info { unsigned long si_blocks; unsigned long si_freeb; unsigned long si_freei; unsigned long si_lf_eblk; unsigned long si_lasti; unsigned long *si_imap; struct mutex bfs_lock; }; /* * BFS file system in-core inode info */ struct bfs_inode_info { unsigned long i_dsk_ino; /* inode number from the disk, can be 0 */ unsigned long i_sblock; unsigned long i_eblock; struct inode vfs_inode; };
static inline struct bfs_sb_info *BFS_SB(struct super_block *sb) { return sb->s_fs_info; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 18 | 94.74% | 1 | 50.00% |
Brian Gerst | 1 | 5.26% | 1 | 50.00% |
Total | 19 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 24 | 96.00% | 1 | 50.00% |
Dmitri Vorobiev | 1 | 4.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 147 | 77.78% | 2 | 18.18% |
David Howells | 17 | 8.99% | 1 | 9.09% |
Fabian Frederick | 13 | 6.88% | 1 | 9.09% |
Dmitri Vorobiev | 5 | 2.65% | 2 | 18.18% |
Arjan van de Ven | 4 | 2.12% | 2 | 18.18% |
Harvey Harrison | 1 | 0.53% | 1 | 9.09% |
Brian Gerst | 1 | 0.53% | 1 | 9.09% |
Greg Kroah-Hartman | 1 | 0.53% | 1 | 9.09% |
Total | 189 | 100.00% | 11 | 100.00% |