June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: /* 02: File: linux/reiserfs_xattr.h 03: */ 04: 05: #ifndef _LINUX_REISERFS_XATTR_H 06: #define _LINUX_REISERFS_XATTR_H 07: 08: #include <linux/types.h> 09: 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: struct reiserfs_security_handle { 19: char *name; 20: void *value; 21: size_t length; 22: }; 23: 24: 25: #endif /* _LINUX_REISERFS_XATTR_H */ 26: