Merge tag 'xtensa-20180225' of git://github.com/jcmvbkbc/linux-xtensa
[cris-mirror.git] / include / uapi / linux / reiserfs_xattr.h
blob28f10842f047c0f0832ee83b0de9b4c833070988
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 File: linux/reiserfs_xattr.h
4 */
6 #ifndef _LINUX_REISERFS_XATTR_H
7 #define _LINUX_REISERFS_XATTR_H
9 #include <linux/types.h>
11 /* Magic value in header */
12 #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
14 struct reiserfs_xattr_header {
15 __le32 h_magic; /* magic number for identification */
16 __le32 h_hash; /* hash of the value */
19 struct reiserfs_security_handle {
20 const char *name;
21 void *value;
22 size_t length;
25 #endif /* _LINUX_REISERFS_XATTR_H */