JFS: make special inodes play nicely with page balancing
[safe/jmp/linux-2.6] / fs / jfs / jfs_dmap.c
1 /*
2  *   Copyright (C) International Business Machines Corp., 2000-2004
3  *
4  *   This program is free software;  you can redistribute it and/or modify
5  *   it under the terms of the GNU General Public License as published by
6  *   the Free Software Foundation; either version 2 of the License, or 
7  *   (at your option) any later version.
8  * 
9  *   This program is distributed in the hope that it will be useful,
10  *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
12  *   the GNU General Public License for more details.
13  *
14  *   You should have received a copy of the GNU General Public License
15  *   along with this program;  if not, write to the Free Software 
16  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */
18
19 #include <linux/fs.h>
20 #include "jfs_incore.h"
21 #include "jfs_superblock.h"
22 #include "jfs_dmap.h"
23 #include "jfs_imap.h"
24 #include "jfs_lock.h"
25 #include "jfs_metapage.h"
26 #include "jfs_debug.h"
27
28 /*
29  *      SERIALIZATION of the Block Allocation Map.
30  *
31  *      the working state of the block allocation map is accessed in
32  *      two directions:
33  *      
34  *      1) allocation and free requests that start at the dmap
35  *         level and move up through the dmap control pages (i.e.
36  *         the vast majority of requests).
37  * 
38  *      2) allocation requests that start at dmap control page
39  *         level and work down towards the dmaps.
40  *      
41  *      the serialization scheme used here is as follows. 
42  *
43  *      requests which start at the bottom are serialized against each 
44  *      other through buffers and each requests holds onto its buffers 
45  *      as it works it way up from a single dmap to the required level 
46  *      of dmap control page.
47  *      requests that start at the top are serialized against each other
48  *      and request that start from the bottom by the multiple read/single
49  *      write inode lock of the bmap inode. requests starting at the top
50  *      take this lock in write mode while request starting at the bottom
51  *      take the lock in read mode.  a single top-down request may proceed
52  *      exclusively while multiple bottoms-up requests may proceed 
53  *      simultaneously (under the protection of busy buffers).
54  *      
55  *      in addition to information found in dmaps and dmap control pages,
56  *      the working state of the block allocation map also includes read/
57  *      write information maintained in the bmap descriptor (i.e. total
58  *      free block count, allocation group level free block counts).
59  *      a single exclusive lock (BMAP_LOCK) is used to guard this information
60  *      in the face of multiple-bottoms up requests.
61  *      (lock ordering: IREAD_LOCK, BMAP_LOCK);
62  *      
63  *      accesses to the persistent state of the block allocation map (limited
64  *      to the persistent bitmaps in dmaps) is guarded by (busy) buffers.
65  */
66
67 #define BMAP_LOCK_INIT(bmp)     init_MUTEX(&bmp->db_bmaplock)
68 #define BMAP_LOCK(bmp)          down(&bmp->db_bmaplock)
69 #define BMAP_UNLOCK(bmp)        up(&bmp->db_bmaplock)
70
71 /*
72  * forward references
73  */
74 static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
75                         int nblocks);
76 static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval);
77 static void dbBackSplit(dmtree_t * tp, int leafno);
78 static int dbJoin(dmtree_t * tp, int leafno, int newval);
79 static void dbAdjTree(dmtree_t * tp, int leafno, int newval);
80 static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc,
81                     int level);
82 static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results);
83 static int dbAllocNext(struct bmap * bmp, struct dmap * dp, s64 blkno,
84                        int nblocks);
85 static int dbAllocNear(struct bmap * bmp, struct dmap * dp, s64 blkno,
86                        int nblocks,
87                        int l2nb, s64 * results);
88 static int dbAllocDmap(struct bmap * bmp, struct dmap * dp, s64 blkno,
89                        int nblocks);
90 static int dbAllocDmapLev(struct bmap * bmp, struct dmap * dp, int nblocks,
91                           int l2nb,
92                           s64 * results);
93 static int dbAllocAG(struct bmap * bmp, int agno, s64 nblocks, int l2nb,
94                      s64 * results);
95 static int dbAllocCtl(struct bmap * bmp, s64 nblocks, int l2nb, s64 blkno,
96                       s64 * results);
97 static int dbExtend(struct inode *ip, s64 blkno, s64 nblocks, s64 addnblocks);
98 static int dbFindBits(u32 word, int l2nb);
99 static int dbFindCtl(struct bmap * bmp, int l2nb, int level, s64 * blkno);
100 static int dbFindLeaf(dmtree_t * tp, int l2nb, int *leafidx);
101 static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
102                       int nblocks);
103 static int dbFreeDmap(struct bmap * bmp, struct dmap * dp, s64 blkno,
104                       int nblocks);
105 static int dbMaxBud(u8 * cp);
106 s64 dbMapFileSizeToMapSize(struct inode *ipbmap);
107 static int blkstol2(s64 nb);
108
109 static int cntlz(u32 value);
110 static int cnttz(u32 word);
111
112 static int dbAllocDmapBU(struct bmap * bmp, struct dmap * dp, s64 blkno,
113                          int nblocks);
114 static int dbInitDmap(struct dmap * dp, s64 blkno, int nblocks);
115 static int dbInitDmapTree(struct dmap * dp);
116 static int dbInitTree(struct dmaptree * dtp);
117 static int dbInitDmapCtl(struct dmapctl * dcp, int level, int i);
118 static int dbGetL2AGSize(s64 nblocks);
119
120 /*
121  *      buddy table
122  *
123  * table used for determining buddy sizes within characters of 
124  * dmap bitmap words.  the characters themselves serve as indexes
125  * into the table, with the table elements yielding the maximum
126  * binary buddy of free bits within the character.
127  */
128 static s8 budtab[256] = {
129         3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
130         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
131         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
132         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
133         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
134         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
135         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
136         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
137         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
138         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
139         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
140         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
141         2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
142         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
143         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0,
144         2, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1
145 };
146
147
148 /*
149  * NAME:        dbMount()
150  *
151  * FUNCTION:    initializate the block allocation map.
152  *
153  *              memory is allocated for the in-core bmap descriptor and
154  *              the in-core descriptor is initialized from disk.
155  *
156  * PARAMETERS:
157  *      ipbmap  -  pointer to in-core inode for the block map.
158  *
159  * RETURN VALUES:
160  *      0       - success
161  *      -ENOMEM - insufficient memory
162  *      -EIO    - i/o error
163  */
164 int dbMount(struct inode *ipbmap)
165 {
166         struct bmap *bmp;
167         struct dbmap_disk *dbmp_le;
168         struct metapage *mp;
169         int i;
170
171         /*
172          * allocate/initialize the in-memory bmap descriptor
173          */
174         /* allocate memory for the in-memory bmap descriptor */
175         bmp = kmalloc(sizeof(struct bmap), GFP_KERNEL);
176         if (bmp == NULL)
177                 return -ENOMEM;
178
179         /* read the on-disk bmap descriptor. */
180         mp = read_metapage(ipbmap,
181                            BMAPBLKNO << JFS_SBI(ipbmap->i_sb)->l2nbperpage,
182                            PSIZE, 0);
183         if (mp == NULL) {
184                 kfree(bmp);
185                 return -EIO;
186         }
187
188         /* copy the on-disk bmap descriptor to its in-memory version. */
189         dbmp_le = (struct dbmap_disk *) mp->data;
190         bmp->db_mapsize = le64_to_cpu(dbmp_le->dn_mapsize);
191         bmp->db_nfree = le64_to_cpu(dbmp_le->dn_nfree);
192         bmp->db_l2nbperpage = le32_to_cpu(dbmp_le->dn_l2nbperpage);
193         bmp->db_numag = le32_to_cpu(dbmp_le->dn_numag);
194         bmp->db_maxlevel = le32_to_cpu(dbmp_le->dn_maxlevel);
195         bmp->db_maxag = le32_to_cpu(dbmp_le->dn_maxag);
196         bmp->db_agpref = le32_to_cpu(dbmp_le->dn_agpref);
197         bmp->db_aglevel = le32_to_cpu(dbmp_le->dn_aglevel);
198         bmp->db_agheigth = le32_to_cpu(dbmp_le->dn_agheigth);
199         bmp->db_agwidth = le32_to_cpu(dbmp_le->dn_agwidth);
200         bmp->db_agstart = le32_to_cpu(dbmp_le->dn_agstart);
201         bmp->db_agl2size = le32_to_cpu(dbmp_le->dn_agl2size);
202         for (i = 0; i < MAXAG; i++)
203                 bmp->db_agfree[i] = le64_to_cpu(dbmp_le->dn_agfree[i]);
204         bmp->db_agsize = le64_to_cpu(dbmp_le->dn_agsize);
205         bmp->db_maxfreebud = dbmp_le->dn_maxfreebud;
206
207         /* release the buffer. */
208         release_metapage(mp);
209
210         /* bind the bmap inode and the bmap descriptor to each other. */
211         bmp->db_ipbmap = ipbmap;
212         JFS_SBI(ipbmap->i_sb)->bmap = bmp;
213
214         memset(bmp->db_active, 0, sizeof(bmp->db_active));
215
216         /*
217          * allocate/initialize the bmap lock
218          */
219         BMAP_LOCK_INIT(bmp);
220
221         return (0);
222 }
223
224
225 /*
226  * NAME:        dbUnmount()
227  *
228  * FUNCTION:    terminate the block allocation map in preparation for
229  *              file system unmount.
230  *
231  *              the in-core bmap descriptor is written to disk and
232  *              the memory for this descriptor is freed.
233  *
234  * PARAMETERS:
235  *      ipbmap  -  pointer to in-core inode for the block map.
236  *
237  * RETURN VALUES:
238  *      0       - success
239  *      -EIO    - i/o error
240  */
241 int dbUnmount(struct inode *ipbmap, int mounterror)
242 {
243         struct bmap *bmp = JFS_SBI(ipbmap->i_sb)->bmap;
244
245         if (!(mounterror || isReadOnly(ipbmap)))
246                 dbSync(ipbmap);
247
248         /*
249          * Invalidate the page cache buffers
250          */
251         truncate_inode_pages(ipbmap->i_mapping, 0);
252
253         /* free the memory for the in-memory bmap. */
254         kfree(bmp);
255
256         return (0);
257 }
258
259 /*
260  *      dbSync()
261  */
262 int dbSync(struct inode *ipbmap)
263 {
264         struct dbmap_disk *dbmp_le;
265         struct bmap *bmp = JFS_SBI(ipbmap->i_sb)->bmap;
266         struct metapage *mp;
267         int i;
268
269         /*
270          * write bmap global control page
271          */
272         /* get the buffer for the on-disk bmap descriptor. */
273         mp = read_metapage(ipbmap,
274                            BMAPBLKNO << JFS_SBI(ipbmap->i_sb)->l2nbperpage,
275                            PSIZE, 0);
276         if (mp == NULL) {
277                 jfs_err("dbSync: read_metapage failed!");
278                 return -EIO;
279         }
280         /* copy the in-memory version of the bmap to the on-disk version */
281         dbmp_le = (struct dbmap_disk *) mp->data;
282         dbmp_le->dn_mapsize = cpu_to_le64(bmp->db_mapsize);
283         dbmp_le->dn_nfree = cpu_to_le64(bmp->db_nfree);
284         dbmp_le->dn_l2nbperpage = cpu_to_le32(bmp->db_l2nbperpage);
285         dbmp_le->dn_numag = cpu_to_le32(bmp->db_numag);
286         dbmp_le->dn_maxlevel = cpu_to_le32(bmp->db_maxlevel);
287         dbmp_le->dn_maxag = cpu_to_le32(bmp->db_maxag);
288         dbmp_le->dn_agpref = cpu_to_le32(bmp->db_agpref);
289         dbmp_le->dn_aglevel = cpu_to_le32(bmp->db_aglevel);
290         dbmp_le->dn_agheigth = cpu_to_le32(bmp->db_agheigth);
291         dbmp_le->dn_agwidth = cpu_to_le32(bmp->db_agwidth);
292         dbmp_le->dn_agstart = cpu_to_le32(bmp->db_agstart);
293         dbmp_le->dn_agl2size = cpu_to_le32(bmp->db_agl2size);
294         for (i = 0; i < MAXAG; i++)
295                 dbmp_le->dn_agfree[i] = cpu_to_le64(bmp->db_agfree[i]);
296         dbmp_le->dn_agsize = cpu_to_le64(bmp->db_agsize);
297         dbmp_le->dn_maxfreebud = bmp->db_maxfreebud;
298
299         /* write the buffer */
300         write_metapage(mp);
301
302         /*
303          * write out dirty pages of bmap
304          */
305         filemap_fdatawrite(ipbmap->i_mapping);
306         filemap_fdatawait(ipbmap->i_mapping);
307
308         diWriteSpecial(ipbmap, 0);
309
310         return (0);
311 }
312
313
314 /*
315  * NAME:        dbFree()
316  *
317  * FUNCTION:    free the specified block range from the working block
318  *              allocation map.
319  *
320  *              the blocks will be free from the working map one dmap
321  *              at a time.
322  *
323  * PARAMETERS:
324  *      ip      -  pointer to in-core inode;
325  *      blkno   -  starting block number to be freed.
326  *      nblocks -  number of blocks to be freed.
327  *
328  * RETURN VALUES:
329  *      0       - success
330  *      -EIO    - i/o error
331  */
332 int dbFree(struct inode *ip, s64 blkno, s64 nblocks)
333 {
334         struct metapage *mp;
335         struct dmap *dp;
336         int nb, rc;
337         s64 lblkno, rem;
338         struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
339         struct bmap *bmp = JFS_SBI(ip->i_sb)->bmap;
340
341         IREAD_LOCK(ipbmap);
342
343         /* block to be freed better be within the mapsize. */
344         if (unlikely((blkno == 0) || (blkno + nblocks > bmp->db_mapsize))) {
345                 IREAD_UNLOCK(ipbmap);
346                 printk(KERN_ERR "blkno = %Lx, nblocks = %Lx\n",
347                        (unsigned long long) blkno,
348                        (unsigned long long) nblocks);
349                 jfs_error(ip->i_sb,
350                           "dbFree: block to be freed is outside the map");
351                 return -EIO;
352         }
353
354         /*
355          * free the blocks a dmap at a time.
356          */
357         mp = NULL;
358         for (rem = nblocks; rem > 0; rem -= nb, blkno += nb) {
359                 /* release previous dmap if any */
360                 if (mp) {
361                         write_metapage(mp);
362                 }
363
364                 /* get the buffer for the current dmap. */
365                 lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
366                 mp = read_metapage(ipbmap, lblkno, PSIZE, 0);
367                 if (mp == NULL) {
368                         IREAD_UNLOCK(ipbmap);
369                         return -EIO;
370                 }
371                 dp = (struct dmap *) mp->data;
372
373                 /* determine the number of blocks to be freed from
374                  * this dmap.
375                  */
376                 nb = min(rem, BPERDMAP - (blkno & (BPERDMAP - 1)));
377
378                 /* free the blocks. */
379                 if ((rc = dbFreeDmap(bmp, dp, blkno, nb))) {
380                         jfs_error(ip->i_sb, "dbFree: error in block map\n");
381                         release_metapage(mp);
382                         IREAD_UNLOCK(ipbmap);
383                         return (rc);
384                 }
385         }
386
387         /* write the last buffer. */
388         write_metapage(mp);
389
390         IREAD_UNLOCK(ipbmap);
391
392         return (0);
393 }
394
395
396 /*
397  * NAME:        dbUpdatePMap()
398  *
399  * FUNCTION:    update the allocation state (free or allocate) of the
400  *              specified block range in the persistent block allocation map.
401  *              
402  *              the blocks will be updated in the persistent map one
403  *              dmap at a time.
404  *
405  * PARAMETERS:
406  *      ipbmap  -  pointer to in-core inode for the block map.
407  *      free    - TRUE if block range is to be freed from the persistent
408  *                map; FALSE if it is to   be allocated.
409  *      blkno   -  starting block number of the range.
410  *      nblocks -  number of contiguous blocks in the range.
411  *      tblk    -  transaction block;
412  *
413  * RETURN VALUES:
414  *      0       - success
415  *      -EIO    - i/o error
416  */
417 int
418 dbUpdatePMap(struct inode *ipbmap,
419              int free, s64 blkno, s64 nblocks, struct tblock * tblk)
420 {
421         int nblks, dbitno, wbitno, rbits;
422         int word, nbits, nwords;
423         struct bmap *bmp = JFS_SBI(ipbmap->i_sb)->bmap;
424         s64 lblkno, rem, lastlblkno;
425         u32 mask;
426         struct dmap *dp;
427         struct metapage *mp;
428         struct jfs_log *log;
429         int lsn, difft, diffp;
430         unsigned long flags;
431
432         /* the blocks better be within the mapsize. */
433         if (blkno + nblocks > bmp->db_mapsize) {
434                 printk(KERN_ERR "blkno = %Lx, nblocks = %Lx\n",
435                        (unsigned long long) blkno,
436                        (unsigned long long) nblocks);
437                 jfs_error(ipbmap->i_sb,
438                           "dbUpdatePMap: blocks are outside the map");
439                 return -EIO;
440         }
441
442         /* compute delta of transaction lsn from log syncpt */
443         lsn = tblk->lsn;
444         log = (struct jfs_log *) JFS_SBI(tblk->sb)->log;
445         logdiff(difft, lsn, log);
446
447         /*
448          * update the block state a dmap at a time.
449          */
450         mp = NULL;
451         lastlblkno = 0;
452         for (rem = nblocks; rem > 0; rem -= nblks, blkno += nblks) {
453                 /* get the buffer for the current dmap. */
454                 lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
455                 if (lblkno != lastlblkno) {
456                         if (mp) {
457                                 write_metapage(mp);
458                         }
459
460                         mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE,
461                                            0);
462                         if (mp == NULL)
463                                 return -EIO;
464                         metapage_wait_for_io(mp);
465                 }
466                 dp = (struct dmap *) mp->data;
467
468                 /* determine the bit number and word within the dmap of
469                  * the starting block.  also determine how many blocks
470                  * are to be updated within this dmap.
471                  */
472                 dbitno = blkno & (BPERDMAP - 1);
473                 word = dbitno >> L2DBWORD;
474                 nblks = min(rem, (s64)BPERDMAP - dbitno);
475
476                 /* update the bits of the dmap words. the first and last
477                  * words may only have a subset of their bits updated. if
478                  * this is the case, we'll work against that word (i.e.
479                  * partial first and/or last) only in a single pass.  a 
480                  * single pass will also be used to update all words that
481                  * are to have all their bits updated.
482                  */
483                 for (rbits = nblks; rbits > 0;
484                      rbits -= nbits, dbitno += nbits) {
485                         /* determine the bit number within the word and
486                          * the number of bits within the word.
487                          */
488                         wbitno = dbitno & (DBWORD - 1);
489                         nbits = min(rbits, DBWORD - wbitno);
490
491                         /* check if only part of the word is to be updated. */
492                         if (nbits < DBWORD) {
493                                 /* update (free or allocate) the bits
494                                  * in this word.
495                                  */
496                                 mask =
497                                     (ONES << (DBWORD - nbits) >> wbitno);
498                                 if (free)
499                                         dp->pmap[word] &=
500                                             cpu_to_le32(~mask);
501                                 else
502                                         dp->pmap[word] |=
503                                             cpu_to_le32(mask);
504
505                                 word += 1;
506                         } else {
507                                 /* one or more words are to have all
508                                  * their bits updated.  determine how
509                                  * many words and how many bits.
510                                  */
511                                 nwords = rbits >> L2DBWORD;
512                                 nbits = nwords << L2DBWORD;
513
514                                 /* update (free or allocate) the bits
515                                  * in these words.
516                                  */
517                                 if (free)
518                                         memset(&dp->pmap[word], 0,
519                                                nwords * 4);
520                                 else
521                                         memset(&dp->pmap[word], (int) ONES,
522                                                nwords * 4);
523
524                                 word += nwords;
525                         }
526                 }
527
528                 /*
529                  * update dmap lsn
530                  */
531                 if (lblkno == lastlblkno)
532                         continue;
533
534                 lastlblkno = lblkno;
535
536                 if (mp->lsn != 0) {
537                         /* inherit older/smaller lsn */
538                         logdiff(diffp, mp->lsn, log);
539                         LOGSYNC_LOCK(log, flags);
540                         if (difft < diffp) {
541                                 mp->lsn = lsn;
542
543                                 /* move bp after tblock in logsync list */
544                                 list_move(&mp->synclist, &tblk->synclist);
545                         }
546
547                         /* inherit younger/larger clsn */
548                         logdiff(difft, tblk->clsn, log);
549                         logdiff(diffp, mp->clsn, log);
550                         if (difft > diffp)
551                                 mp->clsn = tblk->clsn;
552                         LOGSYNC_UNLOCK(log, flags);
553                 } else {
554                         mp->log = log;
555                         mp->lsn = lsn;
556
557                         /* insert bp after tblock in logsync list */
558                         LOGSYNC_LOCK(log, flags);
559
560                         log->count++;
561                         list_add(&mp->synclist, &tblk->synclist);
562
563                         mp->clsn = tblk->clsn;
564                         LOGSYNC_UNLOCK(log, flags);
565                 }
566         }
567
568         /* write the last buffer. */
569         if (mp) {
570                 write_metapage(mp);
571         }
572
573         return (0);
574 }
575
576
577 /*
578  * NAME:        dbNextAG()
579  *
580  * FUNCTION:    find the preferred allocation group for new allocations.
581  *
582  *              Within the allocation groups, we maintain a preferred
583  *              allocation group which consists of a group with at least
584  *              average free space.  It is the preferred group that we target
585  *              new inode allocation towards.  The tie-in between inode
586  *              allocation and block allocation occurs as we allocate the
587  *              first (data) block of an inode and specify the inode (block)
588  *              as the allocation hint for this block.
589  *
590  *              We try to avoid having more than one open file growing in
591  *              an allocation group, as this will lead to fragmentation.
592  *              This differs from the old OS/2 method of trying to keep
593  *              empty ags around for large allocations.
594  *
595  * PARAMETERS:
596  *      ipbmap  -  pointer to in-core inode for the block map.
597  *
598  * RETURN VALUES:
599  *      the preferred allocation group number.
600  */
601 int dbNextAG(struct inode *ipbmap)
602 {
603         s64 avgfree;
604         int agpref;
605         s64 hwm = 0;
606         int i;
607         int next_best = -1;
608         struct bmap *bmp = JFS_SBI(ipbmap->i_sb)->bmap;
609
610         BMAP_LOCK(bmp);
611
612         /* determine the average number of free blocks within the ags. */
613         avgfree = (u32)bmp->db_nfree / bmp->db_numag;
614
615         /*
616          * if the current preferred ag does not have an active allocator
617          * and has at least average freespace, return it
618          */
619         agpref = bmp->db_agpref;
620         if ((atomic_read(&bmp->db_active[agpref]) == 0) &&
621             (bmp->db_agfree[agpref] >= avgfree))
622                 goto unlock;
623
624         /* From the last preferred ag, find the next one with at least
625          * average free space.
626          */
627         for (i = 0 ; i < bmp->db_numag; i++, agpref++) {
628                 if (agpref == bmp->db_numag)
629                         agpref = 0;
630
631                 if (atomic_read(&bmp->db_active[agpref]))
632                         /* open file is currently growing in this ag */
633                         continue;
634                 if (bmp->db_agfree[agpref] >= avgfree) {
635                         /* Return this one */
636                         bmp->db_agpref = agpref;
637                         goto unlock;
638                 } else if (bmp->db_agfree[agpref] > hwm) {
639                         /* Less than avg. freespace, but best so far */
640                         hwm = bmp->db_agfree[agpref];
641                         next_best = agpref;
642                 }
643         }
644
645         /*
646          * If no inactive ag was found with average freespace, use the
647          * next best
648          */
649         if (next_best != -1)
650                 bmp->db_agpref = next_best;
651         /* else leave db_agpref unchanged */
652 unlock:
653         BMAP_UNLOCK(bmp);
654
655         /* return the preferred group.
656          */
657         return (bmp->db_agpref);
658 }
659
660 /*
661  * NAME:        dbAlloc()
662  *
663  * FUNCTION:    attempt to allocate a specified number of contiguous free
664  *              blocks from the working allocation block map.
665  *
666  *              the block allocation policy uses hints and a multi-step
667  *              approach.
668  *
669  *              for allocation requests smaller than the number of blocks
670  *              per dmap, we first try to allocate the new blocks
671  *              immediately following the hint.  if these blocks are not
672  *              available, we try to allocate blocks near the hint.  if
673  *              no blocks near the hint are available, we next try to 
674  *              allocate within the same dmap as contains the hint.
675  *
676  *              if no blocks are available in the dmap or the allocation
677  *              request is larger than the dmap size, we try to allocate
678  *              within the same allocation group as contains the hint. if
679  *              this does not succeed, we finally try to allocate anywhere
680  *              within the aggregate.
681  *
682  *              we also try to allocate anywhere within the aggregate for
683  *              for allocation requests larger than the allocation group
684  *              size or requests that specify no hint value.
685  *
686  * PARAMETERS:
687  *      ip      -  pointer to in-core inode;
688  *      hint    - allocation hint.
689  *      nblocks - number of contiguous blocks in the range.
690  *      results - on successful return, set to the starting block number
691  *                of the newly allocated contiguous range.
692  *
693  * RETURN VALUES:
694  *      0       - success
695  *      -ENOSPC - insufficient disk resources
696  *      -EIO    - i/o error
697  */
698 int dbAlloc(struct inode *ip, s64 hint, s64 nblocks, s64 * results)
699 {
700         int rc, agno;
701         struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
702         struct bmap *bmp;
703         struct metapage *mp;
704         s64 lblkno, blkno;
705         struct dmap *dp;
706         int l2nb;
707         s64 mapSize;
708         int writers;
709
710         /* assert that nblocks is valid */
711         assert(nblocks > 0);
712
713 #ifdef _STILL_TO_PORT
714         /* DASD limit check                                     F226941 */
715         if (OVER_LIMIT(ip, nblocks))
716                 return -ENOSPC;
717 #endif                          /* _STILL_TO_PORT */
718
719         /* get the log2 number of blocks to be allocated.
720          * if the number of blocks is not a log2 multiple, 
721          * it will be rounded up to the next log2 multiple.
722          */
723         l2nb = BLKSTOL2(nblocks);
724
725         bmp = JFS_SBI(ip->i_sb)->bmap;
726
727 //retry:        /* serialize w.r.t.extendfs() */
728         mapSize = bmp->db_mapsize;
729
730         /* the hint should be within the map */
731         if (hint >= mapSize) {
732                 jfs_error(ip->i_sb, "dbAlloc: the hint is outside the map");
733                 return -EIO;
734         }
735
736         /* if the number of blocks to be allocated is greater than the
737          * allocation group size, try to allocate anywhere.
738          */
739         if (l2nb > bmp->db_agl2size) {
740                 IWRITE_LOCK(ipbmap);
741
742                 rc = dbAllocAny(bmp, nblocks, l2nb, results);
743
744                 goto write_unlock;
745         }
746
747         /*
748          * If no hint, let dbNextAG recommend an allocation group
749          */
750         if (hint == 0)
751                 goto pref_ag;
752
753         /* we would like to allocate close to the hint.  adjust the
754          * hint to the block following the hint since the allocators
755          * will start looking for free space starting at this point.
756          */
757         blkno = hint + 1;
758
759         if (blkno >= bmp->db_mapsize)
760                 goto pref_ag;
761
762         agno = blkno >> bmp->db_agl2size;
763
764         /* check if blkno crosses over into a new allocation group.
765          * if so, check if we should allow allocations within this
766          * allocation group.
767          */
768         if ((blkno & (bmp->db_agsize - 1)) == 0)
769                 /* check if the AG is currenly being written to.
770                  * if so, call dbNextAG() to find a non-busy
771                  * AG with sufficient free space.
772                  */
773                 if (atomic_read(&bmp->db_active[agno]))
774                         goto pref_ag;
775
776         /* check if the allocation request size can be satisfied from a
777          * single dmap.  if so, try to allocate from the dmap containing
778          * the hint using a tiered strategy.
779          */
780         if (nblocks <= BPERDMAP) {
781                 IREAD_LOCK(ipbmap);
782
783                 /* get the buffer for the dmap containing the hint.
784                  */
785                 rc = -EIO;
786                 lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
787                 mp = read_metapage(ipbmap, lblkno, PSIZE, 0);
788                 if (mp == NULL)
789                         goto read_unlock;
790
791                 dp = (struct dmap *) mp->data;
792
793                 /* first, try to satisfy the allocation request with the
794                  * blocks beginning at the hint.
795                  */
796                 if ((rc = dbAllocNext(bmp, dp, blkno, (int) nblocks))
797                     != -ENOSPC) {
798                         if (rc == 0) {
799                                 *results = blkno;
800                                 mark_metapage_dirty(mp);
801                         }
802
803                         release_metapage(mp);
804                         goto read_unlock;
805                 }
806
807                 writers = atomic_read(&bmp->db_active[agno]);
808                 if ((writers > 1) ||
809                     ((writers == 1) && (JFS_IP(ip)->active_ag != agno))) {
810                         /*
811                          * Someone else is writing in this allocation
812                          * group.  To avoid fragmenting, try another ag
813                          */
814                         release_metapage(mp);
815                         IREAD_UNLOCK(ipbmap);
816                         goto pref_ag;
817                 }
818
819                 /* next, try to satisfy the allocation request with blocks
820                  * near the hint.
821                  */
822                 if ((rc =
823                      dbAllocNear(bmp, dp, blkno, (int) nblocks, l2nb, results))
824                     != -ENOSPC) {
825                         if (rc == 0)
826                                 mark_metapage_dirty(mp);
827
828                         release_metapage(mp);
829                         goto read_unlock;
830                 }
831
832                 /* try to satisfy the allocation request with blocks within
833                  * the same dmap as the hint.
834                  */
835                 if ((rc = dbAllocDmapLev(bmp, dp, (int) nblocks, l2nb, results))
836                     != -ENOSPC) {
837                         if (rc == 0)
838                                 mark_metapage_dirty(mp);
839
840                         release_metapage(mp);
841                         goto read_unlock;
842                 }
843
844                 release_metapage(mp);
845                 IREAD_UNLOCK(ipbmap);
846         }
847
848         /* try to satisfy the allocation request with blocks within
849          * the same allocation group as the hint.
850          */
851         IWRITE_LOCK(ipbmap);
852         if ((rc = dbAllocAG(bmp, agno, nblocks, l2nb, results)) != -ENOSPC)
853                 goto write_unlock;
854
855         IWRITE_UNLOCK(ipbmap);
856
857
858       pref_ag:
859         /*
860          * Let dbNextAG recommend a preferred allocation group
861          */
862         agno = dbNextAG(ipbmap);
863         IWRITE_LOCK(ipbmap);
864
865         /* Try to allocate within this allocation group.  if that fails, try to
866          * allocate anywhere in the map.
867          */
868         if ((rc = dbAllocAG(bmp, agno, nblocks, l2nb, results)) == -ENOSPC)
869                 rc = dbAllocAny(bmp, nblocks, l2nb, results);
870
871       write_unlock:
872         IWRITE_UNLOCK(ipbmap);
873
874         return (rc);
875
876       read_unlock:
877         IREAD_UNLOCK(ipbmap);
878
879         return (rc);
880 }
881
882 #ifdef _NOTYET
883 /*
884  * NAME:        dbAllocExact()
885  *
886  * FUNCTION:    try to allocate the requested extent;
887  *
888  * PARAMETERS:
889  *      ip      - pointer to in-core inode;
890  *      blkno   - extent address;
891  *      nblocks - extent length;
892  *
893  * RETURN VALUES:
894  *      0       - success
895  *      -ENOSPC - insufficient disk resources
896  *      -EIO    - i/o error
897  */
898 int dbAllocExact(struct inode *ip, s64 blkno, int nblocks)
899 {
900         int rc;
901         struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
902         struct bmap *bmp = JFS_SBI(ip->i_sb)->bmap;
903         struct dmap *dp;
904         s64 lblkno;
905         struct metapage *mp;
906
907         IREAD_LOCK(ipbmap);
908
909         /*
910          * validate extent request:
911          *
912          * note: defragfs policy:
913          *  max 64 blocks will be moved.  
914          *  allocation request size must be satisfied from a single dmap.
915          */
916         if (nblocks <= 0 || nblocks > BPERDMAP || blkno >= bmp->db_mapsize) {
917                 IREAD_UNLOCK(ipbmap);
918                 return -EINVAL;
919         }
920
921         if (nblocks > ((s64) 1 << bmp->db_maxfreebud)) {
922                 /* the free space is no longer available */
923                 IREAD_UNLOCK(ipbmap);
924                 return -ENOSPC;
925         }
926
927         /* read in the dmap covering the extent */
928         lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
929         mp = read_metapage(ipbmap, lblkno, PSIZE, 0);
930         if (mp == NULL) {
931                 IREAD_UNLOCK(ipbmap);
932                 return -EIO;
933         }
934         dp = (struct dmap *) mp->data;
935
936         /* try to allocate the requested extent */
937         rc = dbAllocNext(bmp, dp, blkno, nblocks);
938
939         IREAD_UNLOCK(ipbmap);
940
941         if (rc == 0)
942                 mark_metapage_dirty(mp);
943
944         release_metapage(mp);
945
946         return (rc);
947 }
948 #endif /* _NOTYET */
949
950 /*
951  * NAME:        dbReAlloc()
952  *
953  * FUNCTION:    attempt to extend a current allocation by a specified
954  *              number of blocks.
955  *
956  *              this routine attempts to satisfy the allocation request
957  *              by first trying to extend the existing allocation in
958  *              place by allocating the additional blocks as the blocks
959  *              immediately following the current allocation.  if these
960  *              blocks are not available, this routine will attempt to
961  *              allocate a new set of contiguous blocks large enough
962  *              to cover the existing allocation plus the additional
963  *              number of blocks required.
964  *
965  * PARAMETERS:
966  *      ip          -  pointer to in-core inode requiring allocation.
967  *      blkno       -  starting block of the current allocation.
968  *      nblocks     -  number of contiguous blocks within the current
969  *                     allocation.
970  *      addnblocks  -  number of blocks to add to the allocation.
971  *      results -      on successful return, set to the starting block number
972  *                     of the existing allocation if the existing allocation
973  *                     was extended in place or to a newly allocated contiguous
974  *                     range if the existing allocation could not be extended
975  *                     in place.
976  *
977  * RETURN VALUES:
978  *      0       - success
979  *      -ENOSPC - insufficient disk resources
980  *      -EIO    - i/o error
981  */
982 int
983 dbReAlloc(struct inode *ip,
984           s64 blkno, s64 nblocks, s64 addnblocks, s64 * results)
985 {
986         int rc;
987
988         /* try to extend the allocation in place.
989          */
990         if ((rc = dbExtend(ip, blkno, nblocks, addnblocks)) == 0) {
991                 *results = blkno;
992                 return (0);
993         } else {
994                 if (rc != -ENOSPC)
995                         return (rc);
996         }
997
998         /* could not extend the allocation in place, so allocate a
999          * new set of blocks for the entire request (i.e. try to get
1000          * a range of contiguous blocks large enough to cover the
1001          * existing allocation plus the additional blocks.)
1002          */
1003         return (dbAlloc
1004                 (ip, blkno + nblocks - 1, addnblocks + nblocks, results));
1005 }
1006
1007
1008 /*
1009  * NAME:        dbExtend()
1010  *
1011  * FUNCTION:    attempt to extend a current allocation by a specified
1012  *              number of blocks.
1013  *
1014  *              this routine attempts to satisfy the allocation request
1015  *              by first trying to extend the existing allocation in
1016  *              place by allocating the additional blocks as the blocks
1017  *              immediately following the current allocation.
1018  *
1019  * PARAMETERS:
1020  *      ip          -  pointer to in-core inode requiring allocation.
1021  *      blkno       -  starting block of the current allocation.
1022  *      nblocks     -  number of contiguous blocks within the current
1023  *                     allocation.
1024  *      addnblocks  -  number of blocks to add to the allocation.
1025  *
1026  * RETURN VALUES:
1027  *      0       - success
1028  *      -ENOSPC - insufficient disk resources
1029  *      -EIO    - i/o error
1030  */
1031 static int dbExtend(struct inode *ip, s64 blkno, s64 nblocks, s64 addnblocks)
1032 {
1033         struct jfs_sb_info *sbi = JFS_SBI(ip->i_sb);
1034         s64 lblkno, lastblkno, extblkno;
1035         uint rel_block;
1036         struct metapage *mp;
1037         struct dmap *dp;
1038         int rc;
1039         struct inode *ipbmap = sbi->ipbmap;
1040         struct bmap *bmp;
1041
1042         /*
1043          * We don't want a non-aligned extent to cross a page boundary
1044          */
1045         if (((rel_block = blkno & (sbi->nbperpage - 1))) &&
1046             (rel_block + nblocks + addnblocks > sbi->nbperpage))
1047                 return -ENOSPC;
1048
1049         /* get the last block of the current allocation */
1050         lastblkno = blkno + nblocks - 1;
1051
1052         /* determine the block number of the block following
1053          * the existing allocation.
1054          */
1055         extblkno = lastblkno + 1;
1056
1057         IREAD_LOCK(ipbmap);
1058
1059         /* better be within the file system */
1060         bmp = sbi->bmap;
1061         if (lastblkno < 0 || lastblkno >= bmp->db_mapsize) {
1062                 IREAD_UNLOCK(ipbmap);
1063                 jfs_error(ip->i_sb,
1064                           "dbExtend: the block is outside the filesystem");
1065                 return -EIO;
1066         }
1067
1068         /* we'll attempt to extend the current allocation in place by
1069          * allocating the additional blocks as the blocks immediately
1070          * following the current allocation.  we only try to extend the
1071          * current allocation in place if the number of additional blocks
1072          * can fit into a dmap, the last block of the current allocation
1073          * is not the last block of the file system, and the start of the
1074          * inplace extension is not on an allocation group boundary.
1075          */
1076         if (addnblocks > BPERDMAP || extblkno >= bmp->db_mapsize ||
1077             (extblkno & (bmp->db_agsize - 1)) == 0) {
1078                 IREAD_UNLOCK(ipbmap);
1079                 return -ENOSPC;
1080         }
1081
1082         /* get the buffer for the dmap containing the first block
1083          * of the extension.
1084          */
1085         lblkno = BLKTODMAP(extblkno, bmp->db_l2nbperpage);
1086         mp = read_metapage(ipbmap, lblkno, PSIZE, 0);
1087         if (mp == NULL) {
1088                 IREAD_UNLOCK(ipbmap);
1089                 return -EIO;
1090         }
1091
1092         dp = (struct dmap *) mp->data;
1093
1094         /* try to allocate the blocks immediately following the
1095          * current allocation.
1096          */
1097         rc = dbAllocNext(bmp, dp, extblkno, (int) addnblocks);
1098
1099         IREAD_UNLOCK(ipbmap);
1100
1101         /* were we successful ? */
1102         if (rc == 0)
1103                 write_metapage(mp);
1104         else
1105                 /* we were not successful */
1106                 release_metapage(mp);
1107
1108
1109         return (rc);
1110 }
1111
1112
1113 /*
1114  * NAME:        dbAllocNext()
1115  *
1116  * FUNCTION:    attempt to allocate the blocks of the specified block
1117  *              range within a dmap.
1118  *
1119  * PARAMETERS:
1120  *      bmp     -  pointer to bmap descriptor
1121  *      dp      -  pointer to dmap.
1122  *      blkno   -  starting block number of the range.
1123  *      nblocks -  number of contiguous free blocks of the range.
1124  *
1125  * RETURN VALUES:
1126  *      0       - success
1127  *      -ENOSPC - insufficient disk resources
1128  *      -EIO    - i/o error
1129  *
1130  * serialization: IREAD_LOCK(ipbmap) held on entry/exit;
1131  */
1132 static int dbAllocNext(struct bmap * bmp, struct dmap * dp, s64 blkno,
1133                        int nblocks)
1134 {
1135         int dbitno, word, rembits, nb, nwords, wbitno, nw;
1136         int l2size;
1137         s8 *leaf;
1138         u32 mask;
1139
1140         if (dp->tree.leafidx != cpu_to_le32(LEAFIND)) {
1141                 jfs_error(bmp->db_ipbmap->i_sb,
1142                           "dbAllocNext: Corrupt dmap page");
1143                 return -EIO;
1144         }
1145
1146         /* pick up a pointer to the leaves of the dmap tree.
1147          */
1148         leaf = dp->tree.stree + le32_to_cpu(dp->tree.leafidx);
1149
1150         /* determine the bit number and word within the dmap of the
1151          * starting block.
1152          */
1153         dbitno = blkno & (BPERDMAP - 1);
1154         word = dbitno >> L2DBWORD;
1155
1156         /* check if the specified block range is contained within
1157          * this dmap.
1158          */
1159         if (dbitno + nblocks > BPERDMAP)
1160                 return -ENOSPC;
1161
1162         /* check if the starting leaf indicates that anything
1163          * is free.
1164          */
1165         if (leaf[word] == NOFREE)
1166                 return -ENOSPC;
1167
1168         /* check the dmaps words corresponding to block range to see
1169          * if the block range is free.  not all bits of the first and
1170          * last words may be contained within the block range.  if this
1171          * is the case, we'll work against those words (i.e. partial first
1172          * and/or last) on an individual basis (a single pass) and examine
1173          * the actual bits to determine if they are free.  a single pass
1174          * will be used for all dmap words fully contained within the
1175          * specified range.  within this pass, the leaves of the dmap
1176          * tree will be examined to determine if the blocks are free. a
1177          * single leaf may describe the free space of multiple dmap
1178          * words, so we may visit only a subset of the actual leaves
1179          * corresponding to the dmap words of the block range.
1180          */
1181         for (rembits = nblocks; rembits > 0; rembits -= nb, dbitno += nb) {
1182                 /* determine the bit number within the word and
1183                  * the number of bits within the word.
1184                  */
1185                 wbitno = dbitno & (DBWORD - 1);
1186                 nb = min(rembits, DBWORD - wbitno);
1187
1188                 /* check if only part of the word is to be examined.
1189                  */
1190                 if (nb < DBWORD) {
1191                         /* check if the bits are free.
1192                          */
1193                         mask = (ONES << (DBWORD - nb) >> wbitno);
1194                         if ((mask & ~le32_to_cpu(dp->wmap[word])) != mask)
1195                                 return -ENOSPC;
1196
1197                         word += 1;
1198                 } else {
1199                         /* one or more dmap words are fully contained
1200                          * within the block range.  determine how many
1201                          * words and how many bits.
1202                          */
1203                         nwords = rembits >> L2DBWORD;
1204                         nb = nwords << L2DBWORD;
1205
1206                         /* now examine the appropriate leaves to determine
1207                          * if the blocks are free.
1208                          */
1209                         while (nwords > 0) {
1210                                 /* does the leaf describe any free space ?
1211                                  */
1212                                 if (leaf[word] < BUDMIN)
1213                                         return -ENOSPC;
1214
1215                                 /* determine the l2 number of bits provided
1216                                  * by this leaf.
1217                                  */
1218                                 l2size =
1219                                     min((int)leaf[word], NLSTOL2BSZ(nwords));
1220
1221                                 /* determine how many words were handled.
1222                                  */
1223                                 nw = BUDSIZE(l2size, BUDMIN);
1224
1225                                 nwords -= nw;
1226                                 word += nw;
1227                         }
1228                 }
1229         }
1230
1231         /* allocate the blocks.
1232          */
1233         return (dbAllocDmap(bmp, dp, blkno, nblocks));
1234 }
1235
1236
1237 /*
1238  * NAME:        dbAllocNear()
1239  *
1240  * FUNCTION:    attempt to allocate a number of contiguous free blocks near
1241  *              a specified block (hint) within a dmap.
1242  *
1243  *              starting with the dmap leaf that covers the hint, we'll
1244  *              check the next four contiguous leaves for sufficient free
1245  *              space.  if sufficient free space is found, we'll allocate
1246  *              the desired free space.
1247  *
1248  * PARAMETERS:
1249  *      bmp     -  pointer to bmap descriptor
1250  *      dp      -  pointer to dmap.
1251  *      blkno   -  block number to allocate near.
1252  *      nblocks -  actual number of contiguous free blocks desired.
1253  *      l2nb    -  log2 number of contiguous free blocks desired.
1254  *      results -  on successful return, set to the starting block number
1255  *                 of the newly allocated range.
1256  *
1257  * RETURN VALUES:
1258  *      0       - success
1259  *      -ENOSPC - insufficient disk resources
1260  *      -EIO    - i/o error
1261  *
1262  * serialization: IREAD_LOCK(ipbmap) held on entry/exit;
1263  */
1264 static int
1265 dbAllocNear(struct bmap * bmp,
1266             struct dmap * dp, s64 blkno, int nblocks, int l2nb, s64 * results)
1267 {
1268         int word, lword, rc;
1269         s8 *leaf;
1270
1271         if (dp->tree.leafidx != cpu_to_le32(LEAFIND)) {
1272                 jfs_error(bmp->db_ipbmap->i_sb,
1273                           "dbAllocNear: Corrupt dmap page");
1274                 return -EIO;
1275         }
1276
1277         leaf = dp->tree.stree + le32_to_cpu(dp->tree.leafidx);
1278
1279         /* determine the word within the dmap that holds the hint
1280          * (i.e. blkno).  also, determine the last word in the dmap
1281          * that we'll include in our examination.
1282          */
1283         word = (blkno & (BPERDMAP - 1)) >> L2DBWORD;
1284         lword = min(word + 4, LPERDMAP);
1285
1286         /* examine the leaves for sufficient free space.
1287          */
1288         for (; word < lword; word++) {
1289                 /* does the leaf describe sufficient free space ?
1290                  */
1291                 if (leaf[word] < l2nb)
1292                         continue;
1293
1294                 /* determine the block number within the file system
1295                  * of the first block described by this dmap word.
1296                  */
1297                 blkno = le64_to_cpu(dp->start) + (word << L2DBWORD);
1298
1299                 /* if not all bits of the dmap word are free, get the
1300                  * starting bit number within the dmap word of the required
1301                  * string of free bits and adjust the block number with the
1302                  * value.
1303                  */
1304                 if (leaf[word] < BUDMIN)
1305                         blkno +=
1306                             dbFindBits(le32_to_cpu(dp->wmap[word]), l2nb);
1307
1308                 /* allocate the blocks.
1309                  */
1310                 if ((rc = dbAllocDmap(bmp, dp, blkno, nblocks)) == 0)
1311                         *results = blkno;
1312
1313                 return (rc);
1314         }
1315
1316         return -ENOSPC;
1317 }
1318
1319
1320 /*
1321  * NAME:        dbAllocAG()
1322  *
1323  * FUNCTION:    attempt to allocate the specified number of contiguous
1324  *              free blocks within the specified allocation group.
1325  *
1326  *              unless the allocation group size is equal to the number
1327  *              of blocks per dmap, the dmap control pages will be used to
1328  *              find the required free space, if available.  we start the
1329  *              search at the highest dmap control page level which
1330  *              distinctly describes the allocation group's free space
1331  *              (i.e. the highest level at which the allocation group's
1332  *              free space is not mixed in with that of any other group).
1333  *              in addition, we start the search within this level at a
1334  *              height of the dmapctl dmtree at which the nodes distinctly
1335  *              describe the allocation group's free space.  at this height,
1336  *              the allocation group's free space may be represented by 1
1337  *              or two sub-trees, depending on the allocation group size.
1338  *              we search the top nodes of these subtrees left to right for
1339  *              sufficient free space.  if sufficient free space is found,
1340  *              the subtree is searched to find the leftmost leaf that 
1341  *              has free space.  once we have made it to the leaf, we
1342  *              move the search to the next lower level dmap control page
1343  *              corresponding to this leaf.  we continue down the dmap control
1344  *              pages until we find the dmap that contains or starts the
1345  *              sufficient free space and we allocate at this dmap.
1346  *
1347  *              if the allocation group size is equal to the dmap size,
1348  *              we'll start at the dmap corresponding to the allocation
1349  *              group and attempt the allocation at this level.
1350  *
1351  *              the dmap control page search is also not performed if the
1352  *              allocation group is completely free and we go to the first
1353  *              dmap of the allocation group to do the allocation.  this is
1354  *              done because the allocation group may be part (not the first
1355  *              part) of a larger binary buddy system, causing the dmap
1356  *              control pages to indicate no free space (NOFREE) within
1357  *              the allocation group.
1358  *
1359  * PARAMETERS:
1360  *      bmp     -  pointer to bmap descriptor
1361  *      agno    - allocation group number.
1362  *      nblocks -  actual number of contiguous free blocks desired.
1363  *      l2nb    -  log2 number of contiguous free blocks desired.
1364  *      results -  on successful return, set to the starting block number
1365  *                 of the newly allocated range.
1366  *
1367  * RETURN VALUES:
1368  *      0       - success
1369  *      -ENOSPC - insufficient disk resources
1370  *      -EIO    - i/o error
1371  *
1372  * note: IWRITE_LOCK(ipmap) held on entry/exit;
1373  */
1374 static int
1375 dbAllocAG(struct bmap * bmp, int agno, s64 nblocks, int l2nb, s64 * results)
1376 {
1377         struct metapage *mp;
1378         struct dmapctl *dcp;
1379         int rc, ti, i, k, m, n, agperlev;
1380         s64 blkno, lblkno;
1381         int budmin;
1382
1383         /* allocation request should not be for more than the
1384          * allocation group size.
1385          */
1386         if (l2nb > bmp->db_agl2size) {
1387                 jfs_error(bmp->db_ipbmap->i_sb,
1388                           "dbAllocAG: allocation request is larger than the "
1389                           "allocation group size");
1390                 return -EIO;
1391         }
1392
1393         /* determine the starting block number of the allocation
1394          * group.
1395          */
1396         blkno = (s64) agno << bmp->db_agl2size;
1397
1398         /* check if the allocation group size is the minimum allocation
1399          * group size or if the allocation group is completely free. if
1400          * the allocation group size is the minimum size of BPERDMAP (i.e.
1401          * 1 dmap), there is no need to search the dmap control page (below)
1402          * that fully describes the allocation group since the allocation
1403          * group is already fully described by a dmap.  in this case, we
1404          * just call dbAllocCtl() to search the dmap tree and allocate the
1405          * required space if available.  
1406          *
1407          * if the allocation group is completely free, dbAllocCtl() is
1408          * also called to allocate the required space.  this is done for
1409          * two reasons.  first, it makes no sense searching the dmap control
1410          * pages for free space when we know that free space exists.  second,
1411          * the dmap control pages may indicate that the allocation group
1412          * has no free space if the allocation group is part (not the first
1413          * part) of a larger binary buddy system.
1414          */
1415         if (bmp->db_agsize == BPERDMAP
1416             || bmp->db_agfree[agno] == bmp->db_agsize) {
1417                 rc = dbAllocCtl(bmp, nblocks, l2nb, blkno, results);
1418                 if ((rc == -ENOSPC) &&
1419                     (bmp->db_agfree[agno] == bmp->db_agsize)) {
1420                         printk(KERN_ERR "blkno = %Lx, blocks = %Lx\n",
1421                                (unsigned long long) blkno,
1422                                (unsigned long long) nblocks);
1423                         jfs_error(bmp->db_ipbmap->i_sb,
1424                                   "dbAllocAG: dbAllocCtl failed in free AG");
1425                 }
1426                 return (rc);
1427         }
1428
1429         /* the buffer for the dmap control page that fully describes the
1430          * allocation group.
1431          */
1432         lblkno = BLKTOCTL(blkno, bmp->db_l2nbperpage, bmp->db_aglevel);
1433         mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
1434         if (mp == NULL)
1435                 return -EIO;
1436         dcp = (struct dmapctl *) mp->data;
1437         budmin = dcp->budmin;
1438
1439         if (dcp->leafidx != cpu_to_le32(CTLLEAFIND)) {
1440                 jfs_error(bmp->db_ipbmap->i_sb,
1441                           "dbAllocAG: Corrupt dmapctl page");
1442                 release_metapage(mp);
1443                 return -EIO;
1444         }
1445
1446         /* search the subtree(s) of the dmap control page that describes
1447          * the allocation group, looking for sufficient free space.  to begin,
1448          * determine how many allocation groups are represented in a dmap
1449          * control page at the control page level (i.e. L0, L1, L2) that
1450          * fully describes an allocation group. next, determine the starting
1451          * tree index of this allocation group within the control page.
1452          */
1453         agperlev =
1454             (1 << (L2LPERCTL - (bmp->db_agheigth << 1))) / bmp->db_agwidth;
1455         ti = bmp->db_agstart + bmp->db_agwidth * (agno & (agperlev - 1));
1456
1457         /* dmap control page trees fan-out by 4 and a single allocation 
1458          * group may be described by 1 or 2 subtrees within the ag level
1459          * dmap control page, depending upon the ag size. examine the ag's
1460          * subtrees for sufficient free space, starting with the leftmost
1461          * subtree.
1462          */
1463         for (i = 0; i < bmp->db_agwidth; i++, ti++) {
1464                 /* is there sufficient free space ?
1465                  */
1466                 if (l2nb > dcp->stree[ti])
1467                         continue;
1468
1469                 /* sufficient free space found in a subtree. now search down
1470                  * the subtree to find the leftmost leaf that describes this
1471                  * free space.
1472                  */
1473                 for (k = bmp->db_agheigth; k > 0; k--) {
1474                         for (n = 0, m = (ti << 2) + 1; n < 4; n++) {
1475                                 if (l2nb <= dcp->stree[m + n]) {
1476                                         ti = m + n;
1477                                         break;
1478                                 }
1479                         }
1480                         if (n == 4) {
1481                                 jfs_error(bmp->db_ipbmap->i_sb,
1482                                           "dbAllocAG: failed descending stree");
1483                                 release_metapage(mp);
1484                                 return -EIO;
1485                         }
1486                 }
1487
1488                 /* determine the block number within the file system
1489                  * that corresponds to this leaf.
1490                  */
1491                 if (bmp->db_aglevel == 2)
1492                         blkno = 0;
1493                 else if (bmp->db_aglevel == 1)
1494                         blkno &= ~(MAXL1SIZE - 1);
1495                 else            /* bmp->db_aglevel == 0 */
1496                         blkno &= ~(MAXL0SIZE - 1);
1497
1498                 blkno +=
1499                     ((s64) (ti - le32_to_cpu(dcp->leafidx))) << budmin;
1500
1501                 /* release the buffer in preparation for going down
1502                  * the next level of dmap control pages.
1503                  */
1504                 release_metapage(mp);
1505
1506                 /* check if we need to continue to search down the lower
1507                  * level dmap control pages.  we need to if the number of
1508                  * blocks required is less than maximum number of blocks
1509                  * described at the next lower level.
1510                  */
1511                 if (l2nb < budmin) {
1512
1513                         /* search the lower level dmap control pages to get
1514                          * the starting block number of the the dmap that
1515                          * contains or starts off the free space.
1516                          */
1517                         if ((rc =
1518                              dbFindCtl(bmp, l2nb, bmp->db_aglevel - 1,
1519                                        &blkno))) {
1520                                 if (rc == -ENOSPC) {
1521                                         jfs_error(bmp->db_ipbmap->i_sb,
1522                                                   "dbAllocAG: control page "
1523                                                   "inconsistent");
1524                                         return -EIO;
1525                                 }
1526                                 return (rc);
1527                         }
1528                 }
1529
1530                 /* allocate the blocks.
1531                  */
1532                 rc = dbAllocCtl(bmp, nblocks, l2nb, blkno, results);
1533                 if (rc == -ENOSPC) {
1534                         jfs_error(bmp->db_ipbmap->i_sb,
1535                                   "dbAllocAG: unable to allocate blocks");
1536                         rc = -EIO;
1537                 }
1538                 return (rc);
1539         }
1540
1541         /* no space in the allocation group.  release the buffer and
1542          * return -ENOSPC.
1543          */
1544         release_metapage(mp);
1545
1546         return -ENOSPC;
1547 }
1548
1549
1550 /*
1551  * NAME:        dbAllocAny()
1552  *
1553  * FUNCTION:    attempt to allocate the specified number of contiguous
1554  *              free blocks anywhere in the file system.
1555  *
1556  *              dbAllocAny() attempts to find the sufficient free space by
1557  *              searching down the dmap control pages, starting with the
1558  *              highest level (i.e. L0, L1, L2) control page.  if free space
1559  *              large enough to satisfy the desired free space is found, the
1560  *              desired free space is allocated.
1561  *
1562  * PARAMETERS:
1563  *      bmp     -  pointer to bmap descriptor
1564  *      nblocks  -  actual number of contiguous free blocks desired.
1565  *      l2nb     -  log2 number of contiguous free blocks desired.
1566  *      results -  on successful return, set to the starting block number
1567  *                 of the newly allocated range.
1568  *
1569  * RETURN VALUES:
1570  *      0       - success
1571  *      -ENOSPC - insufficient disk resources
1572  *      -EIO    - i/o error
1573  *
1574  * serialization: IWRITE_LOCK(ipbmap) held on entry/exit;
1575  */
1576 static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results)
1577 {
1578         int rc;
1579         s64 blkno = 0;
1580
1581         /* starting with the top level dmap control page, search
1582          * down the dmap control levels for sufficient free space.
1583          * if free space is found, dbFindCtl() returns the starting
1584          * block number of the dmap that contains or starts off the
1585          * range of free space.
1586          */
1587         if ((rc = dbFindCtl(bmp, l2nb, bmp->db_maxlevel, &blkno)))
1588                 return (rc);
1589
1590         /* allocate the blocks.
1591          */
1592         rc = dbAllocCtl(bmp, nblocks, l2nb, blkno, results);
1593         if (rc == -ENOSPC) {
1594                 jfs_error(bmp->db_ipbmap->i_sb,
1595                           "dbAllocAny: unable to allocate blocks");
1596                 return -EIO;
1597         }
1598         return (rc);
1599 }
1600
1601
1602 /*
1603  * NAME:        dbFindCtl()
1604  *
1605  * FUNCTION:    starting at a specified dmap control page level and block
1606  *              number, search down the dmap control levels for a range of
1607  *              contiguous free blocks large enough to satisfy an allocation
1608  *              request for the specified number of free blocks.
1609  *
1610  *              if sufficient contiguous free blocks are found, this routine
1611  *              returns the starting block number within a dmap page that
1612  *              contains or starts a range of contiqious free blocks that
1613  *              is sufficient in size.
1614  *
1615  * PARAMETERS:
1616  *      bmp     -  pointer to bmap descriptor
1617  *      level   -  starting dmap control page level.
1618  *      l2nb    -  log2 number of contiguous free blocks desired.
1619  *      *blkno  -  on entry, starting block number for conducting the search.
1620  *                 on successful return, the first block within a dmap page
1621  *                 that contains or starts a range of contiguous free blocks.
1622  *
1623  * RETURN VALUES:
1624  *      0       - success
1625  *      -ENOSPC - insufficient disk resources
1626  *      -EIO    - i/o error
1627  *
1628  * serialization: IWRITE_LOCK(ipbmap) held on entry/exit;
1629  */
1630 static int dbFindCtl(struct bmap * bmp, int l2nb, int level, s64 * blkno)
1631 {
1632         int rc, leafidx, lev;
1633         s64 b, lblkno;
1634         struct dmapctl *dcp;
1635         int budmin;
1636         struct metapage *mp;
1637
1638         /* starting at the specified dmap control page level and block
1639          * number, search down the dmap control levels for the starting
1640          * block number of a dmap page that contains or starts off 
1641          * sufficient free blocks.
1642          */
1643         for (lev = level, b = *blkno; lev >= 0; lev--) {
1644                 /* get the buffer of the dmap control page for the block
1645                  * number and level (i.e. L0, L1, L2).
1646                  */
1647                 lblkno = BLKTOCTL(b, bmp->db_l2nbperpage, lev);
1648                 mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
1649                 if (mp == NULL)
1650                         return -EIO;
1651                 dcp = (struct dmapctl *) mp->data;
1652                 budmin = dcp->budmin;
1653
1654                 if (dcp->leafidx != cpu_to_le32(CTLLEAFIND)) {
1655                         jfs_error(bmp->db_ipbmap->i_sb,
1656                                   "dbFindCtl: Corrupt dmapctl page");
1657                         release_metapage(mp);
1658                         return -EIO;
1659                 }
1660
1661                 /* search the tree within the dmap control page for
1662                  * sufficent free space.  if sufficient free space is found,
1663                  * dbFindLeaf() returns the index of the leaf at which
1664                  * free space was found.
1665                  */
1666                 rc = dbFindLeaf((dmtree_t *) dcp, l2nb, &leafidx);
1667
1668                 /* release the buffer.
1669                  */
1670                 release_metapage(mp);
1671
1672                 /* space found ?
1673                  */
1674                 if (rc) {
1675                         if (lev != level) {
1676                                 jfs_error(bmp->db_ipbmap->i_sb,
1677                                           "dbFindCtl: dmap inconsistent");
1678                                 return -EIO;
1679                         }
1680                         return -ENOSPC;
1681                 }
1682
1683                 /* adjust the block number to reflect the location within
1684                  * the dmap control page (i.e. the leaf) at which free 
1685                  * space was found.
1686                  */
1687                 b += (((s64) leafidx) << budmin);
1688
1689                 /* we stop the search at this dmap control page level if
1690                  * the number of blocks required is greater than or equal
1691                  * to the maximum number of blocks described at the next
1692                  * (lower) level.
1693                  */
1694                 if (l2nb >= budmin)
1695                         break;
1696         }
1697
1698         *blkno = b;
1699         return (0);
1700 }
1701
1702
1703 /*
1704  * NAME:        dbAllocCtl()
1705  *
1706  * FUNCTION:    attempt to allocate a specified number of contiguous
1707  *              blocks starting within a specific dmap.  
1708  *              
1709  *              this routine is called by higher level routines that search
1710  *              the dmap control pages above the actual dmaps for contiguous
1711  *              free space.  the result of successful searches by these
1712  *              routines are the starting block numbers within dmaps, with
1713  *              the dmaps themselves containing the desired contiguous free
1714  *              space or starting a contiguous free space of desired size
1715  *              that is made up of the blocks of one or more dmaps. these
1716  *              calls should not fail due to insufficent resources.
1717  *
1718  *              this routine is called in some cases where it is not known
1719  *              whether it will fail due to insufficient resources.  more
1720  *              specifically, this occurs when allocating from an allocation
1721  *              group whose size is equal to the number of blocks per dmap.
1722  *              in this case, the dmap control pages are not examined prior
1723  *              to calling this routine (to save pathlength) and the call
1724  *              might fail.
1725  *
1726  *              for a request size that fits within a dmap, this routine relies
1727  *              upon the dmap's dmtree to find the requested contiguous free
1728  *              space.  for request sizes that are larger than a dmap, the
1729  *              requested free space will start at the first block of the
1730  *              first dmap (i.e. blkno).
1731  *
1732  * PARAMETERS:
1733  *      bmp     -  pointer to bmap descriptor
1734  *      nblocks  -  actual number of contiguous free blocks to allocate.
1735  *      l2nb     -  log2 number of contiguous free blocks to allocate.
1736  *      blkno    -  starting block number of the dmap to start the allocation
1737  *                  from.
1738  *      results -  on successful return, set to the starting block number
1739  *                 of the newly allocated range.
1740  *
1741  * RETURN VALUES:
1742  *      0       - success
1743  *      -ENOSPC - insufficient disk resources
1744  *      -EIO    - i/o error
1745  *
1746  * serialization: IWRITE_LOCK(ipbmap) held on entry/exit;
1747  */
1748 static int
1749 dbAllocCtl(struct bmap * bmp, s64 nblocks, int l2nb, s64 blkno, s64 * results)
1750 {
1751         int rc, nb;
1752         s64 b, lblkno, n;
1753         struct metapage *mp;
1754         struct dmap *dp;
1755
1756         /* check if the allocation request is confined to a single dmap.
1757          */
1758         if (l2nb <= L2BPERDMAP) {
1759                 /* get the buffer for the dmap.
1760                  */
1761                 lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
1762                 mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
1763                 if (mp == NULL)
1764                         return -EIO;
1765                 dp = (struct dmap *) mp->data;
1766
1767                 /* try to allocate the blocks.
1768                  */
1769                 rc = dbAllocDmapLev(bmp, dp, (int) nblocks, l2nb, results);
1770                 if (rc == 0)
1771                         mark_metapage_dirty(mp);
1772
1773                 release_metapage(mp);
1774
1775                 return (rc);
1776         }
1777
1778         /* allocation request involving multiple dmaps. it must start on
1779          * a dmap boundary.
1780          */
1781         assert((blkno & (BPERDMAP - 1)) == 0);
1782
1783         /* allocate the blocks dmap by dmap.
1784          */
1785         for (n = nblocks, b = blkno; n > 0; n -= nb, b += nb) {
1786                 /* get the buffer for the dmap.
1787                  */
1788                 lblkno = BLKTODMAP(b, bmp->db_l2nbperpage);
1789                 mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
1790                 if (mp == NULL) {
1791                         rc = -EIO;
1792                         goto backout;
1793                 }
1794                 dp = (struct dmap *) mp->data;
1795
1796                 /* the dmap better be all free.
1797                  */
1798                 if (dp->tree.stree[ROOT] != L2BPERDMAP) {
1799                         release_metapage(mp);
1800                         jfs_error(bmp->db_ipbmap->i_sb,
1801                                   "dbAllocCtl: the dmap is not all free");
1802                         rc = -EIO;
1803                         goto backout;
1804                 }
1805
1806                 /* determine how many blocks to allocate from this dmap.
1807                  */
1808                 nb = min(n, (s64)BPERDMAP);
1809
1810                 /* allocate the blocks from the dmap.
1811                  */
1812                 if ((rc = dbAllocDmap(bmp, dp, b, nb))) {
1813                         release_metapage(mp);
1814                         goto backout;
1815                 }
1816
1817                 /* write the buffer.
1818                  */
1819                 write_metapage(mp);
1820         }
1821
1822         /* set the results (starting block number) and return.
1823          */
1824         *results = blkno;
1825         return (0);
1826
1827         /* something failed in handling an allocation request involving
1828          * multiple dmaps.  we'll try to clean up by backing out any
1829          * allocation that has already happened for this request.  if
1830          * we fail in backing out the allocation, we'll mark the file
1831          * system to indicate that blocks have been leaked.
1832          */
1833       backout:
1834
1835         /* try to backout the allocations dmap by dmap.
1836          */
1837         for (n = nblocks - n, b = blkno; n > 0;
1838              n -= BPERDMAP, b += BPERDMAP) {
1839                 /* get the buffer for this dmap.
1840                  */
1841                 lblkno = BLKTODMAP(b, bmp->db_l2nbperpage);
1842                 mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
1843                 if (mp == NULL) {
1844                         /* could not back out.  mark the file system
1845                          * to indicate that we have leaked blocks.
1846                          */
1847                         jfs_error(bmp->db_ipbmap->i_sb,
1848                                   "dbAllocCtl: I/O Error: Block Leakage.");
1849                         continue;
1850                 }
1851                 dp = (struct dmap *) mp->data;
1852
1853                 /* free the blocks is this dmap.
1854                  */
1855                 if (dbFreeDmap(bmp, dp, b, BPERDMAP)) {
1856                         /* could not back out.  mark the file system
1857                          * to indicate that we have leaked blocks.
1858                          */
1859                         release_metapage(mp);
1860                         jfs_error(bmp->db_ipbmap->i_sb,
1861                                   "dbAllocCtl: Block Leakage.");
1862                         continue;
1863                 }
1864
1865                 /* write the buffer.
1866                  */
1867                 write_metapage(mp);
1868         }
1869
1870         return (rc);
1871 }
1872
1873
1874 /*
1875  * NAME:        dbAllocDmapLev()
1876  *
1877  * FUNCTION:    attempt to allocate a specified number of contiguous blocks
1878  *              from a specified dmap.
1879  *              
1880  *              this routine checks if the contiguous blocks are available.
1881  *              if so, nblocks of blocks are allocated; otherwise, ENOSPC is
1882  *              returned.
1883  *
1884  * PARAMETERS:
1885  *      mp      -  pointer to bmap descriptor
1886  *      dp      -  pointer to dmap to attempt to allocate blocks from. 
1887  *      l2nb    -  log2 number of contiguous block desired.
1888  *      nblocks -  actual number of contiguous block desired.
1889  *      results -  on successful return, set to the starting block number
1890  *                 of the newly allocated range.
1891  *
1892  * RETURN VALUES:
1893  *      0       - success
1894  *      -ENOSPC - insufficient disk resources
1895  *      -EIO    - i/o error
1896  *
1897  * serialization: IREAD_LOCK(ipbmap), e.g., from dbAlloc(), or 
1898  *      IWRITE_LOCK(ipbmap), e.g., dbAllocCtl(), held on entry/exit;
1899  */
1900 static int
1901 dbAllocDmapLev(struct bmap * bmp,
1902                struct dmap * dp, int nblocks, int l2nb, s64 * results)
1903 {
1904         s64 blkno;
1905         int leafidx, rc;
1906
1907         /* can't be more than a dmaps worth of blocks */
1908         assert(l2nb <= L2BPERDMAP);
1909
1910         /* search the tree within the dmap page for sufficient
1911          * free space.  if sufficient free space is found, dbFindLeaf()
1912          * returns the index of the leaf at which free space was found.
1913          */
1914         if (dbFindLeaf((dmtree_t *) & dp->tree, l2nb, &leafidx))
1915                 return -ENOSPC;
1916
1917         /* determine the block number within the file system corresponding
1918          * to the leaf at which free space was found.
1919          */
1920         blkno = le64_to_cpu(dp->start) + (leafidx << L2DBWORD);
1921
1922         /* if not all bits of the dmap word are free, get the starting
1923          * bit number within the dmap word of the required string of free
1924          * bits and adjust the block number with this value.
1925          */
1926         if (dp->tree.stree[leafidx + LEAFIND] < BUDMIN)
1927                 blkno += dbFindBits(le32_to_cpu(dp->wmap[leafidx]), l2nb);
1928
1929         /* allocate the blocks */
1930         if ((rc = dbAllocDmap(bmp, dp, blkno, nblocks)) == 0)
1931                 *results = blkno;
1932
1933         return (rc);
1934 }
1935
1936
1937 /*
1938  * NAME:        dbAllocDmap()
1939  *
1940  * FUNCTION:    adjust the disk allocation map to reflect the allocation
1941  *              of a specified block range within a dmap.
1942  *
1943  *              this routine allocates the specified blocks from the dmap
1944  *              through a call to dbAllocBits(). if the allocation of the
1945  *              block range causes the maximum string of free blocks within
1946  *              the dmap to change (i.e. the value of the root of the dmap's
1947  *              dmtree), this routine will cause this change to be reflected
1948  *              up through the appropriate levels of the dmap control pages
1949  *              by a call to dbAdjCtl() for the L0 dmap control page that
1950  *              covers this dmap.
1951  *
1952  * PARAMETERS:
1953  *      bmp     -  pointer to bmap descriptor
1954  *      dp      -  pointer to dmap to allocate the block range from.
1955  *      blkno   -  starting block number of the block to be allocated.
1956  *      nblocks -  number of blocks to be allocated.
1957  *
1958  * RETURN VALUES:
1959  *      0       - success
1960  *      -EIO    - i/o error
1961  *
1962  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
1963  */
1964 static int dbAllocDmap(struct bmap * bmp, struct dmap * dp, s64 blkno,
1965                        int nblocks)
1966 {
1967         s8 oldroot;
1968         int rc;
1969
1970         /* save the current value of the root (i.e. maximum free string)
1971          * of the dmap tree.
1972          */
1973         oldroot = dp->tree.stree[ROOT];
1974
1975         /* allocate the specified (blocks) bits */
1976         dbAllocBits(bmp, dp, blkno, nblocks);
1977
1978         /* if the root has not changed, done. */
1979         if (dp->tree.stree[ROOT] == oldroot)
1980                 return (0);
1981
1982         /* root changed. bubble the change up to the dmap control pages.
1983          * if the adjustment of the upper level control pages fails,
1984          * backout the bit allocation (thus making everything consistent).
1985          */
1986         if ((rc = dbAdjCtl(bmp, blkno, dp->tree.stree[ROOT], 1, 0)))
1987                 dbFreeBits(bmp, dp, blkno, nblocks);
1988
1989         return (rc);
1990 }
1991
1992
1993 /*
1994  * NAME:        dbFreeDmap()
1995  *
1996  * FUNCTION:    adjust the disk allocation map to reflect the allocation
1997  *              of a specified block range within a dmap.
1998  *
1999  *              this routine frees the specified blocks from the dmap through
2000  *              a call to dbFreeBits(). if the deallocation of the block range
2001  *              causes the maximum string of free blocks within the dmap to
2002  *              change (i.e. the value of the root of the dmap's dmtree), this
2003  *              routine will cause this change to be reflected up through the
2004  *              appropriate levels of the dmap control pages by a call to
2005  *              dbAdjCtl() for the L0 dmap control page that covers this dmap.
2006  *
2007  * PARAMETERS:
2008  *      bmp     -  pointer to bmap descriptor
2009  *      dp      -  pointer to dmap to free the block range from.
2010  *      blkno   -  starting block number of the block to be freed.
2011  *      nblocks -  number of blocks to be freed.
2012  *
2013  * RETURN VALUES:
2014  *      0       - success
2015  *      -EIO    - i/o error
2016  *
2017  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2018  */
2019 static int dbFreeDmap(struct bmap * bmp, struct dmap * dp, s64 blkno,
2020                       int nblocks)
2021 {
2022         s8 oldroot;
2023         int rc = 0, word;
2024
2025         /* save the current value of the root (i.e. maximum free string)
2026          * of the dmap tree.
2027          */
2028         oldroot = dp->tree.stree[ROOT];
2029
2030         /* free the specified (blocks) bits */
2031         rc = dbFreeBits(bmp, dp, blkno, nblocks);
2032
2033         /* if error or the root has not changed, done. */
2034         if (rc || (dp->tree.stree[ROOT] == oldroot))
2035                 return (rc);
2036
2037         /* root changed. bubble the change up to the dmap control pages.
2038          * if the adjustment of the upper level control pages fails,
2039          * backout the deallocation. 
2040          */
2041         if ((rc = dbAdjCtl(bmp, blkno, dp->tree.stree[ROOT], 0, 0))) {
2042                 word = (blkno & (BPERDMAP - 1)) >> L2DBWORD;
2043
2044                 /* as part of backing out the deallocation, we will have
2045                  * to back split the dmap tree if the deallocation caused
2046                  * the freed blocks to become part of a larger binary buddy
2047                  * system.
2048                  */
2049                 if (dp->tree.stree[word] == NOFREE)
2050                         dbBackSplit((dmtree_t *) & dp->tree, word);
2051
2052                 dbAllocBits(bmp, dp, blkno, nblocks);
2053         }
2054
2055         return (rc);
2056 }
2057
2058
2059 /*
2060  * NAME:        dbAllocBits()
2061  *
2062  * FUNCTION:    allocate a specified block range from a dmap.
2063  *
2064  *              this routine updates the dmap to reflect the working
2065  *              state allocation of the specified block range. it directly
2066  *              updates the bits of the working map and causes the adjustment
2067  *              of the binary buddy system described by the dmap's dmtree
2068  *              leaves to reflect the bits allocated.  it also causes the
2069  *              dmap's dmtree, as a whole, to reflect the allocated range.
2070  *
2071  * PARAMETERS:
2072  *      bmp     -  pointer to bmap descriptor
2073  *      dp      -  pointer to dmap to allocate bits from.
2074  *      blkno   -  starting block number of the bits to be allocated.
2075  *      nblocks -  number of bits to be allocated.
2076  *
2077  * RETURN VALUES: none
2078  *
2079  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2080  */
2081 static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
2082                         int nblocks)
2083 {
2084         int dbitno, word, rembits, nb, nwords, wbitno, nw, agno;
2085         dmtree_t *tp = (dmtree_t *) & dp->tree;
2086         int size;
2087         s8 *leaf;
2088
2089         /* pick up a pointer to the leaves of the dmap tree */
2090         leaf = dp->tree.stree + LEAFIND;
2091
2092         /* determine the bit number and word within the dmap of the
2093          * starting block.
2094          */
2095         dbitno = blkno & (BPERDMAP - 1);
2096         word = dbitno >> L2DBWORD;
2097
2098         /* block range better be within the dmap */
2099         assert(dbitno + nblocks <= BPERDMAP);
2100
2101         /* allocate the bits of the dmap's words corresponding to the block
2102          * range. not all bits of the first and last words may be contained
2103          * within the block range.  if this is the case, we'll work against
2104          * those words (i.e. partial first and/or last) on an individual basis
2105          * (a single pass), allocating the bits of interest by hand and
2106          * updating the leaf corresponding to the dmap word. a single pass
2107          * will be used for all dmap words fully contained within the
2108          * specified range.  within this pass, the bits of all fully contained
2109          * dmap words will be marked as free in a single shot and the leaves
2110          * will be updated. a single leaf may describe the free space of
2111          * multiple dmap words, so we may update only a subset of the actual
2112          * leaves corresponding to the dmap words of the block range.
2113          */
2114         for (rembits = nblocks; rembits > 0; rembits -= nb, dbitno += nb) {
2115                 /* determine the bit number within the word and
2116                  * the number of bits within the word.
2117                  */
2118                 wbitno = dbitno & (DBWORD - 1);
2119                 nb = min(rembits, DBWORD - wbitno);
2120
2121                 /* check if only part of a word is to be allocated.
2122                  */
2123                 if (nb < DBWORD) {
2124                         /* allocate (set to 1) the appropriate bits within
2125                          * this dmap word.
2126                          */
2127                         dp->wmap[word] |= cpu_to_le32(ONES << (DBWORD - nb)
2128                                                       >> wbitno);
2129
2130                         /* update the leaf for this dmap word. in addition
2131                          * to setting the leaf value to the binary buddy max
2132                          * of the updated dmap word, dbSplit() will split
2133                          * the binary system of the leaves if need be.
2134                          */
2135                         dbSplit(tp, word, BUDMIN,
2136                                 dbMaxBud((u8 *) & dp->wmap[word]));
2137
2138                         word += 1;
2139                 } else {
2140                         /* one or more dmap words are fully contained
2141                          * within the block range.  determine how many
2142                          * words and allocate (set to 1) the bits of these
2143                          * words.
2144                          */
2145                         nwords = rembits >> L2DBWORD;
2146                         memset(&dp->wmap[word], (int) ONES, nwords * 4);
2147
2148                         /* determine how many bits.
2149                          */
2150                         nb = nwords << L2DBWORD;
2151
2152                         /* now update the appropriate leaves to reflect
2153                          * the allocated words.
2154                          */
2155                         for (; nwords > 0; nwords -= nw) {
2156                                 if (leaf[word] < BUDMIN) {
2157                                         jfs_error(bmp->db_ipbmap->i_sb,
2158                                                   "dbAllocBits: leaf page "
2159                                                   "corrupt");
2160                                         break;
2161                                 }
2162
2163                                 /* determine what the leaf value should be
2164                                  * updated to as the minimum of the l2 number
2165                                  * of bits being allocated and the l2 number
2166                                  * of bits currently described by this leaf.
2167                                  */
2168                                 size = min((int)leaf[word], NLSTOL2BSZ(nwords));
2169
2170                                 /* update the leaf to reflect the allocation.
2171                                  * in addition to setting the leaf value to
2172                                  * NOFREE, dbSplit() will split the binary
2173                                  * system of the leaves to reflect the current
2174                                  * allocation (size).
2175                                  */
2176                                 dbSplit(tp, word, size, NOFREE);
2177
2178                                 /* get the number of dmap words handled */
2179                                 nw = BUDSIZE(size, BUDMIN);
2180                                 word += nw;
2181                         }
2182                 }
2183         }
2184
2185         /* update the free count for this dmap */
2186         dp->nfree = cpu_to_le32(le32_to_cpu(dp->nfree) - nblocks);
2187
2188         BMAP_LOCK(bmp);
2189
2190         /* if this allocation group is completely free,
2191          * update the maximum allocation group number if this allocation
2192          * group is the new max.
2193          */
2194         agno = blkno >> bmp->db_agl2size;
2195         if (agno > bmp->db_maxag)
2196                 bmp->db_maxag = agno;
2197
2198         /* update the free count for the allocation group and map */
2199         bmp->db_agfree[agno] -= nblocks;
2200         bmp->db_nfree -= nblocks;
2201
2202         BMAP_UNLOCK(bmp);
2203 }
2204
2205
2206 /*
2207  * NAME:        dbFreeBits()
2208  *
2209  * FUNCTION:    free a specified block range from a dmap.
2210  *
2211  *              this routine updates the dmap to reflect the working
2212  *              state allocation of the specified block range. it directly
2213  *              updates the bits of the working map and causes the adjustment
2214  *              of the binary buddy system described by the dmap's dmtree
2215  *              leaves to reflect the bits freed.  it also causes the dmap's
2216  *              dmtree, as a whole, to reflect the deallocated range.
2217  *
2218  * PARAMETERS:
2219  *      bmp     -  pointer to bmap descriptor
2220  *      dp      -  pointer to dmap to free bits from.
2221  *      blkno   -  starting block number of the bits to be freed.
2222  *      nblocks -  number of bits to be freed.
2223  *
2224  * RETURN VALUES: 0 for success
2225  *
2226  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2227  */
2228 static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
2229                        int nblocks)
2230 {
2231         int dbitno, word, rembits, nb, nwords, wbitno, nw, agno;
2232         dmtree_t *tp = (dmtree_t *) & dp->tree;
2233         int rc = 0;
2234         int size;
2235
2236         /* determine the bit number and word within the dmap of the
2237          * starting block.
2238          */
2239         dbitno = blkno & (BPERDMAP - 1);
2240         word = dbitno >> L2DBWORD;
2241
2242         /* block range better be within the dmap.
2243          */
2244         assert(dbitno + nblocks <= BPERDMAP);
2245
2246         /* free the bits of the dmaps words corresponding to the block range.
2247          * not all bits of the first and last words may be contained within
2248          * the block range.  if this is the case, we'll work against those
2249          * words (i.e. partial first and/or last) on an individual basis
2250          * (a single pass), freeing the bits of interest by hand and updating
2251          * the leaf corresponding to the dmap word. a single pass will be used
2252          * for all dmap words fully contained within the specified range.  
2253          * within this pass, the bits of all fully contained dmap words will
2254          * be marked as free in a single shot and the leaves will be updated. a
2255          * single leaf may describe the free space of multiple dmap words,
2256          * so we may update only a subset of the actual leaves corresponding
2257          * to the dmap words of the block range.
2258          *
2259          * dbJoin() is used to update leaf values and will join the binary
2260          * buddy system of the leaves if the new leaf values indicate this
2261          * should be done.
2262          */
2263         for (rembits = nblocks; rembits > 0; rembits -= nb, dbitno += nb) {
2264                 /* determine the bit number within the word and
2265                  * the number of bits within the word.
2266                  */
2267                 wbitno = dbitno & (DBWORD - 1);
2268                 nb = min(rembits, DBWORD - wbitno);
2269
2270                 /* check if only part of a word is to be freed.
2271                  */
2272                 if (nb < DBWORD) {
2273                         /* free (zero) the appropriate bits within this
2274                          * dmap word. 
2275                          */
2276                         dp->wmap[word] &=
2277                             cpu_to_le32(~(ONES << (DBWORD - nb)
2278                                           >> wbitno));
2279
2280                         /* update the leaf for this dmap word.
2281                          */
2282                         rc = dbJoin(tp, word,
2283                                     dbMaxBud((u8 *) & dp->wmap[word]));
2284                         if (rc)
2285                                 return rc;
2286
2287                         word += 1;
2288                 } else {
2289                         /* one or more dmap words are fully contained
2290                          * within the block range.  determine how many
2291                          * words and free (zero) the bits of these words.
2292                          */
2293                         nwords = rembits >> L2DBWORD;
2294                         memset(&dp->wmap[word], 0, nwords * 4);
2295
2296                         /* determine how many bits.
2297                          */
2298                         nb = nwords << L2DBWORD;
2299
2300                         /* now update the appropriate leaves to reflect
2301                          * the freed words.
2302                          */
2303                         for (; nwords > 0; nwords -= nw) {
2304                                 /* determine what the leaf value should be
2305                                  * updated to as the minimum of the l2 number
2306                                  * of bits being freed and the l2 (max) number
2307                                  * of bits that can be described by this leaf.
2308                                  */
2309                                 size =
2310                                     min(LITOL2BSZ
2311                                         (word, L2LPERDMAP, BUDMIN),
2312                                         NLSTOL2BSZ(nwords));
2313
2314                                 /* update the leaf.
2315                                  */
2316                                 rc = dbJoin(tp, word, size);
2317                                 if (rc)
2318                                         return rc;
2319
2320                                 /* get the number of dmap words handled.
2321                                  */
2322                                 nw = BUDSIZE(size, BUDMIN);
2323                                 word += nw;
2324                         }
2325                 }
2326         }
2327
2328         /* update the free count for this dmap.
2329          */
2330         dp->nfree = cpu_to_le32(le32_to_cpu(dp->nfree) + nblocks);
2331
2332         BMAP_LOCK(bmp);
2333
2334         /* update the free count for the allocation group and 
2335          * map.
2336          */
2337         agno = blkno >> bmp->db_agl2size;
2338         bmp->db_nfree += nblocks;
2339         bmp->db_agfree[agno] += nblocks;
2340
2341         /* check if this allocation group is not completely free and
2342          * if it is currently the maximum (rightmost) allocation group.
2343          * if so, establish the new maximum allocation group number by
2344          * searching left for the first allocation group with allocation.
2345          */
2346         if ((bmp->db_agfree[agno] == bmp->db_agsize && agno == bmp->db_maxag) ||
2347             (agno == bmp->db_numag - 1 &&
2348              bmp->db_agfree[agno] == (bmp-> db_mapsize & (BPERDMAP - 1)))) {
2349                 while (bmp->db_maxag > 0) {
2350                         bmp->db_maxag -= 1;
2351                         if (bmp->db_agfree[bmp->db_maxag] !=
2352                             bmp->db_agsize)
2353                                 break;
2354                 }
2355
2356                 /* re-establish the allocation group preference if the
2357                  * current preference is right of the maximum allocation
2358                  * group.
2359                  */
2360                 if (bmp->db_agpref > bmp->db_maxag)
2361                         bmp->db_agpref = bmp->db_maxag;
2362         }
2363
2364         BMAP_UNLOCK(bmp);
2365
2366         return 0;
2367 }
2368
2369
2370 /*
2371  * NAME:        dbAdjCtl()
2372  *
2373  * FUNCTION:    adjust a dmap control page at a specified level to reflect
2374  *              the change in a lower level dmap or dmap control page's
2375  *              maximum string of free blocks (i.e. a change in the root
2376  *              of the lower level object's dmtree) due to the allocation
2377  *              or deallocation of a range of blocks with a single dmap.
2378  *
2379  *              on entry, this routine is provided with the new value of
2380  *              the lower level dmap or dmap control page root and the
2381  *              starting block number of the block range whose allocation
2382  *              or deallocation resulted in the root change.  this range
2383  *              is respresented by a single leaf of the current dmapctl
2384  *              and the leaf will be updated with this value, possibly
2385  *              causing a binary buddy system within the leaves to be 
2386  *              split or joined.  the update may also cause the dmapctl's
2387  *              dmtree to be updated.
2388  *
2389  *              if the adjustment of the dmap control page, itself, causes its
2390  *              root to change, this change will be bubbled up to the next dmap
2391  *              control level by a recursive call to this routine, specifying
2392  *              the new root value and the next dmap control page level to
2393  *              be adjusted.
2394  * PARAMETERS:
2395  *      bmp     -  pointer to bmap descriptor
2396  *      blkno   -  the first block of a block range within a dmap.  it is
2397  *                 the allocation or deallocation of this block range that
2398  *                 requires the dmap control page to be adjusted.
2399  *      newval  -  the new value of the lower level dmap or dmap control
2400  *                 page root.
2401  *      alloc   -  TRUE if adjustment is due to an allocation.
2402  *      level   -  current level of dmap control page (i.e. L0, L1, L2) to
2403  *                 be adjusted.
2404  *
2405  * RETURN VALUES:
2406  *      0       - success
2407  *      -EIO    - i/o error
2408  *
2409  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2410  */
2411 static int
2412 dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level)
2413 {
2414         struct metapage *mp;
2415         s8 oldroot;
2416         int oldval;
2417         s64 lblkno;
2418         struct dmapctl *dcp;
2419         int rc, leafno, ti;
2420
2421         /* get the buffer for the dmap control page for the specified
2422          * block number and control page level.
2423          */
2424         lblkno = BLKTOCTL(blkno, bmp->db_l2nbperpage, level);
2425         mp = read_metapage(bmp->db_ipbmap, lblkno, PSIZE, 0);
2426         if (mp == NULL)
2427                 return -EIO;
2428         dcp = (struct dmapctl *) mp->data;
2429
2430         if (dcp->leafidx != cpu_to_le32(CTLLEAFIND)) {
2431                 jfs_error(bmp->db_ipbmap->i_sb,
2432                           "dbAdjCtl: Corrupt dmapctl page");
2433                 release_metapage(mp);
2434                 return -EIO;
2435         }
2436
2437         /* determine the leaf number corresponding to the block and
2438          * the index within the dmap control tree.
2439          */
2440         leafno = BLKTOCTLLEAF(blkno, dcp->budmin);
2441         ti = leafno + le32_to_cpu(dcp->leafidx);
2442
2443         /* save the current leaf value and the current root level (i.e.
2444          * maximum l2 free string described by this dmapctl).
2445          */
2446         oldval = dcp->stree[ti];
2447         oldroot = dcp->stree[ROOT];
2448
2449         /* check if this is a control page update for an allocation.
2450          * if so, update the leaf to reflect the new leaf value using
2451          * dbSplit(); otherwise (deallocation), use dbJoin() to udpate
2452          * the leaf with the new value.  in addition to updating the
2453          * leaf, dbSplit() will also split the binary buddy system of
2454          * the leaves, if required, and bubble new values within the
2455          * dmapctl tree, if required.  similarly, dbJoin() will join
2456          * the binary buddy system of leaves and bubble new values up
2457          * the dmapctl tree as required by the new leaf value.
2458          */
2459         if (alloc) {
2460                 /* check if we are in the middle of a binary buddy
2461                  * system.  this happens when we are performing the
2462                  * first allocation out of an allocation group that
2463                  * is part (not the first part) of a larger binary
2464                  * buddy system.  if we are in the middle, back split
2465                  * the system prior to calling dbSplit() which assumes
2466                  * that it is at the front of a binary buddy system.
2467                  */
2468                 if (oldval == NOFREE) {
2469                         dbBackSplit((dmtree_t *) dcp, leafno);
2470                         oldval = dcp->stree[ti];
2471                 }
2472                 dbSplit((dmtree_t *) dcp, leafno, dcp->budmin, newval);
2473         } else {
2474                 rc = dbJoin((dmtree_t *) dcp, leafno, newval);
2475                 if (rc)
2476                         return rc;
2477         }
2478
2479         /* check if the root of the current dmap control page changed due
2480          * to the update and if the current dmap control page is not at
2481          * the current top level (i.e. L0, L1, L2) of the map.  if so (i.e.
2482          * root changed and this is not the top level), call this routine
2483          * again (recursion) for the next higher level of the mapping to
2484          * reflect the change in root for the current dmap control page.
2485          */
2486         if (dcp->stree[ROOT] != oldroot) {
2487                 /* are we below the top level of the map.  if so,
2488                  * bubble the root up to the next higher level.
2489                  */
2490                 if (level < bmp->db_maxlevel) {
2491                         /* bubble up the new root of this dmap control page to
2492                          * the next level.
2493                          */
2494                         if ((rc =
2495                              dbAdjCtl(bmp, blkno, dcp->stree[ROOT], alloc,
2496                                       level + 1))) {
2497                                 /* something went wrong in bubbling up the new
2498                                  * root value, so backout the changes to the
2499                                  * current dmap control page.
2500                                  */
2501                                 if (alloc) {
2502                                         dbJoin((dmtree_t *) dcp, leafno,
2503                                                oldval);
2504                                 } else {
2505                                         /* the dbJoin() above might have
2506                                          * caused a larger binary buddy system
2507                                          * to form and we may now be in the
2508                                          * middle of it.  if this is the case,
2509                                          * back split the buddies.
2510                                          */
2511                                         if (dcp->stree[ti] == NOFREE)
2512                                                 dbBackSplit((dmtree_t *)
2513                                                             dcp, leafno);
2514                                         dbSplit((dmtree_t *) dcp, leafno,
2515                                                 dcp->budmin, oldval);
2516                                 }
2517
2518                                 /* release the buffer and return the error.
2519                                  */
2520                                 release_metapage(mp);
2521                                 return (rc);
2522                         }
2523                 } else {
2524                         /* we're at the top level of the map. update
2525                          * the bmap control page to reflect the size
2526                          * of the maximum free buddy system.
2527                          */
2528                         assert(level == bmp->db_maxlevel);
2529                         if (bmp->db_maxfreebud != oldroot) {
2530                                 jfs_error(bmp->db_ipbmap->i_sb,
2531                                           "dbAdjCtl: the maximum free buddy is "
2532                                           "not the old root");
2533                         }
2534                         bmp->db_maxfreebud = dcp->stree[ROOT];
2535                 }
2536         }
2537
2538         /* write the buffer.
2539          */
2540         write_metapage(mp);
2541
2542         return (0);
2543 }
2544
2545
2546 /*
2547  * NAME:        dbSplit()
2548  *
2549  * FUNCTION:    update the leaf of a dmtree with a new value, splitting
2550  *              the leaf from the binary buddy system of the dmtree's
2551  *              leaves, as required.
2552  *
2553  * PARAMETERS:
2554  *      tp      - pointer to the tree containing the leaf.
2555  *      leafno  - the number of the leaf to be updated.
2556  *      splitsz - the size the binary buddy system starting at the leaf
2557  *                must be split to, specified as the log2 number of blocks.
2558  *      newval  - the new value for the leaf.
2559  *
2560  * RETURN VALUES: none
2561  *
2562  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2563  */
2564 static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval)
2565 {
2566         int budsz;
2567         int cursz;
2568         s8 *leaf = tp->dmt_stree + le32_to_cpu(tp->dmt_leafidx);
2569
2570         /* check if the leaf needs to be split.
2571          */
2572         if (leaf[leafno] > tp->dmt_budmin) {
2573                 /* the split occurs by cutting the buddy system in half
2574                  * at the specified leaf until we reach the specified
2575                  * size.  pick up the starting split size (current size
2576                  * - 1 in l2) and the corresponding buddy size.
2577                  */
2578                 cursz = leaf[leafno] - 1;
2579                 budsz = BUDSIZE(cursz, tp->dmt_budmin);
2580
2581                 /* split until we reach the specified size.
2582                  */
2583                 while (cursz >= splitsz) {
2584                         /* update the buddy's leaf with its new value.
2585                          */
2586                         dbAdjTree(tp, leafno ^ budsz, cursz);
2587
2588                         /* on to the next size and buddy.
2589                          */
2590                         cursz -= 1;
2591                         budsz >>= 1;
2592                 }
2593         }
2594
2595         /* adjust the dmap tree to reflect the specified leaf's new 
2596          * value.
2597          */
2598         dbAdjTree(tp, leafno, newval);
2599 }
2600
2601
2602 /*
2603  * NAME:        dbBackSplit()
2604  *
2605  * FUNCTION:    back split the binary buddy system of dmtree leaves
2606  *              that hold a specified leaf until the specified leaf
2607  *              starts its own binary buddy system.
2608  *
2609  *              the allocators typically perform allocations at the start
2610  *              of binary buddy systems and dbSplit() is used to accomplish
2611  *              any required splits.  in some cases, however, allocation
2612  *              may occur in the middle of a binary system and requires a
2613  *              back split, with the split proceeding out from the middle of
2614  *              the system (less efficient) rather than the start of the
2615  *              system (more efficient).  the cases in which a back split
2616  *              is required are rare and are limited to the first allocation
2617  *              within an allocation group which is a part (not first part)
2618  *              of a larger binary buddy system and a few exception cases
2619  *              in which a previous join operation must be backed out.
2620  *
2621  * PARAMETERS:
2622  *      tp      - pointer to the tree containing the leaf.
2623  *      leafno  - the number of the leaf to be updated.
2624  *
2625  * RETURN VALUES: none
2626  *
2627  * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
2628  */
2629 static void dbBackSplit(dmtree_t * tp, int leafno)
2630 {
2631         int budsz, bud, w, bsz, size;
2632         int cursz;
2633         s8 *leaf = tp->dmt_stree + le32_to_cpu(tp->dmt_leafidx);
2634
2635         /* leaf should be part (not first part) of a binary
2636          * buddy system.
2637          */
2638         assert(leaf[leafno] == NOFREE);
2639
2640         /* the back split is accomplished by iteratively finding the leaf
2641          * that starts the buddy system that contains the specified leaf and
2642          * splitting that system in two.  this iteration continues until
2643          * the specified leaf becomes the start of a buddy system. 
2644          *
2645          * determine maximum possible l2 size for the specified leaf.
2646          */
2647         size =
2648             LITOL2BSZ(leafno, le32_to_cpu(tp->dmt_l2nleafs),
2649                       tp->dmt_budmin);
2650
2651         /* determine the number of leaves covered by this size.  this
2652          * is the buddy size that we will start with as we search for
2653          * the buddy system that contains the specified leaf.
2654          */
2655         budsz = BUDSIZE(size, tp->dmt_budmin);
2656
2657         /* back split.
2658          */
2659         while (leaf[leafno] == NOFREE) {
2660                 /* find the leftmost buddy leaf.
2661                  */
2662                 for (w = leafno, bsz = budsz;; bsz <<= 1,
2663                      w = (w < bud) ? w : bud) {
2664                         assert(bsz < le32_to_cpu(tp->dmt_nleafs));
2665
2666                         /* determine the buddy.
2667                          */
2668                         bud = w ^ bsz;
2669
2670                         /* check if this buddy is the start of the system.
2671                          */
2672                         if (leaf[bud] != NOFREE) {
2673                                 /* split the leaf at the start of the
2674                                  * system in two.
2675                                  */
2676                                 cursz = leaf[bud] - 1;
2677                                 dbSplit(tp, bud, cursz, cursz);
2678                                 break;
2679                         }
2680                 }
2681         }
2682
2683         assert(leaf[leafno] == size);
2684 }
2685
2686
2687 /*
2688  * NAME:        dbJoin()
2689  *
2690  * FUNCTION:    update the leaf of a dmtree with a new value, joining
2691  *              the leaf with other leaves of the dmtree into a multi-leaf
2692  *              binary buddy system, as required.
2693  *
2694  * PARAMETERS:
2695  *      tp      - pointer to the tree containing the leaf.
2696  *      leafno  - the number of the leaf to be updated.
2697  *      newval  - the new value for the leaf.
2698  *
2699  * RETURN VALUES: none
2700  */
2701 static int dbJoin(dmtree_t * tp, int leafno, int newval)
2702 {
2703         int budsz, buddy;
2704         s8 *leaf;
2705
2706         /* can the new leaf value require a join with other leaves ?
2707          */
2708         if (newval >= tp->dmt_budmin) {
2709                 /* pickup a pointer to the leaves of the tree.
2710                  */
2711                 leaf = tp->dmt_stree + le32_to_cpu(tp->dmt_leafidx);
2712
2713                 /* try to join the specified leaf into a large binary
2714                  * buddy system.  the join proceeds by attempting to join
2715                  * the specified leafno with its buddy (leaf) at new value.
2716                  * if the join occurs, we attempt to join the left leaf
2717                  * of the joined buddies with its buddy at new value + 1.
2718                  * we continue to join until we find a buddy that cannot be
2719                  * joined (does not have a value equal to the size of the
2720                  * last join) or until all leaves have been joined into a
2721                  * single system.
2722                  *
2723                  * get the buddy size (number of words covered) of
2724                  * the new value.
2725                  */
2726                 budsz = BUDSIZE(newval, tp->dmt_budmin);
2727
2728                 /* try to join.
2729                  */
2730                 while (budsz < le32_to_cpu(tp->dmt_nleafs)) {
2731                         /* get the buddy leaf.
2732                          */
2733                         buddy = leafno ^ budsz;
2734
2735                         /* if the leaf's new value is greater than its
2736                          * buddy's value, we join no more.
2737                          */
2738                         if (newval > leaf[buddy])
2739                                 break;
2740
2741                         /* It shouldn't be less */
2742                         if (newval < leaf[buddy])
2743                                 return -EIO;
2744
2745                         /* check which (leafno or buddy) is the left buddy.
2746                          * the left buddy gets to claim the blocks resulting
2747                          * from the join while the right gets to claim none.
2748                          * the left buddy is also eligable to participate in
2749                          * a join at the next higher level while the right
2750                          * is not.
2751                          *
2752                          */
2753                         if (leafno < buddy) {
2754                                 /* leafno is the left buddy.
2755                                  */
2756                                 dbAdjTree(tp, buddy, NOFREE);
2757                         } else {
2758                                 /* buddy is the left buddy and becomes
2759                                  * leafno.
2760                                  */
2761                                 dbAdjTree(tp, leafno, NOFREE);
2762                                 leafno = buddy;
2763                         }
2764
2765                         /* on to try the next join.
2766                          */
2767                         newval += 1;
2768                         budsz <<= 1;
2769                 }
2770         }
2771
2772         /* update the leaf value.
2773          */
2774         dbAdjTree(tp, leafno, newval);
2775
2776         return 0;
2777 }
2778
2779
2780 /*
2781  * NAME:        dbAdjTree()
2782  *
2783  * FUNCTION:    update a leaf of a dmtree with a new value, adjusting
2784  *              the dmtree, as required, to reflect the new leaf value.
2785  *              the combination of any buddies must already be done before
2786  *              this is called.
2787  *
2788  * PARAMETERS:
2789  *      tp      - pointer to the tree to be adjusted.
2790  *      leafno  - the number of the leaf to be updated.
2791  *      newval  - the new value for the leaf.
2792  *
2793  * RETURN VALUES: none
2794  */
2795 static void dbAdjTree(dmtree_t * tp, int leafno, int newval)
2796 {
2797         int lp, pp, k;
2798         int max;
2799
2800         /* pick up the index of the leaf for this leafno.
2801          */
2802         lp = leafno + le32_to_cpu(tp->dmt_leafidx);
2803
2804         /* is the current value the same as the old value ?  if so,
2805          * there is nothing to do.
2806          */
2807         if (tp->dmt_stree[lp] == newval)
2808                 return;
2809
2810         /* set the new value.
2811          */
2812         tp->dmt_stree[lp] = newval;
2813
2814         /* bubble the new value up the tree as required.
2815          */
2816         for (k = 0; k < le32_to_cpu(tp->dmt_height); k++) {
2817                 /* get the index of the first leaf of the 4 leaf
2818                  * group containing the specified leaf (leafno).
2819                  */
2820                 lp = ((lp - 1) & ~0x03) + 1;
2821
2822                 /* get the index of the parent of this 4 leaf group.
2823                  */
2824                 pp = (lp - 1) >> 2;
2825
2826                 /* determine the maximum of the 4 leaves.
2827                  */
2828                 max = TREEMAX(&tp->dmt_stree[lp]);
2829
2830                 /* if the maximum of the 4 is the same as the
2831                  * parent's value, we're done.
2832                  */
2833                 if (tp->dmt_stree[pp] == max)
2834                         break;
2835
2836                 /* parent gets new value.
2837                  */
2838                 tp->dmt_stree[pp] = max;
2839
2840                 /* parent becomes leaf for next go-round.
2841                  */
2842                 lp = pp;
2843         }
2844 }
2845
2846
2847 /*
2848  * NAME:        dbFindLeaf()
2849  *
2850  * FUNCTION:    search a dmtree_t for sufficient free blocks, returning
2851  *              the index of a leaf describing the free blocks if 
2852  *              sufficient free blocks are found.
2853  *
2854  *              the search starts at the top of the dmtree_t tree and
2855  *              proceeds down the tree to the leftmost leaf with sufficient
2856  *              free space.
2857  *
2858  * PARAMETERS:
2859  *      tp      - pointer to the tree to be searched.
2860  *      l2nb    - log2 number of free blocks to search for.
2861  *      leafidx - return pointer to be set to the index of the leaf
2862  *                describing at least l2nb free blocks if sufficient
2863  *                free blocks are found.
2864  *
2865  * RETURN VALUES:
2866  *      0       - success
2867  *      -ENOSPC - insufficient free blocks. 
2868  */
2869 static int dbFindLeaf(dmtree_t * tp, int l2nb, int *leafidx)
2870 {
2871         int ti, n = 0, k, x = 0;
2872
2873         /* first check the root of the tree to see if there is
2874          * sufficient free space.
2875          */
2876         if (l2nb > tp->dmt_stree[ROOT])
2877                 return -ENOSPC;
2878
2879         /* sufficient free space available. now search down the tree
2880          * starting at the next level for the leftmost leaf that
2881          * describes sufficient free space.
2882          */
2883         for (k = le32_to_cpu(tp->dmt_height), ti = 1;
2884              k > 0; k--, ti = ((ti + n) << 2) + 1) {
2885                 /* search the four nodes at this level, starting from
2886                  * the left.
2887                  */
2888                 for (x = ti, n = 0; n < 4; n++) {
2889                         /* sufficient free space found.  move to the next
2890                          * level (or quit if this is the last level).
2891                          */
2892                         if (l2nb <= tp->dmt_stree[x + n])
2893                                 break;
2894                 }
2895
2896                 /* better have found something since the higher
2897                  * levels of the tree said it was here.
2898                  */
2899                 assert(n < 4);
2900         }
2901
2902         /* set the return to the leftmost leaf describing sufficient
2903          * free space.
2904          */
2905         *leafidx = x + n - le32_to_cpu(tp->dmt_leafidx);
2906
2907         return (0);
2908 }
2909
2910
2911 /*
2912  * NAME:        dbFindBits()
2913  *
2914  * FUNCTION:    find a specified number of binary buddy free bits within a
2915  *              dmap bitmap word value.
2916  *
2917  *              this routine searches the bitmap value for (1 << l2nb) free
2918  *              bits at (1 << l2nb) alignments within the value.
2919  *
2920  * PARAMETERS:
2921  *      word    -  dmap bitmap word value.
2922  *      l2nb    -  number of free bits specified as a log2 number.
2923  *
2924  * RETURN VALUES:
2925  *      starting bit number of free bits.
2926  */
2927 static int dbFindBits(u32 word, int l2nb)
2928 {
2929         int bitno, nb;
2930         u32 mask;
2931
2932         /* get the number of bits.
2933          */
2934         nb = 1 << l2nb;
2935         assert(nb <= DBWORD);
2936
2937         /* complement the word so we can use a mask (i.e. 0s represent
2938          * free bits) and compute the mask.
2939          */
2940         word = ~word;
2941         mask = ONES << (DBWORD - nb);
2942
2943         /* scan the word for nb free bits at nb alignments.
2944          */
2945         for (bitno = 0; mask != 0; bitno += nb, mask >>= nb) {
2946                 if ((mask & word) == mask)
2947                         break;
2948         }
2949
2950         ASSERT(bitno < 32);
2951
2952         /* return the bit number.
2953          */
2954         return (bitno);
2955 }
2956
2957
2958 /*
2959  * NAME:        dbMaxBud(u8 *cp)
2960  *
2961  * FUNCTION:    determine the largest binary buddy string of free
2962  *              bits within 32-bits of the map.
2963  *
2964  * PARAMETERS:
2965  *      cp      -  pointer to the 32-bit value.
2966  *
2967  * RETURN VALUES:
2968  *      largest binary buddy of free bits within a dmap word.
2969  */
2970 static int dbMaxBud(u8 * cp)
2971 {
2972         signed char tmp1, tmp2;
2973
2974         /* check if the wmap word is all free. if so, the
2975          * free buddy size is BUDMIN.
2976          */
2977         if (*((uint *) cp) == 0)
2978                 return (BUDMIN);
2979
2980         /* check if the wmap word is half free. if so, the
2981          * free buddy size is BUDMIN-1.
2982          */
2983         if (*((u16 *) cp) == 0 || *((u16 *) cp + 1) == 0)
2984                 return (BUDMIN - 1);
2985
2986         /* not all free or half free. determine the free buddy
2987          * size thru table lookup using quarters of the wmap word.
2988          */
2989         tmp1 = max(budtab[cp[2]], budtab[cp[3]]);
2990         tmp2 = max(budtab[cp[0]], budtab[cp[1]]);
2991         return (max(tmp1, tmp2));
2992 }
2993
2994
2995 /*
2996  * NAME:        cnttz(uint word)
2997  *
2998  * FUNCTION:    determine the number of trailing zeros within a 32-bit
2999  *              value.
3000  *
3001  * PARAMETERS:
3002  *      value   -  32-bit value to be examined.
3003  *
3004  * RETURN VALUES:
3005  *      count of trailing zeros
3006  */
3007 static int cnttz(u32 word)
3008 {
3009         int n;
3010
3011         for (n = 0; n < 32; n++, word >>= 1) {
3012                 if (word & 0x01)
3013                         break;
3014         }
3015
3016         return (n);
3017 }
3018
3019
3020 /*
3021  * NAME:        cntlz(u32 value)
3022  *
3023  * FUNCTION:    determine the number of leading zeros within a 32-bit
3024  *              value.
3025  *
3026  * PARAMETERS:
3027  *      value   -  32-bit value to be examined.
3028  *
3029  * RETURN VALUES:
3030  *      count of leading zeros
3031  */
3032 static int cntlz(u32 value)
3033 {
3034         int n;
3035
3036         for (n = 0; n < 32; n++, value <<= 1) {
3037                 if (value & HIGHORDER)
3038                         break;
3039         }
3040         return (n);
3041 }
3042
3043
3044 /*
3045  * NAME:        blkstol2(s64 nb)
3046  *
3047  * FUNCTION:    convert a block count to its log2 value. if the block
3048  *              count is not a l2 multiple, it is rounded up to the next
3049  *              larger l2 multiple.
3050  *
3051  * PARAMETERS:
3052  *      nb      -  number of blocks
3053  *
3054  * RETURN VALUES:
3055  *      log2 number of blocks
3056  */
3057 static int blkstol2(s64 nb)
3058 {
3059         int l2nb;
3060         s64 mask;               /* meant to be signed */
3061
3062         mask = (s64) 1 << (64 - 1);
3063
3064         /* count the leading bits.
3065          */
3066         for (l2nb = 0; l2nb < 64; l2nb++, mask >>= 1) {
3067                 /* leading bit found.
3068                  */
3069                 if (nb & mask) {
3070                         /* determine the l2 value.
3071                          */
3072                         l2nb = (64 - 1) - l2nb;
3073
3074                         /* check if we need to round up.
3075                          */
3076                         if (~mask & nb)
3077                                 l2nb++;
3078
3079                         return (l2nb);
3080                 }
3081         }
3082         assert(0);
3083         return 0;               /* fix compiler warning */
3084 }
3085
3086
3087 /*
3088  * NAME:        dbAllocBottomUp()
3089  *
3090  * FUNCTION:    alloc the specified block range from the working block
3091  *              allocation map.
3092  *
3093  *              the blocks will be alloc from the working map one dmap
3094  *              at a time.
3095  *
3096  * PARAMETERS:
3097  *      ip      -  pointer to in-core inode;
3098  *      blkno   -  starting block number to be freed.
3099  *      nblocks -  number of blocks to be freed.
3100  *
3101  * RETURN VALUES:
3102  *      0       - success
3103  *      -EIO    - i/o error
3104  */
3105 int dbAllocBottomUp(struct inode *ip, s64 blkno, s64 nblocks)
3106 {
3107         struct metapage *mp;
3108         struct dmap *dp;
3109         int nb, rc;
3110         s64 lblkno, rem;
3111         struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
3112         struct bmap *bmp = JFS_SBI(ip->i_sb)->bmap;
3113
3114         IREAD_LOCK(ipbmap);
3115
3116         /* block to be allocated better be within the mapsize. */
3117         ASSERT(nblocks <= bmp->db_mapsize - blkno);
3118
3119         /*
3120          * allocate the blocks a dmap at a time.
3121          */
3122         mp = NULL;
3123         for (rem = nblocks; rem > 0; rem -= nb, blkno += nb) {
3124                 /* release previous dmap if any */
3125                 if (mp) {
3126                         write_metapage(mp);
3127                 }
3128
3129                 /* get the buffer for the current dmap. */
3130                 lblkno = BLKTODMAP(blkno, bmp->db_l2nbperpage);
3131                 mp = read_metapage(ipbmap, lblkno, PSIZE, 0);
3132                 if (mp == NULL) {
3133                         IREAD_UNLOCK(ipbmap);
3134                         return -EIO;
3135                 }
3136                 dp = (struct dmap *) mp->data;
3137
3138                 /* determine the number of blocks to be allocated from
3139                  * this dmap.
3140                  */
3141                 nb = min(rem, BPERDMAP - (blkno & (BPERDMAP - 1)));
3142
3143                 /* allocate the blocks. */
3144                 if ((rc = dbAllocDmapBU(bmp, dp, blkno, nb))) {
3145                         release_metapage(mp);
3146                         IREAD_UNLOCK(ipbmap);
3147                         return (rc);
3148                 }
3149         }
3150
3151         /* write the last buffer. */
3152         write_metapage(mp);
3153
3154         IREAD_UNLOCK(ipbmap);
3155
3156         return (0);
3157 }
3158
3159
3160 static int dbAllocDmapBU(struct bmap * bmp, struct dmap * dp, s64 blkno,
3161                          int nblocks)
3162 {
3163         int rc;
3164         int dbitno, word, rembits, nb, nwords, wbitno, agno;
3165         s8 oldroot, *leaf;
3166         struct dmaptree *tp = (struct dmaptree *) & dp->tree;
3167
3168         /* save the current value of the root (i.e. maximum free string)
3169          * of the dmap tree.
3170          */
3171         oldroot = tp->stree[ROOT];
3172
3173         /* pick up a pointer to the leaves of the dmap tree */
3174         leaf = tp->stree + LEAFIND;
3175
3176         /* determine the bit number and word within the dmap of the
3177          * starting block.
3178          */
3179         dbitno = blkno & (BPERDMAP - 1);
3180         word = dbitno >> L2DBWORD;
3181
3182         /* block range better be within the dmap */
3183         assert(dbitno + nblocks <= BPERDMAP);
3184
3185         /* allocate the bits of the dmap's words corresponding to the block
3186          * range. not all bits of the first and last words may be contained
3187          * within the block range.  if this is the case, we'll work against
3188          * those words (i.e. partial first and/or last) on an individual basis
3189          * (a single pass), allocating the bits of interest by hand and
3190          * updating the leaf corresponding to the dmap word. a single pass
3191          * will be used for all dmap words fully contained within the
3192          * specified range.  within this pass, the bits of all fully contained
3193          * dmap words will be marked as free in a single shot and the leaves
3194          * will be updated. a single leaf may describe the free space of
3195          * multiple dmap words, so we may update only a subset of the actual
3196          * leaves corresponding to the dmap words of the block range.
3197          */
3198         for (rembits = nblocks; rembits > 0; rembits -= nb, dbitno += nb) {
3199                 /* determine the bit number within the word and
3200                  * the number of bits within the word.
3201                  */
3202                 wbitno = dbitno & (DBWORD - 1);
3203                 nb = min(rembits, DBWORD - wbitno);
3204
3205                 /* check if only part of a word is to be allocated.
3206                  */
3207                 if (nb < DBWORD) {
3208                         /* allocate (set to 1) the appropriate bits within
3209                          * this dmap word.
3210                          */
3211                         dp->wmap[word] |= cpu_to_le32(ONES << (DBWORD - nb)
3212                                                       >> wbitno);
3213
3214                         word++;
3215                 } else {
3216                         /* one or more dmap words are fully contained
3217                          * within the block range.  determine how many
3218                          * words and allocate (set to 1) the bits of these
3219                          * words.
3220                          */
3221                         nwords = rembits >> L2DBWORD;
3222                         memset(&dp->wmap[word], (int) ONES, nwords * 4);
3223
3224                         /* determine how many bits */
3225                         nb = nwords << L2DBWORD;
3226                         word += nwords;
3227                 }
3228         }
3229
3230         /* update the free count for this dmap */
3231         dp->nfree = cpu_to_le32(le32_to_cpu(dp->nfree) - nblocks);
3232
3233         /* reconstruct summary tree */
3234         dbInitDmapTree(dp);
3235
3236         BMAP_LOCK(bmp);
3237
3238         /* if this allocation group is completely free,
3239          * update the highest active allocation group number 
3240          * if this allocation group is the new max.
3241          */
3242         agno = blkno >> bmp->db_agl2size;
3243         if (agno > bmp->db_maxag)
3244                 bmp->db_maxag = agno;
3245
3246         /* update the free count for the allocation group and map */
3247         bmp->db_agfree[agno] -= nblocks;
3248         bmp->db_nfree -= nblocks;
3249
3250         BMAP_UNLOCK(bmp);
3251
3252         /* if the root has not changed, done. */
3253         if (tp->stree[ROOT] == oldroot)
3254                 return (0);
3255
3256         /* root changed. bubble the change up to the dmap control pages.
3257          * if the adjustment of the upper level control pages fails,
3258          * backout the bit allocation (thus making everything consistent).
3259          */
3260         if ((rc = dbAdjCtl(bmp, blkno, tp->stree[ROOT], 1, 0)))
3261                 dbFreeBits(bmp, dp, blkno, nblocks);
3262
3263         return (rc);
3264 }
3265
3266
3267 /*
3268  * NAME:        dbExtendFS()
3269  *
3270  * FUNCTION:    extend bmap from blkno for nblocks;
3271  *              dbExtendFS() updates bmap ready for dbAllocBottomUp();
3272  *
3273  * L2
3274  *  |
3275  *   L1---------------------------------L1
3276  *    |                                  |
3277  *     L0---------L0---------L0           L0---------L0---------L0
3278  *      |          |          |            |          |          |
3279  *       d0,...,dn  d0,...,dn  d0,...,dn    d0,...,dn  d0,...,dn  d0,.,dm;
3280  * L2L1L0d0,...,dnL0d0,...,dnL0d0,...,dnL1L0d0,...,dnL0d0,...,dnL0d0,..dm
3281  *
3282  * <---old---><----------------------------extend----------------------->   
3283  */
3284 int dbExtendFS(struct inode *ipbmap, s64 blkno, s64 nblocks)
3285 {
3286         struct jfs_sb_info *sbi = JFS_SBI(ipbmap->i_sb);
3287         int nbperpage = sbi->nbperpage;
3288         int i, i0 = TRUE, j, j0 = TRUE, k, n;
3289         s64 newsize;
3290         s64 p;
3291         struct metapage *mp, *l2mp, *l1mp = NULL, *l0mp = NULL;
3292         struct dmapctl *l2dcp, *l1dcp, *l0dcp;
3293         struct dmap *dp;
3294         s8 *l0leaf, *l1leaf, *l2leaf;
3295         struct bmap *bmp = sbi->bmap;
3296         int agno, l2agsize, oldl2agsize;
3297         s64 ag_rem;
3298
3299         newsize = blkno + nblocks;
3300
3301         jfs_info("dbExtendFS: blkno:%Ld nblocks:%Ld newsize:%Ld",
3302                  (long long) blkno, (long long) nblocks, (long long) newsize);
3303
3304         /*
3305          *      initialize bmap control page.
3306          *
3307          * all the data in bmap control page should exclude
3308          * the mkfs hidden dmap page.
3309          */
3310
3311         /* update mapsize */
3312         bmp->db_mapsize = newsize;
3313         bmp->db_maxlevel = BMAPSZTOLEV(bmp->db_mapsize);
3314
3315         /* compute new AG size */
3316         l2agsize = dbGetL2AGSize(newsize);
3317         oldl2agsize = bmp->db_agl2size;
3318
3319         bmp->db_agl2size = l2agsize;
3320         bmp->db_agsize = 1 << l2agsize;
3321
3322         /* compute new number of AG */
3323         agno = bmp->db_numag;
3324         bmp->db_numag = newsize >> l2agsize;
3325         bmp->db_numag += ((u32) newsize % (u32) bmp->db_agsize) ? 1 : 0;
3326
3327         /*
3328          *      reconfigure db_agfree[] 
3329          * from old AG configuration to new AG configuration;
3330          *
3331          * coalesce contiguous k (newAGSize/oldAGSize) AGs;
3332          * i.e., (AGi, ..., AGj) where i = k*n and j = k*(n+1) - 1 to AGn;
3333          * note: new AG size = old AG size * (2**x).
3334          */
3335         if (l2agsize == oldl2agsize)
3336                 goto extend;
3337         k = 1 << (l2agsize - oldl2agsize);
3338         ag_rem = bmp->db_agfree[0];     /* save agfree[0] */
3339         for (i = 0, n = 0; i < agno; n++) {
3340                 bmp->db_agfree[n] = 0;  /* init collection point */
3341
3342                 /* coalesce cotiguous k AGs; */
3343                 for (j = 0; j < k && i < agno; j++, i++) {
3344                         /* merge AGi to AGn */
3345                         bmp->db_agfree[n] += bmp->db_agfree[i];
3346                 }
3347         }
3348         bmp->db_agfree[0] += ag_rem;    /* restore agfree[0] */
3349
3350         for (; n < MAXAG; n++)
3351                 bmp->db_agfree[n] = 0;
3352
3353         /*
3354          * update highest active ag number
3355          */
3356
3357         bmp->db_maxag = bmp->db_maxag / k;
3358
3359         /*
3360          *      extend bmap
3361          *
3362          * update bit maps and corresponding level control pages;
3363          * global control page db_nfree, db_agfree[agno], db_maxfreebud;
3364          */
3365       extend:
3366         /* get L2 page */
3367         p = BMAPBLKNO + nbperpage;      /* L2 page */
3368         l2mp = read_metapage(ipbmap, p, PSIZE, 0);
3369         if (!l2mp) {
3370                 jfs_error(ipbmap->i_sb, "dbExtendFS: L2 page could not be read");
3371                 return -EIO;
3372         }
3373         l2dcp = (struct dmapctl *) l2mp->data;
3374
3375         /* compute start L1 */
3376         k = blkno >> L2MAXL1SIZE;
3377         l2leaf = l2dcp->stree + CTLLEAFIND + k;
3378         p = BLKTOL1(blkno, sbi->l2nbperpage);   /* L1 page */
3379
3380         /*
3381          * extend each L1 in L2
3382          */
3383         for (; k < LPERCTL; k++, p += nbperpage) {
3384                 /* get L1 page */
3385                 if (j0) {
3386                         /* read in L1 page: (blkno & (MAXL1SIZE - 1)) */
3387                         l1mp = read_metapage(ipbmap, p, PSIZE, 0);
3388                         if (l1mp == NULL)
3389                                 goto errout;
3390                         l1dcp = (struct dmapctl *) l1mp->data;
3391
3392                         /* compute start L0 */
3393                         j = (blkno & (MAXL1SIZE - 1)) >> L2MAXL0SIZE;
3394                         l1leaf = l1dcp->stree + CTLLEAFIND + j;
3395                         p = BLKTOL0(blkno, sbi->l2nbperpage);
3396                         j0 = FALSE;
3397                 } else {
3398                         /* assign/init L1 page */
3399                         l1mp = get_metapage(ipbmap, p, PSIZE, 0);
3400                         if (l1mp == NULL)
3401                                 goto errout;
3402
3403                         l1dcp = (struct dmapctl *) l1mp->data;
3404
3405                         /* compute start L0 */
3406                         j = 0;
3407                         l1leaf = l1dcp->stree + CTLLEAFIND;
3408                         p += nbperpage; /* 1st L0 of L1.k  */
3409                 }
3410
3411                 /*
3412                  * extend each L0 in L1
3413                  */
3414                 for (; j < LPERCTL; j++) {
3415                         /* get L0 page */
3416                         if (i0) {
3417                                 /* read in L0 page: (blkno & (MAXL0SIZE - 1)) */
3418
3419                                 l0mp = read_metapage(ipbmap, p, PSIZE, 0);
3420                                 if (l0mp == NULL)
3421                                         goto errout;
3422                                 l0dcp = (struct dmapctl *) l0mp->data;
3423
3424                                 /* compute start dmap */
3425                                 i = (blkno & (MAXL0SIZE - 1)) >>
3426                                     L2BPERDMAP;
3427                                 l0leaf = l0dcp->stree + CTLLEAFIND + i;
3428                                 p = BLKTODMAP(blkno,
3429                                               sbi->l2nbperpage);
3430                                 i0 = FALSE;
3431                         } else {
3432                                 /* assign/init L0 page */
3433                                 l0mp = get_metapage(ipbmap, p, PSIZE, 0);
3434                                 if (l0mp == NULL)
3435                                         goto errout;
3436
3437                                 l0dcp = (struct dmapctl *) l0mp->data;
3438
3439                                 /* compute start dmap */
3440                                 i = 0;
3441                                 l0leaf = l0dcp->stree + CTLLEAFIND;
3442                                 p += nbperpage; /* 1st dmap of L0.j */
3443                         }
3444
3445                         /*
3446                          * extend each dmap in L0
3447                          */
3448                         for (; i < LPERCTL; i++) {
3449                                 /*
3450                                  * reconstruct the dmap page, and
3451                                  * initialize corresponding parent L0 leaf
3452                                  */
3453                                 if ((n = blkno & (BPERDMAP - 1))) {
3454                                         /* read in dmap page: */
3455                                         mp = read_metapage(ipbmap, p,
3456                                                            PSIZE, 0);
3457                                         if (mp == NULL)
3458                                                 goto errout;
3459                                         n = min(nblocks, (s64)BPERDMAP - n);
3460                                 } else {
3461                                         /* assign/init dmap page */
3462                                         mp = read_metapage(ipbmap, p,
3463                                                            PSIZE, 0);
3464                                         if (mp == NULL)
3465                                                 goto errout;
3466
3467                                         n = min(nblocks, (s64)BPERDMAP);
3468                                 }
3469
3470                                 dp = (struct dmap *) mp->data;
3471                                 *l0leaf = dbInitDmap(dp, blkno, n);
3472
3473                                 bmp->db_nfree += n;
3474                                 agno = le64_to_cpu(dp->start) >> l2agsize;
3475                                 bmp->db_agfree[agno] += n;
3476
3477                                 write_metapage(mp);
3478
3479                                 l0leaf++;
3480                                 p += nbperpage;
3481
3482                                 blkno += n;
3483                                 nblocks -= n;
3484                                 if (nblocks == 0)
3485                                         break;
3486                         }       /* for each dmap in a L0 */
3487
3488                         /*
3489                          * build current L0 page from its leaves, and 
3490                          * initialize corresponding parent L1 leaf
3491                          */
3492                         *l1leaf = dbInitDmapCtl(l0dcp, 0, ++i);
3493                         write_metapage(l0mp);
3494                         l0mp = NULL;
3495
3496                         if (nblocks)
3497                                 l1leaf++;       /* continue for next L0 */
3498                         else {
3499                                 /* more than 1 L0 ? */
3500                                 if (j > 0)
3501                                         break;  /* build L1 page */
3502                                 else {
3503                                         /* summarize in global bmap page */
3504                                         bmp->db_maxfreebud = *l1leaf;
3505                                         release_metapage(l1mp);
3506                                         release_metapage(l2mp);
3507                                         goto finalize;
3508                                 }
3509                         }
3510                 }               /* for each L0 in a L1 */
3511
3512                 /*
3513                  * build current L1 page from its leaves, and 
3514                  * initialize corresponding parent L2 leaf
3515                  */
3516                 *l2leaf = dbInitDmapCtl(l1dcp, 1, ++j);
3517                 write_metapage(l1mp);
3518                 l1mp = NULL;
3519
3520                 if (nblocks)
3521                         l2leaf++;       /* continue for next L1 */
3522                 else {
3523                         /* more than 1 L1 ? */
3524                         if (k > 0)
3525                                 break;  /* build L2 page */
3526                         else {
3527                                 /* summarize in global bmap page */
3528                                 bmp->db_maxfreebud = *l2leaf;
3529                                 release_metapage(l2mp);
3530                                 goto finalize;
3531                         }
3532                 }
3533         }                       /* for each L1 in a L2 */
3534
3535         jfs_error(ipbmap->i_sb,
3536                   "dbExtendFS: function has not returned as expected");
3537 errout:
3538         if (l0mp)
3539                 release_metapage(l0mp);
3540         if (l1mp)
3541                 release_metapage(l1mp);
3542         release_metapage(l2mp);
3543         return -EIO;
3544
3545         /*
3546          *      finalize bmap control page
3547          */
3548 finalize:
3549
3550         return 0;
3551 }
3552
3553
3554 /*
3555  *      dbFinalizeBmap()
3556  */
3557 void dbFinalizeBmap(struct inode *ipbmap)
3558 {
3559         struct bmap *bmp = JFS_SBI(ipbmap->i_sb)->bmap;
3560         int actags, inactags, l2nl;
3561         s64 ag_rem, actfree, inactfree, avgfree;
3562         int i, n;
3563
3564         /*
3565          *      finalize bmap control page
3566          */
3567 //finalize:
3568         /* 
3569          * compute db_agpref: preferred ag to allocate from
3570          * (the leftmost ag with average free space in it);
3571          */
3572 //agpref:
3573         /* get the number of active ags and inacitve ags */
3574         actags = bmp->db_maxag + 1;
3575         inactags = bmp->db_numag - actags;
3576         ag_rem = bmp->db_mapsize & (bmp->db_agsize - 1);        /* ??? */
3577
3578         /* determine how many blocks are in the inactive allocation
3579          * groups. in doing this, we must account for the fact that
3580          * the rightmost group might be a partial group (i.e. file
3581          * system size is not a multiple of the group size).
3582          */
3583         inactfree = (inactags && ag_rem) ?
3584             ((inactags - 1) << bmp->db_agl2size) + ag_rem
3585             : inactags << bmp->db_agl2size;
3586
3587         /* determine how many free blocks are in the active
3588          * allocation groups plus the average number of free blocks
3589          * within the active ags.
3590          */
3591         actfree = bmp->db_nfree - inactfree;
3592         avgfree = (u32) actfree / (u32) actags;
3593
3594         /* if the preferred allocation group has not average free space.
3595          * re-establish the preferred group as the leftmost
3596          * group with average free space.
3597          */
3598         if (bmp->db_agfree[bmp->db_agpref] < avgfree) {
3599                 for (bmp->db_agpref = 0; bmp->db_agpref < actags;
3600                      bmp->db_agpref++) {
3601                         if (bmp->db_agfree[bmp->db_agpref] >= avgfree)
3602                                 break;
3603                 }
3604                 if (bmp->db_agpref >= bmp->db_numag) {
3605                         jfs_error(ipbmap->i_sb,
3606                                   "cannot find ag with average freespace");
3607                 }
3608         }
3609
3610         /*
3611          * compute db_aglevel, db_agheigth, db_width, db_agstart:
3612          * an ag is covered in aglevel dmapctl summary tree, 
3613          * at agheight level height (from leaf) with agwidth number of nodes 
3614          * each, which starts at agstart index node of the smmary tree node 
3615          * array;
3616          */
3617         bmp->db_aglevel = BMAPSZTOLEV(bmp->db_agsize);
3618         l2nl =
3619             bmp->db_agl2size - (L2BPERDMAP + bmp->db_aglevel * L2LPERCTL);
3620         bmp->db_agheigth = l2nl >> 1;
3621         bmp->db_agwidth = 1 << (l2nl - (bmp->db_agheigth << 1));
3622         for (i = 5 - bmp->db_agheigth, bmp->db_agstart = 0, n = 1; i > 0;
3623              i--) {
3624                 bmp->db_agstart += n;
3625                 n <<= 2;
3626         }
3627
3628 }
3629
3630
3631 /*
3632  * NAME:        dbInitDmap()/ujfs_idmap_page()
3633  *                                                                    
3634  * FUNCTION:    initialize working/persistent bitmap of the dmap page
3635  *              for the specified number of blocks:
3636  *                                                                    
3637  *              at entry, the bitmaps had been initialized as free (ZEROS);
3638  *              The number of blocks will only account for the actually 
3639  *              existing blocks. Blocks which don't actually exist in 
3640  *              the aggregate will be marked as allocated (ONES);
3641  *
3642  * PARAMETERS:
3643  *      dp      - pointer to page of map
3644  *      nblocks - number of blocks this page
3645  *
3646  * RETURNS: NONE
3647  */
3648 static int dbInitDmap(struct dmap * dp, s64 Blkno, int nblocks)
3649 {
3650         int blkno, w, b, r, nw, nb, i;
3651
3652         /* starting block number within the dmap */
3653         blkno = Blkno & (BPERDMAP - 1);
3654
3655         if (blkno == 0) {
3656                 dp->nblocks = dp->nfree = cpu_to_le32(nblocks);
3657                 dp->start = cpu_to_le64(Blkno);
3658
3659                 if (nblocks == BPERDMAP) {
3660                         memset(&dp->wmap[0], 0, LPERDMAP * 4);
3661                         memset(&dp->pmap[0], 0, LPERDMAP * 4);
3662                         goto initTree;
3663                 }
3664         } else {
3665                 dp->nblocks =
3666                     cpu_to_le32(le32_to_cpu(dp->nblocks) + nblocks);
3667                 dp->nfree = cpu_to_le32(le32_to_cpu(dp->nfree) + nblocks);
3668         }
3669
3670         /* word number containing start block number */
3671         w = blkno >> L2DBWORD;
3672
3673         /*
3674          * free the bits corresponding to the block range (ZEROS):
3675          * note: not all bits of the first and last words may be contained 
3676          * within the block range.
3677          */
3678         for (r = nblocks; r > 0; r -= nb, blkno += nb) {
3679                 /* number of bits preceding range to be freed in the word */
3680                 b = blkno & (DBWORD - 1);
3681                 /* number of bits to free in the word */
3682                 nb = min(r, DBWORD - b);
3683
3684                 /* is partial word to be freed ? */
3685                 if (nb < DBWORD) {
3686                         /* free (set to 0) from the bitmap word */
3687                         dp->wmap[w] &= cpu_to_le32(~(ONES << (DBWORD - nb)
3688                                                      >> b));
3689                         dp->pmap[w] &= cpu_to_le32(~(ONES << (DBWORD - nb)
3690                                                      >> b));
3691
3692                         /* skip the word freed */
3693                         w++;
3694                 } else {
3695                         /* free (set to 0) contiguous bitmap words */
3696                         nw = r >> L2DBWORD;
3697                         memset(&dp->wmap[w], 0, nw * 4);
3698                         memset(&dp->pmap[w], 0, nw * 4);
3699
3700                         /* skip the words freed */
3701                         nb = nw << L2DBWORD;
3702                         w += nw;
3703                 }
3704         }
3705
3706         /*
3707          * mark bits following the range to be freed (non-existing 
3708          * blocks) as allocated (ONES)
3709          */
3710
3711         if (blkno == BPERDMAP)
3712                 goto initTree;
3713
3714         /* the first word beyond the end of existing blocks */
3715         w = blkno >> L2DBWORD;
3716
3717         /* does nblocks fall on a 32-bit boundary ? */
3718         b = blkno & (DBWORD - 1);
3719         if (b) {
3720                 /* mark a partial word allocated */
3721                 dp->wmap[w] = dp->pmap[w] = cpu_to_le32(ONES >> b);
3722                 w++;
3723         }
3724
3725         /* set the rest of the words in the page to allocated (ONES) */
3726         for (i = w; i < LPERDMAP; i++)
3727                 dp->pmap[i] = dp->wmap[i] = cpu_to_le32(ONES);
3728
3729         /*
3730          * init tree
3731          */
3732       initTree:
3733         return (dbInitDmapTree(dp));
3734 }
3735
3736
3737 /*
3738  * NAME:        dbInitDmapTree()/ujfs_complete_dmap()
3739  *                                                                    
3740  * FUNCTION:    initialize summary tree of the specified dmap:
3741  *
3742  *              at entry, bitmap of the dmap has been initialized;
3743  *                                                                    
3744  * PARAMETERS:
3745  *      dp      - dmap to complete
3746  *      blkno   - starting block number for this dmap
3747  *      treemax - will be filled in with max free for this dmap
3748  *
3749  * RETURNS:     max free string at the root of the tree
3750  */
3751 static int dbInitDmapTree(struct dmap * dp)
3752 {
3753         struct dmaptree *tp;
3754         s8 *cp;
3755         int i;
3756
3757         /* init fixed info of tree */
3758         tp = &dp->tree;
3759         tp->nleafs = cpu_to_le32(LPERDMAP);
3760         tp->l2nleafs = cpu_to_le32(L2LPERDMAP);
3761         tp->leafidx = cpu_to_le32(LEAFIND);
3762         tp->height = cpu_to_le32(4);
3763         tp->budmin = BUDMIN;
3764
3765         /* init each leaf from corresponding wmap word:
3766          * note: leaf is set to NOFREE(-1) if all blocks of corresponding
3767          * bitmap word are allocated. 
3768          */
3769         cp = tp->stree + le32_to_cpu(tp->leafidx);
3770         for (i = 0; i < LPERDMAP; i++)
3771                 *cp++ = dbMaxBud((u8 *) & dp->wmap[i]);
3772
3773         /* build the dmap's binary buddy summary tree */
3774         return (dbInitTree(tp));
3775 }
3776
3777
3778 /*
3779  * NAME:        dbInitTree()/ujfs_adjtree()
3780  *                                                                    
3781  * FUNCTION:    initialize binary buddy summary tree of a dmap or dmapctl.
3782  *
3783  *              at entry, the leaves of the tree has been initialized 
3784  *              from corresponding bitmap word or root of summary tree
3785  *              of the child control page;
3786  *              configure binary buddy system at the leaf level, then
3787  *              bubble up the values of the leaf nodes up the tree.
3788  *
3789  * PARAMETERS:
3790  *      cp      - Pointer to the root of the tree
3791  *      l2leaves- Number of leaf nodes as a power of 2
3792  *      l2min   - Number of blocks that can be covered by a leaf
3793  *                as a power of 2
3794  *
3795  * RETURNS: max free string at the root of the tree
3796  */
3797 static int dbInitTree(struct dmaptree * dtp)
3798 {
3799         int l2max, l2free, bsize, nextb, i;
3800         int child, parent, nparent;
3801         s8 *tp, *cp, *cp1;
3802
3803         tp = dtp->stree;
3804
3805         /* Determine the maximum free string possible for the leaves */
3806         l2max = le32_to_cpu(dtp->l2nleafs) + dtp->budmin;
3807
3808         /*
3809          * configure the leaf levevl into binary buddy system
3810          *
3811          * Try to combine buddies starting with a buddy size of 1 
3812          * (i.e. two leaves). At a buddy size of 1 two buddy leaves 
3813          * can be combined if both buddies have a maximum free of l2min; 
3814          * the combination will result in the left-most buddy leaf having 
3815          * a maximum free of l2min+1.  
3816          * After processing all buddies for a given size, process buddies 
3817          * at the next higher buddy size (i.e. current size * 2) and 
3818          * the next maximum free (current free + 1).  
3819          * This continues until the maximum possible buddy combination 
3820          * yields maximum free.
3821          */
3822         for (l2free = dtp->budmin, bsize = 1; l2free < l2max;
3823              l2free++, bsize = nextb) {
3824                 /* get next buddy size == current buddy pair size */
3825                 nextb = bsize << 1;
3826
3827                 /* scan each adjacent buddy pair at current buddy size */
3828                 for (i = 0, cp = tp + le32_to_cpu(dtp->leafidx);
3829                      i < le32_to_cpu(dtp->nleafs);
3830                      i += nextb, cp += nextb) {
3831                         /* coalesce if both adjacent buddies are max free */
3832                         if (*cp == l2free && *(cp + bsize) == l2free) {
3833                                 *cp = l2free + 1;       /* left take right */
3834                                 *(cp + bsize) = -1;     /* right give left */
3835                         }
3836                 }
3837         }
3838
3839         /*
3840          * bubble summary information of leaves up the tree.
3841          *
3842          * Starting at the leaf node level, the four nodes described by
3843          * the higher level parent node are compared for a maximum free and 
3844          * this maximum becomes the value of the parent node.  
3845          * when all lower level nodes are processed in this fashion then 
3846          * move up to the next level (parent becomes a lower level node) and 
3847          * continue the process for that level.
3848          */
3849         for (child = le32_to_cpu(dtp->leafidx),
3850              nparent = le32_to_cpu(dtp->nleafs) >> 2;
3851              nparent > 0; nparent >>= 2, child = parent) {
3852                 /* get index of 1st node of parent level */
3853                 parent = (child - 1) >> 2;
3854
3855                 /* set the value of the parent node as the maximum 
3856                  * of the four nodes of the current level.
3857                  */
3858                 for (i = 0, cp = tp + child, cp1 = tp + parent;
3859                      i < nparent; i++, cp += 4, cp1++)
3860                         *cp1 = TREEMAX(cp);
3861         }
3862
3863         return (*tp);
3864 }
3865
3866
3867 /*
3868  *      dbInitDmapCtl()
3869  *
3870  * function: initialize dmapctl page
3871  */
3872 static int dbInitDmapCtl(struct dmapctl * dcp, int level, int i)
3873 {                               /* start leaf index not covered by range */
3874         s8 *cp;
3875
3876         dcp->nleafs = cpu_to_le32(LPERCTL);
3877         dcp->l2nleafs = cpu_to_le32(L2LPERCTL);
3878         dcp->leafidx = cpu_to_le32(CTLLEAFIND);
3879         dcp->height = cpu_to_le32(5);
3880         dcp->budmin = L2BPERDMAP + L2LPERCTL * level;
3881
3882         /*
3883          * initialize the leaves of current level that were not covered 
3884          * by the specified input block range (i.e. the leaves have no 
3885          * low level dmapctl or dmap).
3886          */
3887         cp = &dcp->stree[CTLLEAFIND + i];
3888         for (; i < LPERCTL; i++)
3889                 *cp++ = NOFREE;
3890
3891         /* build the dmap's binary buddy summary tree */
3892         return (dbInitTree((struct dmaptree *) dcp));
3893 }
3894
3895
3896 /*
3897  * NAME:        dbGetL2AGSize()/ujfs_getagl2size()
3898  *                                                                    
3899  * FUNCTION:    Determine log2(allocation group size) from aggregate size
3900  *                                                                    
3901  * PARAMETERS:
3902  *      nblocks - Number of blocks in aggregate
3903  *
3904  * RETURNS: log2(allocation group size) in aggregate blocks
3905  */
3906 static int dbGetL2AGSize(s64 nblocks)
3907 {
3908         s64 sz;
3909         s64 m;
3910         int l2sz;
3911
3912         if (nblocks < BPERDMAP * MAXAG)
3913                 return (L2BPERDMAP);
3914
3915         /* round up aggregate size to power of 2 */
3916         m = ((u64) 1 << (64 - 1));
3917         for (l2sz = 64; l2sz >= 0; l2sz--, m >>= 1) {
3918                 if (m & nblocks)
3919                         break;
3920         }
3921
3922         sz = (s64) 1 << l2sz;
3923         if (sz < nblocks)
3924                 l2sz += 1;
3925
3926         /* agsize = roundupSize/max_number_of_ag */
3927         return (l2sz - L2MAXAG);
3928 }
3929
3930
3931 /*
3932  * NAME:        dbMapFileSizeToMapSize()
3933  *                                                                    
3934  * FUNCTION:    compute number of blocks the block allocation map file 
3935  *              can cover from the map file size;
3936  *
3937  * RETURNS:     Number of blocks which can be covered by this block map file;
3938  */
3939
3940 /*
3941  * maximum number of map pages at each level including control pages
3942  */
3943 #define MAXL0PAGES      (1 + LPERCTL)
3944 #define MAXL1PAGES      (1 + LPERCTL * MAXL0PAGES)
3945 #define MAXL2PAGES      (1 + LPERCTL * MAXL1PAGES)
3946
3947 /*
3948  * convert number of map pages to the zero origin top dmapctl level
3949  */
3950 #define BMAPPGTOLEV(npages)     \
3951         (((npages) <= 3 + MAXL0PAGES) ? 0 \
3952        : ((npages) <= 2 + MAXL1PAGES) ? 1 : 2)
3953
3954 s64 dbMapFileSizeToMapSize(struct inode * ipbmap)
3955 {
3956         struct super_block *sb = ipbmap->i_sb;
3957         s64 nblocks;
3958         s64 npages, ndmaps;
3959         int level, i;
3960         int complete, factor;
3961
3962         nblocks = ipbmap->i_size >> JFS_SBI(sb)->l2bsize;
3963         npages = nblocks >> JFS_SBI(sb)->l2nbperpage;
3964         level = BMAPPGTOLEV(npages);
3965
3966         /* At each level, accumulate the number of dmap pages covered by 
3967          * the number of full child levels below it;
3968          * repeat for the last incomplete child level.
3969          */
3970         ndmaps = 0;
3971         npages--;               /* skip the first global control page */
3972         /* skip higher level control pages above top level covered by map */
3973         npages -= (2 - level);
3974         npages--;               /* skip top level's control page */
3975         for (i = level; i >= 0; i--) {
3976                 factor =
3977                     (i == 2) ? MAXL1PAGES : ((i == 1) ? MAXL0PAGES : 1);
3978                 complete = (u32) npages / factor;
3979                 ndmaps += complete * ((i == 2) ? LPERCTL * LPERCTL
3980                                       : ((i == 1) ? LPERCTL : 1));
3981
3982                 /* pages in last/incomplete child */
3983                 npages = (u32) npages % factor;
3984                 /* skip incomplete child's level control page */
3985                 npages--;
3986         }
3987
3988         /* convert the number of dmaps into the number of blocks 
3989          * which can be covered by the dmaps;
3990          */
3991         nblocks = ndmaps << L2BPERDMAP;
3992
3993         return (nblocks);
3994 }