xref: /csrg-svn/sys/ufs/lfs/lfs_inode.c (revision 13000)
1*13000Ssam /*	lfs_inode.c	4.36	83/06/11	*/
224Sbill 
324Sbill #include "../h/param.h"
424Sbill #include "../h/systm.h"
524Sbill #include "../h/mount.h"
624Sbill #include "../h/dir.h"
724Sbill #include "../h/user.h"
824Sbill #include "../h/inode.h"
96569Smckusic #include "../h/fs.h"
1024Sbill #include "../h/conf.h"
1124Sbill #include "../h/buf.h"
127651Ssam #ifdef QUOTA
137504Sroot #include "../h/quota.h"
147504Sroot #endif
158106Sroot #include "../h/kernel.h"
1624Sbill 
1724Sbill #define	INOHSZ	63
187334Skre #if	((INOHSZ&(INOHSZ-1)) == 0)
197334Skre #define	INOHASH(dev,ino)	(((dev)+(ino))&(INOHSZ-1))
207334Skre #else
2110852Ssam #define	INOHASH(dev,ino)	(((unsigned)((dev)+(ino)))%INOHSZ)
227334Skre #endif
2324Sbill 
247334Skre union ihead {				/* inode LRU cache, Chris Maltby */
257334Skre 	union  ihead *ih_head[2];
267334Skre 	struct inode *ih_chain[2];
277334Skre } ihead[INOHSZ];
287334Skre 
297334Skre struct inode *ifreeh, **ifreet;
307334Skre 
3124Sbill /*
3224Sbill  * Initialize hash links for inodes
3324Sbill  * and build inode free list.
3424Sbill  */
3524Sbill ihinit()
3624Sbill {
3724Sbill 	register int i;
382737Swnj 	register struct inode *ip = inode;
397334Skre 	register union  ihead *ih = ihead;
4024Sbill 
417334Skre 	for (i = INOHSZ; --i >= 0; ih++) {
427334Skre 		ih->ih_head[0] = ih;
437334Skre 		ih->ih_head[1] = ih;
447334Skre 	}
457334Skre 	ifreeh = ip;
467334Skre 	ifreet = &ip->i_freef;
477334Skre 	ip->i_freeb = &ifreeh;
487334Skre 	ip->i_forw = ip;
497334Skre 	ip->i_back = ip;
507334Skre 	for (i = ninode; --i > 0; ) {
517334Skre 		++ip;
527334Skre 		ip->i_forw = ip;
537334Skre 		ip->i_back = ip;
547334Skre 		*ifreet = ip;
557334Skre 		ip->i_freeb = ifreet;
567334Skre 		ifreet = &ip->i_freef;
577334Skre 	}
587334Skre 	ip->i_freef = NULL;
5924Sbill }
6024Sbill 
617334Skre #ifdef notdef
6224Sbill /*
637334Skre  * Find an inode if it is incore.
647334Skre  * This is the equivalent, for inodes,
657334Skre  * of ``incore'' in bio.c or ``pfind'' in subr.c.
667334Skre  */
677334Skre struct inode *
687334Skre ifind(dev, ino)
697334Skre 	dev_t dev;
707334Skre 	ino_t ino;
717334Skre {
727334Skre 	register struct inode *ip;
737334Skre 	register union  ihead *ih;
747334Skre 
757334Skre 	ih = &ihead[INOHASH(dev, ino)];
767334Skre 	for (ip = ih->ih_chain[0]; ip != (struct inode *)ih; ip = ip->i_forw)
777334Skre 		if (ino==ip->i_number && dev==ip->i_dev)
787334Skre 			return (ip);
797334Skre 	return ((struct inode *)0);
807334Skre }
817334Skre #endif notdef
827334Skre 
837334Skre /*
8424Sbill  * Look up an inode by device,inumber.
8524Sbill  * If it is in core (in the inode structure),
8624Sbill  * honor the locking protocol.
8724Sbill  * If it is not in core, read it in from the
8824Sbill  * specified device.
8924Sbill  * If the inode is mounted on, perform
9024Sbill  * the indicated indirection.
9124Sbill  * In all cases, a pointer to a locked
9224Sbill  * inode structure is returned.
9324Sbill  *
9424Sbill  * panic: no imt -- if the mounted file
9524Sbill  *	system is not in the mount table.
9624Sbill  *	"cannot happen"
9724Sbill  */
9824Sbill struct inode *
996569Smckusic iget(dev, fs, ino)
1004818Swnj 	dev_t dev;
1016569Smckusic 	register struct fs *fs;
1024818Swnj 	ino_t ino;
10324Sbill {
1047335Skre 	register struct inode *ip;
1057335Skre 	register union  ihead *ih;
10624Sbill 	register struct mount *mp;
10724Sbill 	register struct buf *bp;
10824Sbill 	register struct dinode *dp;
1097334Skre 	register struct inode *iq;
11024Sbill 
11124Sbill loop:
1126569Smckusic 	if (getfs(dev) != fs)
1136569Smckusic 		panic("iget: bad fs");
1147334Skre 	ih = &ihead[INOHASH(dev, ino)];
1157334Skre 	for (ip = ih->ih_chain[0]; ip != (struct inode *)ih; ip = ip->i_forw)
1164818Swnj 		if (ino == ip->i_number && dev == ip->i_dev) {
1178452Sroot 			if ((ip->i_flag&ILOCKED) != 0) {
11824Sbill 				ip->i_flag |= IWANT;
11924Sbill 				sleep((caddr_t)ip, PINOD);
12024Sbill 				goto loop;
12124Sbill 			}
1224818Swnj 			if ((ip->i_flag&IMOUNT) != 0) {
1236569Smckusic 				for (mp = &mount[0]; mp < &mount[NMOUNT]; mp++)
1247334Skre 					if(mp->m_inodp == ip) {
1257334Skre 						dev = mp->m_dev;
1267334Skre 						fs = mp->m_bufp->b_un.b_fs;
1277334Skre 						ino = ROOTINO;
1287334Skre 						goto loop;
1297334Skre 					}
13024Sbill 				panic("no imt");
13124Sbill 			}
1327334Skre 			if (ip->i_count == 0) {		/* ino on free list */
1337334Skre 				if (iq = ip->i_freef)
1347334Skre 					iq->i_freeb = ip->i_freeb;
1357334Skre 				else
1367334Skre 					ifreet = ip->i_freeb;
1377334Skre 				*ip->i_freeb = iq;
1387334Skre 				ip->i_freef = NULL;
1397334Skre 				ip->i_freeb = NULL;
1407334Skre 			}
14124Sbill 			ip->i_count++;
1428452Sroot 			ip->i_flag |= ILOCKED;
14324Sbill 			return(ip);
14424Sbill 		}
1457334Skre 
1467334Skre 	if ((ip = ifreeh) == NULL) {
1472933Swnj 		tablefull("inode");
14824Sbill 		u.u_error = ENFILE;
14924Sbill 		return(NULL);
15024Sbill 	}
1517334Skre 	if (iq = ip->i_freef)
1527334Skre 		iq->i_freeb = &ifreeh;
1537334Skre 	ifreeh = iq;
1547334Skre 	ip->i_freef = NULL;
1557334Skre 	ip->i_freeb = NULL;
1567334Skre 	/*
1577334Skre 	 * Now to take inode off the hash chain it was on
1587334Skre 	 * (initially, or after an iflush, it is on a "hash chain"
1597334Skre 	 * consisting entirely of itself, and pointed to by no-one,
1607334Skre 	 * but that doesn't matter), and put it on the chain for
1617334Skre 	 * its new (ino, dev) pair
1627334Skre 	 */
1637335Skre 	remque(ip);
1647335Skre 	insque(ip, ih);
1657651Ssam #ifdef QUOTA
1667492Skre 	dqrele(ip->i_dquot);
1677492Skre #endif
16824Sbill 	ip->i_dev = dev;
1696569Smckusic 	ip->i_fs = fs;
17024Sbill 	ip->i_number = ino;
1718452Sroot 	ip->i_flag = ILOCKED;
17224Sbill 	ip->i_count++;
1736569Smckusic 	ip->i_lastr = 0;
1748618Sroot 	bp = bread(dev, fsbtodb(fs, itod(fs, ino)), (int)fs->fs_bsize);
17524Sbill 	/*
17624Sbill 	 * Check I/O errors
17724Sbill 	 */
1784818Swnj 	if ((bp->b_flags&B_ERROR) != 0) {
17924Sbill 		brelse(bp);
1807334Skre 		/*
1817334Skre 		 * the inode doesn't contain anything useful, so it would
1827334Skre 		 * be misleading to leave it on its hash chain.
1837334Skre 		 * 'iput' will take care of putting it back on the free list.
1847334Skre 		 */
1857335Skre 		remque(ip);
1867334Skre 		ip->i_forw = ip;
1877334Skre 		ip->i_back = ip;
1887334Skre 		/*
1897334Skre 		 * we also loose its inumber, just in case (as iput
1907334Skre 		 * doesn't do that any more) - but as it isn't on its
1917334Skre 		 * hash chain, I doubt if this is really necessary .. kre
1927334Skre 		 * (probably the two methods are interchangable)
1937334Skre 		 */
1947334Skre 		ip->i_number = 0;
1957651Ssam #ifdef QUOTA
1967492Skre 		ip->i_dquot = NODQUOT;
1977492Skre #endif
19824Sbill 		iput(ip);
19924Sbill 		return(NULL);
20024Sbill 	}
20124Sbill 	dp = bp->b_un.b_dino;
2026569Smckusic 	dp += itoo(fs, ino);
2036569Smckusic 	ip->i_ic = dp->di_ic;
20424Sbill 	brelse(bp);
2057651Ssam #ifdef QUOTA
2067492Skre 	if (ip->i_mode == 0)
2077492Skre 		ip->i_dquot = NODQUOT;
2087492Skre 	else
2097492Skre 		ip->i_dquot = inoquota(ip);
2107492Skre #endif
2116569Smckusic 	return (ip);
21224Sbill }
21324Sbill 
21424Sbill /*
21524Sbill  * Decrement reference count of
21624Sbill  * an inode structure.
21724Sbill  * On the last reference,
21824Sbill  * write the inode out and if necessary,
21924Sbill  * truncate and deallocate the file.
22024Sbill  */
22124Sbill iput(ip)
2224818Swnj 	register struct inode *ip;
22324Sbill {
2247118Smckusick 
2258452Sroot 	if ((ip->i_flag & ILOCKED) == 0)
2267118Smckusick 		panic("iput");
2277118Smckusick 	iunlock(ip);
2287118Smckusick 	irele(ip);
2297118Smckusick }
2307118Smckusick 
2317118Smckusick irele(ip)
2327118Smckusick 	register struct inode *ip;
2337118Smckusick {
2346569Smckusic 	int mode;
23524Sbill 
2364818Swnj 	if (ip->i_count == 1) {
2378452Sroot 		ip->i_flag |= ILOCKED;
2384818Swnj 		if (ip->i_nlink <= 0) {
2399165Ssam 			itrunc(ip, (u_long)0);
2406569Smckusic 			mode = ip->i_mode;
24124Sbill 			ip->i_mode = 0;
2427351Skre 			ip->i_rdev = 0;
24324Sbill 			ip->i_flag |= IUPD|ICHG;
2446569Smckusic 			ifree(ip, ip->i_number, mode);
2457651Ssam #ifdef QUOTA
24612645Ssam 			(void) chkiq(ip->i_dev, ip, ip->i_uid, 0);
2477492Skre 			dqrele(ip->i_dquot);
2487492Skre 			ip->i_dquot = NODQUOT;
2497492Skre #endif
25024Sbill 		}
2518671Sroot 		IUPDAT(ip, &time, &time, 0);
2527118Smckusick 		iunlock(ip);
2537334Skre 		ip->i_flag = 0;
2547334Skre 		/*
2557334Skre 		 * Put the inode on the end of the free list.
2567334Skre 		 * Possibly in some cases it would be better to
2577334Skre 		 * put the inode at the head of the free list,
2587334Skre 		 * (eg: where i_mode == 0 || i_number == 0)
2597334Skre 		 * but I will think about that later .. kre
2607334Skre 		 * (i_number is rarely 0 - only after an i/o error in iget,
2617334Skre 		 * where i_mode == 0, the inode will probably be wanted
2627334Skre 		 * again soon for an ialloc, so possibly we should keep it)
2637334Skre 		 */
2647334Skre 		if (ifreeh) {
2657334Skre 			*ifreet = ip;
2667334Skre 			ip->i_freeb = ifreet;
26724Sbill 		} else {
2687334Skre 			ifreeh = ip;
2697334Skre 			ip->i_freeb = &ifreeh;
27024Sbill 		}
2717334Skre 		ip->i_freef = NULL;
2727334Skre 		ifreet = &ip->i_freef;
2737118Smckusick 	}
27424Sbill 	ip->i_count--;
27524Sbill }
27624Sbill 
27724Sbill /*
27824Sbill  * Check accessed and update flags on
27924Sbill  * an inode structure.
28024Sbill  * If any is on, update the inode
28124Sbill  * with the current time.
2821203Sbill  * If waitfor is given, then must insure
2831203Sbill  * i/o order so wait for write to complete.
28424Sbill  */
2851203Sbill iupdat(ip, ta, tm, waitfor)
2864818Swnj 	register struct inode *ip;
2878630Sroot 	struct timeval *ta, *tm;
2884818Swnj 	int waitfor;
28924Sbill {
29024Sbill 	register struct buf *bp;
29124Sbill 	struct dinode *dp;
2926569Smckusic 	register struct fs *fp;
29324Sbill 
2946569Smckusic 	fp = ip->i_fs;
2956569Smckusic 	if ((ip->i_flag & (IUPD|IACC|ICHG)) != 0) {
2966569Smckusic 		if (fp->fs_ronly)
29724Sbill 			return;
2986569Smckusic 		bp = bread(ip->i_dev, fsbtodb(fp, itod(fp, ip->i_number)),
2998618Sroot 			(int)fp->fs_bsize);
30024Sbill 		if (bp->b_flags & B_ERROR) {
30124Sbill 			brelse(bp);
30224Sbill 			return;
30324Sbill 		}
3044818Swnj 		if (ip->i_flag&IACC)
3058630Sroot 			ip->i_atime = ta->tv_sec;
3064818Swnj 		if (ip->i_flag&IUPD)
3078630Sroot 			ip->i_mtime = tm->tv_sec;
3084818Swnj 		if (ip->i_flag&ICHG)
3098106Sroot 			ip->i_ctime = time.tv_sec;
31024Sbill 		ip->i_flag &= ~(IUPD|IACC|ICHG);
3117343Skre 		dp = bp->b_un.b_dino + itoo(fp, ip->i_number);
3127343Skre 		dp->di_ic = ip->i_ic;
3131203Sbill 		if (waitfor)
3141203Sbill 			bwrite(bp);
3151203Sbill 		else
3161203Sbill 			bdwrite(bp);
31724Sbill 	}
31824Sbill }
31924Sbill 
32010736Ssam #define	SINGLE	0	/* index of single indirect block */
32110736Ssam #define	DOUBLE	1	/* index of double indirect block */
32210736Ssam #define	TRIPLE	2	/* index of triple indirect block */
32324Sbill /*
3247702Ssam  * Truncate the inode ip to at most
3257702Ssam  * length size.  Free affected disk
3267702Ssam  * blocks -- the blocks of the file
3277702Ssam  * are removed in reverse order.
32810736Ssam  *
32910736Ssam  * NB: triple indirect blocks are untested.
33024Sbill  */
33110736Ssam itrunc(oip, length)
33210736Ssam 	struct inode *oip;
3339165Ssam 	u_long length;
33424Sbill {
33524Sbill 	register i;
3369165Ssam 	register daddr_t lastblock;
33710736Ssam 	daddr_t bn, lastiblock[NIADDR];
3386569Smckusic 	register struct fs *fs;
33910736Ssam 	register struct inode *ip;
34010736Ssam 	struct inode tip;
3419165Ssam 	long blocksreleased = 0, nblocks;
3429165Ssam 	long indirtrunc();
34312645Ssam 	int level;
3449165Ssam 
345*13000Ssam 	if (oip->i_size <= length) {
346*13000Ssam 		oip->i_flag |= ICHG|IUPD;
347*13000Ssam 		iupdat(oip, &time, &time, 1);
3489165Ssam 		return;
349*13000Ssam 	}
3501203Sbill 	/*
35110736Ssam 	 * Calculate index into inode's block list of
35210736Ssam 	 * last direct and indirect blocks (if any)
35310736Ssam 	 * which we want to keep.  Lastblock is -1 when
35410736Ssam 	 * the file is truncated to 0.
3551203Sbill 	 */
35610736Ssam 	fs = oip->i_fs;
3579165Ssam 	lastblock = lblkno(fs, length + fs->fs_bsize - 1) - 1;
35810736Ssam 	lastiblock[SINGLE] = lastblock - NDADDR;
35910736Ssam 	lastiblock[DOUBLE] = lastiblock[SINGLE] - NINDIR(fs);
36010736Ssam 	lastiblock[TRIPLE] = lastiblock[DOUBLE] - NINDIR(fs) * NINDIR(fs);
36112645Ssam 	nblocks = btodb(fs->fs_bsize);
3626569Smckusic 	/*
36310736Ssam 	 * Update size of file and block pointers
36410736Ssam 	 * on disk before we start freeing blocks.
36510736Ssam 	 * If we crash before free'ing blocks below,
36610736Ssam 	 * the blocks will be returned to the free list.
36710736Ssam 	 * lastiblock values are also normalized to -1
36810736Ssam 	 * for calls to indirtrunc below.
36910736Ssam 	 * (? fsck doesn't check validity of pointers in indirect blocks)
3706569Smckusic 	 */
37110736Ssam 	tip = *oip;
37210736Ssam 	for (level = TRIPLE; level >= SINGLE; level--)
37310736Ssam 		if (lastiblock[level] < 0) {
37410736Ssam 			oip->i_ib[level] = 0;
37510736Ssam 			lastiblock[level] = -1;
3769165Ssam 		}
37710736Ssam 	for (i = NDADDR - 1; i > lastblock; i--)
37810736Ssam 		oip->i_db[i] = 0;
37910736Ssam 	oip->i_size = length;
38010736Ssam 	oip->i_flag |= ICHG|IUPD;
38110736Ssam 	iupdat(oip, &time, &time, 1);
38210736Ssam 	ip = &tip;
38310736Ssam 
3846569Smckusic 	/*
38510736Ssam 	 * Indirect blocks first.
3866569Smckusic 	 */
38710736Ssam 	for (level = TRIPLE; level >= SINGLE; level--) {
38810736Ssam 		bn = ip->i_ib[level];
3899165Ssam 		if (bn != 0) {
39010736Ssam 			blocksreleased +=
39112645Ssam 			    indirtrunc(ip, bn, lastiblock[level], level);
39210736Ssam 			if (lastiblock[level] < 0) {
39310736Ssam 				ip->i_ib[level] = 0;
39410736Ssam 				free(ip, bn, (off_t)fs->fs_bsize);
39510736Ssam 				blocksreleased += nblocks;
39610736Ssam 			}
39710736Ssam 		}
39810736Ssam 		if (lastiblock[level] >= 0)
39910736Ssam 			goto done;
4009165Ssam 	}
40110736Ssam 
4026569Smckusic 	/*
40310736Ssam 	 * All whole direct blocks or frags.
4046569Smckusic 	 */
4059165Ssam 	for (i = NDADDR - 1; i > lastblock; i--) {
4069165Ssam 		register int size;
4079165Ssam 
4086569Smckusic 		bn = ip->i_db[i];
4099165Ssam 		if (bn == 0)
41024Sbill 			continue;
4119165Ssam 		ip->i_db[i] = 0;
4129165Ssam 		size = (off_t)blksize(fs, ip, i);
4139165Ssam 		free(ip, bn, size);
41412645Ssam 		blocksreleased += btodb(size);
41524Sbill 	}
41610736Ssam 	if (lastblock < 0)
41710736Ssam 		goto done;
41810736Ssam 
4191203Sbill 	/*
4209165Ssam 	 * Finally, look for a change in size of the
4219165Ssam 	 * last direct block; release any frags.
4221203Sbill 	 */
42310736Ssam 	bn = ip->i_db[lastblock];
42410736Ssam 	if (bn != 0) {
42510736Ssam 		int oldspace, newspace;
42610736Ssam 
4279165Ssam 		/*
4289165Ssam 		 * Calculate amount of space we're giving
4299165Ssam 		 * back as old block size minus new block size.
4309165Ssam 		 */
43110736Ssam 		oldspace = blksize(fs, ip, lastblock);
4329165Ssam 		ip->i_size = length;
43310736Ssam 		newspace = blksize(fs, ip, lastblock);
43410736Ssam 		if (newspace == 0)
43510736Ssam 			panic("itrunc: newspace");
43610736Ssam 		if (oldspace - newspace > 0) {
4379165Ssam 			/*
4389165Ssam 			 * Block number of space to be free'd is
4399165Ssam 			 * the old block # plus the number of frags
4409165Ssam 			 * required for the storage we're keeping.
4419165Ssam 			 */
44210736Ssam 			bn += numfrags(fs, newspace);
44310736Ssam 			free(ip, bn, oldspace - newspace);
44412645Ssam 			blocksreleased += btodb(oldspace - newspace);
4459165Ssam 		}
4469165Ssam 	}
4479165Ssam done:
44810736Ssam /* BEGIN PARANOIA */
44910736Ssam 	for (level = SINGLE; level <= TRIPLE; level++)
45010736Ssam 		if (ip->i_ib[level] != oip->i_ib[level])
45110736Ssam 			panic("itrunc1");
45210736Ssam 	for (i = 0; i < NDADDR; i++)
45310736Ssam 		if (ip->i_db[i] != oip->i_db[i])
45410736Ssam 			panic("itrunc2");
45510736Ssam /* END PARANOIA */
45612645Ssam 	oip->i_blocks -= blocksreleased;
45712645Ssam 	if (oip->i_blocks < 0)			/* sanity */
45812645Ssam 		oip->i_blocks = 0;
45912645Ssam 	oip->i_flag |= ICHG;
4609165Ssam #ifdef QUOTA
46112645Ssam 	(void) chkdq(oip, -blocksreleased, 0);
4629165Ssam #endif
46324Sbill }
46424Sbill 
4659165Ssam /*
4669165Ssam  * Release blocks associated with the inode ip and
4679165Ssam  * stored in the indirect block bn.  Blocks are free'd
4689165Ssam  * in LIFO order up to (but not including) lastbn.  If
46910736Ssam  * level is greater than SINGLE, the block is an indirect
47010736Ssam  * block and recursive calls to indirtrunc must be used to
47110736Ssam  * cleanse other indirect blocks.
47210736Ssam  *
47310736Ssam  * NB: triple indirect blocks are untested.
4749165Ssam  */
4757492Skre long
47610736Ssam indirtrunc(ip, bn, lastbn, level)
4776569Smckusic 	register struct inode *ip;
4789165Ssam 	daddr_t bn, lastbn;
47910736Ssam 	int level;
48024Sbill {
4819165Ssam 	register int i;
48210736Ssam 	struct buf *bp, *copy;
48324Sbill 	register daddr_t *bap;
48410736Ssam 	register struct fs *fs = ip->i_fs;
4859165Ssam 	daddr_t nb, last;
48610736Ssam 	long factor;
4879165Ssam 	int blocksreleased = 0, nblocks;
48824Sbill 
48910736Ssam 	/*
49010736Ssam 	 * Calculate index in current block of last
49110736Ssam 	 * block to be kept.  -1 indicates the entire
49210736Ssam 	 * block so we need not calculate the index.
49310736Ssam 	 */
49410736Ssam 	factor = 1;
49510736Ssam 	for (i = SINGLE; i < level; i++)
49610736Ssam 		factor *= NINDIR(fs);
4979165Ssam 	last = lastbn;
49810736Ssam 	if (lastbn > 0)
49910736Ssam 		last /= factor;
50012645Ssam 	nblocks = btodb(fs->fs_bsize);
50110736Ssam 	/*
50210736Ssam 	 * Get buffer of block pointers, zero those
50310736Ssam 	 * entries corresponding to blocks to be free'd,
50410736Ssam 	 * and update on disk copy first.
50510736Ssam 	 */
50610736Ssam 	copy = geteblk((int)fs->fs_bsize);
50710736Ssam 	bp = bread(ip->i_dev, fsbtodb(fs, bn), (int)fs->fs_bsize);
50810736Ssam 	if (bp->b_flags&B_ERROR) {
50910736Ssam 		brelse(copy);
51010736Ssam 		brelse(bp);
51110736Ssam 		return (0);
51210736Ssam 	}
51310736Ssam 	bap = bp->b_un.b_daddr;
51410736Ssam 	bcopy((caddr_t)bap, (caddr_t)copy->b_un.b_daddr, (u_int)fs->fs_bsize);
51510736Ssam 	bzero((caddr_t)&bap[last + 1],
51610736Ssam 	  (u_int)(NINDIR(fs) - (last + 1)) * sizeof (daddr_t));
51710736Ssam 	bwrite(bp);
51810736Ssam 	bp = copy, bap = bp->b_un.b_daddr;
51910736Ssam 
52010736Ssam 	/*
52110736Ssam 	 * Recursively free totally unused blocks.
52210736Ssam 	 */
5239165Ssam 	for (i = NINDIR(fs) - 1; i > last; i--) {
52424Sbill 		nb = bap[i];
5259165Ssam 		if (nb == 0)
52624Sbill 			continue;
52710736Ssam 		if (level > SINGLE)
5289165Ssam 			blocksreleased +=
52912645Ssam 			    indirtrunc(ip, nb, (daddr_t)-1, level - 1);
5309165Ssam 		free(ip, nb, (int)fs->fs_bsize);
5319165Ssam 		blocksreleased += nblocks;
53224Sbill 	}
53310736Ssam 
53410736Ssam 	/*
53510736Ssam 	 * Recursively free last partial block.
53610736Ssam 	 */
53710736Ssam 	if (level > SINGLE && lastbn >= 0) {
53810736Ssam 		last = lastbn % factor;
5399165Ssam 		nb = bap[i];
5409165Ssam 		if (nb != 0)
54112645Ssam 			blocksreleased += indirtrunc(ip, nb, last, level - 1);
5429165Ssam 	}
54310736Ssam 	brelse(bp);
5449165Ssam 	return (blocksreleased);
54524Sbill }
54624Sbill 
54724Sbill /*
5487334Skre  * remove any inodes in the inode cache belonging to dev
5497334Skre  *
5507334Skre  * There should not be any active ones, return error if any are found
5517334Skre  * (nb: this is a user error, not a system err)
5527334Skre  *
5537334Skre  * Also, count the references to dev by block devices - this really
5547334Skre  * has nothing to do with the object of the procedure, but as we have
5557334Skre  * to scan the inode table here anyway, we might as well get the
5567334Skre  * extra benefit.
5577334Skre  *
5587334Skre  * this is called from sumount()/sys3.c when dev is being unmounted
5597334Skre  */
5607651Ssam #ifdef QUOTA
5617504Sroot iflush(dev, iq)
5627492Skre 	dev_t dev;
5637504Sroot 	struct inode *iq;
5647492Skre #else
5657334Skre iflush(dev)
5667334Skre 	dev_t dev;
5677492Skre #endif
5687334Skre {
5697335Skre 	register struct inode *ip;
5707334Skre 	register open = 0;
5717334Skre 
5727334Skre 	for (ip = inode; ip < inodeNINODE; ip++) {
5737651Ssam #ifdef QUOTA
5747492Skre 		if (ip != iq && ip->i_dev == dev)
5757492Skre #else
5767334Skre 		if (ip->i_dev == dev)
5777492Skre #endif
5787334Skre 			if (ip->i_count)
5797334Skre 				return(-1);
5807334Skre 			else {
5817335Skre 				remque(ip);
5827334Skre 				ip->i_forw = ip;
5837334Skre 				ip->i_back = ip;
5847334Skre 				/*
5857334Skre 				 * as i_count == 0, the inode was on the free
5867334Skre 				 * list already, just leave it there, it will
5877334Skre 				 * fall off the bottom eventually. We could
5887334Skre 				 * perhaps move it to the head of the free
5897334Skre 				 * list, but as umounts are done so
5907334Skre 				 * infrequently, we would gain very little,
5917334Skre 				 * while making the code bigger.
5927334Skre 				 */
5937651Ssam #ifdef QUOTA
5947492Skre 				dqrele(ip->i_dquot);
5957492Skre 				ip->i_dquot = NODQUOT;
5967492Skre #endif
5977334Skre 			}
5987334Skre 		else if (ip->i_count && (ip->i_mode&IFMT)==IFBLK &&
5997334Skre 		    ip->i_rdev == dev)
6007334Skre 			open++;
6017334Skre 	}
6027334Skre 	return (open);
6037334Skre }
6047334Skre 
6053617Sroot /*
6064818Swnj  * Lock an inode. If its already locked, set the WANT bit and sleep.
6073617Sroot  */
6084818Swnj ilock(ip)
6094818Swnj 	register struct inode *ip;
6103617Sroot {
6113617Sroot 
6128452Sroot 	ILOCK(ip);
6133617Sroot }
6143617Sroot 
6153617Sroot /*
6164818Swnj  * Unlock an inode.  If WANT bit is on, wakeup.
6173617Sroot  */
6187118Smckusick iunlock(ip)
6194818Swnj 	register struct inode *ip;
6203617Sroot {
6213617Sroot 
6228452Sroot 	IUNLOCK(ip);
6233617Sroot }
624