]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/gnu/fs/xfs/xfs_inum.h
This commit was generated by cvs2svn to compensate for changes in r156701,
[FreeBSD/FreeBSD.git] / sys / gnu / fs / xfs / xfs_inum.h
1 /*
2  * Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of version 2 of the GNU General Public License as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it would be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  *
12  * Further, this software is distributed without any warranty that it is
13  * free of the rightful claim of any third person regarding infringement
14  * or the like.  Any license provided herein, whether implied or
15  * otherwise, applies only to this software file.  Patent licenses, if
16  * any, provided herein do not apply to combinations of this program with
17  * other software, or any other product whatsoever.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write the Free Software Foundation, Inc., 59
21  * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  *
23  * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24  * Mountain View, CA  94043, or:
25  *
26  * http://www.sgi.com
27  *
28  * For further information regarding this notice, see:
29  *
30  * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31  */
32 #ifndef __XFS_INUM_H__
33 #define __XFS_INUM_H__
34
35 /*
36  * Inode number format:
37  * low inopblog bits - offset in block
38  * next agblklog bits - block number in ag
39  * next agno_log bits - ag number
40  * high agno_log-agblklog-inopblog bits - 0
41  */
42
43 typedef __uint32_t      xfs_agino_t;    /* within allocation grp inode number */
44
45 /*
46  * Useful inode bits for this kernel.
47  * Used in some places where having 64-bits in the 32-bit kernels
48  * costs too much.
49  */
50 #if XFS_BIG_INUMS
51 typedef xfs_ino_t       xfs_intino_t;
52 #else
53 typedef __uint32_t      xfs_intino_t;
54 #endif
55
56 #define NULLFSINO       ((xfs_ino_t)-1)
57 #define NULLAGINO       ((xfs_agino_t)-1)
58
59 struct xfs_mount;
60
61 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_MASK)
62 __uint32_t xfs_ino_mask(int k);
63 #endif
64
65 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_MASK)
66 #define XFS_INO_MASK(k)                 xfs_ino_mask(k)
67 #else
68 #define XFS_INO_MASK(k) ((__uint32_t)((1ULL << (k)) - 1))
69 #endif
70
71 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_OFFSET_BITS)
72 int xfs_ino_offset_bits(struct xfs_mount *mp);
73 #endif
74
75 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_OFFSET_BITS)
76 #define XFS_INO_OFFSET_BITS(mp)         xfs_ino_offset_bits(mp)
77 #else
78 #define XFS_INO_OFFSET_BITS(mp) ((mp)->m_sb.sb_inopblog)
79 #endif
80
81 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGBNO_BITS)
82 int xfs_ino_agbno_bits(struct xfs_mount *mp);
83 #endif
84
85 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGBNO_BITS)
86 #define XFS_INO_AGBNO_BITS(mp)          xfs_ino_agbno_bits(mp)
87 #else
88 #define XFS_INO_AGBNO_BITS(mp)  ((mp)->m_sb.sb_agblklog)
89 #endif
90
91 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGINO_BITS)
92 int xfs_ino_agino_bits(struct xfs_mount *mp);
93 #endif
94
95 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGINO_BITS)
96 #define XFS_INO_AGINO_BITS(mp)          xfs_ino_agino_bits(mp)
97 #else
98 #define XFS_INO_AGINO_BITS(mp)          ((mp)->m_agino_log)
99 #endif
100
101 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGNO_BITS)
102 int xfs_ino_agno_bits(struct xfs_mount *mp);
103 #endif
104
105 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_AGNO_BITS)
106 #define XFS_INO_AGNO_BITS(mp)           xfs_ino_agno_bits(mp)
107 #else
108 #define XFS_INO_AGNO_BITS(mp)   ((mp)->m_agno_log)
109 #endif
110
111 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_BITS)
112 int xfs_ino_bits(struct xfs_mount *mp);
113 #endif
114
115 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_BITS)
116 #define XFS_INO_BITS(mp)                xfs_ino_bits(mp)
117 #else
118 #define XFS_INO_BITS(mp)        (XFS_INO_AGNO_BITS(mp) + XFS_INO_AGINO_BITS(mp))
119 #endif
120
121 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGNO)
122 xfs_agnumber_t xfs_ino_to_agno(struct xfs_mount *mp, xfs_ino_t i);
123 #endif
124
125 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGNO)
126 #define XFS_INO_TO_AGNO(mp,i)           xfs_ino_to_agno(mp,i)
127 #else
128 #define XFS_INO_TO_AGNO(mp,i)   \
129         ((xfs_agnumber_t)((i) >> XFS_INO_AGINO_BITS(mp)))
130 #endif
131
132 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGINO)
133 xfs_agino_t xfs_ino_to_agino(struct xfs_mount *mp, xfs_ino_t i);
134 #endif
135
136 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGINO)
137 #define XFS_INO_TO_AGINO(mp,i)          xfs_ino_to_agino(mp,i)
138 #else
139 #define XFS_INO_TO_AGINO(mp,i)  \
140         ((xfs_agino_t)(i) & XFS_INO_MASK(XFS_INO_AGINO_BITS(mp)))
141 #endif
142
143 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGBNO)
144 xfs_agblock_t xfs_ino_to_agbno(struct xfs_mount *mp, xfs_ino_t i);
145 #endif
146
147 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_AGBNO)
148 #define XFS_INO_TO_AGBNO(mp,i)          xfs_ino_to_agbno(mp,i)
149 #else
150 #define XFS_INO_TO_AGBNO(mp,i)  \
151         (((xfs_agblock_t)(i) >> XFS_INO_OFFSET_BITS(mp)) & \
152          XFS_INO_MASK(XFS_INO_AGBNO_BITS(mp)))
153 #endif
154
155 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_OFFSET)
156 int xfs_ino_to_offset(struct xfs_mount *mp, xfs_ino_t i);
157 #endif
158
159 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_OFFSET)
160 #define XFS_INO_TO_OFFSET(mp,i)         xfs_ino_to_offset(mp,i)
161 #else
162 #define XFS_INO_TO_OFFSET(mp,i) \
163         ((int)(i) & XFS_INO_MASK(XFS_INO_OFFSET_BITS(mp)))
164 #endif
165
166 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_FSB)
167 xfs_fsblock_t xfs_ino_to_fsb(struct xfs_mount *mp, xfs_ino_t i);
168 #endif
169
170 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INO_TO_FSB)
171 #define XFS_INO_TO_FSB(mp,i)            xfs_ino_to_fsb(mp,i)
172 #else
173 #define XFS_INO_TO_FSB(mp,i)    \
174         XFS_AGB_TO_FSB(mp, XFS_INO_TO_AGNO(mp,i), XFS_INO_TO_AGBNO(mp,i))
175 #endif
176
177 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_INO)
178 xfs_ino_t
179 xfs_agino_to_ino(struct xfs_mount *mp, xfs_agnumber_t a, xfs_agino_t i);
180 #endif
181
182 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_INO)
183 #define XFS_AGINO_TO_INO(mp,a,i)        xfs_agino_to_ino(mp,a,i)
184 #else
185 #define XFS_AGINO_TO_INO(mp,a,i)        \
186         (((xfs_ino_t)(a) << XFS_INO_AGINO_BITS(mp)) | (i))
187 #endif
188
189 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_AGBNO)
190 xfs_agblock_t xfs_agino_to_agbno(struct xfs_mount *mp, xfs_agino_t i);
191 #endif
192
193 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_AGBNO)
194 #define XFS_AGINO_TO_AGBNO(mp,i)        xfs_agino_to_agbno(mp,i)
195 #else
196 #define XFS_AGINO_TO_AGBNO(mp,i)        ((i) >> XFS_INO_OFFSET_BITS(mp))
197 #endif
198
199 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_OFFSET)
200 int xfs_agino_to_offset(struct xfs_mount *mp, xfs_agino_t i);
201 #endif
202
203 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_AGINO_TO_OFFSET)
204 #define XFS_AGINO_TO_OFFSET(mp,i)       xfs_agino_to_offset(mp,i)
205 #else
206 #define XFS_AGINO_TO_OFFSET(mp,i)       \
207         ((i) & XFS_INO_MASK(XFS_INO_OFFSET_BITS(mp)))
208 #endif
209
210 #if XFS_WANT_FUNCS || XFS_WANT_FUNCS_C || (XFS_WANT_SPACE && XFSSO_XFS_OFFBNO_TO_AGINO)
211 xfs_agino_t xfs_offbno_to_agino(struct xfs_mount *mp, xfs_agblock_t b, int o);
212 #endif
213
214 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_OFFBNO_TO_AGINO)
215 #define XFS_OFFBNO_TO_AGINO(mp,b,o)     xfs_offbno_to_agino(mp,b,o)
216 #else
217 #define XFS_OFFBNO_TO_AGINO(mp,b,o)     \
218         ((xfs_agino_t)(((b) << XFS_INO_OFFSET_BITS(mp)) | (o)))
219 #endif
220
221 #if XFS_BIG_INUMS
222 #define XFS_MAXINUMBER          ((xfs_ino_t)((1ULL << 56) - 1ULL))
223 #define XFS_INO64_OFFSET        ((xfs_ino_t)(1ULL << 32))
224 #else
225 #define XFS_MAXINUMBER          ((xfs_ino_t)((1ULL << 32) - 1ULL))
226 #endif
227 #define XFS_MAXINUMBER_32       ((xfs_ino_t)((1ULL << 32) - 1ULL))
228
229 #endif  /* __XFS_INUM_H__ */