Home | History | Annotate | Line # | Download | only in ffs
ffs_balloc.c revision 1.21
      1  1.21       mrg /*	$NetBSD: ffs_balloc.c,v 1.21 2000/06/28 14:16:40 mrg Exp $	*/
      2   1.2       cgd 
      3   1.1   mycroft /*
      4   1.1   mycroft  * Copyright (c) 1982, 1986, 1989, 1993
      5   1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1   mycroft  *
      7   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
      8   1.1   mycroft  * modification, are permitted provided that the following conditions
      9   1.1   mycroft  * are met:
     10   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     11   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     12   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     15   1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     16   1.1   mycroft  *    must display the following acknowledgement:
     17   1.1   mycroft  *	This product includes software developed by the University of
     18   1.1   mycroft  *	California, Berkeley and its contributors.
     19   1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     20   1.1   mycroft  *    may be used to endorse or promote products derived from this software
     21   1.1   mycroft  *    without specific prior written permission.
     22   1.1   mycroft  *
     23   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1   mycroft  * SUCH DAMAGE.
     34   1.1   mycroft  *
     35   1.8      fvdl  *	@(#)ffs_balloc.c	8.8 (Berkeley) 6/16/95
     36   1.1   mycroft  */
     37   1.7       mrg 
     38  1.11    scottr #if defined(_KERNEL) && !defined(_LKM)
     39  1.10    scottr #include "opt_quota.h"
     40  1.11    scottr #endif
     41   1.1   mycroft 
     42   1.1   mycroft #include <sys/param.h>
     43   1.1   mycroft #include <sys/systm.h>
     44   1.1   mycroft #include <sys/buf.h>
     45   1.1   mycroft #include <sys/proc.h>
     46   1.1   mycroft #include <sys/file.h>
     47  1.15      fvdl #include <sys/mount.h>
     48   1.1   mycroft #include <sys/vnode.h>
     49   1.9    bouyer #include <sys/mount.h>
     50   1.6       mrg 
     51   1.1   mycroft #include <ufs/ufs/quota.h>
     52   1.9    bouyer #include <ufs/ufs/ufsmount.h>
     53   1.1   mycroft #include <ufs/ufs/inode.h>
     54   1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     55   1.9    bouyer #include <ufs/ufs/ufs_bswap.h>
     56   1.1   mycroft 
     57   1.1   mycroft #include <ufs/ffs/fs.h>
     58   1.1   mycroft #include <ufs/ffs/ffs_extern.h>
     59   1.1   mycroft 
     60   1.1   mycroft /*
     61   1.1   mycroft  * Balloc defines the structure of file system storage
     62   1.1   mycroft  * by allocating the physical blocks on a device given
     63   1.1   mycroft  * the inode and the logical block number in a file.
     64   1.1   mycroft  */
     65   1.3  christos int
     66  1.15      fvdl ffs_balloc(v)
     67  1.15      fvdl 	void *v;
     68  1.15      fvdl {
     69  1.15      fvdl 	struct vop_balloc_args /* {
     70  1.15      fvdl 		struct vnode *a_vp;
     71  1.15      fvdl 		off_t a_startpoint;
     72  1.15      fvdl 		int a_size;
     73  1.15      fvdl 		struct ucred *a_cred;
     74  1.15      fvdl 		int a_flags;
     75  1.15      fvdl 		struct buf *a_bpp;
     76  1.15      fvdl 	} */ *ap = v;
     77  1.15      fvdl 	ufs_daddr_t lbn;
     78   1.1   mycroft 	int size;
     79   1.1   mycroft 	struct ucred *cred;
     80   1.1   mycroft 	int flags;
     81  1.15      fvdl 	ufs_daddr_t nb;
     82   1.1   mycroft 	struct buf *bp, *nbp;
     83  1.15      fvdl 	struct vnode *vp = ap->a_vp;
     84  1.15      fvdl 	struct inode *ip = VTOI(vp);
     85  1.15      fvdl 	struct fs *fs = ip->i_fs;
     86   1.1   mycroft 	struct indir indirs[NIADDR + 2];
     87   1.8      fvdl 	ufs_daddr_t newb, *bap, pref;
     88   1.8      fvdl 	int deallocated, osize, nsize, num, i, error;
     89   1.8      fvdl 	ufs_daddr_t *allocib, *blkp, *allocblk, allociblk[NIADDR + 1];
     90  1.17      fvdl 	int unwindidx = -1;
     91  1.15      fvdl #ifdef FFS_EI
     92  1.15      fvdl 	const int needswap = UFS_FSNEEDSWAP(fs);
     93  1.15      fvdl #endif
     94   1.1   mycroft 
     95  1.15      fvdl 	lbn = lblkno(fs, ap->a_startoffset);
     96  1.15      fvdl 	size = blkoff(fs, ap->a_startoffset) + ap->a_size;
     97  1.15      fvdl 	if (size > fs->fs_bsize)
     98  1.15      fvdl 		panic("ffs_balloc: blk too big");
     99  1.15      fvdl 	*ap->a_bpp = NULL;
    100   1.8      fvdl 	if (lbn < 0)
    101   1.1   mycroft 		return (EFBIG);
    102  1.15      fvdl 	cred = ap->a_cred;
    103  1.15      fvdl 	flags = ap->a_flags;
    104   1.1   mycroft 
    105   1.1   mycroft 	/*
    106   1.1   mycroft 	 * If the next write will extend the file into a new block,
    107   1.1   mycroft 	 * and the file is currently composed of a fragment
    108   1.1   mycroft 	 * this fragment has to be extended to be a full block.
    109   1.1   mycroft 	 */
    110   1.4    bouyer 	nb = lblkno(fs, ip->i_ffs_size);
    111   1.8      fvdl 	if (nb < NDADDR && nb < lbn) {
    112   1.1   mycroft 		osize = blksize(fs, ip, nb);
    113   1.1   mycroft 		if (osize < fs->fs_bsize && osize > 0) {
    114   1.1   mycroft 			error = ffs_realloccg(ip, nb,
    115   1.4    bouyer 				ffs_blkpref(ip, nb, (int)nb, &ip->i_ffs_db[0]),
    116   1.1   mycroft 				osize, (int)fs->fs_bsize, cred, &bp);
    117   1.1   mycroft 			if (error)
    118   1.1   mycroft 				return (error);
    119  1.15      fvdl 			if (DOINGSOFTDEP(vp))
    120  1.15      fvdl 				softdep_setup_allocdirect(ip, nb,
    121  1.15      fvdl 				    dbtofsb(fs, bp->b_blkno),
    122  1.15      fvdl 				    ufs_rw32(ip->i_ffs_db[nb], needswap),
    123  1.15      fvdl 				    fs->fs_bsize, osize, bp);
    124   1.4    bouyer 			ip->i_ffs_size = (nb + 1) * fs->fs_bsize;
    125   1.6       mrg 			uvm_vnp_setsize(vp, ip->i_ffs_size);
    126   1.9    bouyer 			ip->i_ffs_db[nb] = ufs_rw32(dbtofsb(fs, bp->b_blkno),
    127  1.15      fvdl 			    needswap);
    128   1.1   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    129   1.1   mycroft 			if (flags & B_SYNC)
    130   1.1   mycroft 				bwrite(bp);
    131   1.1   mycroft 			else
    132   1.1   mycroft 				bawrite(bp);
    133   1.1   mycroft 		}
    134   1.1   mycroft 	}
    135   1.1   mycroft 	/*
    136   1.1   mycroft 	 * The first NDADDR blocks are direct blocks
    137   1.1   mycroft 	 */
    138   1.8      fvdl 	if (lbn < NDADDR) {
    139  1.15      fvdl 		nb = ufs_rw32(ip->i_ffs_db[lbn], needswap);
    140   1.8      fvdl 		if (nb != 0 && ip->i_ffs_size >= (lbn + 1) * fs->fs_bsize) {
    141   1.8      fvdl 			error = bread(vp, lbn, fs->fs_bsize, NOCRED, &bp);
    142   1.1   mycroft 			if (error) {
    143   1.1   mycroft 				brelse(bp);
    144   1.1   mycroft 				return (error);
    145   1.1   mycroft 			}
    146  1.15      fvdl 			*ap->a_bpp = bp;
    147   1.1   mycroft 			return (0);
    148   1.1   mycroft 		}
    149   1.1   mycroft 		if (nb != 0) {
    150   1.1   mycroft 			/*
    151   1.1   mycroft 			 * Consider need to reallocate a fragment.
    152   1.1   mycroft 			 */
    153   1.4    bouyer 			osize = fragroundup(fs, blkoff(fs, ip->i_ffs_size));
    154   1.1   mycroft 			nsize = fragroundup(fs, size);
    155   1.1   mycroft 			if (nsize <= osize) {
    156   1.8      fvdl 				error = bread(vp, lbn, osize, NOCRED, &bp);
    157   1.1   mycroft 				if (error) {
    158   1.1   mycroft 					brelse(bp);
    159   1.1   mycroft 					return (error);
    160   1.1   mycroft 				}
    161   1.1   mycroft 			} else {
    162   1.8      fvdl 				error = ffs_realloccg(ip, lbn,
    163   1.8      fvdl 				    ffs_blkpref(ip, lbn, (int)lbn,
    164   1.8      fvdl 					&ip->i_ffs_db[0]), osize, nsize, cred,
    165   1.8      fvdl 					&bp);
    166   1.1   mycroft 				if (error)
    167   1.1   mycroft 					return (error);
    168  1.15      fvdl 				if (DOINGSOFTDEP(vp))
    169  1.15      fvdl 					softdep_setup_allocdirect(ip, lbn,
    170  1.15      fvdl 					    dbtofsb(fs, bp->b_blkno), nb,
    171  1.15      fvdl 					    nsize, osize, bp);
    172   1.1   mycroft 			}
    173   1.1   mycroft 		} else {
    174   1.8      fvdl 			if (ip->i_ffs_size < (lbn + 1) * fs->fs_bsize)
    175   1.1   mycroft 				nsize = fragroundup(fs, size);
    176   1.1   mycroft 			else
    177   1.1   mycroft 				nsize = fs->fs_bsize;
    178   1.8      fvdl 			error = ffs_alloc(ip, lbn,
    179   1.8      fvdl 			    ffs_blkpref(ip, lbn, (int)lbn, &ip->i_ffs_db[0]),
    180   1.8      fvdl 				nsize, cred, &newb);
    181   1.1   mycroft 			if (error)
    182   1.1   mycroft 				return (error);
    183   1.8      fvdl 			bp = getblk(vp, lbn, nsize, 0, 0);
    184   1.1   mycroft 			bp->b_blkno = fsbtodb(fs, newb);
    185   1.1   mycroft 			if (flags & B_CLRBUF)
    186   1.1   mycroft 				clrbuf(bp);
    187  1.15      fvdl 			if (DOINGSOFTDEP(vp))
    188  1.15      fvdl 				softdep_setup_allocdirect(ip, lbn, newb, 0,
    189  1.15      fvdl 				    nsize, 0, bp);
    190   1.1   mycroft 		}
    191   1.9    bouyer 		ip->i_ffs_db[lbn] = ufs_rw32(dbtofsb(fs, bp->b_blkno),
    192  1.15      fvdl 			needswap);
    193   1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    194  1.15      fvdl 		*ap->a_bpp = bp;
    195   1.1   mycroft 		return (0);
    196   1.1   mycroft 	}
    197   1.1   mycroft 	/*
    198   1.1   mycroft 	 * Determine the number of levels of indirection.
    199   1.1   mycroft 	 */
    200   1.1   mycroft 	pref = 0;
    201   1.8      fvdl 	if ((error = ufs_getlbns(vp, lbn, indirs, &num)) != 0)
    202   1.1   mycroft 		return(error);
    203   1.1   mycroft #ifdef DIAGNOSTIC
    204   1.1   mycroft 	if (num < 1)
    205   1.1   mycroft 		panic ("ffs_balloc: ufs_bmaparray returned indirect block\n");
    206   1.1   mycroft #endif
    207   1.1   mycroft 	/*
    208   1.1   mycroft 	 * Fetch the first indirect block allocating if necessary.
    209   1.1   mycroft 	 */
    210   1.1   mycroft 	--num;
    211  1.15      fvdl 	nb = ufs_rw32(ip->i_ffs_ib[indirs[0].in_off], needswap);
    212   1.8      fvdl 	allocib = NULL;
    213   1.8      fvdl 	allocblk = allociblk;
    214   1.1   mycroft 	if (nb == 0) {
    215   1.8      fvdl 		pref = ffs_blkpref(ip, lbn, 0, (ufs_daddr_t *)0);
    216  1.18   mycroft 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    217  1.18   mycroft 		    &newb);
    218   1.3  christos 		if (error)
    219   1.1   mycroft 			return (error);
    220   1.1   mycroft 		nb = newb;
    221   1.8      fvdl 		*allocblk++ = nb;
    222   1.1   mycroft 		bp = getblk(vp, indirs[1].in_lbn, fs->fs_bsize, 0, 0);
    223   1.8      fvdl 		bp->b_blkno = fsbtodb(fs, nb);
    224   1.1   mycroft 		clrbuf(bp);
    225  1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    226  1.15      fvdl 			softdep_setup_allocdirect(ip, NDADDR + indirs[0].in_off,
    227  1.15      fvdl 			    newb, 0, fs->fs_bsize, 0, bp);
    228  1.15      fvdl 			bdwrite(bp);
    229  1.15      fvdl 		} else {
    230  1.15      fvdl 			/*
    231  1.15      fvdl 			 * Write synchronously so that indirect blocks
    232  1.15      fvdl 			 * never point at garbage.
    233  1.15      fvdl 			 */
    234  1.15      fvdl 			if ((error = bwrite(bp)) != 0)
    235  1.15      fvdl 				goto fail;
    236  1.15      fvdl 		}
    237  1.18   mycroft 		unwindidx = 0;
    238   1.8      fvdl 		allocib = &ip->i_ffs_ib[indirs[0].in_off];
    239  1.15      fvdl 		*allocib = ufs_rw32(nb, needswap);
    240   1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    241   1.1   mycroft 	}
    242   1.1   mycroft 	/*
    243   1.1   mycroft 	 * Fetch through the indirect blocks, allocating as necessary.
    244   1.1   mycroft 	 */
    245   1.1   mycroft 	for (i = 1;;) {
    246   1.1   mycroft 		error = bread(vp,
    247   1.1   mycroft 		    indirs[i].in_lbn, (int)fs->fs_bsize, NOCRED, &bp);
    248   1.1   mycroft 		if (error) {
    249   1.1   mycroft 			brelse(bp);
    250   1.8      fvdl 			goto fail;
    251   1.1   mycroft 		}
    252   1.8      fvdl 		bap = (ufs_daddr_t *)bp->b_data;
    253  1.15      fvdl 		nb = ufs_rw32(bap[indirs[i].in_off], needswap);
    254   1.1   mycroft 		if (i == num)
    255   1.1   mycroft 			break;
    256  1.18   mycroft 		i++;
    257   1.1   mycroft 		if (nb != 0) {
    258   1.1   mycroft 			brelse(bp);
    259   1.1   mycroft 			continue;
    260   1.1   mycroft 		}
    261   1.1   mycroft 		if (pref == 0)
    262   1.8      fvdl 			pref = ffs_blkpref(ip, lbn, 0, (ufs_daddr_t *)0);
    263   1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    264  1.18   mycroft 		    &newb);
    265   1.3  christos 		if (error) {
    266   1.1   mycroft 			brelse(bp);
    267   1.8      fvdl 			goto fail;
    268   1.1   mycroft 		}
    269   1.1   mycroft 		nb = newb;
    270   1.8      fvdl 		*allocblk++ = nb;
    271   1.1   mycroft 		nbp = getblk(vp, indirs[i].in_lbn, fs->fs_bsize, 0, 0);
    272   1.1   mycroft 		nbp->b_blkno = fsbtodb(fs, nb);
    273   1.1   mycroft 		clrbuf(nbp);
    274  1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    275  1.15      fvdl 			softdep_setup_allocindir_meta(nbp, ip, bp,
    276  1.15      fvdl 			    indirs[i - 1].in_off, nb);
    277  1.15      fvdl 			bdwrite(nbp);
    278  1.15      fvdl 		} else {
    279  1.15      fvdl 			/*
    280  1.15      fvdl 			 * Write synchronously so that indirect blocks
    281  1.15      fvdl 			 * never point at garbage.
    282  1.15      fvdl 			 */
    283  1.15      fvdl 			if ((error = bwrite(nbp)) != 0) {
    284  1.15      fvdl 				brelse(bp);
    285  1.15      fvdl 				goto fail;
    286  1.15      fvdl 			}
    287   1.1   mycroft 		}
    288  1.18   mycroft 		if (unwindidx < 0)
    289  1.18   mycroft 			unwindidx = i - 1;
    290  1.15      fvdl 		bap[indirs[i - 1].in_off] = ufs_rw32(nb, needswap);
    291   1.1   mycroft 		/*
    292   1.1   mycroft 		 * If required, write synchronously, otherwise use
    293   1.1   mycroft 		 * delayed write.
    294   1.1   mycroft 		 */
    295   1.1   mycroft 		if (flags & B_SYNC) {
    296   1.1   mycroft 			bwrite(bp);
    297   1.1   mycroft 		} else {
    298   1.1   mycroft 			bdwrite(bp);
    299   1.1   mycroft 		}
    300   1.1   mycroft 	}
    301   1.1   mycroft 	/*
    302   1.1   mycroft 	 * Get the data block, allocating if necessary.
    303   1.1   mycroft 	 */
    304   1.1   mycroft 	if (nb == 0) {
    305  1.19   mycroft 		pref = ffs_blkpref(ip, lbn, indirs[num].in_off, &bap[0]);
    306   1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    307  1.18   mycroft 		    &newb);
    308   1.3  christos 		if (error) {
    309   1.1   mycroft 			brelse(bp);
    310   1.8      fvdl 			goto fail;
    311   1.1   mycroft 		}
    312   1.1   mycroft 		nb = newb;
    313   1.8      fvdl 		*allocblk++ = nb;
    314   1.1   mycroft 		nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    315   1.1   mycroft 		nbp->b_blkno = fsbtodb(fs, nb);
    316   1.1   mycroft 		if (flags & B_CLRBUF)
    317   1.1   mycroft 			clrbuf(nbp);
    318  1.15      fvdl 		if (DOINGSOFTDEP(vp))
    319  1.15      fvdl 			softdep_setup_allocindir_page(ip, lbn, bp,
    320  1.19   mycroft 			    indirs[num].in_off, nb, 0, nbp);
    321  1.19   mycroft 		bap[indirs[num].in_off] = ufs_rw32(nb, needswap);
    322   1.1   mycroft 		/*
    323   1.1   mycroft 		 * If required, write synchronously, otherwise use
    324   1.1   mycroft 		 * delayed write.
    325   1.1   mycroft 		 */
    326   1.1   mycroft 		if (flags & B_SYNC) {
    327   1.1   mycroft 			bwrite(bp);
    328   1.1   mycroft 		} else {
    329   1.1   mycroft 			bdwrite(bp);
    330   1.1   mycroft 		}
    331  1.15      fvdl 		*ap->a_bpp = nbp;
    332   1.1   mycroft 		return (0);
    333   1.1   mycroft 	}
    334   1.1   mycroft 	brelse(bp);
    335   1.1   mycroft 	if (flags & B_CLRBUF) {
    336   1.1   mycroft 		error = bread(vp, lbn, (int)fs->fs_bsize, NOCRED, &nbp);
    337   1.1   mycroft 		if (error) {
    338   1.1   mycroft 			brelse(nbp);
    339   1.8      fvdl 			goto fail;
    340   1.1   mycroft 		}
    341   1.1   mycroft 	} else {
    342   1.1   mycroft 		nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    343   1.1   mycroft 		nbp->b_blkno = fsbtodb(fs, nb);
    344   1.1   mycroft 	}
    345  1.15      fvdl 	*ap->a_bpp = nbp;
    346   1.1   mycroft 	return (0);
    347   1.8      fvdl fail:
    348   1.8      fvdl 	/*
    349   1.8      fvdl 	 * If we have failed part way through block allocation, we
    350   1.8      fvdl 	 * have to deallocate any indirect blocks that we have allocated.
    351  1.16      fvdl 	 * We have to fsync the file before we start to get rid of all
    352  1.16      fvdl 	 * of its dependencies so that we do not leave them dangling.
    353  1.16      fvdl 	 * We have to sync it at the end so that the soft updates code
    354  1.16      fvdl 	 * does not find any untracked changes. Although this is really
    355  1.16      fvdl 	 * slow, running out of disk space is not expected to be a common
    356  1.16      fvdl 	 * occurence. The error return from fsync is ignored as we already
    357  1.16      fvdl 	 * have an error to return to the user.
    358   1.8      fvdl 	 */
    359  1.20   mycroft 	(void) VOP_FSYNC(vp, cred, FSYNC_WAIT, curproc);
    360   1.8      fvdl 	for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) {
    361   1.8      fvdl 		ffs_blkfree(ip, *blkp, fs->fs_bsize);
    362   1.8      fvdl 		deallocated += fs->fs_bsize;
    363   1.8      fvdl 	}
    364  1.18   mycroft 	if (unwindidx >= 0) {
    365  1.18   mycroft 		if (unwindidx == 0) {
    366  1.18   mycroft 			*allocib = 0;
    367  1.17      fvdl 		} else {
    368  1.18   mycroft 			int r;
    369  1.18   mycroft 
    370  1.18   mycroft 			r = bread(vp, indirs[unwindidx].in_lbn,
    371  1.18   mycroft 			    (int)fs->fs_bsize, NOCRED, &bp);
    372  1.18   mycroft 			if (r) {
    373  1.18   mycroft 				panic("Could not unwind indirect block, error %d", r);
    374  1.18   mycroft 				brelse(bp);
    375  1.18   mycroft 			} else {
    376  1.18   mycroft 				bap = (ufs_daddr_t *)bp->b_data;
    377  1.18   mycroft 				bap[indirs[unwindidx].in_off] = 0;
    378  1.18   mycroft 				if (flags & B_SYNC)
    379  1.18   mycroft 					bwrite(bp);
    380  1.18   mycroft 				else
    381  1.18   mycroft 					bdwrite(bp);
    382  1.18   mycroft 			}
    383  1.17      fvdl 		}
    384  1.19   mycroft 		for (i = unwindidx + 1; i <= num; i++) {
    385  1.19   mycroft 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
    386  1.19   mycroft 			    0);
    387  1.19   mycroft 			bp->b_flags |= B_INVAL;
    388  1.19   mycroft 			brelse(bp);
    389  1.19   mycroft 		}
    390  1.17      fvdl 	}
    391   1.8      fvdl 	if (deallocated) {
    392   1.8      fvdl #ifdef QUOTA
    393   1.8      fvdl 		/*
    394   1.8      fvdl 		 * Restore user's disk quota because allocation failed.
    395   1.8      fvdl 		 */
    396   1.8      fvdl 		(void)chkdq(ip, (long)-btodb(deallocated), cred, FORCE);
    397   1.8      fvdl #endif
    398   1.8      fvdl 		ip->i_ffs_blocks -= btodb(deallocated);
    399  1.13   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    400   1.8      fvdl 	}
    401  1.20   mycroft 	(void) VOP_FSYNC(vp, cred, FSYNC_WAIT, curproc);
    402   1.8      fvdl 	return (error);
    403   1.1   mycroft }
    404