Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /*
0003   File: linux/reiserfs_xattr.h
0004 */
0005 
0006 #ifndef _LINUX_REISERFS_XATTR_H
0007 #define _LINUX_REISERFS_XATTR_H
0008 
0009 #include <linux/types.h>
0010 
0011 /* Magic value in header */
0012 #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
0013 
0014 struct reiserfs_xattr_header {
0015     __le32 h_magic;     /* magic number for identification */
0016     __le32 h_hash;      /* hash of the value */
0017 };
0018 
0019 struct reiserfs_security_handle {
0020     const char *name;
0021     void *value;
0022     __kernel_size_t length;
0023 };
0024 
0025 #endif  /*  _LINUX_REISERFS_XATTR_H  */