1 /*
2  *	include/linux/bfs_fs_i.h
3  *	Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com>
4  */
5 
6 #ifndef _LINUX_BFS_FS_I
7 #define _LINUX_BFS_FS_I
8 
9 /*
10  * BFS file system in-core inode info
11  */
12 struct bfs_inode_info {
13 	unsigned long i_dsk_ino; /* inode number from the disk, can be 0 */
14 	unsigned long i_sblock;
15 	unsigned long i_eblock;
16 };
17 
18 #endif	/* _LINUX_BFS_FS_I */
19