/* * 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 | christoph hellwig | 18 | 94.74% | 1 | 50.00% |
| brian gerst | brian gerst | 1 | 5.26% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp | |
| christoph hellwig | christoph hellwig | 24 | 96.00% | 1 | 50.00% |
| dmitri vorobiev | dmitri vorobiev | 1 | 4.00% | 1 | 50.00% |
| Total | 25 | 100.00% | 2 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp | |
| christoph hellwig | christoph hellwig | 147 | 78.19% | 2 | 20.00% |
| david howells | david howells | 17 | 9.04% | 1 | 10.00% |
| fabian frederick | fabian frederick | 13 | 6.91% | 1 | 10.00% |
| dmitri vorobiev | dmitri vorobiev | 5 | 2.66% | 2 | 20.00% |
| arjan van de ven | arjan van de ven | 4 | 2.13% | 2 | 20.00% |
| harvey harrison | harvey harrison | 1 | 0.53% | 1 | 10.00% |
| brian gerst | brian gerst | 1 | 0.53% | 1 | 10.00% |
| Total | 188 | 100.00% | 10 | 100.00% |