]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/xfs/xfs_bmap.h
xfs: remove unused XFS_BMAPI_ flags
[net-next-2.6.git] / fs / xfs / xfs_bmap.h
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4
LT
17 */
18#ifndef __XFS_BMAP_H__
19#define __XFS_BMAP_H__
20
21struct getbmap;
22struct xfs_bmbt_irec;
4eea22f0 23struct xfs_ifork;
1da177e4
LT
24struct xfs_inode;
25struct xfs_mount;
26struct xfs_trans;
27
a8272ce0
DC
28extern kmem_zone_t *xfs_bmap_free_item_zone;
29
3e57ecf6
OW
30/*
31 * DELTA: describe a change to the in-core extent list.
32 *
33 * Internally the use of xed_blockount is somewhat funky.
34 * xed_blockcount contains an offset much of the time because this
35 * makes merging changes easier. (xfs_fileoff_t and xfs_filblks_t are
36 * the same underlying type).
37 */
38typedef struct xfs_extdelta
39{
40 xfs_fileoff_t xed_startoff; /* offset of range */
41 xfs_filblks_t xed_blockcount; /* blocks in range */
42} xfs_extdelta_t;
43
1da177e4
LT
44/*
45 * List of extents to be free "later".
46 * The list is kept sorted on xbf_startblock.
47 */
48typedef struct xfs_bmap_free_item
49{
50 xfs_fsblock_t xbfi_startblock;/* starting fs block number */
51 xfs_extlen_t xbfi_blockcount;/* number of blocks in extent */
52 struct xfs_bmap_free_item *xbfi_next; /* link to next entry */
53} xfs_bmap_free_item_t;
54
55/*
56 * Header for free extent list.
b877e3d3
LM
57 *
58 * xbf_low is used by the allocator to activate the lowspace algorithm -
59 * when free space is running low the extent allocator may choose to
60 * allocate an extent from an AG without leaving sufficient space for
61 * a btree split when inserting the new extent. In this case the allocator
62 * will enable the lowspace algorithm which is supposed to allow further
63 * allocations (such as btree splits and newroots) to allocate from
64 * sequential AGs. In order to avoid locking AGs out of order the lowspace
65 * algorithm will start searching for free space from AG 0. If the correct
66 * transaction reservations have been made then this algorithm will eventually
67 * find all the space it needs.
1da177e4
LT
68 */
69typedef struct xfs_bmap_free
70{
71 xfs_bmap_free_item_t *xbf_first; /* list of to-be-free extents */
72 int xbf_count; /* count of items on list */
b877e3d3 73 int xbf_low; /* alloc in low mode */
1da177e4
LT
74} xfs_bmap_free_t;
75
76#define XFS_BMAP_MAX_NMAP 4
77
78/*
79 * Flags for xfs_bmapi
80 */
81#define XFS_BMAPI_WRITE 0x001 /* write operation: allocate space */
82#define XFS_BMAPI_DELAY 0x002 /* delayed write operation */
83#define XFS_BMAPI_ENTIRE 0x004 /* return entire extent, not trimmed */
84#define XFS_BMAPI_METADATA 0x008 /* mapping metadata not user data */
cd8b0bb3
CH
85#define XFS_BMAPI_ATTRFORK 0x010 /* use attribute fork not data */
86#define XFS_BMAPI_RSVBLOCKS 0x020 /* OK to alloc. reserved data blocks */
87#define XFS_BMAPI_PREALLOC 0x040 /* preallocation op: unwritten space */
88#define XFS_BMAPI_IGSTATE 0x080 /* Ignore state - */
1da177e4 89 /* combine contig. space */
cd8b0bb3
CH
90#define XFS_BMAPI_CONTIG 0x100 /* must allocate only one extent */
91#define XFS_BMAPI_CONVERT 0x200 /* unwritten extent conversion - */
dd9f438e
NS
92 /* need write cache flushing and no */
93 /* additional allocation alignments */
1da177e4 94
0b1b213f
CH
95#define XFS_BMAPI_FLAGS \
96 { XFS_BMAPI_WRITE, "WRITE" }, \
97 { XFS_BMAPI_DELAY, "DELAY" }, \
98 { XFS_BMAPI_ENTIRE, "ENTIRE" }, \
99 { XFS_BMAPI_METADATA, "METADATA" }, \
0b1b213f 100 { XFS_BMAPI_ATTRFORK, "ATTRFORK" }, \
0b1b213f
CH
101 { XFS_BMAPI_RSVBLOCKS, "RSVBLOCKS" }, \
102 { XFS_BMAPI_PREALLOC, "PREALLOC" }, \
103 { XFS_BMAPI_IGSTATE, "IGSTATE" }, \
104 { XFS_BMAPI_CONTIG, "CONTIG" }, \
105 { XFS_BMAPI_CONVERT, "CONVERT" }
106
107
a844f451
NS
108static inline int xfs_bmapi_aflag(int w)
109{
110 return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
111}
1da177e4
LT
112
113/*
114 * Special values for xfs_bmbt_irec_t br_startblock field.
115 */
116#define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
117#define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
118
a844f451
NS
119static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
120{
1da177e4 121 ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
a844f451
NS
122 (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
123}
1da177e4
LT
124
125/*
126 * Argument structure for xfs_bmap_alloc.
127 */
128typedef struct xfs_bmalloca {
129 xfs_fsblock_t firstblock; /* i/o first block allocated */
130 xfs_fsblock_t rval; /* starting block of new extent */
131 xfs_fileoff_t off; /* offset in file filling in */
132 struct xfs_trans *tp; /* transaction pointer */
133 struct xfs_inode *ip; /* incore inode pointer */
134 struct xfs_bmbt_irec *prevp; /* extent before the new one */
135 struct xfs_bmbt_irec *gotp; /* extent after, or delayed */
136 xfs_extlen_t alen; /* i/o length asked/allocated */
137 xfs_extlen_t total; /* total blocks needed for xaction */
9da096fd 138 xfs_extlen_t minlen; /* minimum allocation size (blocks) */
1da177e4
LT
139 xfs_extlen_t minleft; /* amount must be left after alloc */
140 char eof; /* set if allocating past last extent */
141 char wasdel; /* replacing a delayed allocation */
142 char userdata;/* set if is user data */
143 char low; /* low on space, using seq'l ags */
dd9f438e
NS
144 char aeof; /* allocated space at eof */
145 char conv; /* overwriting unwritten extents */
1da177e4
LT
146} xfs_bmalloca_t;
147
7574aa92
CH
148/*
149 * Flags for xfs_bmap_add_extent*.
150 */
151#define BMAP_LEFT_CONTIG (1 << 0)
152#define BMAP_RIGHT_CONTIG (1 << 1)
153#define BMAP_LEFT_FILLING (1 << 2)
154#define BMAP_RIGHT_FILLING (1 << 3)
155#define BMAP_LEFT_DELAY (1 << 4)
156#define BMAP_RIGHT_DELAY (1 << 5)
157#define BMAP_LEFT_VALID (1 << 6)
158#define BMAP_RIGHT_VALID (1 << 7)
6ef35544 159#define BMAP_ATTRFORK (1 << 8)
7574aa92 160
0b1b213f
CH
161#define XFS_BMAP_EXT_FLAGS \
162 { BMAP_LEFT_CONTIG, "LC" }, \
163 { BMAP_RIGHT_CONTIG, "RC" }, \
164 { BMAP_LEFT_FILLING, "LF" }, \
165 { BMAP_RIGHT_FILLING, "RF" }, \
166 { BMAP_ATTRFORK, "ATTR" }
1da177e4
LT
167
168/*
169 * Add bmap trace insert entries for all the contents of the extent list.
0b1b213f
CH
170 *
171 * Quite excessive tracing. Only do this for debug builds.
1da177e4 172 */
0b1b213f 173#if defined(__KERNEL) && defined(DEBUG)
1da177e4
LT
174void
175xfs_bmap_trace_exlist(
1da177e4
LT
176 struct xfs_inode *ip, /* incore inode pointer */
177 xfs_extnum_t cnt, /* count of entries in list */
0b1b213f
CH
178 int whichfork,
179 unsigned long caller_ip); /* data or attr fork */
3a59c94c 180#define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
0b1b213f
CH
181 xfs_bmap_trace_exlist(ip,c,w, _THIS_IP_)
182#else
3a59c94c 183#define XFS_BMAP_TRACE_EXLIST(ip,c,w)
0b1b213f 184#endif
1da177e4
LT
185
186/*
187 * Convert inode from non-attributed to attributed.
188 * Must not be in a transaction, ip must not be locked.
189 */
190int /* error code */
191xfs_bmap_add_attrfork(
192 struct xfs_inode *ip, /* incore inode pointer */
d8cc890d
NS
193 int size, /* space needed for new attribute */
194 int rsvd); /* flag for reserved block allocation */
1da177e4
LT
195
196/*
197 * Add the extent to the list of extents to be free at transaction end.
198 * The list is maintained sorted (by block number).
199 */
200void
201xfs_bmap_add_free(
202 xfs_fsblock_t bno, /* fs block number of extent */
203 xfs_filblks_t len, /* length of extent */
204 xfs_bmap_free_t *flist, /* list of extents */
205 struct xfs_mount *mp); /* mount point structure */
206
207/*
208 * Routine to clean up the free list data structure when
209 * an error occurs during a transaction.
210 */
211void
212xfs_bmap_cancel(
213 xfs_bmap_free_t *flist); /* free list to clean up */
214
215/*
216 * Compute and fill in the value of the maximum depth of a bmap btree
217 * in this filesystem. Done once, during mount.
218 */
219void
220xfs_bmap_compute_maxlevels(
221 struct xfs_mount *mp, /* file system mount structure */
222 int whichfork); /* data or attr fork */
223
1da177e4
LT
224/*
225 * Returns the file-relative block number of the first unused block in the file.
226 * This is the lowest-address hole if the file has holes, else the first block
227 * past the end of file.
228 */
229int /* error */
230xfs_bmap_first_unused(
231 struct xfs_trans *tp, /* transaction pointer */
232 struct xfs_inode *ip, /* incore inode */
233 xfs_extlen_t len, /* size of hole to find */
234 xfs_fileoff_t *unused, /* unused block num */
235 int whichfork); /* data or attr fork */
236
237/*
238 * Returns the file-relative block number of the last block + 1 before
239 * last_block (input value) in the file.
240 * This is not based on i_size, it is based on the extent list.
241 * Returns 0 for local files, as they do not have an extent list.
242 */
243int /* error */
244xfs_bmap_last_before(
245 struct xfs_trans *tp, /* transaction pointer */
246 struct xfs_inode *ip, /* incore inode */
247 xfs_fileoff_t *last_block, /* last block */
248 int whichfork); /* data or attr fork */
249
250/*
251 * Returns the file-relative block number of the first block past eof in
252 * the file. This is not based on i_size, it is based on the extent list.
253 * Returns 0 for local files, as they do not have an extent list.
254 */
255int /* error */
256xfs_bmap_last_offset(
257 struct xfs_trans *tp, /* transaction pointer */
258 struct xfs_inode *ip, /* incore inode */
259 xfs_fileoff_t *unused, /* last block num */
260 int whichfork); /* data or attr fork */
261
262/*
263 * Returns whether the selected fork of the inode has exactly one
264 * block or not. For the data fork we check this matches di_size,
265 * implying the file's range is 0..bsize-1.
266 */
267int
268xfs_bmap_one_block(
269 struct xfs_inode *ip, /* incore inode */
270 int whichfork); /* data or attr fork */
271
272/*
273 * Read in the extents to iu_extents.
274 * All inode fields are set up by caller, we just traverse the btree
275 * and copy the records in.
276 */
277int /* error */
278xfs_bmap_read_extents(
279 struct xfs_trans *tp, /* transaction pointer */
280 struct xfs_inode *ip, /* incore inode */
281 int whichfork); /* data or attr fork */
282
283/*
284 * Map file blocks to filesystem blocks.
285 * File range is given by the bno/len pair.
286 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
287 * into a hole or past eof.
288 * Only allocates blocks from a single allocation group,
289 * to avoid locking problems.
290 * The returned value in "firstblock" from the first call in a transaction
291 * must be remembered and presented to subsequent calls in "firstblock".
292 * An upper bound for the number of blocks to be allocated is supplied to
293 * the first call in "total"; if no allocation group has that many free
294 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
295 */
296int /* error */
297xfs_bmapi(
298 struct xfs_trans *tp, /* transaction pointer */
299 struct xfs_inode *ip, /* incore inode */
300 xfs_fileoff_t bno, /* starting file offs. mapped */
301 xfs_filblks_t len, /* length to map in file */
302 int flags, /* XFS_BMAPI_... */
303 xfs_fsblock_t *firstblock, /* first allocated block
304 controls a.g. for allocs */
305 xfs_extlen_t total, /* total blocks needed */
306 struct xfs_bmbt_irec *mval, /* output: map values */
307 int *nmap, /* i/o: mval size/count */
3e57ecf6
OW
308 xfs_bmap_free_t *flist, /* i/o: list extents to free */
309 xfs_extdelta_t *delta); /* o: change made to incore
310 extents */
1da177e4
LT
311
312/*
313 * Map file blocks to filesystem blocks, simple version.
314 * One block only, read-only.
315 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
316 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
317 * was set and all the others were clear.
318 */
319int /* error */
320xfs_bmapi_single(
321 struct xfs_trans *tp, /* transaction pointer */
322 struct xfs_inode *ip, /* incore inode */
323 int whichfork, /* data or attr fork */
324 xfs_fsblock_t *fsb, /* output: mapped block */
325 xfs_fileoff_t bno); /* starting file offs. mapped */
326
327/*
328 * Unmap (remove) blocks from a file.
329 * If nexts is nonzero then the number of extents to remove is limited to
330 * that value. If not all extents in the block range can be removed then
331 * *done is set.
332 */
333int /* error */
334xfs_bunmapi(
335 struct xfs_trans *tp, /* transaction pointer */
336 struct xfs_inode *ip, /* incore inode */
337 xfs_fileoff_t bno, /* starting offset to unmap */
338 xfs_filblks_t len, /* length to unmap in file */
339 int flags, /* XFS_BMAPI_... */
340 xfs_extnum_t nexts, /* number of extents max */
341 xfs_fsblock_t *firstblock, /* first allocated block
342 controls a.g. for allocs */
343 xfs_bmap_free_t *flist, /* i/o: list extents to free */
3e57ecf6
OW
344 xfs_extdelta_t *delta, /* o: change made to incore
345 extents */
1da177e4
LT
346 int *done); /* set if not done yet */
347
847fff5c
BN
348/*
349 * Check an extent list, which has just been read, for
350 * any bit in the extent flag field.
351 */
352int
353xfs_check_nostate_extents(
354 struct xfs_ifork *ifp,
355 xfs_extnum_t idx,
356 xfs_extnum_t num);
357
1a5902c5
CH
358uint
359xfs_default_attroffset(
360 struct xfs_inode *ip);
361
847fff5c
BN
362#ifdef __KERNEL__
363
364/*
365 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
366 * caller. Frees all the extents that need freeing, which must be done
367 * last due to locking considerations.
368 *
369 * Return 1 if the given transaction was committed and a new one allocated,
370 * and 0 otherwise.
371 */
372int /* error */
373xfs_bmap_finish(
374 struct xfs_trans **tp, /* transaction pointer addr */
375 xfs_bmap_free_t *flist, /* i/o: list extents to free */
376 int *committed); /* xact committed or not */
377
8a7141a8
ES
378/* bmap to userspace formatter - copy to user & advance pointer */
379typedef int (*xfs_bmap_format_t)(void **, struct getbmapx *, int *);
380
1da177e4 381/*
8a7141a8 382 * Get inode's extents as described in bmv, and format for output.
1da177e4
LT
383 */
384int /* error code */
385xfs_getbmap(
993386c1 386 xfs_inode_t *ip,
8a7141a8
ES
387 struct getbmapx *bmv, /* user bmap structure */
388 xfs_bmap_format_t formatter, /* format to user */
389 void *arg); /* formatter arg */
1da177e4 390
1da177e4
LT
391/*
392 * Check if the endoff is outside the last extent. If so the caller will grow
393 * the allocation to a stripe unit boundary
394 */
395int
396xfs_bmap_eof(
397 struct xfs_inode *ip,
398 xfs_fileoff_t endoff,
399 int whichfork,
400 int *eof);
401
402/*
403 * Count fsblocks of the given fork.
404 */
405int
406xfs_bmap_count_blocks(
407 xfs_trans_t *tp,
408 struct xfs_inode *ip,
409 int whichfork,
410 int *count);
411
1da177e4
LT
412#endif /* __KERNEL__ */
413
414#endif /* __XFS_BMAP_H__ */