import of ftp.dlink.com/GPL/DSMG-600_reB/ppclinux.tar.gz
[linux-2.4.21-pre4.git] / include / linux / bfs_fs_sb.h
1 /*
2  *      include/linux/bfs_fs_sb.h
3  *      Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com>
4  */
5
6 #ifndef _LINUX_BFS_FS_SB
7 #define _LINUX_BFS_FS_SB
8
9 /*
10  * BFS file system in-core superblock info
11  */
12 struct bfs_sb_info {
13         unsigned long si_blocks;
14         unsigned long si_freeb;
15         unsigned long si_freei;
16         unsigned long si_lf_ioff;
17         unsigned long si_lf_sblk;
18         unsigned long si_lf_eblk;
19         unsigned long si_lasti;
20         char * si_imap;
21         struct buffer_head * si_sbh;            /* buffer header w/superblock */
22         struct bfs_super_block * si_bfs_sb;     /* superblock in si_sbh->b_data */
23 };
24
25 #endif  /* _LINUX_BFS_FS_SB */