reiserfs_xattr.h 470 B

123456789101112131415161718192021222324
  1. /*
  2. File: linux/reiserfs_xattr.h
  3. */
  4. #ifndef _LINUX_REISERFS_XATTR_H
  5. #define _LINUX_REISERFS_XATTR_H
  6. #include <linux/types.h>
  7. /* Magic value in header */
  8. #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
  9. struct reiserfs_xattr_header {
  10. __le32 h_magic; /* magic number for identification */
  11. __le32 h_hash; /* hash of the value */
  12. };
  13. struct reiserfs_security_handle {
  14. const char *name;
  15. void *value;
  16. size_t length;
  17. };
  18. #endif /* _LINUX_REISERFS_XATTR_H */