reiserfs_xattr.h 464 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
  File: linux/reiserfs_xattr.h
*/

5 6 7 8
#ifndef _LINUX_REISERFS_XATTR_H
#define _LINUX_REISERFS_XATTR_H

#include <linux/types.h>
L
Linus Torvalds 已提交
9 10

/* Magic value in header */
11
#define REISERFS_XATTR_MAGIC 0x52465841	/* "RFXA" */
L
Linus Torvalds 已提交
12 13

struct reiserfs_xattr_header {
14 15
	__le32 h_magic;		/* magic number for identification */
	__le32 h_hash;		/* hash of the value */
L
Linus Torvalds 已提交
16 17
};

18 19 20 21 22 23
struct reiserfs_security_handle {
	char *name;
	void *value;
	size_t length;
};

24
#endif  /*  _LINUX_REISERFS_XATTR_H  */