lfs_inode.c revision 1.78 1 1.78 yamt /* $NetBSD: lfs_inode.c,v 1.78 2003/07/12 16:17:07 yamt Exp $ */
2 1.2 cgd
3 1.18 perseant /*-
4 1.64 perseant * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
5 1.18 perseant * All rights reserved.
6 1.18 perseant *
7 1.18 perseant * This code is derived from software contributed to The NetBSD Foundation
8 1.18 perseant * by Konrad E. Schroder <perseant (at) hhhh.org>.
9 1.18 perseant *
10 1.18 perseant * Redistribution and use in source and binary forms, with or without
11 1.18 perseant * modification, are permitted provided that the following conditions
12 1.18 perseant * are met:
13 1.18 perseant * 1. Redistributions of source code must retain the above copyright
14 1.18 perseant * notice, this list of conditions and the following disclaimer.
15 1.18 perseant * 2. Redistributions in binary form must reproduce the above copyright
16 1.18 perseant * notice, this list of conditions and the following disclaimer in the
17 1.18 perseant * documentation and/or other materials provided with the distribution.
18 1.18 perseant * 3. All advertising materials mentioning features or use of this software
19 1.18 perseant * must display the following acknowledgement:
20 1.65 perseant * This product includes software developed by the NetBSD
21 1.65 perseant * Foundation, Inc. and its contributors.
22 1.18 perseant * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.18 perseant * contributors may be used to endorse or promote products derived
24 1.18 perseant * from this software without specific prior written permission.
25 1.18 perseant *
26 1.18 perseant * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.18 perseant * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.18 perseant * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.18 perseant * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.18 perseant * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.18 perseant * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.18 perseant * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.18 perseant * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.18 perseant * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.18 perseant * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.18 perseant * POSSIBILITY OF SUCH DAMAGE.
37 1.18 perseant */
38 1.1 mycroft /*
39 1.1 mycroft * Copyright (c) 1986, 1989, 1991, 1993
40 1.1 mycroft * The Regents of the University of California. All rights reserved.
41 1.1 mycroft *
42 1.1 mycroft * Redistribution and use in source and binary forms, with or without
43 1.1 mycroft * modification, are permitted provided that the following conditions
44 1.1 mycroft * are met:
45 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
46 1.1 mycroft * notice, this list of conditions and the following disclaimer.
47 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
49 1.1 mycroft * documentation and/or other materials provided with the distribution.
50 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
51 1.1 mycroft * must display the following acknowledgement:
52 1.1 mycroft * This product includes software developed by the University of
53 1.1 mycroft * California, Berkeley and its contributors.
54 1.1 mycroft * 4. Neither the name of the University nor the names of its contributors
55 1.1 mycroft * may be used to endorse or promote products derived from this software
56 1.1 mycroft * without specific prior written permission.
57 1.1 mycroft *
58 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 mycroft * SUCH DAMAGE.
69 1.1 mycroft *
70 1.12 fvdl * @(#)lfs_inode.c 8.9 (Berkeley) 5/8/95
71 1.1 mycroft */
72 1.55 lukem
73 1.55 lukem #include <sys/cdefs.h>
74 1.78 yamt __KERNEL_RCSID(0, "$NetBSD: lfs_inode.c,v 1.78 2003/07/12 16:17:07 yamt Exp $");
75 1.13 scottr
76 1.51 mrg #if defined(_KERNEL_OPT)
77 1.13 scottr #include "opt_quota.h"
78 1.14 scottr #endif
79 1.1 mycroft
80 1.1 mycroft #include <sys/param.h>
81 1.1 mycroft #include <sys/systm.h>
82 1.1 mycroft #include <sys/mount.h>
83 1.1 mycroft #include <sys/proc.h>
84 1.1 mycroft #include <sys/file.h>
85 1.1 mycroft #include <sys/buf.h>
86 1.1 mycroft #include <sys/vnode.h>
87 1.1 mycroft #include <sys/kernel.h>
88 1.1 mycroft #include <sys/malloc.h>
89 1.38 perseant #include <sys/trace.h>
90 1.38 perseant #include <sys/resourcevar.h>
91 1.1 mycroft
92 1.1 mycroft #include <ufs/ufs/quota.h>
93 1.1 mycroft #include <ufs/ufs/inode.h>
94 1.1 mycroft #include <ufs/ufs/ufsmount.h>
95 1.1 mycroft #include <ufs/ufs/ufs_extern.h>
96 1.1 mycroft
97 1.1 mycroft #include <ufs/lfs/lfs.h>
98 1.1 mycroft #include <ufs/lfs/lfs_extern.h>
99 1.21 perseant
100 1.38 perseant static int lfs_update_seguse(struct lfs *, long, size_t);
101 1.62 fvdl static int lfs_indirtrunc (struct inode *, daddr_t, daddr_t,
102 1.62 fvdl daddr_t, int, long *, long *, long *, size_t *,
103 1.77 fvdl struct proc *);
104 1.38 perseant static int lfs_blkfree (struct lfs *, daddr_t, size_t, long *, size_t *);
105 1.38 perseant static int lfs_vtruncbuf(struct vnode *, daddr_t, int, int);
106 1.38 perseant
107 1.1 mycroft /* Search a block for a specific dinode. */
108 1.72 fvdl struct ufs1_dinode *
109 1.52 perseant lfs_ifind(struct lfs *fs, ino_t ino, struct buf *bp)
110 1.1 mycroft {
111 1.72 fvdl struct ufs1_dinode *dip = (struct ufs1_dinode *)bp->b_data;
112 1.72 fvdl struct ufs1_dinode *ldip, *fin;
113 1.18 perseant
114 1.52 perseant #ifdef LFS_IFILE_FRAG_ADDRESSING
115 1.52 perseant if (fs->lfs_version == 1)
116 1.52 perseant fin = dip + INOPB(fs);
117 1.52 perseant else
118 1.52 perseant fin = dip + INOPF(fs);
119 1.52 perseant #else
120 1.52 perseant fin = dip + INOPB(fs);
121 1.52 perseant #endif
122 1.52 perseant
123 1.52 perseant /*
124 1.59 perseant * Read the inode block backwards, since later versions of the
125 1.59 perseant * inode will supercede earlier ones. Though it is unlikely, it is
126 1.59 perseant * possible that the same inode will appear in the same inode block.
127 1.52 perseant */
128 1.59 perseant for (ldip = fin - 1; ldip >= dip; --ldip)
129 1.1 mycroft if (ldip->di_inumber == ino)
130 1.1 mycroft return (ldip);
131 1.52 perseant
132 1.52 perseant printf("searched %d entries\n", (int)(fin - dip));
133 1.40 perseant printf("offset is 0x%x (seg %d)\n", fs->lfs_offset,
134 1.52 perseant dtosn(fs, fs->lfs_offset));
135 1.62 fvdl printf("block is 0x%llx (seg %lld)\n",
136 1.62 fvdl (unsigned long long)dbtofsb(fs, bp->b_blkno),
137 1.62 fvdl (long long)dtosn(fs, dbtofsb(fs, bp->b_blkno)));
138 1.57 perseant
139 1.57 perseant return NULL;
140 1.1 mycroft }
141 1.1 mycroft
142 1.1 mycroft int
143 1.52 perseant lfs_update(void *v)
144 1.4 christos {
145 1.1 mycroft struct vop_update_args /* {
146 1.18 perseant struct vnode *a_vp;
147 1.18 perseant struct timespec *a_access;
148 1.18 perseant struct timespec *a_modify;
149 1.36 perseant int a_flags;
150 1.18 perseant } */ *ap = v;
151 1.1 mycroft struct inode *ip;
152 1.12 fvdl struct vnode *vp = ap->a_vp;
153 1.6 mycroft struct timespec ts;
154 1.25 perseant struct lfs *fs = VFSTOUFS(vp->v_mount)->um_lfs;
155 1.57 perseant int s;
156 1.18 perseant
157 1.12 fvdl if (vp->v_mount->mnt_flag & MNT_RDONLY)
158 1.1 mycroft return (0);
159 1.12 fvdl ip = VTOI(vp);
160 1.18 perseant
161 1.18 perseant /*
162 1.18 perseant * If we are called from vinvalbuf, and the file's blocks have
163 1.18 perseant * already been scheduled for writing, but the writes have not
164 1.18 perseant * yet completed, lfs_vflush will not be called, and vinvalbuf
165 1.65 perseant * will cause a panic. So, we must wait until any pending write
166 1.36 perseant * for our inode completes, if we are called with UPDATE_WAIT set.
167 1.18 perseant */
168 1.57 perseant s = splbio();
169 1.56 chs while ((ap->a_flags & (UPDATE_WAIT|UPDATE_DIROP)) == UPDATE_WAIT &&
170 1.36 perseant WRITEINPROG(vp)) {
171 1.23 perseant #ifdef DEBUG_LFS
172 1.38 perseant printf("lfs_update: sleeping on inode %d (in-progress)\n",
173 1.38 perseant ip->i_number);
174 1.23 perseant #endif
175 1.18 perseant tsleep(vp, (PRIBIO+1), "lfs_update", 0);
176 1.18 perseant }
177 1.57 perseant splx(s);
178 1.6 mycroft TIMEVAL_TO_TIMESPEC(&time, &ts);
179 1.18 perseant LFS_ITIMES(ip,
180 1.18 perseant ap->a_access ? ap->a_access : &ts,
181 1.18 perseant ap->a_modify ? ap->a_modify : &ts, &ts);
182 1.37 perseant if ((ip->i_flag & (IN_MODIFIED | IN_ACCESSED | IN_CLEANING)) == 0) {
183 1.1 mycroft return (0);
184 1.18 perseant }
185 1.18 perseant
186 1.1 mycroft /* If sync, push back the vnode and any dirty blocks it may have. */
187 1.56 chs if ((ap->a_flags & (UPDATE_WAIT|UPDATE_DIROP)) == UPDATE_WAIT) {
188 1.25 perseant /* Avoid flushing VDIROP. */
189 1.25 perseant ++fs->lfs_diropwait;
190 1.56 chs while (vp->v_flag & VDIROP) {
191 1.25 perseant #ifdef DEBUG_LFS
192 1.38 perseant printf("lfs_update: sleeping on inode %d (dirops)\n",
193 1.38 perseant ip->i_number);
194 1.58 yamt printf("lfs_update: vflags 0x%x, iflags 0x%x\n",
195 1.38 perseant vp->v_flag, ip->i_flag);
196 1.25 perseant #endif
197 1.56 chs if (fs->lfs_dirops == 0)
198 1.38 perseant lfs_flush_fs(fs, SEGM_SYNC);
199 1.25 perseant else
200 1.38 perseant tsleep(&fs->lfs_writer, PRIBIO+1, "lfs_fsync",
201 1.38 perseant 0);
202 1.25 perseant /* XXX KS - by falling out here, are we writing the vn
203 1.25 perseant twice? */
204 1.25 perseant }
205 1.25 perseant --fs->lfs_diropwait;
206 1.25 perseant return lfs_vflush(vp);
207 1.65 perseant }
208 1.25 perseant return 0;
209 1.1 mycroft }
210 1.1 mycroft
211 1.38 perseant #define SINGLE 0 /* index of single indirect block */
212 1.38 perseant #define DOUBLE 1 /* index of double indirect block */
213 1.38 perseant #define TRIPLE 2 /* index of triple indirect block */
214 1.1 mycroft /*
215 1.38 perseant * Truncate the inode oip to at most length size, freeing the
216 1.38 perseant * disk blocks.
217 1.1 mycroft */
218 1.44 perseant /* VOP_BWRITE 1 + NIADDR + VOP_BALLOC == 2 + 2*NIADDR times */
219 1.59 perseant
220 1.1 mycroft int
221 1.52 perseant lfs_truncate(void *v)
222 1.4 christos {
223 1.1 mycroft struct vop_truncate_args /* {
224 1.1 mycroft struct vnode *a_vp;
225 1.1 mycroft off_t a_length;
226 1.1 mycroft int a_flags;
227 1.1 mycroft struct ucred *a_cred;
228 1.77 fvdl struct proc *a_p;
229 1.4 christos } */ *ap = v;
230 1.38 perseant struct vnode *ovp = ap->a_vp;
231 1.64 perseant struct genfs_node *gp = VTOG(ovp);
232 1.62 fvdl daddr_t lastblock;
233 1.38 perseant struct inode *oip;
234 1.62 fvdl daddr_t bn, lbn, lastiblock[NIADDR], indir_lbn[NIADDR];
235 1.63 fvdl /* XXX ondisk32 */
236 1.63 fvdl int32_t newblks[NDADDR + NIADDR];
237 1.1 mycroft off_t length = ap->a_length;
238 1.1 mycroft struct lfs *fs;
239 1.38 perseant struct buf *bp;
240 1.38 perseant int offset, size, level;
241 1.40 perseant long count, rcount, nblocks, blocksreleased = 0, real_released = 0;
242 1.38 perseant int i;
243 1.38 perseant int aflags, error, allerror = 0;
244 1.38 perseant off_t osize;
245 1.70 perseant voff_t eoz;
246 1.38 perseant long lastseg;
247 1.38 perseant size_t bc;
248 1.47 perseant int obufsize, odb;
249 1.71 perseant int usepc;
250 1.38 perseant
251 1.33 perseant if (length < 0)
252 1.33 perseant return (EINVAL);
253 1.38 perseant oip = VTOI(ovp);
254 1.33 perseant
255 1.38 perseant /*
256 1.38 perseant * Just return and not update modification times.
257 1.38 perseant */
258 1.72 fvdl if (oip->i_size == length)
259 1.38 perseant return (0);
260 1.1 mycroft
261 1.38 perseant if (ovp->v_type == VLNK &&
262 1.72 fvdl (oip->i_size < ovp->v_mount->mnt_maxsymlinklen ||
263 1.38 perseant (ovp->v_mount->mnt_maxsymlinklen == 0 &&
264 1.72 fvdl oip->i_ffs1_blocks == 0))) {
265 1.1 mycroft #ifdef DIAGNOSTIC
266 1.1 mycroft if (length != 0)
267 1.1 mycroft panic("lfs_truncate: partial truncate of symlink");
268 1.1 mycroft #endif
269 1.72 fvdl memset((char *)SHORTLINK(oip), 0, (u_int)oip->i_size);
270 1.72 fvdl oip->i_size = oip->i_ffs1_size = 0;
271 1.38 perseant oip->i_flag |= IN_CHANGE | IN_UPDATE;
272 1.38 perseant return (VOP_UPDATE(ovp, NULL, NULL, 0));
273 1.38 perseant }
274 1.72 fvdl if (oip->i_size == length) {
275 1.38 perseant oip->i_flag |= IN_CHANGE | IN_UPDATE;
276 1.38 perseant return (VOP_UPDATE(ovp, NULL, NULL, 0));
277 1.1 mycroft }
278 1.38 perseant #ifdef QUOTA
279 1.38 perseant if ((error = getinoquota(oip)) != 0)
280 1.38 perseant return (error);
281 1.38 perseant #endif
282 1.38 perseant fs = oip->i_lfs;
283 1.18 perseant lfs_imtime(fs);
284 1.72 fvdl osize = oip->i_size;
285 1.67 perseant usepc = (ovp->v_type == VREG && ovp != fs->lfs_ivnode);
286 1.38 perseant
287 1.38 perseant /*
288 1.38 perseant * Lengthen the size of the file. We must ensure that the
289 1.38 perseant * last byte of the file is allocated. Since the smallest
290 1.38 perseant * value of osize is 0, length will be at least 1.
291 1.38 perseant */
292 1.38 perseant if (osize < length) {
293 1.33 perseant if (length > fs->lfs_maxfilesize)
294 1.33 perseant return (EFBIG);
295 1.38 perseant aflags = B_CLRBUF;
296 1.38 perseant if (ap->a_flags & IO_SYNC)
297 1.38 perseant aflags |= B_SYNC;
298 1.67 perseant if (usepc) {
299 1.67 perseant if (lblkno(fs, osize) < NDADDR &&
300 1.67 perseant lblkno(fs, osize) != lblkno(fs, length) &&
301 1.67 perseant blkroundup(fs, osize) != osize) {
302 1.67 perseant error = ufs_balloc_range(ovp, osize,
303 1.67 perseant blkroundup(fs, osize) -
304 1.67 perseant osize, ap->a_cred,
305 1.67 perseant aflags);
306 1.67 perseant if (error) {
307 1.67 perseant return error;
308 1.67 perseant }
309 1.67 perseant if (ap->a_flags & IO_SYNC) {
310 1.67 perseant ovp->v_size = blkroundup(fs, osize);
311 1.67 perseant simple_lock(&ovp->v_interlock);
312 1.67 perseant VOP_PUTPAGES(ovp,
313 1.67 perseant trunc_page(osize & fs->lfs_bmask),
314 1.67 perseant round_page(ovp->v_size),
315 1.67 perseant PGO_CLEANIT | PGO_SYNCIO);
316 1.67 perseant }
317 1.67 perseant }
318 1.67 perseant error = ufs_balloc_range(ovp, length - 1, 1, ap->a_cred,
319 1.67 perseant aflags);
320 1.67 perseant if (error) {
321 1.67 perseant (void) VOP_TRUNCATE(ovp, osize,
322 1.67 perseant ap->a_flags & IO_SYNC,
323 1.77 fvdl ap->a_cred, ap->a_p);
324 1.67 perseant return error;
325 1.67 perseant }
326 1.67 perseant uvm_vnp_setsize(ovp, length);
327 1.67 perseant oip->i_flag |= IN_CHANGE | IN_UPDATE;
328 1.72 fvdl KASSERT(ovp->v_size == oip->i_size);
329 1.67 perseant return (VOP_UPDATE(ovp, NULL, NULL, 0));
330 1.67 perseant } else {
331 1.67 perseant error = lfs_reserve(fs, ovp, NULL,
332 1.67 perseant btofsb(fs, (NIADDR + 2) << fs->lfs_bshift));
333 1.67 perseant if (error)
334 1.67 perseant return (error);
335 1.67 perseant error = VOP_BALLOC(ovp, length - 1, 1, ap->a_cred,
336 1.67 perseant aflags, &bp);
337 1.67 perseant lfs_reserve(fs, ovp, NULL,
338 1.67 perseant -btofsb(fs, (NIADDR + 2) << fs->lfs_bshift));
339 1.67 perseant if (error)
340 1.67 perseant return (error);
341 1.72 fvdl oip->i_ffs1_size = oip->i_size = length;
342 1.67 perseant uvm_vnp_setsize(ovp, length);
343 1.67 perseant (void) VOP_BWRITE(bp);
344 1.67 perseant oip->i_flag |= IN_CHANGE | IN_UPDATE;
345 1.67 perseant return (VOP_UPDATE(ovp, NULL, NULL, 0));
346 1.67 perseant }
347 1.1 mycroft }
348 1.1 mycroft
349 1.61 yamt if ((error = lfs_reserve(fs, ovp, NULL,
350 1.61 yamt btofsb(fs, (2 * NIADDR + 3) << fs->lfs_bshift))) != 0)
351 1.44 perseant return (error);
352 1.64 perseant
353 1.1 mycroft /*
354 1.38 perseant * Shorten the size of the file. If the file is not being
355 1.38 perseant * truncated to a block boundary, the contents of the
356 1.38 perseant * partial block following the end of the file must be
357 1.38 perseant * zero'ed in case it ever becomes accessible again because
358 1.38 perseant * of subsequent file growth. Directories however are not
359 1.38 perseant * zero'ed as they should grow back initialized to empty.
360 1.38 perseant */
361 1.38 perseant offset = blkoff(fs, length);
362 1.38 perseant lastseg = -1;
363 1.38 perseant bc = 0;
364 1.71 perseant
365 1.71 perseant lfs_seglock(fs, SEGM_PROT);
366 1.38 perseant if (offset == 0) {
367 1.72 fvdl oip->i_size = oip->i_ffs1_size = length;
368 1.70 perseant } else if (!usepc) {
369 1.38 perseant lbn = lblkno(fs, length);
370 1.38 perseant aflags = B_CLRBUF;
371 1.38 perseant if (ap->a_flags & IO_SYNC)
372 1.38 perseant aflags |= B_SYNC;
373 1.38 perseant error = VOP_BALLOC(ovp, length - 1, 1, ap->a_cred, aflags, &bp);
374 1.44 perseant if (error) {
375 1.61 yamt lfs_reserve(fs, ovp, NULL,
376 1.61 yamt -btofsb(fs, (2 * NIADDR + 3) << fs->lfs_bshift));
377 1.71 perseant goto errout;
378 1.44 perseant }
379 1.47 perseant obufsize = bp->b_bufsize;
380 1.52 perseant odb = btofsb(fs, bp->b_bcount);
381 1.72 fvdl oip->i_size = oip->i_ffs1_size = length;
382 1.38 perseant size = blksize(fs, oip, lbn);
383 1.38 perseant if (ovp->v_type != VDIR)
384 1.38 perseant memset((char *)bp->b_data + offset, 0,
385 1.38 perseant (u_int)(size - offset));
386 1.38 perseant allocbuf(bp, size);
387 1.57 perseant if ((bp->b_flags & (B_LOCKED | B_CALL)) == B_LOCKED)
388 1.57 perseant locked_queue_bytes -= obufsize - bp->b_bufsize;
389 1.57 perseant if (bp->b_flags & B_DELWRI)
390 1.52 perseant fs->lfs_avail += odb - btofsb(fs, size);
391 1.44 perseant (void) VOP_BWRITE(bp);
392 1.70 perseant } else { /* vp->v_type == VREG && length < osize && offset != 0 */
393 1.70 perseant /*
394 1.70 perseant * When truncating a regular file down to a non-block-aligned
395 1.70 perseant * size, we must zero the part of last block which is past
396 1.70 perseant * the new EOF. We must synchronously flush the zeroed pages
397 1.70 perseant * to disk since the new pages will be invalidated as soon
398 1.70 perseant * as we inform the VM system of the new, smaller size.
399 1.70 perseant * We must do this before acquiring the GLOCK, since fetching
400 1.70 perseant * the pages will acquire the GLOCK internally.
401 1.70 perseant * So there is a window where another thread could see a whole
402 1.70 perseant * zeroed page past EOF, but that's life.
403 1.70 perseant */
404 1.64 perseant aflags = ap->a_flags & IO_SYNC ? B_SYNC : 0;
405 1.65 perseant error = ufs_balloc_range(ovp, length - 1, 1, ap->a_cred,
406 1.70 perseant aflags);
407 1.65 perseant if (error) {
408 1.71 perseant goto errout;
409 1.65 perseant }
410 1.68 perseant eoz = blkroundup(fs, length);
411 1.65 perseant uvm_vnp_zerorange(ovp, length, eoz - length);
412 1.65 perseant simple_lock(&ovp->v_interlock);
413 1.65 perseant error = VOP_PUTPAGES(ovp, trunc_page(length), round_page(eoz),
414 1.69 perseant PGO_CLEANIT | PGO_DEACTIVATE | (aflags ? PGO_SYNCIO : 0));
415 1.65 perseant if (error) {
416 1.71 perseant goto errout;
417 1.65 perseant }
418 1.65 perseant }
419 1.64 perseant
420 1.65 perseant lockmgr(&gp->g_glock, LK_EXCLUSIVE, NULL);
421 1.64 perseant
422 1.72 fvdl oip->i_size = oip->i_ffs1_size = length;
423 1.38 perseant uvm_vnp_setsize(ovp, length);
424 1.38 perseant /*
425 1.38 perseant * Calculate index into inode's block list of
426 1.38 perseant * last direct and indirect blocks (if any)
427 1.38 perseant * which we want to keep. Lastblock is -1 when
428 1.38 perseant * the file is truncated to 0.
429 1.38 perseant */
430 1.38 perseant lastblock = lblkno(fs, length + fs->lfs_bsize - 1) - 1;
431 1.38 perseant lastiblock[SINGLE] = lastblock - NDADDR;
432 1.38 perseant lastiblock[DOUBLE] = lastiblock[SINGLE] - NINDIR(fs);
433 1.38 perseant lastiblock[TRIPLE] = lastiblock[DOUBLE] - NINDIR(fs) * NINDIR(fs);
434 1.52 perseant nblocks = btofsb(fs, fs->lfs_bsize);
435 1.38 perseant /*
436 1.38 perseant * Record changed file and block pointers before we start
437 1.38 perseant * freeing blocks. lastiblock values are also normalized to -1
438 1.38 perseant * for calls to lfs_indirtrunc below.
439 1.38 perseant */
440 1.72 fvdl memcpy((caddr_t)newblks, (caddr_t)&oip->i_ffs1_db[0], sizeof newblks);
441 1.38 perseant for (level = TRIPLE; level >= SINGLE; level--)
442 1.38 perseant if (lastiblock[level] < 0) {
443 1.38 perseant newblks[NDADDR+level] = 0;
444 1.38 perseant lastiblock[level] = -1;
445 1.38 perseant }
446 1.38 perseant for (i = NDADDR - 1; i > lastblock; i--)
447 1.38 perseant newblks[i] = 0;
448 1.38 perseant
449 1.72 fvdl oip->i_size = oip->i_ffs1_size = osize;
450 1.38 perseant error = lfs_vtruncbuf(ovp, lastblock + 1, 0, 0);
451 1.38 perseant if (error && !allerror)
452 1.38 perseant allerror = error;
453 1.1 mycroft
454 1.1 mycroft /*
455 1.38 perseant * Indirect blocks first.
456 1.1 mycroft */
457 1.38 perseant indir_lbn[SINGLE] = -NDADDR;
458 1.38 perseant indir_lbn[DOUBLE] = indir_lbn[SINGLE] - NINDIR(fs) - 1;
459 1.38 perseant indir_lbn[TRIPLE] = indir_lbn[DOUBLE] - NINDIR(fs) * NINDIR(fs) - 1;
460 1.38 perseant for (level = TRIPLE; level >= SINGLE; level--) {
461 1.72 fvdl bn = oip->i_ffs1_ib[level];
462 1.38 perseant if (bn != 0) {
463 1.38 perseant error = lfs_indirtrunc(oip, indir_lbn[level],
464 1.40 perseant bn, lastiblock[level],
465 1.40 perseant level, &count, &rcount,
466 1.77 fvdl &lastseg, &bc, ap->a_p);
467 1.38 perseant if (error)
468 1.38 perseant allerror = error;
469 1.40 perseant real_released += rcount;
470 1.38 perseant blocksreleased += count;
471 1.38 perseant if (lastiblock[level] < 0) {
472 1.72 fvdl if (oip->i_ffs1_ib[level] > 0)
473 1.40 perseant real_released += nblocks;
474 1.40 perseant blocksreleased += nblocks;
475 1.72 fvdl oip->i_ffs1_ib[level] = 0;
476 1.38 perseant lfs_blkfree(fs, bn, fs->lfs_bsize, &lastseg, &bc);
477 1.38 perseant }
478 1.38 perseant }
479 1.38 perseant if (lastiblock[level] >= 0)
480 1.38 perseant goto done;
481 1.38 perseant }
482 1.38 perseant
483 1.38 perseant /*
484 1.38 perseant * All whole direct blocks or frags.
485 1.38 perseant */
486 1.38 perseant for (i = NDADDR - 1; i > lastblock; i--) {
487 1.59 perseant long bsize, obsize;
488 1.12 fvdl
489 1.72 fvdl bn = oip->i_ffs1_db[i];
490 1.38 perseant if (bn == 0)
491 1.38 perseant continue;
492 1.40 perseant bsize = blksize(fs, oip, i);
493 1.72 fvdl if (oip->i_ffs1_db[i] > 0) {
494 1.59 perseant /* Check for fragment size changes */
495 1.59 perseant obsize = oip->i_lfs_fragsize[i];
496 1.59 perseant real_released += btofsb(fs, obsize);
497 1.59 perseant oip->i_lfs_fragsize[i] = 0;
498 1.59 perseant } else
499 1.59 perseant obsize = 0;
500 1.52 perseant blocksreleased += btofsb(fs, bsize);
501 1.72 fvdl oip->i_ffs1_db[i] = 0;
502 1.59 perseant lfs_blkfree(fs, bn, obsize, &lastseg, &bc);
503 1.1 mycroft }
504 1.38 perseant if (lastblock < 0)
505 1.38 perseant goto done;
506 1.38 perseant
507 1.1 mycroft /*
508 1.38 perseant * Finally, look for a change in size of the
509 1.38 perseant * last direct block; release any frags.
510 1.1 mycroft */
511 1.72 fvdl bn = oip->i_ffs1_db[lastblock];
512 1.38 perseant if (bn != 0) {
513 1.73 simonb long oldspace, newspace;
514 1.73 simonb #if 0
515 1.73 simonb long olddspace;
516 1.73 simonb #endif
517 1.1 mycroft
518 1.38 perseant /*
519 1.38 perseant * Calculate amount of space we're giving
520 1.38 perseant * back as old block size minus new block size.
521 1.38 perseant */
522 1.38 perseant oldspace = blksize(fs, oip, lastblock);
523 1.73 simonb #if 0
524 1.59 perseant olddspace = oip->i_lfs_fragsize[lastblock];
525 1.73 simonb #endif
526 1.59 perseant
527 1.72 fvdl oip->i_size = oip->i_ffs1_size = length;
528 1.38 perseant newspace = blksize(fs, oip, lastblock);
529 1.38 perseant if (newspace == 0)
530 1.38 perseant panic("itrunc: newspace");
531 1.38 perseant if (oldspace - newspace > 0) {
532 1.52 perseant blocksreleased += btofsb(fs, oldspace - newspace);
533 1.1 mycroft }
534 1.59 perseant #if 0
535 1.59 perseant if (bn > 0 && olddspace - newspace > 0) {
536 1.59 perseant /* No segment accounting here, just vnode */
537 1.59 perseant real_released += btofsb(fs, olddspace - newspace);
538 1.59 perseant }
539 1.59 perseant #endif
540 1.1 mycroft }
541 1.38 perseant
542 1.38 perseant done:
543 1.38 perseant /* Finish segment accounting corrections */
544 1.38 perseant lfs_update_seguse(fs, lastseg, bc);
545 1.38 perseant #ifdef DIAGNOSTIC
546 1.38 perseant for (level = SINGLE; level <= TRIPLE; level++)
547 1.66 perseant if ((newblks[NDADDR + level] == 0) !=
548 1.72 fvdl (oip->i_ffs1_ib[level]) == 0) {
549 1.38 perseant panic("lfs itrunc1");
550 1.66 perseant }
551 1.38 perseant for (i = 0; i < NDADDR; i++)
552 1.72 fvdl if ((newblks[i] == 0) != (oip->i_ffs1_db[i] == 0)) {
553 1.38 perseant panic("lfs itrunc2");
554 1.66 perseant }
555 1.38 perseant if (length == 0 &&
556 1.38 perseant (!LIST_EMPTY(&ovp->v_cleanblkhd) || !LIST_EMPTY(&ovp->v_dirtyblkhd)))
557 1.38 perseant panic("lfs itrunc3");
558 1.38 perseant #endif /* DIAGNOSTIC */
559 1.38 perseant /*
560 1.38 perseant * Put back the real size.
561 1.38 perseant */
562 1.72 fvdl oip->i_size = oip->i_ffs1_size = length;
563 1.40 perseant oip->i_lfs_effnblks -= blocksreleased;
564 1.72 fvdl oip->i_ffs1_blocks -= real_released;
565 1.38 perseant fs->lfs_bfree += blocksreleased;
566 1.38 perseant #ifdef DIAGNOSTIC
567 1.72 fvdl if (oip->i_size == 0 && oip->i_ffs1_blocks != 0) {
568 1.45 perseant printf("lfs_truncate: truncate to 0 but %d blocks on inode\n",
569 1.72 fvdl oip->i_ffs1_blocks);
570 1.60 provos panic("lfs_truncate: persistent blocks");
571 1.1 mycroft }
572 1.38 perseant #endif
573 1.38 perseant oip->i_flag |= IN_CHANGE;
574 1.38 perseant #ifdef QUOTA
575 1.38 perseant (void) chkdq(oip, -blocksreleased, NOCRED, 0);
576 1.1 mycroft #endif
577 1.61 yamt lfs_reserve(fs, ovp, NULL,
578 1.61 yamt -btofsb(fs, (2 * NIADDR + 3) << fs->lfs_bshift));
579 1.64 perseant lockmgr(&gp->g_glock, LK_RELEASE, NULL);
580 1.71 perseant errout:
581 1.71 perseant lfs_segunlock(fs);
582 1.71 perseant return (allerror ? allerror : error);
583 1.38 perseant }
584 1.28 fvdl
585 1.38 perseant /* Update segment usage information when removing a block. */
586 1.38 perseant static int
587 1.38 perseant lfs_blkfree(struct lfs *fs, daddr_t daddr, size_t bsize, long *lastseg,
588 1.38 perseant size_t *num)
589 1.38 perseant {
590 1.38 perseant long seg;
591 1.38 perseant int error = 0;
592 1.24 perseant
593 1.38 perseant bsize = fragroundup(fs, bsize);
594 1.38 perseant if (daddr > 0) {
595 1.52 perseant if (*lastseg != (seg = dtosn(fs, daddr))) {
596 1.38 perseant error = lfs_update_seguse(fs, *lastseg, *num);
597 1.38 perseant *num = bsize;
598 1.38 perseant *lastseg = seg;
599 1.38 perseant } else
600 1.38 perseant *num += bsize;
601 1.18 perseant }
602 1.38 perseant return error;
603 1.38 perseant }
604 1.38 perseant
605 1.38 perseant /* Finish the accounting updates for a segment. */
606 1.38 perseant static int
607 1.38 perseant lfs_update_seguse(struct lfs *fs, long lastseg, size_t num)
608 1.38 perseant {
609 1.38 perseant SEGUSE *sup;
610 1.38 perseant struct buf *bp;
611 1.38 perseant
612 1.38 perseant if (lastseg < 0 || num == 0)
613 1.38 perseant return 0;
614 1.38 perseant
615 1.38 perseant LFS_SEGENTRY(sup, fs, lastseg, bp);
616 1.38 perseant if (num > sup->su_nbytes) {
617 1.38 perseant printf("lfs_truncate: segment %ld short by %ld\n",
618 1.38 perseant lastseg, (long)num - sup->su_nbytes);
619 1.38 perseant panic("lfs_truncate: negative bytes");
620 1.38 perseant sup->su_nbytes = num;
621 1.12 fvdl }
622 1.38 perseant sup->su_nbytes -= num;
623 1.64 perseant LFS_WRITESEGENTRY(sup, fs, lastseg, bp);
624 1.64 perseant
625 1.64 perseant return 0;
626 1.38 perseant }
627 1.38 perseant
628 1.38 perseant /*
629 1.38 perseant * Release blocks associated with the inode ip and stored in the indirect
630 1.38 perseant * block bn. Blocks are free'd in LIFO order up to (but not including)
631 1.38 perseant * lastbn. If level is greater than SINGLE, the block is an indirect block
632 1.38 perseant * and recursive calls to indirtrunc must be used to cleanse other indirect
633 1.38 perseant * blocks.
634 1.38 perseant *
635 1.38 perseant * NB: triple indirect blocks are untested.
636 1.38 perseant */
637 1.38 perseant static int
638 1.62 fvdl lfs_indirtrunc(struct inode *ip, daddr_t lbn, daddr_t dbn,
639 1.62 fvdl daddr_t lastbn, int level, long *countp,
640 1.77 fvdl long *rcountp, long *lastsegp, size_t *bcp, struct proc *p)
641 1.38 perseant {
642 1.38 perseant int i;
643 1.38 perseant struct buf *bp;
644 1.38 perseant struct lfs *fs = ip->i_lfs;
645 1.62 fvdl int32_t *bap; /* XXX ondisk32 */
646 1.38 perseant struct vnode *vp;
647 1.62 fvdl daddr_t nb, nlbn, last;
648 1.62 fvdl int32_t *copy = NULL; /* XXX ondisk32 */
649 1.40 perseant long blkcount, rblkcount, factor;
650 1.40 perseant int nblocks, blocksreleased = 0, real_released = 0;
651 1.38 perseant int error = 0, allerror = 0;
652 1.38 perseant
653 1.38 perseant /*
654 1.38 perseant * Calculate index in current block of last
655 1.38 perseant * block to be kept. -1 indicates the entire
656 1.38 perseant * block so we need not calculate the index.
657 1.38 perseant */
658 1.38 perseant factor = 1;
659 1.38 perseant for (i = SINGLE; i < level; i++)
660 1.38 perseant factor *= NINDIR(fs);
661 1.38 perseant last = lastbn;
662 1.38 perseant if (lastbn > 0)
663 1.38 perseant last /= factor;
664 1.52 perseant nblocks = btofsb(fs, fs->lfs_bsize);
665 1.38 perseant /*
666 1.38 perseant * Get buffer of block pointers, zero those entries corresponding
667 1.38 perseant * to blocks to be free'd, and update on disk copy first. Since
668 1.38 perseant * double(triple) indirect before single(double) indirect, calls
669 1.38 perseant * to bmap on these blocks will fail. However, we already have
670 1.38 perseant * the on disk address, so we have to set the b_blkno field
671 1.38 perseant * explicitly instead of letting bread do everything for us.
672 1.38 perseant */
673 1.38 perseant vp = ITOV(ip);
674 1.38 perseant bp = getblk(vp, lbn, (int)fs->lfs_bsize, 0, 0);
675 1.38 perseant if (bp->b_flags & (B_DONE | B_DELWRI)) {
676 1.38 perseant /* Braces must be here in case trace evaluates to nothing. */
677 1.38 perseant trace(TR_BREADHIT, pack(vp, fs->lfs_bsize), lbn);
678 1.38 perseant } else {
679 1.38 perseant trace(TR_BREADMISS, pack(vp, fs->lfs_bsize), lbn);
680 1.77 fvdl p->p_stats->p_ru.ru_inblock++; /* pay for read */
681 1.38 perseant bp->b_flags |= B_READ;
682 1.38 perseant if (bp->b_bcount > bp->b_bufsize)
683 1.38 perseant panic("lfs_indirtrunc: bad buffer size");
684 1.52 perseant bp->b_blkno = fsbtodb(fs, dbn);
685 1.38 perseant VOP_STRATEGY(bp);
686 1.38 perseant error = biowait(bp);
687 1.38 perseant }
688 1.38 perseant if (error) {
689 1.38 perseant brelse(bp);
690 1.40 perseant *countp = *rcountp = 0;
691 1.38 perseant return (error);
692 1.38 perseant }
693 1.38 perseant
694 1.62 fvdl bap = (int32_t *)bp->b_data; /* XXX ondisk32 */
695 1.38 perseant if (lastbn >= 0) {
696 1.62 fvdl MALLOC(copy, int32_t *, fs->lfs_bsize, M_TEMP, M_WAITOK);
697 1.38 perseant memcpy((caddr_t)copy, (caddr_t)bap, (u_int)fs->lfs_bsize);
698 1.38 perseant memset((caddr_t)&bap[last + 1], 0,
699 1.62 fvdl /* XXX ondisk32 */
700 1.62 fvdl (u_int)(NINDIR(fs) - (last + 1)) * sizeof (int32_t));
701 1.38 perseant error = VOP_BWRITE(bp);
702 1.38 perseant if (error)
703 1.38 perseant allerror = error;
704 1.38 perseant bap = copy;
705 1.35 perseant }
706 1.35 perseant
707 1.38 perseant /*
708 1.38 perseant * Recursively free totally unused blocks.
709 1.38 perseant */
710 1.38 perseant for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
711 1.38 perseant i--, nlbn += factor) {
712 1.38 perseant nb = bap[i];
713 1.38 perseant if (nb == 0)
714 1.38 perseant continue;
715 1.38 perseant if (level > SINGLE) {
716 1.38 perseant error = lfs_indirtrunc(ip, nlbn, nb,
717 1.62 fvdl (daddr_t)-1, level - 1,
718 1.40 perseant &blkcount, &rblkcount,
719 1.77 fvdl lastsegp, bcp, p);
720 1.38 perseant if (error)
721 1.38 perseant allerror = error;
722 1.38 perseant blocksreleased += blkcount;
723 1.40 perseant real_released += rblkcount;
724 1.38 perseant }
725 1.38 perseant lfs_blkfree(fs, nb, fs->lfs_bsize, lastsegp, bcp);
726 1.40 perseant if (bap[i] > 0)
727 1.40 perseant real_released += nblocks;
728 1.38 perseant blocksreleased += nblocks;
729 1.35 perseant }
730 1.35 perseant
731 1.38 perseant /*
732 1.38 perseant * Recursively free last partial block.
733 1.38 perseant */
734 1.38 perseant if (level > SINGLE && lastbn >= 0) {
735 1.38 perseant last = lastbn % factor;
736 1.38 perseant nb = bap[i];
737 1.38 perseant if (nb != 0) {
738 1.38 perseant error = lfs_indirtrunc(ip, nlbn, nb,
739 1.38 perseant last, level - 1, &blkcount,
740 1.77 fvdl &rblkcount, lastsegp, bcp, p);
741 1.38 perseant if (error)
742 1.38 perseant allerror = error;
743 1.40 perseant real_released += rblkcount;
744 1.38 perseant blocksreleased += blkcount;
745 1.38 perseant }
746 1.38 perseant }
747 1.35 perseant
748 1.38 perseant if (copy != NULL) {
749 1.38 perseant FREE(copy, M_TEMP);
750 1.38 perseant } else {
751 1.47 perseant if (bp->b_flags & B_DELWRI) {
752 1.47 perseant LFS_UNLOCK_BUF(bp);
753 1.52 perseant fs->lfs_avail += btofsb(fs, bp->b_bcount);
754 1.47 perseant wakeup(&fs->lfs_avail);
755 1.47 perseant }
756 1.38 perseant bp->b_flags |= B_INVAL;
757 1.38 perseant brelse(bp);
758 1.38 perseant }
759 1.18 perseant
760 1.38 perseant *countp = blocksreleased;
761 1.40 perseant *rcountp = real_released;
762 1.38 perseant return (allerror);
763 1.21 perseant }
764 1.21 perseant
765 1.21 perseant /*
766 1.38 perseant * Destroy any in core blocks past the truncation length.
767 1.38 perseant * Inlined from vtruncbuf, so that lfs_avail could be updated.
768 1.71 perseant * We take the seglock to prevent cleaning from occurring while we are
769 1.64 perseant * invalidating blocks.
770 1.21 perseant */
771 1.38 perseant static int
772 1.52 perseant lfs_vtruncbuf(struct vnode *vp, daddr_t lbn, int slpflag, int slptimeo)
773 1.21 perseant {
774 1.38 perseant struct buf *bp, *nbp;
775 1.38 perseant int s, error;
776 1.38 perseant struct lfs *fs;
777 1.64 perseant voff_t off;
778 1.64 perseant
779 1.64 perseant off = round_page((voff_t)lbn << vp->v_mount->mnt_fs_bshift);
780 1.64 perseant simple_lock(&vp->v_interlock);
781 1.64 perseant error = VOP_PUTPAGES(vp, off, 0, PGO_FREE | PGO_SYNCIO);
782 1.64 perseant if (error) {
783 1.64 perseant return error;
784 1.64 perseant }
785 1.38 perseant
786 1.38 perseant fs = VTOI(vp)->i_lfs;
787 1.38 perseant s = splbio();
788 1.21 perseant
789 1.38 perseant restart:
790 1.38 perseant for (bp = LIST_FIRST(&vp->v_cleanblkhd); bp; bp = nbp) {
791 1.38 perseant nbp = LIST_NEXT(bp, b_vnbufs);
792 1.38 perseant if (bp->b_lblkno < lbn)
793 1.38 perseant continue;
794 1.74 perseant simple_lock(&bp->b_interlock);
795 1.38 perseant if (bp->b_flags & B_BUSY) {
796 1.38 perseant bp->b_flags |= B_WANTED;
797 1.75 yamt error = ltsleep(bp, slpflag | (PRIBIO + 1) | PNORELOCK,
798 1.74 perseant "lfs_vtruncbuf", slptimeo, &bp->b_interlock);
799 1.38 perseant if (error) {
800 1.22 perseant splx(s);
801 1.38 perseant return (error);
802 1.22 perseant }
803 1.38 perseant goto restart;
804 1.38 perseant }
805 1.38 perseant bp->b_flags |= B_BUSY | B_INVAL | B_VFLUSH;
806 1.43 perseant if (bp->b_flags & B_DELWRI) {
807 1.43 perseant bp->b_flags &= ~B_DELWRI;
808 1.52 perseant fs->lfs_avail += btofsb(fs, bp->b_bcount);
809 1.47 perseant wakeup(&fs->lfs_avail);
810 1.43 perseant }
811 1.46 perseant LFS_UNLOCK_BUF(bp);
812 1.74 perseant simple_unlock(&bp->b_interlock);
813 1.38 perseant brelse(bp);
814 1.38 perseant }
815 1.38 perseant
816 1.38 perseant for (bp = LIST_FIRST(&vp->v_dirtyblkhd); bp; bp = nbp) {
817 1.38 perseant nbp = LIST_NEXT(bp, b_vnbufs);
818 1.38 perseant if (bp->b_lblkno < lbn)
819 1.38 perseant continue;
820 1.74 perseant simple_lock(&bp->b_interlock);
821 1.38 perseant if (bp->b_flags & B_BUSY) {
822 1.38 perseant bp->b_flags |= B_WANTED;
823 1.75 yamt error = ltsleep(bp, slpflag | (PRIBIO + 1) | PNORELOCK,
824 1.74 perseant "lfs_vtruncbuf", slptimeo, &bp->b_interlock);
825 1.38 perseant if (error) {
826 1.35 perseant splx(s);
827 1.38 perseant return (error);
828 1.21 perseant }
829 1.38 perseant goto restart;
830 1.38 perseant }
831 1.38 perseant bp->b_flags |= B_BUSY | B_INVAL | B_VFLUSH;
832 1.43 perseant if (bp->b_flags & B_DELWRI) {
833 1.43 perseant bp->b_flags &= ~B_DELWRI;
834 1.52 perseant fs->lfs_avail += btofsb(fs, bp->b_bcount);
835 1.47 perseant wakeup(&fs->lfs_avail);
836 1.43 perseant }
837 1.46 perseant LFS_UNLOCK_BUF(bp);
838 1.74 perseant simple_unlock(&bp->b_interlock);
839 1.38 perseant brelse(bp);
840 1.21 perseant }
841 1.38 perseant
842 1.38 perseant splx(s);
843 1.38 perseant
844 1.21 perseant return (0);
845 1.1 mycroft }
846 1.38 perseant
847