diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-01 22:38:42 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-01 22:38:42 -0500 |
commit | a844f4510dce23c07f3923cb42138f5fdd745017 (patch) | |
tree | ffb37e9e60f02d5e92bd69bb53b568e1c991c17f /fs/xfs/xfs_dir2_block.h | |
parent | 61c1e689fbde7cb50a76262bba190715d86beab6 (diff) |
[XFS] Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot.
SGI-PV: 943122
SGI-Modid: xfs-linux:xfs-kern:23901a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dir2_block.h')
-rw-r--r-- | fs/xfs/xfs_dir2_block.h | 62 |
1 files changed, 23 insertions, 39 deletions
diff --git a/fs/xfs/xfs_dir2_block.h b/fs/xfs/xfs_dir2_block.h index 5a578b84e246..70dcbe8976f7 100644 --- a/fs/xfs/xfs_dir2_block.h +++ b/fs/xfs/xfs_dir2_block.h | |||
@@ -74,53 +74,37 @@ typedef struct xfs_dir2_block { | |||
74 | /* | 74 | /* |
75 | * Pointer to the leaf header embedded in a data block (1-block format) | 75 | * Pointer to the leaf header embedded in a data block (1-block format) |
76 | */ | 76 | */ |
77 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_DIR2_BLOCK_TAIL_P) | ||
78 | xfs_dir2_block_tail_t * | ||
79 | xfs_dir2_block_tail_p(struct xfs_mount *mp, xfs_dir2_block_t *block); | ||
80 | #define XFS_DIR2_BLOCK_TAIL_P(mp,block) xfs_dir2_block_tail_p(mp,block) | 77 | #define XFS_DIR2_BLOCK_TAIL_P(mp,block) xfs_dir2_block_tail_p(mp,block) |
81 | #else | 78 | static inline xfs_dir2_block_tail_t * |
82 | #define XFS_DIR2_BLOCK_TAIL_P(mp,block) \ | 79 | xfs_dir2_block_tail_p(struct xfs_mount *mp, xfs_dir2_block_t *block) |
83 | (((xfs_dir2_block_tail_t *)((char *)(block) + (mp)->m_dirblksize)) - 1) | 80 | { |
84 | #endif | 81 | return (((xfs_dir2_block_tail_t *) |
82 | ((char *)(block) + (mp)->m_dirblksize)) - 1); | ||
83 | } | ||
85 | 84 | ||
86 | /* | 85 | /* |
87 | * Pointer to the leaf entries embedded in a data block (1-block format) | 86 | * Pointer to the leaf entries embedded in a data block (1-block format) |
88 | */ | 87 | */ |
89 | #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_DIR2_BLOCK_LEAF_P) | 88 | #define XFS_DIR2_BLOCK_LEAF_P(btp) xfs_dir2_block_leaf_p(btp) |
90 | struct xfs_dir2_leaf_entry *xfs_dir2_block_leaf_p(xfs_dir2_block_tail_t *btp); | 89 | static inline struct xfs_dir2_leaf_entry * |
91 | #define XFS_DIR2_BLOCK_LEAF_P(btp) \ | 90 | xfs_dir2_block_leaf_p(xfs_dir2_block_tail_t *btp) |
92 | xfs_dir2_block_leaf_p(btp) | 91 | { |
93 | #else | 92 | return (((struct xfs_dir2_leaf_entry *) |
94 | #define XFS_DIR2_BLOCK_LEAF_P(btp) \ | 93 | (btp)) - INT_GET((btp)->count, ARCH_CONVERT)); |
95 | (((struct xfs_dir2_leaf_entry *)(btp)) - INT_GET((btp)->count, ARCH_CONVERT)) | 94 | } |
96 | #endif | ||
97 | 95 | ||
98 | /* | 96 | /* |
99 | * Function declarations. | 97 | * Function declarations. |
100 | */ | 98 | */ |
101 | 99 | extern int xfs_dir2_block_addname(struct xfs_da_args *args); | |
102 | extern int | 100 | extern int xfs_dir2_block_getdents(struct xfs_trans *tp, struct xfs_inode *dp, |
103 | xfs_dir2_block_addname(struct xfs_da_args *args); | 101 | struct uio *uio, int *eofp, |
104 | 102 | struct xfs_dirent *dbp, xfs_dir2_put_t put); | |
105 | extern int | 103 | extern int xfs_dir2_block_lookup(struct xfs_da_args *args); |
106 | xfs_dir2_block_getdents(struct xfs_trans *tp, struct xfs_inode *dp, | 104 | extern int xfs_dir2_block_removename(struct xfs_da_args *args); |
107 | struct uio *uio, int *eofp, struct xfs_dirent *dbp, | 105 | extern int xfs_dir2_block_replace(struct xfs_da_args *args); |
108 | xfs_dir2_put_t put); | 106 | extern int xfs_dir2_leaf_to_block(struct xfs_da_args *args, |
109 | 107 | struct xfs_dabuf *lbp, struct xfs_dabuf *dbp); | |
110 | extern int | 108 | extern int xfs_dir2_sf_to_block(struct xfs_da_args *args); |
111 | xfs_dir2_block_lookup(struct xfs_da_args *args); | ||
112 | |||
113 | extern int | ||
114 | xfs_dir2_block_removename(struct xfs_da_args *args); | ||
115 | |||
116 | extern int | ||
117 | xfs_dir2_block_replace(struct xfs_da_args *args); | ||
118 | |||
119 | extern int | ||
120 | xfs_dir2_leaf_to_block(struct xfs_da_args *args, struct xfs_dabuf *lbp, | ||
121 | struct xfs_dabuf *dbp); | ||
122 | |||
123 | extern int | ||
124 | xfs_dir2_sf_to_block(struct xfs_da_args *args); | ||
125 | 109 | ||
126 | #endif /* __XFS_DIR2_BLOCK_H__ */ | 110 | #endif /* __XFS_DIR2_BLOCK_H__ */ |