diff options
Diffstat (limited to 'fs/xfs/xfs_attr_sf.h')
-rw-r--r-- | fs/xfs/xfs_attr_sf.h | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/fs/xfs/xfs_attr_sf.h b/fs/xfs/xfs_attr_sf.h index ef7d2942d306..c8001929deab 100644 --- a/fs/xfs/xfs_attr_sf.h +++ b/fs/xfs/xfs_attr_sf.h | |||
@@ -71,38 +71,17 @@ typedef struct xfs_attr_sf_sort { | |||
71 | char *name; /* name value, pointer into buffer */ | 71 | char *name; /* name value, pointer into buffer */ |
72 | } xfs_attr_sf_sort_t; | 72 | } xfs_attr_sf_sort_t; |
73 | 73 | ||
74 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_ATTR_SF_ENTSIZE_BYNAME) | ||
75 | int xfs_attr_sf_entsize_byname(int nlen, int vlen); | ||
76 | #define XFS_ATTR_SF_ENTSIZE_BYNAME(nlen,vlen) \ | ||
77 | xfs_attr_sf_entsize_byname(nlen,vlen) | ||
78 | #else | ||
79 | #define XFS_ATTR_SF_ENTSIZE_BYNAME(nlen,vlen) /* space name/value uses */ \ | 74 | #define XFS_ATTR_SF_ENTSIZE_BYNAME(nlen,vlen) /* space name/value uses */ \ |
80 | ((int)sizeof(xfs_attr_sf_entry_t)-1 + (nlen)+(vlen)) | 75 | (((int)sizeof(xfs_attr_sf_entry_t)-1 + (nlen)+(vlen))) |
81 | #endif | ||
82 | #define XFS_ATTR_SF_ENTSIZE_MAX /* max space for name&value */ \ | 76 | #define XFS_ATTR_SF_ENTSIZE_MAX /* max space for name&value */ \ |
83 | ((1 << (NBBY*(int)sizeof(__uint8_t))) - 1) | 77 | ((1 << (NBBY*(int)sizeof(__uint8_t))) - 1) |
84 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_ATTR_SF_ENTSIZE) | ||
85 | int xfs_attr_sf_entsize(xfs_attr_sf_entry_t *sfep); | ||
86 | #define XFS_ATTR_SF_ENTSIZE(sfep) xfs_attr_sf_entsize(sfep) | ||
87 | #else | ||
88 | #define XFS_ATTR_SF_ENTSIZE(sfep) /* space an entry uses */ \ | 78 | #define XFS_ATTR_SF_ENTSIZE(sfep) /* space an entry uses */ \ |
89 | ((int)sizeof(xfs_attr_sf_entry_t)-1 + (sfep)->namelen+(sfep)->valuelen) | 79 | ((int)sizeof(xfs_attr_sf_entry_t)-1 + (sfep)->namelen+(sfep)->valuelen) |
90 | #endif | ||
91 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_ATTR_SF_NEXTENTRY) | ||
92 | xfs_attr_sf_entry_t *xfs_attr_sf_nextentry(xfs_attr_sf_entry_t *sfep); | ||
93 | #define XFS_ATTR_SF_NEXTENTRY(sfep) xfs_attr_sf_nextentry(sfep) | ||
94 | #else | ||
95 | #define XFS_ATTR_SF_NEXTENTRY(sfep) /* next entry in struct */ \ | 80 | #define XFS_ATTR_SF_NEXTENTRY(sfep) /* next entry in struct */ \ |
96 | ((xfs_attr_sf_entry_t *) \ | 81 | ((xfs_attr_sf_entry_t *)((char *)(sfep) + XFS_ATTR_SF_ENTSIZE(sfep))) |
97 | ((char *)(sfep) + XFS_ATTR_SF_ENTSIZE(sfep))) | ||
98 | #endif | ||
99 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_ATTR_SF_TOTSIZE) | ||
100 | int xfs_attr_sf_totsize(struct xfs_inode *dp); | ||
101 | #define XFS_ATTR_SF_TOTSIZE(dp) xfs_attr_sf_totsize(dp) | ||
102 | #else | ||
103 | #define XFS_ATTR_SF_TOTSIZE(dp) /* total space in use */ \ | 82 | #define XFS_ATTR_SF_TOTSIZE(dp) /* total space in use */ \ |
104 | (INT_GET(((xfs_attr_shortform_t *)((dp)->i_afp->if_u1.if_data))->hdr.totsize, ARCH_CONVERT)) | 83 | (INT_GET(((xfs_attr_shortform_t *) \ |
105 | #endif | 84 | ((dp)->i_afp->if_u1.if_data))->hdr.totsize, ARCH_CONVERT)) |
106 | 85 | ||
107 | #if defined(XFS_ATTR_TRACE) | 86 | #if defined(XFS_ATTR_TRACE) |
108 | /* | 87 | /* |