2 * Copyright (C) International Business Machines Corp., 2000-2004
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.
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.
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
20 * jfs_imap.c: inode allocation map manager
23 * Each AG has a simple lock which is used to control the serialization of
24 * the AG level lists. This lock should be taken first whenever an AG
25 * level list will be modified or accessed.
27 * Each IAG is locked by obtaining the buffer for the IAG page.
29 * There is also a inode lock for the inode map inode. A read lock needs to
30 * be taken whenever an IAG is read from the map or the global level
31 * information is read. A write lock needs to be taken whenever the global
32 * level information is modified or an atomic operation needs to be used.
34 * If more than one IAG is read at one time, the read lock may not
35 * be given up until all of the IAG's are read. Otherwise, a deadlock
36 * may occur when trying to obtain the read lock while another thread
37 * holding the read lock is waiting on the IAG already being held.
39 * The control page of the inode map is read into memory by diMount().
40 * Thereafter it should only be modified in memory and then it will be
41 * written out when the filesystem is unmounted by diUnmount().
45 #include <linux/buffer_head.h>
46 #include <linux/pagemap.h>
47 #include <linux/quotaops.h>
48 #include <linux/slab.h>
50 #include "jfs_incore.h"
51 #include "jfs_inode.h"
52 #include "jfs_filsys.h"
53 #include "jfs_dinode.h"
56 #include "jfs_metapage.h"
57 #include "jfs_superblock.h"
58 #include "jfs_debug.h"
63 /* iag free list lock */
64 #define IAGFREE_LOCK_INIT(imap) mutex_init(&imap->im_freelock)
65 #define IAGFREE_LOCK(imap) mutex_lock(&imap->im_freelock)
66 #define IAGFREE_UNLOCK(imap) mutex_unlock(&imap->im_freelock)
68 /* per ag iag list locks */
69 #define AG_LOCK_INIT(imap,index) mutex_init(&(imap->im_aglock[index]))
70 #define AG_LOCK(imap,agno) mutex_lock(&imap->im_aglock[agno])
71 #define AG_UNLOCK(imap,agno) mutex_unlock(&imap->im_aglock[agno])
76 static int diAllocAG(struct inomap
*, int, bool, struct inode
*);
77 static int diAllocAny(struct inomap
*, int, bool, struct inode
*);
78 static int diAllocBit(struct inomap
*, struct iag
*, int);
79 static int diAllocExt(struct inomap
*, int, struct inode
*);
80 static int diAllocIno(struct inomap
*, int, struct inode
*);
81 static int diFindFree(u32
, int);
82 static int diNewExt(struct inomap
*, struct iag
*, int);
83 static int diNewIAG(struct inomap
*, int *, int, struct metapage
**);
84 static void duplicateIXtree(struct super_block
*, s64
, int, s64
*);
86 static int diIAGRead(struct inomap
* imap
, int, struct metapage
**);
87 static int copy_from_dinode(struct dinode
*, struct inode
*);
88 static void copy_to_dinode(struct dinode
*, struct inode
*);
93 * FUNCTION: initialize the incore inode map control structures for
94 * a fileset or aggregate init time.
96 * the inode map's control structure (dinomap) is
97 * brought in from disk and placed in virtual memory.
100 * ipimap - pointer to inode map inode for the aggregate or fileset.
104 * -ENOMEM - insufficient free virtual memory.
107 int diMount(struct inode
*ipimap
)
112 struct dinomap_disk
*dinom_le
;
115 * allocate/initialize the in-memory inode map control structure
117 /* allocate the in-memory inode map control structure. */
118 imap
= kmalloc(sizeof(struct inomap
), GFP_KERNEL
);
120 jfs_err("diMount: kmalloc returned NULL!");
124 /* read the on-disk inode map control structure. */
126 mp
= read_metapage(ipimap
,
127 IMAPBLKNO
<< JFS_SBI(ipimap
->i_sb
)->l2nbperpage
,
134 /* copy the on-disk version to the in-memory version. */
135 dinom_le
= (struct dinomap_disk
*) mp
->data
;
136 imap
->im_freeiag
= le32_to_cpu(dinom_le
->in_freeiag
);
137 imap
->im_nextiag
= le32_to_cpu(dinom_le
->in_nextiag
);
138 atomic_set(&imap
->im_numinos
, le32_to_cpu(dinom_le
->in_numinos
));
139 atomic_set(&imap
->im_numfree
, le32_to_cpu(dinom_le
->in_numfree
));
140 imap
->im_nbperiext
= le32_to_cpu(dinom_le
->in_nbperiext
);
141 imap
->im_l2nbperiext
= le32_to_cpu(dinom_le
->in_l2nbperiext
);
142 for (index
= 0; index
< MAXAG
; index
++) {
143 imap
->im_agctl
[index
].inofree
=
144 le32_to_cpu(dinom_le
->in_agctl
[index
].inofree
);
145 imap
->im_agctl
[index
].extfree
=
146 le32_to_cpu(dinom_le
->in_agctl
[index
].extfree
);
147 imap
->im_agctl
[index
].numinos
=
148 le32_to_cpu(dinom_le
->in_agctl
[index
].numinos
);
149 imap
->im_agctl
[index
].numfree
=
150 le32_to_cpu(dinom_le
->in_agctl
[index
].numfree
);
153 /* release the buffer. */
154 release_metapage(mp
);
157 * allocate/initialize inode allocation map locks
159 /* allocate and init iag free list lock */
160 IAGFREE_LOCK_INIT(imap
);
162 /* allocate and init ag list locks */
163 for (index
= 0; index
< MAXAG
; index
++) {
164 AG_LOCK_INIT(imap
, index
);
167 /* bind the inode map inode and inode map control structure
170 imap
->im_ipimap
= ipimap
;
171 JFS_IP(ipimap
)->i_imap
= imap
;
180 * FUNCTION: write to disk the incore inode map control structures for
181 * a fileset or aggregate at unmount time.
184 * ipimap - pointer to inode map inode for the aggregate or fileset.
188 * -ENOMEM - insufficient free virtual memory.
191 int diUnmount(struct inode
*ipimap
, int mounterror
)
193 struct inomap
*imap
= JFS_IP(ipimap
)->i_imap
;
196 * update the on-disk inode map control structure
199 if (!(mounterror
|| isReadOnly(ipimap
)))
203 * Invalidate the page cache buffers
205 truncate_inode_pages(ipimap
->i_mapping
, 0);
208 * free in-memory control structure
219 int diSync(struct inode
*ipimap
)
221 struct dinomap_disk
*dinom_le
;
222 struct inomap
*imp
= JFS_IP(ipimap
)->i_imap
;
227 * write imap global conrol page
229 /* read the on-disk inode map control structure */
230 mp
= get_metapage(ipimap
,
231 IMAPBLKNO
<< JFS_SBI(ipimap
->i_sb
)->l2nbperpage
,
234 jfs_err("diSync: get_metapage failed!");
238 /* copy the in-memory version to the on-disk version */
239 dinom_le
= (struct dinomap_disk
*) mp
->data
;
240 dinom_le
->in_freeiag
= cpu_to_le32(imp
->im_freeiag
);
241 dinom_le
->in_nextiag
= cpu_to_le32(imp
->im_nextiag
);
242 dinom_le
->in_numinos
= cpu_to_le32(atomic_read(&imp
->im_numinos
));
243 dinom_le
->in_numfree
= cpu_to_le32(atomic_read(&imp
->im_numfree
));
244 dinom_le
->in_nbperiext
= cpu_to_le32(imp
->im_nbperiext
);
245 dinom_le
->in_l2nbperiext
= cpu_to_le32(imp
->im_l2nbperiext
);
246 for (index
= 0; index
< MAXAG
; index
++) {
247 dinom_le
->in_agctl
[index
].inofree
=
248 cpu_to_le32(imp
->im_agctl
[index
].inofree
);
249 dinom_le
->in_agctl
[index
].extfree
=
250 cpu_to_le32(imp
->im_agctl
[index
].extfree
);
251 dinom_le
->in_agctl
[index
].numinos
=
252 cpu_to_le32(imp
->im_agctl
[index
].numinos
);
253 dinom_le
->in_agctl
[index
].numfree
=
254 cpu_to_le32(imp
->im_agctl
[index
].numfree
);
257 /* write out the control structure */
261 * write out dirty pages of imap
263 filemap_write_and_wait(ipimap
->i_mapping
);
265 diWriteSpecial(ipimap
, 0);
274 * FUNCTION: initialize an incore inode from disk.
276 * on entry, the specifed incore inode should itself
277 * specify the disk inode number corresponding to the
278 * incore inode (i.e. i_number should be initialized).
280 * this routine handles incore inode initialization for
281 * both "special" and "regular" inodes. special inodes
282 * are those required early in the mount process and
283 * require special handling since much of the file system
284 * is not yet initialized. these "special" inodes are
285 * identified by a NULL inode map inode pointer and are
286 * actually initialized by a call to diReadSpecial().
288 * for regular inodes, the iag describing the disk inode
289 * is read from disk to determine the inode extent address
290 * for the disk inode. with the inode extent address in
291 * hand, the page of the extent that contains the disk
292 * inode is read and the disk inode is copied to the
296 * ip - pointer to incore inode to be initialized from disk.
301 * -ENOMEM - insufficient memory
304 int diRead(struct inode
*ip
)
306 struct jfs_sb_info
*sbi
= JFS_SBI(ip
->i_sb
);
307 int iagno
, ino
, extno
, rc
;
308 struct inode
*ipimap
;
316 unsigned long pageno
;
319 jfs_info("diRead: ino = %ld", ip
->i_ino
);
321 ipimap
= sbi
->ipimap
;
322 JFS_IP(ip
)->ipimap
= ipimap
;
324 /* determine the iag number for this inode (number) */
325 iagno
= INOTOIAG(ip
->i_ino
);
328 imap
= JFS_IP(ipimap
)->i_imap
;
329 IREAD_LOCK(ipimap
, RDWRLOCK_IMAP
);
330 rc
= diIAGRead(imap
, iagno
, &mp
);
331 IREAD_UNLOCK(ipimap
);
333 jfs_err("diRead: diIAGRead returned %d", rc
);
337 iagp
= (struct iag
*) mp
->data
;
339 /* determine inode extent that holds the disk inode */
340 ino
= ip
->i_ino
& (INOSPERIAG
- 1);
341 extno
= ino
>> L2INOSPEREXT
;
343 if ((lengthPXD(&iagp
->inoext
[extno
]) != imap
->im_nbperiext
) ||
344 (addressPXD(&iagp
->inoext
[extno
]) == 0)) {
345 release_metapage(mp
);
349 /* get disk block number of the page within the inode extent
350 * that holds the disk inode.
352 blkno
= INOPBLK(&iagp
->inoext
[extno
], ino
, sbi
->l2nbperpage
);
354 /* get the ag for the iag */
355 agstart
= le64_to_cpu(iagp
->agstart
);
357 release_metapage(mp
);
359 rel_inode
= (ino
& (INOSPERPAGE
- 1));
360 pageno
= blkno
>> sbi
->l2nbperpage
;
362 if ((block_offset
= ((u32
) blkno
& (sbi
->nbperpage
- 1)))) {
364 * OS/2 didn't always align inode extents on page boundaries
367 (sbi
->nbperpage
- block_offset
) << sbi
->l2niperblk
;
369 if (rel_inode
< inodes_left
)
370 rel_inode
+= block_offset
<< sbi
->l2niperblk
;
373 rel_inode
-= inodes_left
;
377 /* read the page of disk inode */
378 mp
= read_metapage(ipimap
, pageno
<< sbi
->l2nbperpage
, PSIZE
, 1);
380 jfs_err("diRead: read_metapage failed");
384 /* locate the disk inode requested */
385 dp
= (struct dinode
*) mp
->data
;
388 if (ip
->i_ino
!= le32_to_cpu(dp
->di_number
)) {
389 jfs_error(ip
->i_sb
, "i_ino != di_number\n");
391 } else if (le32_to_cpu(dp
->di_nlink
) == 0)
394 /* copy the disk inode to the in-memory inode */
395 rc
= copy_from_dinode(dp
, ip
);
397 release_metapage(mp
);
399 /* set the ag for the inode */
400 JFS_IP(ip
)->agstart
= agstart
;
401 JFS_IP(ip
)->active_ag
= -1;
408 * NAME: diReadSpecial()
410 * FUNCTION: initialize a 'special' inode from disk.
412 * this routines handles aggregate level inodes. The
413 * inode cache cannot differentiate between the
414 * aggregate inodes and the filesystem inodes, so we
415 * handle these here. We don't actually use the aggregate
416 * inode map, since these inodes are at a fixed location
417 * and in some cases the aggregate inode map isn't initialized
421 * sb - filesystem superblock
422 * inum - aggregate inode number
423 * secondary - 1 if secondary aggregate inode table
426 * new inode - success
429 struct inode
*diReadSpecial(struct super_block
*sb
, ino_t inum
, int secondary
)
431 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
439 jfs_err("diReadSpecial: new_inode returned NULL!");
444 address
= addressPXD(&sbi
->ait2
) >> sbi
->l2nbperpage
;
445 JFS_IP(ip
)->ipimap
= sbi
->ipaimap2
;
447 address
= AITBL_OFF
>> L2PSIZE
;
448 JFS_IP(ip
)->ipimap
= sbi
->ipaimap
;
451 ASSERT(inum
< INOSPEREXT
);
455 address
+= inum
>> 3; /* 8 inodes per 4K page */
457 /* read the page of fixed disk inode (AIT) in raw mode */
458 mp
= read_metapage(ip
, address
<< sbi
->l2nbperpage
, PSIZE
, 1);
460 set_nlink(ip
, 1); /* Don't want iput() deleting it */
465 /* get the pointer to the disk inode of interest */
466 dp
= (struct dinode
*) (mp
->data
);
467 dp
+= inum
% 8; /* 8 inodes per 4K page */
469 /* copy on-disk inode to in-memory inode */
470 if ((copy_from_dinode(dp
, ip
)) != 0) {
471 /* handle bad return by returning NULL for ip */
472 set_nlink(ip
, 1); /* Don't want iput() deleting it */
474 /* release the page */
475 release_metapage(mp
);
480 ip
->i_mapping
->a_ops
= &jfs_metapage_aops
;
481 mapping_set_gfp_mask(ip
->i_mapping
, GFP_NOFS
);
483 /* Allocations to metadata inodes should not affect quotas */
484 ip
->i_flags
|= S_NOQUOTA
;
486 if ((inum
== FILESYSTEM_I
) && (JFS_IP(ip
)->ipimap
== sbi
->ipaimap
)) {
487 sbi
->gengen
= le32_to_cpu(dp
->di_gengen
);
488 sbi
->inostamp
= le32_to_cpu(dp
->di_inostamp
);
491 /* release the page */
492 release_metapage(mp
);
500 * NAME: diWriteSpecial()
502 * FUNCTION: Write the special inode to disk
506 * secondary - 1 if secondary aggregate inode table
508 * RETURN VALUES: none
511 void diWriteSpecial(struct inode
*ip
, int secondary
)
513 struct jfs_sb_info
*sbi
= JFS_SBI(ip
->i_sb
);
516 ino_t inum
= ip
->i_ino
;
520 address
= addressPXD(&sbi
->ait2
) >> sbi
->l2nbperpage
;
522 address
= AITBL_OFF
>> L2PSIZE
;
524 ASSERT(inum
< INOSPEREXT
);
526 address
+= inum
>> 3; /* 8 inodes per 4K page */
528 /* read the page of fixed disk inode (AIT) in raw mode */
529 mp
= read_metapage(ip
, address
<< sbi
->l2nbperpage
, PSIZE
, 1);
531 jfs_err("diWriteSpecial: failed to read aggregate inode extent!");
535 /* get the pointer to the disk inode of interest */
536 dp
= (struct dinode
*) (mp
->data
);
537 dp
+= inum
% 8; /* 8 inodes per 4K page */
539 /* copy on-disk inode to in-memory inode */
540 copy_to_dinode(dp
, ip
);
541 memcpy(&dp
->di_xtroot
, &JFS_IP(ip
)->i_xtroot
, 288);
543 if (inum
== FILESYSTEM_I
)
544 dp
->di_gengen
= cpu_to_le32(sbi
->gengen
);
551 * NAME: diFreeSpecial()
553 * FUNCTION: Free allocated space for special inode
555 void diFreeSpecial(struct inode
*ip
)
558 jfs_err("diFreeSpecial called with NULL ip!");
561 filemap_write_and_wait(ip
->i_mapping
);
562 truncate_inode_pages(ip
->i_mapping
, 0);
571 * FUNCTION: write the on-disk inode portion of the in-memory inode
572 * to its corresponding on-disk inode.
574 * on entry, the specifed incore inode should itself
575 * specify the disk inode number corresponding to the
576 * incore inode (i.e. i_number should be initialized).
578 * the inode contains the inode extent address for the disk
579 * inode. with the inode extent address in hand, the
580 * page of the extent that contains the disk inode is
581 * read and the disk inode portion of the incore inode
582 * is copied to the disk inode.
585 * tid - transacation id
586 * ip - pointer to incore inode to be written to the inode extent.
592 int diWrite(tid_t tid
, struct inode
*ip
)
594 struct jfs_sb_info
*sbi
= JFS_SBI(ip
->i_sb
);
595 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
603 unsigned long pageno
;
606 struct inode
*ipimap
;
609 struct tlock
*ditlck
, *tlck
;
610 struct linelock
*dilinelock
, *ilinelock
;
614 ipimap
= jfs_ip
->ipimap
;
616 ino
= ip
->i_ino
& (INOSPERIAG
- 1);
618 if (!addressPXD(&(jfs_ip
->ixpxd
)) ||
619 (lengthPXD(&(jfs_ip
->ixpxd
)) !=
620 JFS_IP(ipimap
)->i_imap
->im_nbperiext
)) {
621 jfs_error(ip
->i_sb
, "ixpxd invalid\n");
626 * read the page of disk inode containing the specified inode:
628 /* compute the block address of the page */
629 blkno
= INOPBLK(&(jfs_ip
->ixpxd
), ino
, sbi
->l2nbperpage
);
631 rel_inode
= (ino
& (INOSPERPAGE
- 1));
632 pageno
= blkno
>> sbi
->l2nbperpage
;
634 if ((block_offset
= ((u32
) blkno
& (sbi
->nbperpage
- 1)))) {
636 * OS/2 didn't always align inode extents on page boundaries
639 (sbi
->nbperpage
- block_offset
) << sbi
->l2niperblk
;
641 if (rel_inode
< inodes_left
)
642 rel_inode
+= block_offset
<< sbi
->l2niperblk
;
645 rel_inode
-= inodes_left
;
648 /* read the page of disk inode */
650 mp
= read_metapage(ipimap
, pageno
<< sbi
->l2nbperpage
, PSIZE
, 1);
654 /* get the pointer to the disk inode */
655 dp
= (struct dinode
*) mp
->data
;
658 dioffset
= (ino
& (INOSPERPAGE
- 1)) << L2DISIZE
;
661 * acquire transaction lock on the on-disk inode;
662 * N.B. tlock is acquired on ipimap not ip;
665 txLock(tid
, ipimap
, mp
, tlckINODE
| tlckENTRY
)) == NULL
)
667 dilinelock
= (struct linelock
*) & ditlck
->lock
;
670 * copy btree root from in-memory inode to on-disk inode
672 * (tlock is taken from inline B+-tree root in in-memory
673 * inode when the B+-tree root is updated, which is pointed
674 * by jfs_ip->blid as well as being on tx tlock list)
676 * further processing of btree root is based on the copy
677 * in in-memory inode, where txLog() will log from, and,
678 * for xtree root, txUpdateMap() will update map and reset
682 if (S_ISDIR(ip
->i_mode
) && (lid
= jfs_ip
->xtlid
)) {
684 * This is the special xtree inside the directory for storing
685 * the directory table
691 tlck
= lid_to_tlock(lid
);
692 assert(tlck
->type
& tlckXTREE
);
693 tlck
->type
|= tlckBTROOT
;
695 ilinelock
= (struct linelock
*) & tlck
->lock
;
698 * copy xtree root from inode to dinode:
700 p
= &jfs_ip
->i_xtroot
;
701 xp
= (xtpage_t
*) &dp
->di_dirtable
;
703 for (n
= 0; n
< ilinelock
->index
; n
++, lv
++) {
704 memcpy(&xp
->xad
[lv
->offset
], &p
->xad
[lv
->offset
],
705 lv
->length
<< L2XTSLOTSIZE
);
708 /* reset on-disk (metadata page) xtree XAD_NEW bit */
709 xad
= &xp
->xad
[XTENTRYSTART
];
710 for (n
= XTENTRYSTART
;
711 n
< le16_to_cpu(xp
->header
.nextindex
); n
++, xad
++)
712 if (xad
->flag
& (XAD_NEW
| XAD_EXTENDED
))
713 xad
->flag
&= ~(XAD_NEW
| XAD_EXTENDED
);
716 if ((lid
= jfs_ip
->blid
) == 0)
720 tlck
= lid_to_tlock(lid
);
722 tlck
->type
|= tlckBTROOT
;
724 ilinelock
= (struct linelock
*) & tlck
->lock
;
727 * regular file: 16 byte (XAD slot) granularity
729 if (type
& tlckXTREE
) {
734 * copy xtree root from inode to dinode:
736 p
= &jfs_ip
->i_xtroot
;
739 for (n
= 0; n
< ilinelock
->index
; n
++, lv
++) {
740 memcpy(&xp
->xad
[lv
->offset
], &p
->xad
[lv
->offset
],
741 lv
->length
<< L2XTSLOTSIZE
);
744 /* reset on-disk (metadata page) xtree XAD_NEW bit */
745 xad
= &xp
->xad
[XTENTRYSTART
];
746 for (n
= XTENTRYSTART
;
747 n
< le16_to_cpu(xp
->header
.nextindex
); n
++, xad
++)
748 if (xad
->flag
& (XAD_NEW
| XAD_EXTENDED
))
749 xad
->flag
&= ~(XAD_NEW
| XAD_EXTENDED
);
752 * directory: 32 byte (directory entry slot) granularity
754 else if (type
& tlckDTREE
) {
758 * copy dtree root from inode to dinode:
760 p
= (dtpage_t
*) &jfs_ip
->i_dtroot
;
761 xp
= (dtpage_t
*) & dp
->di_dtroot
;
763 for (n
= 0; n
< ilinelock
->index
; n
++, lv
++) {
764 memcpy(&xp
->slot
[lv
->offset
], &p
->slot
[lv
->offset
],
765 lv
->length
<< L2DTSLOTSIZE
);
768 jfs_err("diWrite: UFO tlock");
773 * copy inline symlink from in-memory inode to on-disk inode
775 if (S_ISLNK(ip
->i_mode
) && ip
->i_size
< IDATASIZE
) {
776 lv
= & dilinelock
->lv
[dilinelock
->index
];
777 lv
->offset
= (dioffset
+ 2 * 128) >> L2INODESLOTSIZE
;
779 memcpy(&dp
->di_fastsymlink
, jfs_ip
->i_inline
, IDATASIZE
);
783 * copy inline data from in-memory inode to on-disk inode:
784 * 128 byte slot granularity
786 if (test_cflag(COMMIT_Inlineea
, ip
)) {
787 lv
= & dilinelock
->lv
[dilinelock
->index
];
788 lv
->offset
= (dioffset
+ 3 * 128) >> L2INODESLOTSIZE
;
790 memcpy(&dp
->di_inlineea
, jfs_ip
->i_inline_ea
, INODESLOTSIZE
);
793 clear_cflag(COMMIT_Inlineea
, ip
);
797 * lock/copy inode base: 128 byte slot granularity
799 lv
= & dilinelock
->lv
[dilinelock
->index
];
800 lv
->offset
= dioffset
>> L2INODESLOTSIZE
;
801 copy_to_dinode(dp
, ip
);
802 if (test_and_clear_cflag(COMMIT_Dirtable
, ip
)) {
804 memcpy(&dp
->di_dirtable
, &jfs_ip
->i_dirtable
, 96);
809 /* release the buffer holding the updated on-disk inode.
810 * the buffer will be later written by commit processing.
821 * FUNCTION: free a specified inode from the inode working map
822 * for a fileset or aggregate.
824 * if the inode to be freed represents the first (only)
825 * free inode within the iag, the iag will be placed on
826 * the ag free inode list.
828 * freeing the inode will cause the inode extent to be
829 * freed if the inode is the only allocated inode within
830 * the extent. in this case all the disk resource backing
831 * up the inode extent will be freed. in addition, the iag
832 * will be placed on the ag extent free list if the extent
833 * is the first free extent in the iag. if freeing the
834 * extent also means that no free inodes will exist for
835 * the iag, the iag will also be removed from the ag free
838 * the iag describing the inode will be freed if the extent
839 * is to be freed and it is the only backed extent within
840 * the iag. in this case, the iag will be removed from the
841 * ag free extent list and ag free inode list and placed on
842 * the inode map's free iag list.
844 * a careful update approach is used to provide consistency
845 * in the face of updates to multiple buffers. under this
846 * approach, all required buffers are obtained before making
847 * any updates and are held until all updates are complete.
850 * ip - inode to be freed.
856 int diFree(struct inode
*ip
)
859 ino_t inum
= ip
->i_ino
;
860 struct iag
*iagp
, *aiagp
, *biagp
, *ciagp
, *diagp
;
861 struct metapage
*mp
, *amp
, *bmp
, *cmp
, *dmp
;
862 int iagno
, ino
, extno
, bitno
, sword
, agno
;
865 struct inode
*ipimap
= JFS_SBI(ip
->i_sb
)->ipimap
;
866 struct inomap
*imap
= JFS_IP(ipimap
)->i_imap
;
869 struct inode
*iplist
[3];
871 struct pxd_lock
*pxdlock
;
874 * This is just to suppress compiler warnings. The same logic that
875 * references these variables is used to initialize them.
877 aiagp
= biagp
= ciagp
= diagp
= NULL
;
879 /* get the iag number containing the inode.
881 iagno
= INOTOIAG(inum
);
883 /* make sure that the iag is contained within
886 if (iagno
>= imap
->im_nextiag
) {
887 print_hex_dump(KERN_ERR
, "imap: ", DUMP_PREFIX_ADDRESS
, 16, 4,
889 jfs_error(ip
->i_sb
, "inum = %d, iagno = %d, nextiag = %d\n",
890 (uint
) inum
, iagno
, imap
->im_nextiag
);
894 /* get the allocation group for this ino.
896 agno
= BLKTOAG(JFS_IP(ip
)->agstart
, JFS_SBI(ip
->i_sb
));
898 /* Lock the AG specific inode map information
902 /* Obtain read lock in imap inode. Don't release it until we have
903 * read all of the IAG's that we are going to.
905 IREAD_LOCK(ipimap
, RDWRLOCK_IMAP
);
909 if ((rc
= diIAGRead(imap
, iagno
, &mp
))) {
910 IREAD_UNLOCK(ipimap
);
911 AG_UNLOCK(imap
, agno
);
914 iagp
= (struct iag
*) mp
->data
;
916 /* get the inode number and extent number of the inode within
917 * the iag and the inode number within the extent.
919 ino
= inum
& (INOSPERIAG
- 1);
920 extno
= ino
>> L2INOSPEREXT
;
921 bitno
= ino
& (INOSPEREXT
- 1);
922 mask
= HIGHORDER
>> bitno
;
924 if (!(le32_to_cpu(iagp
->wmap
[extno
]) & mask
)) {
925 jfs_error(ip
->i_sb
, "wmap shows inode already free\n");
928 if (!addressPXD(&iagp
->inoext
[extno
])) {
929 release_metapage(mp
);
930 IREAD_UNLOCK(ipimap
);
931 AG_UNLOCK(imap
, agno
);
932 jfs_error(ip
->i_sb
, "invalid inoext\n");
936 /* compute the bitmap for the extent reflecting the freed inode.
938 bitmap
= le32_to_cpu(iagp
->wmap
[extno
]) & ~mask
;
940 if (imap
->im_agctl
[agno
].numfree
> imap
->im_agctl
[agno
].numinos
) {
941 release_metapage(mp
);
942 IREAD_UNLOCK(ipimap
);
943 AG_UNLOCK(imap
, agno
);
944 jfs_error(ip
->i_sb
, "numfree > numinos\n");
948 * inode extent still has some inodes or below low water mark:
949 * keep the inode extent;
952 imap
->im_agctl
[agno
].numfree
< 96 ||
953 (imap
->im_agctl
[agno
].numfree
< 288 &&
954 (((imap
->im_agctl
[agno
].numfree
* 100) /
955 imap
->im_agctl
[agno
].numinos
) <= 25))) {
956 /* if the iag currently has no free inodes (i.e.,
957 * the inode being freed is the first free inode of iag),
958 * insert the iag at head of the inode free list for the ag.
960 if (iagp
->nfreeinos
== 0) {
961 /* check if there are any iags on the ag inode
962 * free list. if so, read the first one so that
963 * we can link the current iag onto the list at
966 if ((fwd
= imap
->im_agctl
[agno
].inofree
) >= 0) {
967 /* read the iag that currently is the head
970 if ((rc
= diIAGRead(imap
, fwd
, &
))) {
971 IREAD_UNLOCK(ipimap
);
972 AG_UNLOCK(imap
, agno
);
973 release_metapage(mp
);
976 aiagp
= (struct iag
*) amp
->data
;
978 /* make current head point back to the iag.
980 aiagp
->inofreeback
= cpu_to_le32(iagno
);
985 /* iag points forward to current head and iag
986 * becomes the new head of the list.
989 cpu_to_le32(imap
->im_agctl
[agno
].inofree
);
990 iagp
->inofreeback
= cpu_to_le32(-1);
991 imap
->im_agctl
[agno
].inofree
= iagno
;
993 IREAD_UNLOCK(ipimap
);
995 /* update the free inode summary map for the extent if
996 * freeing the inode means the extent will now have free
997 * inodes (i.e., the inode being freed is the first free
1000 if (iagp
->wmap
[extno
] == cpu_to_le32(ONES
)) {
1001 sword
= extno
>> L2EXTSPERSUM
;
1002 bitno
= extno
& (EXTSPERSUM
- 1);
1003 iagp
->inosmap
[sword
] &=
1004 cpu_to_le32(~(HIGHORDER
>> bitno
));
1007 /* update the bitmap.
1009 iagp
->wmap
[extno
] = cpu_to_le32(bitmap
);
1011 /* update the free inode counts at the iag, ag and
1014 le32_add_cpu(&iagp
->nfreeinos
, 1);
1015 imap
->im_agctl
[agno
].numfree
+= 1;
1016 atomic_inc(&imap
->im_numfree
);
1018 /* release the AG inode map lock
1020 AG_UNLOCK(imap
, agno
);
1030 * inode extent has become free and above low water mark:
1031 * free the inode extent;
1035 * prepare to update iag list(s) (careful update step 1)
1037 amp
= bmp
= cmp
= dmp
= NULL
;
1040 /* check if the iag currently has no free extents. if so,
1041 * it will be placed on the head of the ag extent free list.
1043 if (iagp
->nfreeexts
== 0) {
1044 /* check if the ag extent free list has any iags.
1045 * if so, read the iag at the head of the list now.
1046 * this (head) iag will be updated later to reflect
1047 * the addition of the current iag at the head of
1050 if ((fwd
= imap
->im_agctl
[agno
].extfree
) >= 0) {
1051 if ((rc
= diIAGRead(imap
, fwd
, &
)))
1053 aiagp
= (struct iag
*) amp
->data
;
1056 /* iag has free extents. check if the addition of a free
1057 * extent will cause all extents to be free within this
1058 * iag. if so, the iag will be removed from the ag extent
1059 * free list and placed on the inode map's free iag list.
1061 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
- 1)) {
1062 /* in preparation for removing the iag from the
1063 * ag extent free list, read the iags preceding
1064 * and following the iag on the ag extent free
1067 if ((fwd
= le32_to_cpu(iagp
->extfreefwd
)) >= 0) {
1068 if ((rc
= diIAGRead(imap
, fwd
, &
)))
1070 aiagp
= (struct iag
*) amp
->data
;
1073 if ((back
= le32_to_cpu(iagp
->extfreeback
)) >= 0) {
1074 if ((rc
= diIAGRead(imap
, back
, &bmp
)))
1076 biagp
= (struct iag
*) bmp
->data
;
1081 /* remove the iag from the ag inode free list if freeing
1082 * this extent cause the iag to have no free inodes.
1084 if (iagp
->nfreeinos
== cpu_to_le32(INOSPEREXT
- 1)) {
1085 int inofreeback
= le32_to_cpu(iagp
->inofreeback
);
1086 int inofreefwd
= le32_to_cpu(iagp
->inofreefwd
);
1088 /* in preparation for removing the iag from the
1089 * ag inode free list, read the iags preceding
1090 * and following the iag on the ag inode free
1091 * list. before reading these iags, we must make
1092 * sure that we already don't have them in hand
1093 * from up above, since re-reading an iag (buffer)
1094 * we are currently holding would cause a deadlock.
1096 if (inofreefwd
>= 0) {
1098 if (inofreefwd
== fwd
)
1099 ciagp
= (struct iag
*) amp
->data
;
1100 else if (inofreefwd
== back
)
1101 ciagp
= (struct iag
*) bmp
->data
;
1104 diIAGRead(imap
, inofreefwd
, &cmp
)))
1106 ciagp
= (struct iag
*) cmp
->data
;
1108 assert(ciagp
!= NULL
);
1111 if (inofreeback
>= 0) {
1112 if (inofreeback
== fwd
)
1113 diagp
= (struct iag
*) amp
->data
;
1114 else if (inofreeback
== back
)
1115 diagp
= (struct iag
*) bmp
->data
;
1118 diIAGRead(imap
, inofreeback
, &dmp
)))
1120 diagp
= (struct iag
*) dmp
->data
;
1122 assert(diagp
!= NULL
);
1126 IREAD_UNLOCK(ipimap
);
1129 * invalidate any page of the inode extent freed from buffer cache;
1131 freepxd
= iagp
->inoext
[extno
];
1132 invalidate_pxd_metapages(ip
, freepxd
);
1135 * update iag list(s) (careful update step 2)
1137 /* add the iag to the ag extent free list if this is the
1138 * first free extent for the iag.
1140 if (iagp
->nfreeexts
== 0) {
1142 aiagp
->extfreeback
= cpu_to_le32(iagno
);
1145 cpu_to_le32(imap
->im_agctl
[agno
].extfree
);
1146 iagp
->extfreeback
= cpu_to_le32(-1);
1147 imap
->im_agctl
[agno
].extfree
= iagno
;
1149 /* remove the iag from the ag extent list if all extents
1150 * are now free and place it on the inode map iag free list.
1152 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
- 1)) {
1154 aiagp
->extfreeback
= iagp
->extfreeback
;
1157 biagp
->extfreefwd
= iagp
->extfreefwd
;
1159 imap
->im_agctl
[agno
].extfree
=
1160 le32_to_cpu(iagp
->extfreefwd
);
1162 iagp
->extfreefwd
= iagp
->extfreeback
= cpu_to_le32(-1);
1165 iagp
->iagfree
= cpu_to_le32(imap
->im_freeiag
);
1166 imap
->im_freeiag
= iagno
;
1167 IAGFREE_UNLOCK(imap
);
1171 /* remove the iag from the ag inode free list if freeing
1172 * this extent causes the iag to have no free inodes.
1174 if (iagp
->nfreeinos
== cpu_to_le32(INOSPEREXT
- 1)) {
1175 if ((int) le32_to_cpu(iagp
->inofreefwd
) >= 0)
1176 ciagp
->inofreeback
= iagp
->inofreeback
;
1178 if ((int) le32_to_cpu(iagp
->inofreeback
) >= 0)
1179 diagp
->inofreefwd
= iagp
->inofreefwd
;
1181 imap
->im_agctl
[agno
].inofree
=
1182 le32_to_cpu(iagp
->inofreefwd
);
1184 iagp
->inofreefwd
= iagp
->inofreeback
= cpu_to_le32(-1);
1187 /* update the inode extent address and working map
1188 * to reflect the free extent.
1189 * the permanent map should have been updated already
1190 * for the inode being freed.
1192 if (iagp
->pmap
[extno
] != 0) {
1193 jfs_error(ip
->i_sb
, "the pmap does not show inode free\n");
1195 iagp
->wmap
[extno
] = 0;
1196 PXDlength(&iagp
->inoext
[extno
], 0);
1197 PXDaddress(&iagp
->inoext
[extno
], 0);
1199 /* update the free extent and free inode summary maps
1200 * to reflect the freed extent.
1201 * the inode summary map is marked to indicate no inodes
1202 * available for the freed extent.
1204 sword
= extno
>> L2EXTSPERSUM
;
1205 bitno
= extno
& (EXTSPERSUM
- 1);
1206 mask
= HIGHORDER
>> bitno
;
1207 iagp
->inosmap
[sword
] |= cpu_to_le32(mask
);
1208 iagp
->extsmap
[sword
] &= cpu_to_le32(~mask
);
1210 /* update the number of free inodes and number of free extents
1213 le32_add_cpu(&iagp
->nfreeinos
, -(INOSPEREXT
- 1));
1214 le32_add_cpu(&iagp
->nfreeexts
, 1);
1216 /* update the number of free inodes and backed inodes
1217 * at the ag and inode map level.
1219 imap
->im_agctl
[agno
].numfree
-= (INOSPEREXT
- 1);
1220 imap
->im_agctl
[agno
].numinos
-= INOSPEREXT
;
1221 atomic_sub(INOSPEREXT
- 1, &imap
->im_numfree
);
1222 atomic_sub(INOSPEREXT
, &imap
->im_numinos
);
1225 write_metapage(amp
);
1227 write_metapage(bmp
);
1229 write_metapage(cmp
);
1231 write_metapage(dmp
);
1234 * start transaction to update block allocation map
1235 * for the inode extent freed;
1237 * N.B. AG_LOCK is released and iag will be released below, and
1238 * other thread may allocate inode from/reusing the ixad freed
1239 * BUT with new/different backing inode extent from the extent
1240 * to be freed by the transaction;
1242 tid
= txBegin(ipimap
->i_sb
, COMMIT_FORCE
);
1243 mutex_lock(&JFS_IP(ipimap
)->commit_mutex
);
1245 /* acquire tlock of the iag page of the freed ixad
1246 * to force the page NOHOMEOK (even though no data is
1247 * logged from the iag page) until NOREDOPAGE|FREEXTENT log
1248 * for the free of the extent is committed;
1249 * write FREEXTENT|NOREDOPAGE log record
1250 * N.B. linelock is overlaid as freed extent descriptor;
1252 tlck
= txLock(tid
, ipimap
, mp
, tlckINODE
| tlckFREE
);
1253 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
1254 pxdlock
->flag
= mlckFREEPXD
;
1255 pxdlock
->pxd
= freepxd
;
1263 * logredo needs the IAG number and IAG extent index in order
1264 * to ensure that the IMap is consistent. The least disruptive
1265 * way to pass these values through to the transaction manager
1266 * is in the iplist array.
1268 * It's not pretty, but it works.
1270 iplist
[1] = (struct inode
*) (size_t)iagno
;
1271 iplist
[2] = (struct inode
*) (size_t)extno
;
1273 rc
= txCommit(tid
, 1, &iplist
[0], COMMIT_FORCE
);
1276 mutex_unlock(&JFS_IP(ipimap
)->commit_mutex
);
1278 /* unlock the AG inode map information */
1279 AG_UNLOCK(imap
, agno
);
1284 IREAD_UNLOCK(ipimap
);
1287 release_metapage(amp
);
1289 release_metapage(bmp
);
1291 release_metapage(cmp
);
1293 release_metapage(dmp
);
1295 AG_UNLOCK(imap
, agno
);
1297 release_metapage(mp
);
1303 * There are several places in the diAlloc* routines where we initialize
1307 diInitInode(struct inode
*ip
, int iagno
, int ino
, int extno
, struct iag
* iagp
)
1309 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
1311 ip
->i_ino
= (iagno
<< L2INOSPERIAG
) + ino
;
1312 jfs_ip
->ixpxd
= iagp
->inoext
[extno
];
1313 jfs_ip
->agstart
= le64_to_cpu(iagp
->agstart
);
1314 jfs_ip
->active_ag
= -1;
1319 * NAME: diAlloc(pip,dir,ip)
1321 * FUNCTION: allocate a disk inode from the inode working map
1322 * for a fileset or aggregate.
1325 * pip - pointer to incore inode for the parent inode.
1326 * dir - 'true' if the new disk inode is for a directory.
1327 * ip - pointer to a new inode
1331 * -ENOSPC - insufficient disk resources.
1334 int diAlloc(struct inode
*pip
, bool dir
, struct inode
*ip
)
1336 int rc
, ino
, iagno
, addext
, extno
, bitno
, sword
;
1337 int nwords
, rem
, i
, agno
;
1338 u32 mask
, inosmap
, extsmap
;
1339 struct inode
*ipimap
;
1340 struct metapage
*mp
;
1343 struct inomap
*imap
;
1345 /* get the pointers to the inode map inode and the
1346 * corresponding imap control structure.
1348 ipimap
= JFS_SBI(pip
->i_sb
)->ipimap
;
1349 imap
= JFS_IP(ipimap
)->i_imap
;
1350 JFS_IP(ip
)->ipimap
= ipimap
;
1351 JFS_IP(ip
)->fileset
= FILESYSTEM_I
;
1353 /* for a directory, the allocation policy is to start
1354 * at the ag level using the preferred ag.
1357 agno
= dbNextAG(JFS_SBI(pip
->i_sb
)->ipbmap
);
1358 AG_LOCK(imap
, agno
);
1362 /* for files, the policy starts off by trying to allocate from
1363 * the same iag containing the parent disk inode:
1364 * try to allocate the new disk inode close to the parent disk
1365 * inode, using parent disk inode number + 1 as the allocation
1366 * hint. (we use a left-to-right policy to attempt to avoid
1367 * moving backward on the disk.) compute the hint within the
1368 * file system and the iag.
1371 /* get the ag number of this iag */
1372 agno
= BLKTOAG(JFS_IP(pip
)->agstart
, JFS_SBI(pip
->i_sb
));
1374 if (atomic_read(&JFS_SBI(pip
->i_sb
)->bmap
->db_active
[agno
])) {
1376 * There is an open file actively growing. We want to
1377 * allocate new inodes from a different ag to avoid
1378 * fragmentation problems.
1380 agno
= dbNextAG(JFS_SBI(pip
->i_sb
)->ipbmap
);
1381 AG_LOCK(imap
, agno
);
1385 inum
= pip
->i_ino
+ 1;
1386 ino
= inum
& (INOSPERIAG
- 1);
1388 /* back off the hint if it is outside of the iag */
1392 /* lock the AG inode map information */
1393 AG_LOCK(imap
, agno
);
1395 /* Get read lock on imap inode */
1396 IREAD_LOCK(ipimap
, RDWRLOCK_IMAP
);
1398 /* get the iag number and read the iag */
1399 iagno
= INOTOIAG(inum
);
1400 if ((rc
= diIAGRead(imap
, iagno
, &mp
))) {
1401 IREAD_UNLOCK(ipimap
);
1402 AG_UNLOCK(imap
, agno
);
1405 iagp
= (struct iag
*) mp
->data
;
1407 /* determine if new inode extent is allowed to be added to the iag.
1408 * new inode extent can be added to the iag if the ag
1409 * has less than 32 free disk inodes and the iag has free extents.
1411 addext
= (imap
->im_agctl
[agno
].numfree
< 32 && iagp
->nfreeexts
);
1414 * try to allocate from the IAG
1416 /* check if the inode may be allocated from the iag
1417 * (i.e. the inode has free inodes or new extent can be added).
1419 if (iagp
->nfreeinos
|| addext
) {
1420 /* determine the extent number of the hint.
1422 extno
= ino
>> L2INOSPEREXT
;
1424 /* check if the extent containing the hint has backed
1425 * inodes. if so, try to allocate within this extent.
1427 if (addressPXD(&iagp
->inoext
[extno
])) {
1428 bitno
= ino
& (INOSPEREXT
- 1);
1430 diFindFree(le32_to_cpu(iagp
->wmap
[extno
]),
1433 ino
= (extno
<< L2INOSPEREXT
) + bitno
;
1435 /* a free inode (bit) was found within this
1436 * extent, so allocate it.
1438 rc
= diAllocBit(imap
, iagp
, ino
);
1439 IREAD_UNLOCK(ipimap
);
1443 /* set the results of the allocation
1444 * and write the iag.
1446 diInitInode(ip
, iagno
, ino
, extno
,
1448 mark_metapage_dirty(mp
);
1450 release_metapage(mp
);
1452 /* free the AG lock and return.
1454 AG_UNLOCK(imap
, agno
);
1461 EXTSPERIAG
- 1) ? 0 : extno
+ 1;
1465 * no free inodes within the extent containing the hint.
1467 * try to allocate from the backed extents following
1468 * hint or, if appropriate (i.e. addext is true), allocate
1469 * an extent of free inodes at or following the extent
1470 * containing the hint.
1472 * the free inode and free extent summary maps are used
1473 * here, so determine the starting summary map position
1474 * and the number of words we'll have to examine. again,
1475 * the approach is to allocate following the hint, so we
1476 * might have to initially ignore prior bits of the summary
1477 * map that represent extents prior to the extent containing
1478 * the hint and later revisit these bits.
1480 bitno
= extno
& (EXTSPERSUM
- 1);
1481 nwords
= (bitno
== 0) ? SMAPSZ
: SMAPSZ
+ 1;
1482 sword
= extno
>> L2EXTSPERSUM
;
1484 /* mask any prior bits for the starting words of the
1487 mask
= (bitno
== 0) ? 0 : (ONES
<< (EXTSPERSUM
- bitno
));
1488 inosmap
= le32_to_cpu(iagp
->inosmap
[sword
]) | mask
;
1489 extsmap
= le32_to_cpu(iagp
->extsmap
[sword
]) | mask
;
1491 /* scan the free inode and free extent summary maps for
1494 for (i
= 0; i
< nwords
; i
++) {
1495 /* check if this word of the free inode summary
1496 * map describes an extent with free inodes.
1499 /* an extent with free inodes has been
1500 * found. determine the extent number
1501 * and the inode number within the extent.
1503 rem
= diFindFree(inosmap
, 0);
1504 extno
= (sword
<< L2EXTSPERSUM
) + rem
;
1505 rem
= diFindFree(le32_to_cpu(iagp
->wmap
[extno
]),
1507 if (rem
>= INOSPEREXT
) {
1508 IREAD_UNLOCK(ipimap
);
1509 release_metapage(mp
);
1510 AG_UNLOCK(imap
, agno
);
1512 "can't find free bit in wmap\n");
1516 /* determine the inode number within the
1517 * iag and allocate the inode from the
1520 ino
= (extno
<< L2INOSPEREXT
) + rem
;
1521 rc
= diAllocBit(imap
, iagp
, ino
);
1522 IREAD_UNLOCK(ipimap
);
1526 /* set the results of the allocation
1527 * and write the iag.
1529 diInitInode(ip
, iagno
, ino
, extno
,
1531 mark_metapage_dirty(mp
);
1533 release_metapage(mp
);
1535 /* free the AG lock and return.
1537 AG_UNLOCK(imap
, agno
);
1542 /* check if we may allocate an extent of free
1543 * inodes and whether this word of the free
1544 * extents summary map describes a free extent.
1546 if (addext
&& ~extsmap
) {
1547 /* a free extent has been found. determine
1548 * the extent number.
1550 rem
= diFindFree(extsmap
, 0);
1551 extno
= (sword
<< L2EXTSPERSUM
) + rem
;
1553 /* allocate an extent of free inodes.
1555 if ((rc
= diNewExt(imap
, iagp
, extno
))) {
1556 /* if there is no disk space for a
1557 * new extent, try to allocate the
1558 * disk inode from somewhere else.
1565 /* set the results of the allocation
1566 * and write the iag.
1568 diInitInode(ip
, iagno
,
1569 extno
<< L2INOSPEREXT
,
1571 mark_metapage_dirty(mp
);
1573 release_metapage(mp
);
1574 /* free the imap inode & the AG lock & return.
1576 IREAD_UNLOCK(ipimap
);
1577 AG_UNLOCK(imap
, agno
);
1581 /* move on to the next set of summary map words.
1583 sword
= (sword
== SMAPSZ
- 1) ? 0 : sword
+ 1;
1584 inosmap
= le32_to_cpu(iagp
->inosmap
[sword
]);
1585 extsmap
= le32_to_cpu(iagp
->extsmap
[sword
]);
1588 /* unlock imap inode */
1589 IREAD_UNLOCK(ipimap
);
1591 /* nothing doing in this iag, so release it. */
1592 release_metapage(mp
);
1596 * try to allocate anywhere within the same AG as the parent inode.
1598 rc
= diAllocAG(imap
, agno
, dir
, ip
);
1600 AG_UNLOCK(imap
, agno
);
1606 * try to allocate in any AG.
1608 return (diAllocAny(imap
, agno
, dir
, ip
));
1613 * NAME: diAllocAG(imap,agno,dir,ip)
1615 * FUNCTION: allocate a disk inode from the allocation group.
1617 * this routine first determines if a new extent of free
1618 * inodes should be added for the allocation group, with
1619 * the current request satisfied from this extent. if this
1620 * is the case, an attempt will be made to do just that. if
1621 * this attempt fails or it has been determined that a new
1622 * extent should not be added, an attempt is made to satisfy
1623 * the request by allocating an existing (backed) free inode
1624 * from the allocation group.
1626 * PRE CONDITION: Already have the AG lock for this AG.
1629 * imap - pointer to inode map control structure.
1630 * agno - allocation group to allocate from.
1631 * dir - 'true' if the new disk inode is for a directory.
1632 * ip - pointer to the new inode to be filled in on successful return
1633 * with the disk inode number allocated, its extent address
1634 * and the start of the ag.
1638 * -ENOSPC - insufficient disk resources.
1642 diAllocAG(struct inomap
* imap
, int agno
, bool dir
, struct inode
*ip
)
1644 int rc
, addext
, numfree
, numinos
;
1646 /* get the number of free and the number of backed disk
1647 * inodes currently within the ag.
1649 numfree
= imap
->im_agctl
[agno
].numfree
;
1650 numinos
= imap
->im_agctl
[agno
].numinos
;
1652 if (numfree
> numinos
) {
1653 jfs_error(ip
->i_sb
, "numfree > numinos\n");
1657 /* determine if we should allocate a new extent of free inodes
1658 * within the ag: for directory inodes, add a new extent
1659 * if there are a small number of free inodes or number of free
1660 * inodes is a small percentage of the number of backed inodes.
1663 addext
= (numfree
< 64 ||
1665 && ((numfree
* 100) / numinos
) <= 20));
1667 addext
= (numfree
== 0);
1670 * try to allocate a new extent of free inodes.
1673 /* if free space is not available for this new extent, try
1674 * below to allocate a free and existing (already backed)
1675 * inode from the ag.
1677 if ((rc
= diAllocExt(imap
, agno
, ip
)) != -ENOSPC
)
1682 * try to allocate an existing free inode from the ag.
1684 return (diAllocIno(imap
, agno
, ip
));
1689 * NAME: diAllocAny(imap,agno,dir,iap)
1691 * FUNCTION: allocate a disk inode from any other allocation group.
1693 * this routine is called when an allocation attempt within
1694 * the primary allocation group has failed. if attempts to
1695 * allocate an inode from any allocation group other than the
1696 * specified primary group.
1699 * imap - pointer to inode map control structure.
1700 * agno - primary allocation group (to avoid).
1701 * dir - 'true' if the new disk inode is for a directory.
1702 * ip - pointer to a new inode to be filled in on successful return
1703 * with the disk inode number allocated, its extent address
1704 * and the start of the ag.
1708 * -ENOSPC - insufficient disk resources.
1712 diAllocAny(struct inomap
* imap
, int agno
, bool dir
, struct inode
*ip
)
1715 int maxag
= JFS_SBI(imap
->im_ipimap
->i_sb
)->bmap
->db_maxag
;
1718 /* try to allocate from the ags following agno up to
1719 * the maximum ag number.
1721 for (ag
= agno
+ 1; ag
<= maxag
; ag
++) {
1724 rc
= diAllocAG(imap
, ag
, dir
, ip
);
1726 AG_UNLOCK(imap
, ag
);
1732 /* try to allocate from the ags in front of agno.
1734 for (ag
= 0; ag
< agno
; ag
++) {
1737 rc
= diAllocAG(imap
, ag
, dir
, ip
);
1739 AG_UNLOCK(imap
, ag
);
1745 /* no free disk inodes.
1752 * NAME: diAllocIno(imap,agno,ip)
1754 * FUNCTION: allocate a disk inode from the allocation group's free
1755 * inode list, returning an error if this free list is
1756 * empty (i.e. no iags on the list).
1758 * allocation occurs from the first iag on the list using
1759 * the iag's free inode summary map to find the leftmost
1760 * free inode in the iag.
1762 * PRE CONDITION: Already have AG lock for this AG.
1765 * imap - pointer to inode map control structure.
1766 * agno - allocation group.
1767 * ip - pointer to new inode to be filled in on successful return
1768 * with the disk inode number allocated, its extent address
1769 * and the start of the ag.
1773 * -ENOSPC - insufficient disk resources.
1776 static int diAllocIno(struct inomap
* imap
, int agno
, struct inode
*ip
)
1778 int iagno
, ino
, rc
, rem
, extno
, sword
;
1779 struct metapage
*mp
;
1782 /* check if there are iags on the ag's free inode list.
1784 if ((iagno
= imap
->im_agctl
[agno
].inofree
) < 0)
1787 /* obtain read lock on imap inode */
1788 IREAD_LOCK(imap
->im_ipimap
, RDWRLOCK_IMAP
);
1790 /* read the iag at the head of the list.
1792 if ((rc
= diIAGRead(imap
, iagno
, &mp
))) {
1793 IREAD_UNLOCK(imap
->im_ipimap
);
1796 iagp
= (struct iag
*) mp
->data
;
1798 /* better be free inodes in this iag if it is on the
1801 if (!iagp
->nfreeinos
) {
1802 IREAD_UNLOCK(imap
->im_ipimap
);
1803 release_metapage(mp
);
1804 jfs_error(ip
->i_sb
, "nfreeinos = 0, but iag on freelist\n");
1808 /* scan the free inode summary map to find an extent
1811 for (sword
= 0;; sword
++) {
1812 if (sword
>= SMAPSZ
) {
1813 IREAD_UNLOCK(imap
->im_ipimap
);
1814 release_metapage(mp
);
1816 "free inode not found in summary map\n");
1820 if (~iagp
->inosmap
[sword
])
1824 /* found a extent with free inodes. determine
1825 * the extent number.
1827 rem
= diFindFree(le32_to_cpu(iagp
->inosmap
[sword
]), 0);
1828 if (rem
>= EXTSPERSUM
) {
1829 IREAD_UNLOCK(imap
->im_ipimap
);
1830 release_metapage(mp
);
1831 jfs_error(ip
->i_sb
, "no free extent found\n");
1834 extno
= (sword
<< L2EXTSPERSUM
) + rem
;
1836 /* find the first free inode in the extent.
1838 rem
= diFindFree(le32_to_cpu(iagp
->wmap
[extno
]), 0);
1839 if (rem
>= INOSPEREXT
) {
1840 IREAD_UNLOCK(imap
->im_ipimap
);
1841 release_metapage(mp
);
1842 jfs_error(ip
->i_sb
, "free inode not found\n");
1846 /* compute the inode number within the iag.
1848 ino
= (extno
<< L2INOSPEREXT
) + rem
;
1850 /* allocate the inode.
1852 rc
= diAllocBit(imap
, iagp
, ino
);
1853 IREAD_UNLOCK(imap
->im_ipimap
);
1855 release_metapage(mp
);
1859 /* set the results of the allocation and write the iag.
1861 diInitInode(ip
, iagno
, ino
, extno
, iagp
);
1869 * NAME: diAllocExt(imap,agno,ip)
1871 * FUNCTION: add a new extent of free inodes to an iag, allocating
1872 * an inode from this extent to satisfy the current allocation
1875 * this routine first tries to find an existing iag with free
1876 * extents through the ag free extent list. if list is not
1877 * empty, the head of the list will be selected as the home
1878 * of the new extent of free inodes. otherwise (the list is
1879 * empty), a new iag will be allocated for the ag to contain
1882 * once an iag has been selected, the free extent summary map
1883 * is used to locate a free extent within the iag and diNewExt()
1884 * is called to initialize the extent, with initialization
1885 * including the allocation of the first inode of the extent
1886 * for the purpose of satisfying this request.
1889 * imap - pointer to inode map control structure.
1890 * agno - allocation group number.
1891 * ip - pointer to new inode to be filled in on successful return
1892 * with the disk inode number allocated, its extent address
1893 * and the start of the ag.
1897 * -ENOSPC - insufficient disk resources.
1900 static int diAllocExt(struct inomap
* imap
, int agno
, struct inode
*ip
)
1902 int rem
, iagno
, sword
, extno
, rc
;
1903 struct metapage
*mp
;
1906 /* check if the ag has any iags with free extents. if not,
1907 * allocate a new iag for the ag.
1909 if ((iagno
= imap
->im_agctl
[agno
].extfree
) < 0) {
1910 /* If successful, diNewIAG will obtain the read lock on the
1913 if ((rc
= diNewIAG(imap
, &iagno
, agno
, &mp
))) {
1916 iagp
= (struct iag
*) mp
->data
;
1918 /* set the ag number if this a brand new iag
1921 cpu_to_le64(AGTOBLK(agno
, imap
->im_ipimap
));
1925 IREAD_LOCK(imap
->im_ipimap
, RDWRLOCK_IMAP
);
1926 if ((rc
= diIAGRead(imap
, iagno
, &mp
))) {
1927 IREAD_UNLOCK(imap
->im_ipimap
);
1928 jfs_error(ip
->i_sb
, "error reading iag\n");
1931 iagp
= (struct iag
*) mp
->data
;
1934 /* using the free extent summary map, find a free extent.
1936 for (sword
= 0;; sword
++) {
1937 if (sword
>= SMAPSZ
) {
1938 release_metapage(mp
);
1939 IREAD_UNLOCK(imap
->im_ipimap
);
1940 jfs_error(ip
->i_sb
, "free ext summary map not found\n");
1943 if (~iagp
->extsmap
[sword
])
1947 /* determine the extent number of the free extent.
1949 rem
= diFindFree(le32_to_cpu(iagp
->extsmap
[sword
]), 0);
1950 if (rem
>= EXTSPERSUM
) {
1951 release_metapage(mp
);
1952 IREAD_UNLOCK(imap
->im_ipimap
);
1953 jfs_error(ip
->i_sb
, "free extent not found\n");
1956 extno
= (sword
<< L2EXTSPERSUM
) + rem
;
1958 /* initialize the new extent.
1960 rc
= diNewExt(imap
, iagp
, extno
);
1961 IREAD_UNLOCK(imap
->im_ipimap
);
1963 /* something bad happened. if a new iag was allocated,
1964 * place it back on the inode map's iag free list, and
1965 * clear the ag number information.
1967 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
)) {
1969 iagp
->iagfree
= cpu_to_le32(imap
->im_freeiag
);
1970 imap
->im_freeiag
= iagno
;
1971 IAGFREE_UNLOCK(imap
);
1977 /* set the results of the allocation and write the iag.
1979 diInitInode(ip
, iagno
, extno
<< L2INOSPEREXT
, extno
, iagp
);
1988 * NAME: diAllocBit(imap,iagp,ino)
1990 * FUNCTION: allocate a backed inode from an iag.
1992 * this routine performs the mechanics of allocating a
1993 * specified inode from a backed extent.
1995 * if the inode to be allocated represents the last free
1996 * inode within the iag, the iag will be removed from the
1997 * ag free inode list.
1999 * a careful update approach is used to provide consistency
2000 * in the face of updates to multiple buffers. under this
2001 * approach, all required buffers are obtained before making
2002 * any updates and are held all are updates are complete.
2004 * PRE CONDITION: Already have buffer lock on iagp. Already have AG lock on
2005 * this AG. Must have read lock on imap inode.
2008 * imap - pointer to inode map control structure.
2009 * iagp - pointer to iag.
2010 * ino - inode number to be allocated within the iag.
2014 * -ENOSPC - insufficient disk resources.
2017 static int diAllocBit(struct inomap
* imap
, struct iag
* iagp
, int ino
)
2019 int extno
, bitno
, agno
, sword
, rc
;
2020 struct metapage
*amp
= NULL
, *bmp
= NULL
;
2021 struct iag
*aiagp
= NULL
, *biagp
= NULL
;
2024 /* check if this is the last free inode within the iag.
2025 * if so, it will have to be removed from the ag free
2026 * inode list, so get the iags preceding and following
2029 if (iagp
->nfreeinos
== cpu_to_le32(1)) {
2030 if ((int) le32_to_cpu(iagp
->inofreefwd
) >= 0) {
2032 diIAGRead(imap
, le32_to_cpu(iagp
->inofreefwd
),
2035 aiagp
= (struct iag
*) amp
->data
;
2038 if ((int) le32_to_cpu(iagp
->inofreeback
) >= 0) {
2041 le32_to_cpu(iagp
->inofreeback
),
2044 release_metapage(amp
);
2047 biagp
= (struct iag
*) bmp
->data
;
2051 /* get the ag number, extent number, inode number within
2054 agno
= BLKTOAG(le64_to_cpu(iagp
->agstart
), JFS_SBI(imap
->im_ipimap
->i_sb
));
2055 extno
= ino
>> L2INOSPEREXT
;
2056 bitno
= ino
& (INOSPEREXT
- 1);
2058 /* compute the mask for setting the map.
2060 mask
= HIGHORDER
>> bitno
;
2062 /* the inode should be free and backed.
2064 if (((le32_to_cpu(iagp
->pmap
[extno
]) & mask
) != 0) ||
2065 ((le32_to_cpu(iagp
->wmap
[extno
]) & mask
) != 0) ||
2066 (addressPXD(&iagp
->inoext
[extno
]) == 0)) {
2068 release_metapage(amp
);
2070 release_metapage(bmp
);
2072 jfs_error(imap
->im_ipimap
->i_sb
, "iag inconsistent\n");
2076 /* mark the inode as allocated in the working map.
2078 iagp
->wmap
[extno
] |= cpu_to_le32(mask
);
2080 /* check if all inodes within the extent are now
2081 * allocated. if so, update the free inode summary
2082 * map to reflect this.
2084 if (iagp
->wmap
[extno
] == cpu_to_le32(ONES
)) {
2085 sword
= extno
>> L2EXTSPERSUM
;
2086 bitno
= extno
& (EXTSPERSUM
- 1);
2087 iagp
->inosmap
[sword
] |= cpu_to_le32(HIGHORDER
>> bitno
);
2090 /* if this was the last free inode in the iag, remove the
2091 * iag from the ag free inode list.
2093 if (iagp
->nfreeinos
== cpu_to_le32(1)) {
2095 aiagp
->inofreeback
= iagp
->inofreeback
;
2096 write_metapage(amp
);
2100 biagp
->inofreefwd
= iagp
->inofreefwd
;
2101 write_metapage(bmp
);
2103 imap
->im_agctl
[agno
].inofree
=
2104 le32_to_cpu(iagp
->inofreefwd
);
2106 iagp
->inofreefwd
= iagp
->inofreeback
= cpu_to_le32(-1);
2109 /* update the free inode count at the iag, ag, inode
2112 le32_add_cpu(&iagp
->nfreeinos
, -1);
2113 imap
->im_agctl
[agno
].numfree
-= 1;
2114 atomic_dec(&imap
->im_numfree
);
2121 * NAME: diNewExt(imap,iagp,extno)
2123 * FUNCTION: initialize a new extent of inodes for an iag, allocating
2124 * the first inode of the extent for use for the current
2125 * allocation request.
2127 * disk resources are allocated for the new extent of inodes
2128 * and the inodes themselves are initialized to reflect their
2129 * existence within the extent (i.e. their inode numbers and
2130 * inode extent addresses are set) and their initial state
2131 * (mode and link count are set to zero).
2133 * if the iag is new, it is not yet on an ag extent free list
2134 * but will now be placed on this list.
2136 * if the allocation of the new extent causes the iag to
2137 * have no free extent, the iag will be removed from the
2138 * ag extent free list.
2140 * if the iag has no free backed inodes, it will be placed
2141 * on the ag free inode list, since the addition of the new
2142 * extent will now cause it to have free inodes.
2144 * a careful update approach is used to provide consistency
2145 * (i.e. list consistency) in the face of updates to multiple
2146 * buffers. under this approach, all required buffers are
2147 * obtained before making any updates and are held until all
2148 * updates are complete.
2150 * PRE CONDITION: Already have buffer lock on iagp. Already have AG lock on
2151 * this AG. Must have read lock on imap inode.
2154 * imap - pointer to inode map control structure.
2155 * iagp - pointer to iag.
2156 * extno - extent number.
2160 * -ENOSPC - insufficient disk resources.
2163 static int diNewExt(struct inomap
* imap
, struct iag
* iagp
, int extno
)
2165 int agno
, iagno
, fwd
, back
, freei
= 0, sword
, rc
;
2166 struct iag
*aiagp
= NULL
, *biagp
= NULL
, *ciagp
= NULL
;
2167 struct metapage
*amp
, *bmp
, *cmp
, *dmp
;
2168 struct inode
*ipimap
;
2174 struct jfs_sb_info
*sbi
;
2176 /* better have free extents.
2178 if (!iagp
->nfreeexts
) {
2179 jfs_error(imap
->im_ipimap
->i_sb
, "no free extents\n");
2183 /* get the inode map inode.
2185 ipimap
= imap
->im_ipimap
;
2186 sbi
= JFS_SBI(ipimap
->i_sb
);
2188 amp
= bmp
= cmp
= NULL
;
2190 /* get the ag and iag numbers for this iag.
2192 agno
= BLKTOAG(le64_to_cpu(iagp
->agstart
), sbi
);
2193 iagno
= le32_to_cpu(iagp
->iagnum
);
2195 /* check if this is the last free extent within the
2196 * iag. if so, the iag must be removed from the ag
2197 * free extent list, so get the iags preceding and
2198 * following the iag on this list.
2200 if (iagp
->nfreeexts
== cpu_to_le32(1)) {
2201 if ((fwd
= le32_to_cpu(iagp
->extfreefwd
)) >= 0) {
2202 if ((rc
= diIAGRead(imap
, fwd
, &
)))
2204 aiagp
= (struct iag
*) amp
->data
;
2207 if ((back
= le32_to_cpu(iagp
->extfreeback
)) >= 0) {
2208 if ((rc
= diIAGRead(imap
, back
, &bmp
)))
2210 biagp
= (struct iag
*) bmp
->data
;
2213 /* the iag has free extents. if all extents are free
2214 * (as is the case for a newly allocated iag), the iag
2215 * must be added to the ag free extent list, so get
2216 * the iag at the head of the list in preparation for
2217 * adding this iag to this list.
2220 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
)) {
2221 if ((fwd
= imap
->im_agctl
[agno
].extfree
) >= 0) {
2222 if ((rc
= diIAGRead(imap
, fwd
, &
)))
2224 aiagp
= (struct iag
*) amp
->data
;
2229 /* check if the iag has no free inodes. if so, the iag
2230 * will have to be added to the ag free inode list, so get
2231 * the iag at the head of the list in preparation for
2232 * adding this iag to this list. in doing this, we must
2233 * check if we already have the iag at the head of
2236 if (iagp
->nfreeinos
== 0) {
2237 freei
= imap
->im_agctl
[agno
].inofree
;
2242 } else if (freei
== back
) {
2245 if ((rc
= diIAGRead(imap
, freei
, &cmp
)))
2247 ciagp
= (struct iag
*) cmp
->data
;
2249 if (ciagp
== NULL
) {
2250 jfs_error(imap
->im_ipimap
->i_sb
,
2258 /* allocate disk space for the inode extent.
2260 if ((extno
== 0) || (addressPXD(&iagp
->inoext
[extno
- 1]) == 0))
2261 hint
= ((s64
) agno
<< sbi
->bmap
->db_agl2size
) - 1;
2263 hint
= addressPXD(&iagp
->inoext
[extno
- 1]) +
2264 lengthPXD(&iagp
->inoext
[extno
- 1]) - 1;
2266 if ((rc
= dbAlloc(ipimap
, hint
, (s64
) imap
->im_nbperiext
, &blkno
)))
2269 /* compute the inode number of the first inode within the
2272 ino
= (iagno
<< L2INOSPERIAG
) + (extno
<< L2INOSPEREXT
);
2274 /* initialize the inodes within the newly allocated extent a
2277 for (i
= 0; i
< imap
->im_nbperiext
; i
+= sbi
->nbperpage
) {
2278 /* get a buffer for this page of disk inodes.
2280 dmp
= get_metapage(ipimap
, blkno
+ i
, PSIZE
, 1);
2285 dp
= (struct dinode
*) dmp
->data
;
2287 /* initialize the inode number, mode, link count and
2288 * inode extent address.
2290 for (j
= 0; j
< INOSPERPAGE
; j
++, dp
++, ino
++) {
2291 dp
->di_inostamp
= cpu_to_le32(sbi
->inostamp
);
2292 dp
->di_number
= cpu_to_le32(ino
);
2293 dp
->di_fileset
= cpu_to_le32(FILESYSTEM_I
);
2296 PXDaddress(&(dp
->di_ixpxd
), blkno
);
2297 PXDlength(&(dp
->di_ixpxd
), imap
->im_nbperiext
);
2299 write_metapage(dmp
);
2302 /* if this is the last free extent within the iag, remove the
2303 * iag from the ag free extent list.
2305 if (iagp
->nfreeexts
== cpu_to_le32(1)) {
2307 aiagp
->extfreeback
= iagp
->extfreeback
;
2310 biagp
->extfreefwd
= iagp
->extfreefwd
;
2312 imap
->im_agctl
[agno
].extfree
=
2313 le32_to_cpu(iagp
->extfreefwd
);
2315 iagp
->extfreefwd
= iagp
->extfreeback
= cpu_to_le32(-1);
2317 /* if the iag has all free extents (newly allocated iag),
2318 * add the iag to the ag free extent list.
2320 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
)) {
2322 aiagp
->extfreeback
= cpu_to_le32(iagno
);
2324 iagp
->extfreefwd
= cpu_to_le32(fwd
);
2325 iagp
->extfreeback
= cpu_to_le32(-1);
2326 imap
->im_agctl
[agno
].extfree
= iagno
;
2330 /* if the iag has no free inodes, add the iag to the
2331 * ag free inode list.
2333 if (iagp
->nfreeinos
== 0) {
2335 ciagp
->inofreeback
= cpu_to_le32(iagno
);
2338 cpu_to_le32(imap
->im_agctl
[agno
].inofree
);
2339 iagp
->inofreeback
= cpu_to_le32(-1);
2340 imap
->im_agctl
[agno
].inofree
= iagno
;
2343 /* initialize the extent descriptor of the extent. */
2344 PXDlength(&iagp
->inoext
[extno
], imap
->im_nbperiext
);
2345 PXDaddress(&iagp
->inoext
[extno
], blkno
);
2347 /* initialize the working and persistent map of the extent.
2348 * the working map will be initialized such that
2349 * it indicates the first inode of the extent is allocated.
2351 iagp
->wmap
[extno
] = cpu_to_le32(HIGHORDER
);
2352 iagp
->pmap
[extno
] = 0;
2354 /* update the free inode and free extent summary maps
2355 * for the extent to indicate the extent has free inodes
2356 * and no longer represents a free extent.
2358 sword
= extno
>> L2EXTSPERSUM
;
2359 mask
= HIGHORDER
>> (extno
& (EXTSPERSUM
- 1));
2360 iagp
->extsmap
[sword
] |= cpu_to_le32(mask
);
2361 iagp
->inosmap
[sword
] &= cpu_to_le32(~mask
);
2363 /* update the free inode and free extent counts for the
2366 le32_add_cpu(&iagp
->nfreeinos
, (INOSPEREXT
- 1));
2367 le32_add_cpu(&iagp
->nfreeexts
, -1);
2369 /* update the free and backed inode counts for the ag.
2371 imap
->im_agctl
[agno
].numfree
+= (INOSPEREXT
- 1);
2372 imap
->im_agctl
[agno
].numinos
+= INOSPEREXT
;
2374 /* update the free and backed inode counts for the inode map.
2376 atomic_add(INOSPEREXT
- 1, &imap
->im_numfree
);
2377 atomic_add(INOSPEREXT
, &imap
->im_numinos
);
2382 write_metapage(amp
);
2384 write_metapage(bmp
);
2386 write_metapage(cmp
);
2392 /* release the iags.
2395 release_metapage(amp
);
2397 release_metapage(bmp
);
2399 release_metapage(cmp
);
2406 * NAME: diNewIAG(imap,iagnop,agno)
2408 * FUNCTION: allocate a new iag for an allocation group.
2410 * first tries to allocate the iag from the inode map
2412 * if the list has free iags, the head of the list is removed
2413 * and returned to satisfy the request.
2414 * if the inode map's iag free list is empty, the inode map
2415 * is extended to hold a new iag. this new iag is initialized
2416 * and returned to satisfy the request.
2419 * imap - pointer to inode map control structure.
2420 * iagnop - pointer to an iag number set with the number of the
2421 * newly allocated iag upon successful return.
2422 * agno - allocation group number.
2423 * bpp - Buffer pointer to be filled in with new IAG's buffer
2427 * -ENOSPC - insufficient disk resources.
2431 * AG lock held on entry/exit;
2432 * write lock on the map is held inside;
2433 * read lock on the map is held on successful completion;
2435 * note: new iag transaction:
2436 * . synchronously write iag;
2437 * . write log of xtree and inode of imap;
2439 * . synchronous write of xtree (right to left, bottom to top);
2440 * . at start of logredo(): init in-memory imap with one additional iag page;
2441 * . at end of logredo(): re-read imap inode to determine
2445 diNewIAG(struct inomap
* imap
, int *iagnop
, int agno
, struct metapage
** mpp
)
2449 struct inode
*ipimap
;
2450 struct super_block
*sb
;
2451 struct jfs_sb_info
*sbi
;
2452 struct metapage
*mp
;
2457 struct inode
*iplist
[1];
2459 /* pick up pointers to the inode map and mount inodes */
2460 ipimap
= imap
->im_ipimap
;
2464 /* acquire the free iag lock */
2467 /* if there are any iags on the inode map free iag list,
2468 * allocate the iag from the head of the list.
2470 if (imap
->im_freeiag
>= 0) {
2471 /* pick up the iag number at the head of the list */
2472 iagno
= imap
->im_freeiag
;
2474 /* determine the logical block number of the iag */
2475 blkno
= IAGTOLBLK(iagno
, sbi
->l2nbperpage
);
2477 /* no free iags. the inode map will have to be extented
2478 * to include a new iag.
2481 /* acquire inode map lock */
2482 IWRITE_LOCK(ipimap
, RDWRLOCK_IMAP
);
2484 if (ipimap
->i_size
>> L2PSIZE
!= imap
->im_nextiag
+ 1) {
2485 IWRITE_UNLOCK(ipimap
);
2486 IAGFREE_UNLOCK(imap
);
2487 jfs_error(imap
->im_ipimap
->i_sb
,
2488 "ipimap->i_size is wrong\n");
2493 /* get the next available iag number */
2494 iagno
= imap
->im_nextiag
;
2496 /* make sure that we have not exceeded the maximum inode
2499 if (iagno
> (MAXIAGS
- 1)) {
2500 /* release the inode map lock */
2501 IWRITE_UNLOCK(ipimap
);
2508 * synchronously append new iag page.
2510 /* determine the logical address of iag page to append */
2511 blkno
= IAGTOLBLK(iagno
, sbi
->l2nbperpage
);
2513 /* Allocate extent for new iag page */
2514 xlen
= sbi
->nbperpage
;
2515 if ((rc
= dbAlloc(ipimap
, 0, (s64
) xlen
, &xaddr
))) {
2516 /* release the inode map lock */
2517 IWRITE_UNLOCK(ipimap
);
2523 * start transaction of update of the inode map
2524 * addressing structure pointing to the new iag page;
2526 tid
= txBegin(sb
, COMMIT_FORCE
);
2527 mutex_lock(&JFS_IP(ipimap
)->commit_mutex
);
2529 /* update the inode map addressing structure to point to it */
2531 xtInsert(tid
, ipimap
, 0, blkno
, xlen
, &xaddr
, 0))) {
2533 mutex_unlock(&JFS_IP(ipimap
)->commit_mutex
);
2534 /* Free the blocks allocated for the iag since it was
2535 * not successfully added to the inode map
2537 dbFree(ipimap
, xaddr
, (s64
) xlen
);
2539 /* release the inode map lock */
2540 IWRITE_UNLOCK(ipimap
);
2545 /* update the inode map's inode to reflect the extension */
2546 ipimap
->i_size
+= PSIZE
;
2547 inode_add_bytes(ipimap
, PSIZE
);
2549 /* assign a buffer for the page */
2550 mp
= get_metapage(ipimap
, blkno
, PSIZE
, 0);
2553 * This is very unlikely since we just created the
2554 * extent, but let's try to handle it correctly
2556 xtTruncate(tid
, ipimap
, ipimap
->i_size
- PSIZE
,
2561 mutex_unlock(&JFS_IP(ipimap
)->commit_mutex
);
2563 /* release the inode map lock */
2564 IWRITE_UNLOCK(ipimap
);
2569 iagp
= (struct iag
*) mp
->data
;
2572 memset(iagp
, 0, sizeof(struct iag
));
2573 iagp
->iagnum
= cpu_to_le32(iagno
);
2574 iagp
->inofreefwd
= iagp
->inofreeback
= cpu_to_le32(-1);
2575 iagp
->extfreefwd
= iagp
->extfreeback
= cpu_to_le32(-1);
2576 iagp
->iagfree
= cpu_to_le32(-1);
2577 iagp
->nfreeinos
= 0;
2578 iagp
->nfreeexts
= cpu_to_le32(EXTSPERIAG
);
2580 /* initialize the free inode summary map (free extent
2581 * summary map initialization handled by bzero).
2583 for (i
= 0; i
< SMAPSZ
; i
++)
2584 iagp
->inosmap
[i
] = cpu_to_le32(ONES
);
2587 * Write and sync the metapage
2592 * txCommit(COMMIT_FORCE) will synchronously write address
2593 * index pages and inode after commit in careful update order
2594 * of address index pages (right to left, bottom up);
2597 rc
= txCommit(tid
, 1, &iplist
[0], COMMIT_FORCE
);
2600 mutex_unlock(&JFS_IP(ipimap
)->commit_mutex
);
2602 duplicateIXtree(sb
, blkno
, xlen
, &xaddr
);
2604 /* update the next available iag number */
2605 imap
->im_nextiag
+= 1;
2607 /* Add the iag to the iag free list so we don't lose the iag
2608 * if a failure happens now.
2610 imap
->im_freeiag
= iagno
;
2612 /* Until we have logredo working, we want the imap inode &
2613 * control page to be up to date.
2617 /* release the inode map lock */
2618 IWRITE_UNLOCK(ipimap
);
2621 /* obtain read lock on map */
2622 IREAD_LOCK(ipimap
, RDWRLOCK_IMAP
);
2625 if ((rc
= diIAGRead(imap
, iagno
, &mp
))) {
2626 IREAD_UNLOCK(ipimap
);
2630 iagp
= (struct iag
*) mp
->data
;
2632 /* remove the iag from the iag free list */
2633 imap
->im_freeiag
= le32_to_cpu(iagp
->iagfree
);
2634 iagp
->iagfree
= cpu_to_le32(-1);
2636 /* set the return iag number and buffer pointer */
2641 /* release the iag free lock */
2642 IAGFREE_UNLOCK(imap
);
2650 * FUNCTION: get the buffer for the specified iag within a fileset
2651 * or aggregate inode map.
2654 * imap - pointer to inode map control structure.
2655 * iagno - iag number.
2656 * bpp - point to buffer pointer to be filled in on successful
2660 * must have read lock on imap inode
2661 * (When called by diExtendFS, the filesystem is quiesced, therefore
2662 * the read lock is unnecessary.)
2668 static int diIAGRead(struct inomap
* imap
, int iagno
, struct metapage
** mpp
)
2670 struct inode
*ipimap
= imap
->im_ipimap
;
2673 /* compute the logical block number of the iag. */
2674 blkno
= IAGTOLBLK(iagno
, JFS_SBI(ipimap
->i_sb
)->l2nbperpage
);
2677 *mpp
= read_metapage(ipimap
, blkno
, PSIZE
, 0);
2686 * NAME: diFindFree()
2688 * FUNCTION: find the first free bit in a word starting at
2689 * the specified bit position.
2692 * word - word to be examined.
2693 * start - starting bit position.
2696 * bit position of first free bit in the word or 32 if
2697 * no free bits were found.
2699 static int diFindFree(u32 word
, int start
)
2703 /* scan the word for the first free bit. */
2704 for (word
<<= start
, bitno
= start
; bitno
< 32;
2705 bitno
++, word
<<= 1) {
2706 if ((word
& HIGHORDER
) == 0)
2713 * NAME: diUpdatePMap()
2715 * FUNCTION: Update the persistent map in an IAG for the allocation or
2716 * freeing of the specified inode.
2718 * PRE CONDITIONS: Working map has already been updated for allocate.
2721 * ipimap - Incore inode map inode
2722 * inum - Number of inode to mark in permanent map
2723 * is_free - If 'true' indicates inode should be marked freed, otherwise
2724 * indicates inode should be marked allocated.
2730 diUpdatePMap(struct inode
*ipimap
,
2731 unsigned long inum
, bool is_free
, struct tblock
* tblk
)
2735 struct metapage
*mp
;
2736 int iagno
, ino
, extno
, bitno
;
2737 struct inomap
*imap
;
2739 struct jfs_log
*log
;
2740 int lsn
, difft
, diffp
;
2741 unsigned long flags
;
2743 imap
= JFS_IP(ipimap
)->i_imap
;
2744 /* get the iag number containing the inode */
2745 iagno
= INOTOIAG(inum
);
2746 /* make sure that the iag is contained within the map */
2747 if (iagno
>= imap
->im_nextiag
) {
2748 jfs_error(ipimap
->i_sb
, "the iag is outside the map\n");
2752 IREAD_LOCK(ipimap
, RDWRLOCK_IMAP
);
2753 rc
= diIAGRead(imap
, iagno
, &mp
);
2754 IREAD_UNLOCK(ipimap
);
2757 metapage_wait_for_io(mp
);
2758 iagp
= (struct iag
*) mp
->data
;
2759 /* get the inode number and extent number of the inode within
2760 * the iag and the inode number within the extent.
2762 ino
= inum
& (INOSPERIAG
- 1);
2763 extno
= ino
>> L2INOSPEREXT
;
2764 bitno
= ino
& (INOSPEREXT
- 1);
2765 mask
= HIGHORDER
>> bitno
;
2767 * mark the inode free in persistent map:
2770 /* The inode should have been allocated both in working
2771 * map and in persistent map;
2772 * the inode will be freed from working map at the release
2773 * of last reference release;
2775 if (!(le32_to_cpu(iagp
->wmap
[extno
]) & mask
)) {
2776 jfs_error(ipimap
->i_sb
,
2777 "inode %ld not marked as allocated in wmap!\n",
2780 if (!(le32_to_cpu(iagp
->pmap
[extno
]) & mask
)) {
2781 jfs_error(ipimap
->i_sb
,
2782 "inode %ld not marked as allocated in pmap!\n",
2785 /* update the bitmap for the extent of the freed inode */
2786 iagp
->pmap
[extno
] &= cpu_to_le32(~mask
);
2789 * mark the inode allocated in persistent map:
2792 /* The inode should be already allocated in the working map
2793 * and should be free in persistent map;
2795 if (!(le32_to_cpu(iagp
->wmap
[extno
]) & mask
)) {
2796 release_metapage(mp
);
2797 jfs_error(ipimap
->i_sb
,
2798 "the inode is not allocated in the working map\n");
2801 if ((le32_to_cpu(iagp
->pmap
[extno
]) & mask
) != 0) {
2802 release_metapage(mp
);
2803 jfs_error(ipimap
->i_sb
,
2804 "the inode is not free in the persistent map\n");
2807 /* update the bitmap for the extent of the allocated inode */
2808 iagp
->pmap
[extno
] |= cpu_to_le32(mask
);
2814 log
= JFS_SBI(tblk
->sb
)->log
;
2815 LOGSYNC_LOCK(log
, flags
);
2817 /* inherit older/smaller lsn */
2818 logdiff(difft
, lsn
, log
);
2819 logdiff(diffp
, mp
->lsn
, log
);
2820 if (difft
< diffp
) {
2822 /* move mp after tblock in logsync list */
2823 list_move(&mp
->synclist
, &tblk
->synclist
);
2825 /* inherit younger/larger clsn */
2827 logdiff(difft
, tblk
->clsn
, log
);
2828 logdiff(diffp
, mp
->clsn
, log
);
2830 mp
->clsn
= tblk
->clsn
;
2834 /* insert mp after tblock in logsync list */
2836 list_add(&mp
->synclist
, &tblk
->synclist
);
2837 mp
->clsn
= tblk
->clsn
;
2839 LOGSYNC_UNLOCK(log
, flags
);
2847 * function: update imap for extendfs();
2849 * note: AG size has been increased s.t. each k old contiguous AGs are
2850 * coalesced into a new AG;
2852 int diExtendFS(struct inode
*ipimap
, struct inode
*ipbmap
)
2855 struct inomap
*imap
= JFS_IP(ipimap
)->i_imap
;
2856 struct iag
*iagp
= NULL
, *hiagp
= NULL
;
2857 struct bmap
*mp
= JFS_SBI(ipbmap
->i_sb
)->bmap
;
2858 struct metapage
*bp
, *hbp
;
2860 int numinos
, xnuminos
= 0, xnumfree
= 0;
2863 jfs_info("diExtendFS: nextiag:%d numinos:%d numfree:%d",
2864 imap
->im_nextiag
, atomic_read(&imap
->im_numinos
),
2865 atomic_read(&imap
->im_numfree
));
2870 * coalesce contiguous k (newAGSize/oldAGSize) AGs;
2871 * i.e., (AGi, ..., AGj) where i = k*n and j = k*(n+1) - 1 to AGn;
2872 * note: new AG size = old AG size * (2**x).
2875 /* init per AG control information im_agctl[] */
2876 for (i
= 0; i
< MAXAG
; i
++) {
2877 imap
->im_agctl
[i
].inofree
= -1;
2878 imap
->im_agctl
[i
].extfree
= -1;
2879 imap
->im_agctl
[i
].numinos
= 0; /* number of backed inodes */
2880 imap
->im_agctl
[i
].numfree
= 0; /* number of free backed inodes */
2884 * process each iag page of the map.
2886 * rebuild AG Free Inode List, AG Free Inode Extent List;
2888 for (i
= 0; i
< imap
->im_nextiag
; i
++) {
2889 if ((rc
= diIAGRead(imap
, i
, &bp
))) {
2893 iagp
= (struct iag
*) bp
->data
;
2894 if (le32_to_cpu(iagp
->iagnum
) != i
) {
2895 release_metapage(bp
);
2896 jfs_error(ipimap
->i_sb
, "unexpected value of iagnum\n");
2900 /* leave free iag in the free iag list */
2901 if (iagp
->nfreeexts
== cpu_to_le32(EXTSPERIAG
)) {
2902 release_metapage(bp
);
2906 agstart
= le64_to_cpu(iagp
->agstart
);
2907 n
= agstart
>> mp
->db_agl2size
;
2908 iagp
->agstart
= cpu_to_le64((s64
)n
<< mp
->db_agl2size
);
2910 /* compute backed inodes */
2911 numinos
= (EXTSPERIAG
- le32_to_cpu(iagp
->nfreeexts
))
2914 /* merge AG backed inodes */
2915 imap
->im_agctl
[n
].numinos
+= numinos
;
2916 xnuminos
+= numinos
;
2919 /* if any backed free inodes, insert at AG free inode list */
2920 if ((int) le32_to_cpu(iagp
->nfreeinos
) > 0) {
2921 if ((head
= imap
->im_agctl
[n
].inofree
) == -1) {
2922 iagp
->inofreefwd
= cpu_to_le32(-1);
2923 iagp
->inofreeback
= cpu_to_le32(-1);
2925 if ((rc
= diIAGRead(imap
, head
, &hbp
))) {
2929 hiagp
= (struct iag
*) hbp
->data
;
2930 hiagp
->inofreeback
= iagp
->iagnum
;
2931 iagp
->inofreefwd
= cpu_to_le32(head
);
2932 iagp
->inofreeback
= cpu_to_le32(-1);
2933 write_metapage(hbp
);
2936 imap
->im_agctl
[n
].inofree
=
2937 le32_to_cpu(iagp
->iagnum
);
2939 /* merge AG backed free inodes */
2940 imap
->im_agctl
[n
].numfree
+=
2941 le32_to_cpu(iagp
->nfreeinos
);
2942 xnumfree
+= le32_to_cpu(iagp
->nfreeinos
);
2945 /* if any free extents, insert at AG free extent list */
2946 if (le32_to_cpu(iagp
->nfreeexts
) > 0) {
2947 if ((head
= imap
->im_agctl
[n
].extfree
) == -1) {
2948 iagp
->extfreefwd
= cpu_to_le32(-1);
2949 iagp
->extfreeback
= cpu_to_le32(-1);
2951 if ((rc
= diIAGRead(imap
, head
, &hbp
))) {
2955 hiagp
= (struct iag
*) hbp
->data
;
2956 hiagp
->extfreeback
= iagp
->iagnum
;
2957 iagp
->extfreefwd
= cpu_to_le32(head
);
2958 iagp
->extfreeback
= cpu_to_le32(-1);
2959 write_metapage(hbp
);
2962 imap
->im_agctl
[n
].extfree
=
2963 le32_to_cpu(iagp
->iagnum
);
2970 if (xnuminos
!= atomic_read(&imap
->im_numinos
) ||
2971 xnumfree
!= atomic_read(&imap
->im_numfree
)) {
2972 jfs_error(ipimap
->i_sb
, "numinos or numfree incorrect\n");
2983 * serialization: IWRITE_LOCK held on entry/exit
2985 * note: shadow page with regular inode (rel.2);
2987 static void duplicateIXtree(struct super_block
*sb
, s64 blkno
,
2988 int xlen
, s64
*xaddr
)
2990 struct jfs_superblock
*j_sb
;
2991 struct buffer_head
*bh
;
2995 /* if AIT2 ipmap2 is bad, do not try to update it */
2996 if (JFS_SBI(sb
)->mntflag
& JFS_BAD_SAIT
) /* s_flag */
2998 ip
= diReadSpecial(sb
, FILESYSTEM_I
, 1);
3000 JFS_SBI(sb
)->mntflag
|= JFS_BAD_SAIT
;
3001 if (readSuper(sb
, &bh
))
3003 j_sb
= (struct jfs_superblock
*)bh
->b_data
;
3004 j_sb
->s_flag
|= cpu_to_le32(JFS_BAD_SAIT
);
3006 mark_buffer_dirty(bh
);
3007 sync_dirty_buffer(bh
);
3012 /* start transaction */
3013 tid
= txBegin(sb
, COMMIT_FORCE
);
3014 /* update the inode map addressing structure to point to it */
3015 if (xtInsert(tid
, ip
, 0, blkno
, xlen
, xaddr
, 0)) {
3016 JFS_SBI(sb
)->mntflag
|= JFS_BAD_SAIT
;
3021 /* update the inode map's inode to reflect the extension */
3022 ip
->i_size
+= PSIZE
;
3023 inode_add_bytes(ip
, PSIZE
);
3024 txCommit(tid
, 1, &ip
, COMMIT_FORCE
);
3031 * NAME: copy_from_dinode()
3033 * FUNCTION: Copies inode info from disk inode to in-memory inode
3037 * -ENOMEM - insufficient memory
3039 static int copy_from_dinode(struct dinode
* dip
, struct inode
*ip
)
3041 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
3042 struct jfs_sb_info
*sbi
= JFS_SBI(ip
->i_sb
);
3044 jfs_ip
->fileset
= le32_to_cpu(dip
->di_fileset
);
3045 jfs_ip
->mode2
= le32_to_cpu(dip
->di_mode
);
3046 jfs_set_inode_flags(ip
);
3048 ip
->i_mode
= le32_to_cpu(dip
->di_mode
) & 0xffff;
3049 if (sbi
->umask
!= -1) {
3050 ip
->i_mode
= (ip
->i_mode
& ~0777) | (0777 & ~sbi
->umask
);
3051 /* For directories, add x permission if r is allowed by umask */
3052 if (S_ISDIR(ip
->i_mode
)) {
3053 if (ip
->i_mode
& 0400)
3055 if (ip
->i_mode
& 0040)
3057 if (ip
->i_mode
& 0004)
3061 set_nlink(ip
, le32_to_cpu(dip
->di_nlink
));
3063 jfs_ip
->saved_uid
= make_kuid(&init_user_ns
, le32_to_cpu(dip
->di_uid
));
3064 if (!uid_valid(sbi
->uid
))
3065 ip
->i_uid
= jfs_ip
->saved_uid
;
3067 ip
->i_uid
= sbi
->uid
;
3070 jfs_ip
->saved_gid
= make_kgid(&init_user_ns
, le32_to_cpu(dip
->di_gid
));
3071 if (!gid_valid(sbi
->gid
))
3072 ip
->i_gid
= jfs_ip
->saved_gid
;
3074 ip
->i_gid
= sbi
->gid
;
3077 ip
->i_size
= le64_to_cpu(dip
->di_size
);
3078 ip
->i_atime
.tv_sec
= le32_to_cpu(dip
->di_atime
.tv_sec
);
3079 ip
->i_atime
.tv_nsec
= le32_to_cpu(dip
->di_atime
.tv_nsec
);
3080 ip
->i_mtime
.tv_sec
= le32_to_cpu(dip
->di_mtime
.tv_sec
);
3081 ip
->i_mtime
.tv_nsec
= le32_to_cpu(dip
->di_mtime
.tv_nsec
);
3082 ip
->i_ctime
.tv_sec
= le32_to_cpu(dip
->di_ctime
.tv_sec
);
3083 ip
->i_ctime
.tv_nsec
= le32_to_cpu(dip
->di_ctime
.tv_nsec
);
3084 ip
->i_blocks
= LBLK2PBLK(ip
->i_sb
, le64_to_cpu(dip
->di_nblocks
));
3085 ip
->i_generation
= le32_to_cpu(dip
->di_gen
);
3087 jfs_ip
->ixpxd
= dip
->di_ixpxd
; /* in-memory pxd's are little-endian */
3088 jfs_ip
->acl
= dip
->di_acl
; /* as are dxd's */
3089 jfs_ip
->ea
= dip
->di_ea
;
3090 jfs_ip
->next_index
= le32_to_cpu(dip
->di_next_index
);
3091 jfs_ip
->otime
= le32_to_cpu(dip
->di_otime
.tv_sec
);
3092 jfs_ip
->acltype
= le32_to_cpu(dip
->di_acltype
);
3094 if (S_ISCHR(ip
->i_mode
) || S_ISBLK(ip
->i_mode
)) {
3095 jfs_ip
->dev
= le32_to_cpu(dip
->di_rdev
);
3096 ip
->i_rdev
= new_decode_dev(jfs_ip
->dev
);
3099 if (S_ISDIR(ip
->i_mode
)) {
3100 memcpy(&jfs_ip
->i_dirtable
, &dip
->di_dirtable
, 384);
3101 } else if (S_ISREG(ip
->i_mode
) || S_ISLNK(ip
->i_mode
)) {
3102 memcpy(&jfs_ip
->i_xtroot
, &dip
->di_xtroot
, 288);
3104 memcpy(&jfs_ip
->i_inline_ea
, &dip
->di_inlineea
, 128);
3106 /* Zero the in-memory-only stuff */
3108 jfs_ip
->btindex
= 0;
3109 jfs_ip
->btorder
= 0;
3112 jfs_ip
->atlhead
= 0;
3113 jfs_ip
->atltail
= 0;
3119 * NAME: copy_to_dinode()
3121 * FUNCTION: Copies inode info from in-memory inode to disk inode
3123 static void copy_to_dinode(struct dinode
* dip
, struct inode
*ip
)
3125 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
3126 struct jfs_sb_info
*sbi
= JFS_SBI(ip
->i_sb
);
3128 dip
->di_fileset
= cpu_to_le32(jfs_ip
->fileset
);
3129 dip
->di_inostamp
= cpu_to_le32(sbi
->inostamp
);
3130 dip
->di_number
= cpu_to_le32(ip
->i_ino
);
3131 dip
->di_gen
= cpu_to_le32(ip
->i_generation
);
3132 dip
->di_size
= cpu_to_le64(ip
->i_size
);
3133 dip
->di_nblocks
= cpu_to_le64(PBLK2LBLK(ip
->i_sb
, ip
->i_blocks
));
3134 dip
->di_nlink
= cpu_to_le32(ip
->i_nlink
);
3135 if (!uid_valid(sbi
->uid
))
3136 dip
->di_uid
= cpu_to_le32(i_uid_read(ip
));
3138 dip
->di_uid
=cpu_to_le32(from_kuid(&init_user_ns
,
3139 jfs_ip
->saved_uid
));
3140 if (!gid_valid(sbi
->gid
))
3141 dip
->di_gid
= cpu_to_le32(i_gid_read(ip
));
3143 dip
->di_gid
= cpu_to_le32(from_kgid(&init_user_ns
,
3144 jfs_ip
->saved_gid
));
3146 * mode2 is only needed for storing the higher order bits.
3147 * Trust i_mode for the lower order ones
3149 if (sbi
->umask
== -1)
3150 dip
->di_mode
= cpu_to_le32((jfs_ip
->mode2
& 0xffff0000) |
3152 else /* Leave the original permissions alone */
3153 dip
->di_mode
= cpu_to_le32(jfs_ip
->mode2
);
3155 dip
->di_atime
.tv_sec
= cpu_to_le32(ip
->i_atime
.tv_sec
);
3156 dip
->di_atime
.tv_nsec
= cpu_to_le32(ip
->i_atime
.tv_nsec
);
3157 dip
->di_ctime
.tv_sec
= cpu_to_le32(ip
->i_ctime
.tv_sec
);
3158 dip
->di_ctime
.tv_nsec
= cpu_to_le32(ip
->i_ctime
.tv_nsec
);
3159 dip
->di_mtime
.tv_sec
= cpu_to_le32(ip
->i_mtime
.tv_sec
);
3160 dip
->di_mtime
.tv_nsec
= cpu_to_le32(ip
->i_mtime
.tv_nsec
);
3161 dip
->di_ixpxd
= jfs_ip
->ixpxd
; /* in-memory pxd's are little-endian */
3162 dip
->di_acl
= jfs_ip
->acl
; /* as are dxd's */
3163 dip
->di_ea
= jfs_ip
->ea
;
3164 dip
->di_next_index
= cpu_to_le32(jfs_ip
->next_index
);
3165 dip
->di_otime
.tv_sec
= cpu_to_le32(jfs_ip
->otime
);
3166 dip
->di_otime
.tv_nsec
= 0;
3167 dip
->di_acltype
= cpu_to_le32(jfs_ip
->acltype
);
3168 if (S_ISCHR(ip
->i_mode
) || S_ISBLK(ip
->i_mode
))
3169 dip
->di_rdev
= cpu_to_le32(jfs_ip
->dev
);