- Linus: more PageDirty / swapcache handling
[davej-history.git] / include / linux / bfs_fs_sb.h
blobefdc30ec7241bdf12138743b24bd523dfce523dd
1 /*
2 * include/linux/bfs_fs_sb.h
3 * Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com>
4 */
6 #ifndef _LINUX_BFS_FS_SB
7 #define _LINUX_BFS_FS_SB
9 /*
10 * BFS file system in-core superblock info
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 */
25 #endif /* _LINUX_BFS_FS_SB */