xref: /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/reiserfs_xattr.h (revision 53ee8cc121a030b8d368113ac3e966b4705770ef)
1 /*
2   File: linux/reiserfs_xattr.h
3 */
4 
5 #ifndef _LINUX_REISERFS_XATTR_H
6 #define _LINUX_REISERFS_XATTR_H
7 
8 #include <linux/types.h>
9 
10 /* Magic value in header */
11 #define REISERFS_XATTR_MAGIC 0x52465841	/* "RFXA" */
12 
13 struct reiserfs_xattr_header {
14 	__le32 h_magic;		/* magic number for identification */
15 	__le32 h_hash;		/* hash of the value */
16 };
17 
18 
19 #endif  /*  _LINUX_REISERFS_XATTR_H  */
20