repo.or.cz
/
davej-history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- pre3:
[davej-history.git]
/
include
/
linux
/
minix_fs_i.h
blob
c3711e52292b1ebefd8eb99851e65de570bbf498
1
#ifndef _MINIX_FS_I
2
#define _MINIX_FS_I
3
4
/*
5
* minix fs inode data in memory
6
*/
7
struct
minix_inode_info
{
8
union
{
9
__u16 i1_data
[
16
];
10
__u32 i2_data
[
16
];
11
}
u
;
12
};
13
14
#endif