/* File: linux/reiserfs_xattr.h */ #ifndef _LINUX_REISERFS_XATTR_H #define _LINUX_REISERFS_XATTR_H #include <linux/types.h> /* Magic value in header */ #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */ struct reiserfs_xattr_header { __le32 h_magic; /* magic number for identification */ __le32 h_hash; /* hash of the value */ }; struct reiserfs_security_handle { const char *name; void *value; size_t length; }; #endif /* _LINUX_REISERFS_XATTR_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp | |
andrew morton | andrew morton | 22 | 44.90% | 1 | 20.00% |
jeff mahoney | jeff mahoney | 16 | 32.65% | 1 | 20.00% |
adrian bunk | adrian bunk | 8 | 16.33% | 1 | 20.00% |
al viro | al viro | 2 | 4.08% | 1 | 20.00% |
tetsuo handa | tetsuo handa | 1 | 2.04% | 1 | 20.00% |
Total | 49 | 100.00% | 5 | 100.00% |