reiserfs_xattr.h 533 B

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