2005-01-07 02:29:27 +00:00
|
|
|
/*-
|
1994-05-24 10:09:53 +00:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)ffs_subr.c 8.5 (Berkeley) 3/21/95
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-11 06:34:30 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
|
1999-12-29 05:07:58 +00:00
|
|
|
#ifndef _KERNEL
|
1997-02-10 02:22:35 +00:00
|
|
|
#include <ufs/ufs/dinode.h>
|
2002-06-21 06:18:05 +00:00
|
|
|
#include <ufs/ffs/fs.h>
|
1997-02-10 02:22:35 +00:00
|
|
|
#else
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/systm.h>
|
1997-12-05 19:55:52 +00:00
|
|
|
#include <sys/lock.h>
|
2002-06-21 06:18:05 +00:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mount.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/vnode.h>
|
2000-05-05 09:59:14 +00:00
|
|
|
#include <sys/bio.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/buf.h>
|
1998-03-28 10:33:27 +00:00
|
|
|
#include <sys/ucred.h>
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <ufs/ufs/quota.h>
|
|
|
|
#include <ufs/ufs/inode.h>
|
2002-06-21 06:18:05 +00:00
|
|
|
#include <ufs/ufs/extattr.h>
|
|
|
|
#include <ufs/ufs/ufsmount.h>
|
|
|
|
#include <ufs/ufs/ufs_extern.h>
|
1997-02-10 02:22:35 +00:00
|
|
|
#include <ufs/ffs/ffs_extern.h>
|
2002-06-21 06:18:05 +00:00
|
|
|
#include <ufs/ffs/fs.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2004-07-10 20:45:47 +00:00
|
|
|
#ifdef KDB
|
2002-03-19 22:40:48 +00:00
|
|
|
void ffs_checkoverlap(struct buf *, struct inode *);
|
1997-11-22 08:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Return buffer with the contents of block "offset" from the beginning of
|
|
|
|
* directory "ip". If "res" is non-zero, fill it in with a pointer to the
|
|
|
|
* remaining space in the directory.
|
|
|
|
*/
|
|
|
|
int
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
ffs_blkatoff(vp, offset, res, bpp)
|
|
|
|
struct vnode *vp;
|
|
|
|
off_t offset;
|
|
|
|
char **res;
|
|
|
|
struct buf **bpp;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
struct inode *ip;
|
2002-05-13 09:22:31 +00:00
|
|
|
struct fs *fs;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct buf *bp;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs_lbn_t lbn;
|
1994-05-24 10:09:53 +00:00
|
|
|
int bsize, error;
|
|
|
|
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
ip = VTOI(vp);
|
1994-05-24 10:09:53 +00:00
|
|
|
fs = ip->i_fs;
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
lbn = lblkno(fs, offset);
|
1994-05-24 10:09:53 +00:00
|
|
|
bsize = blksize(fs, ip, lbn);
|
|
|
|
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
*bpp = NULL;
|
|
|
|
error = bread(vp, lbn, bsize, NOCRED, &bp);
|
1994-10-10 01:04:55 +00:00
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
brelse(bp);
|
|
|
|
return (error);
|
|
|
|
}
|
VFS mega cleanup commit (x/N)
1. Add new file "sys/kern/vfs_default.c" where default actions for
VOPs go. Implement proper defaults for ABORTOP, BWRITE, LEASE,
POLL, REVOKE and STRATEGY. Various stuff spread over the entire
tree belongs here.
2. Change VOP_BLKATOFF to a normal function in cd9660.
3. Kill VOP_BLKATOFF, VOP_TRUNCATE, VOP_VFREE, VOP_VALLOC. These
are private interface functions between UFS and the underlying
storage manager layer (FFS/LFS/MFS/EXT2FS). The functions now
live in struct ufsmount instead.
4. Remove a kludge of VOP_ functions in all filesystems, that did
nothing but obscure the simplicity and break the expandability.
If a filesystem doesn't implement VOP_FOO, it shouldn't have an
entry for it in its vnops table. The system will try to DTRT
if it is not implemented. There are still some cruft left, but
the bulk of it is done.
5. Fix another VCALL in vfs_cache.c (thanks Bruce!)
1997-10-16 10:50:27 +00:00
|
|
|
if (res)
|
|
|
|
*res = (char *)bp->b_data + blkoff(fs, offset);
|
|
|
|
*bpp = bp;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2002-06-21 06:18:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Load up the contents of an inode and copy the appropriate pieces
|
|
|
|
* to the incore copy.
|
|
|
|
*/
|
|
|
|
void
|
2002-12-27 10:23:03 +00:00
|
|
|
ffs_load_inode(bp, ip, fs, ino)
|
2002-06-21 06:18:05 +00:00
|
|
|
struct buf *bp;
|
|
|
|
struct inode *ip;
|
|
|
|
struct fs *fs;
|
|
|
|
ino_t ino;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ip->i_ump->um_fstype == UFS1) {
|
|
|
|
*ip->i_din1 =
|
|
|
|
*((struct ufs1_dinode *)bp->b_data + ino_to_fsbo(fs, ino));
|
|
|
|
ip->i_mode = ip->i_din1->di_mode;
|
|
|
|
ip->i_nlink = ip->i_din1->di_nlink;
|
|
|
|
ip->i_size = ip->i_din1->di_size;
|
|
|
|
ip->i_flags = ip->i_din1->di_flags;
|
|
|
|
ip->i_gen = ip->i_din1->di_gen;
|
|
|
|
ip->i_uid = ip->i_din1->di_uid;
|
|
|
|
ip->i_gid = ip->i_din1->di_gid;
|
|
|
|
} else {
|
|
|
|
*ip->i_din2 =
|
|
|
|
*((struct ufs2_dinode *)bp->b_data + ino_to_fsbo(fs, ino));
|
|
|
|
ip->i_mode = ip->i_din2->di_mode;
|
|
|
|
ip->i_nlink = ip->i_din2->di_nlink;
|
|
|
|
ip->i_size = ip->i_din2->di_size;
|
|
|
|
ip->i_flags = ip->i_din2->di_flags;
|
|
|
|
ip->i_gen = ip->i_din2->di_gen;
|
|
|
|
ip->i_uid = ip->i_din2->di_uid;
|
|
|
|
ip->i_gid = ip->i_din2->di_gid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* KERNEL */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
1995-05-30 08:16:23 +00:00
|
|
|
* Update the frsum fields to reflect addition or deletion
|
1994-05-24 10:09:53 +00:00
|
|
|
* of some frags.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ffs_fragacct(fs, fragmap, fraglist, cnt)
|
|
|
|
struct fs *fs;
|
|
|
|
int fragmap;
|
1997-02-10 02:22:35 +00:00
|
|
|
int32_t fraglist[];
|
1994-05-24 10:09:53 +00:00
|
|
|
int cnt;
|
|
|
|
{
|
|
|
|
int inblk;
|
2002-05-13 09:22:31 +00:00
|
|
|
int field, subfield;
|
|
|
|
int siz, pos;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
inblk = (int)(fragtbl[fs->fs_frag][fragmap]) << 1;
|
|
|
|
fragmap <<= 1;
|
|
|
|
for (siz = 1; siz < fs->fs_frag; siz++) {
|
|
|
|
if ((inblk & (1 << (siz + (fs->fs_frag % NBBY)))) == 0)
|
|
|
|
continue;
|
|
|
|
field = around[siz];
|
|
|
|
subfield = inside[siz];
|
|
|
|
for (pos = siz; pos <= fs->fs_frag; pos++) {
|
|
|
|
if ((fragmap & field) == subfield) {
|
|
|
|
fraglist[siz] += cnt;
|
|
|
|
pos += siz;
|
|
|
|
field <<= siz;
|
|
|
|
subfield <<= siz;
|
|
|
|
}
|
|
|
|
field <<= 1;
|
|
|
|
subfield <<= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-10 20:45:47 +00:00
|
|
|
#ifdef KDB
|
1999-01-12 11:42:41 +00:00
|
|
|
void
|
1994-05-24 10:09:53 +00:00
|
|
|
ffs_checkoverlap(bp, ip)
|
|
|
|
struct buf *bp;
|
|
|
|
struct inode *ip;
|
|
|
|
{
|
2002-05-13 09:22:31 +00:00
|
|
|
struct buf *ebp, *ep;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs2_daddr_t start, last;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *vp;
|
|
|
|
|
|
|
|
ebp = &buf[nbuf];
|
|
|
|
start = bp->b_blkno;
|
|
|
|
last = start + btodb(bp->b_bcount) - 1;
|
|
|
|
for (ep = buf; ep < ebp; ep++) {
|
|
|
|
if (ep == bp || (ep->b_flags & B_INVAL) ||
|
|
|
|
ep->b_vp == NULLVP)
|
|
|
|
continue;
|
2001-05-01 09:12:31 +00:00
|
|
|
vp = ip->i_devvp;
|
1994-05-24 10:09:53 +00:00
|
|
|
/* look for overlap */
|
|
|
|
if (ep->b_bcount == 0 || ep->b_blkno > last ||
|
|
|
|
ep->b_blkno + btodb(ep->b_bcount) <= start)
|
|
|
|
continue;
|
|
|
|
vprint("Disk overlap", vp);
|
2002-06-23 18:17:27 +00:00
|
|
|
printf("\tstart %jd, end %jd overlap start %jd, end %jd\n",
|
2002-06-21 06:18:05 +00:00
|
|
|
(intmax_t)start, (intmax_t)last, (intmax_t)ep->b_blkno,
|
|
|
|
(intmax_t)(ep->b_blkno + btodb(ep->b_bcount) - 1));
|
1997-03-09 06:00:44 +00:00
|
|
|
panic("ffs_checkoverlap: Disk buffer overlap");
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
2004-07-10 20:45:47 +00:00
|
|
|
#endif /* KDB */
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* block operations
|
|
|
|
*
|
|
|
|
* check if a block is available
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ffs_isblock(fs, cp, h)
|
|
|
|
struct fs *fs;
|
|
|
|
unsigned char *cp;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs1_daddr_t h;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
unsigned char mask;
|
|
|
|
|
|
|
|
switch ((int)fs->fs_frag) {
|
|
|
|
case 8:
|
|
|
|
return (cp[h] == 0xff);
|
|
|
|
case 4:
|
|
|
|
mask = 0x0f << ((h & 0x1) << 2);
|
|
|
|
return ((cp[h >> 1] & mask) == mask);
|
|
|
|
case 2:
|
|
|
|
mask = 0x03 << ((h & 0x3) << 1);
|
|
|
|
return ((cp[h >> 2] & mask) == mask);
|
|
|
|
case 1:
|
|
|
|
mask = 0x01 << (h & 0x7);
|
|
|
|
return ((cp[h >> 3] & mask) == mask);
|
|
|
|
default:
|
2010-04-24 07:05:35 +00:00
|
|
|
#ifdef _KERNEL
|
1994-05-24 10:09:53 +00:00
|
|
|
panic("ffs_isblock");
|
2010-04-24 07:05:35 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check if a block is free
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ffs_isfreeblock(fs, cp, h)
|
|
|
|
struct fs *fs;
|
|
|
|
u_char *cp;
|
|
|
|
ufs1_daddr_t h;
|
|
|
|
{
|
|
|
|
|
|
|
|
switch ((int)fs->fs_frag) {
|
|
|
|
case 8:
|
|
|
|
return (cp[h] == 0);
|
|
|
|
case 4:
|
|
|
|
return ((cp[h >> 1] & (0x0f << ((h & 0x1) << 2))) == 0);
|
|
|
|
case 2:
|
|
|
|
return ((cp[h >> 2] & (0x03 << ((h & 0x3) << 1))) == 0);
|
|
|
|
case 1:
|
|
|
|
return ((cp[h >> 3] & (0x01 << (h & 0x7))) == 0);
|
|
|
|
default:
|
|
|
|
#ifdef _KERNEL
|
|
|
|
panic("ffs_isfreeblock");
|
|
|
|
#endif
|
|
|
|
break;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2001-03-07 07:09:55 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* take a block out of the map
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ffs_clrblock(fs, cp, h)
|
|
|
|
struct fs *fs;
|
|
|
|
u_char *cp;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs1_daddr_t h;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
switch ((int)fs->fs_frag) {
|
|
|
|
case 8:
|
|
|
|
cp[h] = 0;
|
|
|
|
return;
|
|
|
|
case 4:
|
|
|
|
cp[h >> 1] &= ~(0x0f << ((h & 0x1) << 2));
|
|
|
|
return;
|
|
|
|
case 2:
|
|
|
|
cp[h >> 2] &= ~(0x03 << ((h & 0x3) << 1));
|
|
|
|
return;
|
|
|
|
case 1:
|
|
|
|
cp[h >> 3] &= ~(0x01 << (h & 0x7));
|
|
|
|
return;
|
|
|
|
default:
|
2010-04-24 07:05:35 +00:00
|
|
|
#ifdef _KERNEL
|
1994-05-24 10:09:53 +00:00
|
|
|
panic("ffs_clrblock");
|
2010-04-24 07:05:35 +00:00
|
|
|
#endif
|
|
|
|
break;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* put a block into the map
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ffs_setblock(fs, cp, h)
|
|
|
|
struct fs *fs;
|
|
|
|
unsigned char *cp;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs1_daddr_t h;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
switch ((int)fs->fs_frag) {
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
cp[h] = 0xff;
|
|
|
|
return;
|
|
|
|
case 4:
|
|
|
|
cp[h >> 1] |= (0x0f << ((h & 0x1) << 2));
|
|
|
|
return;
|
|
|
|
case 2:
|
|
|
|
cp[h >> 2] |= (0x03 << ((h & 0x3) << 1));
|
|
|
|
return;
|
|
|
|
case 1:
|
|
|
|
cp[h >> 3] |= (0x01 << (h & 0x7));
|
|
|
|
return;
|
|
|
|
default:
|
2010-04-24 07:05:35 +00:00
|
|
|
#ifdef _KERNEL
|
1994-05-24 10:09:53 +00:00
|
|
|
panic("ffs_setblock");
|
2010-04-24 07:05:35 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the cluster map because of an allocation or free.
|
|
|
|
*
|
|
|
|
* Cnt == 1 means free; cnt == -1 means allocating.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ffs_clusteracct(fs, cgp, blkno, cnt)
|
|
|
|
struct fs *fs;
|
|
|
|
struct cg *cgp;
|
|
|
|
ufs1_daddr_t blkno;
|
|
|
|
int cnt;
|
|
|
|
{
|
|
|
|
int32_t *sump;
|
|
|
|
int32_t *lp;
|
|
|
|
u_char *freemapp, *mapp;
|
|
|
|
int i, start, end, forw, back, map, bit;
|
|
|
|
|
|
|
|
if (fs->fs_contigsumsize <= 0)
|
|
|
|
return;
|
|
|
|
freemapp = cg_clustersfree(cgp);
|
|
|
|
sump = cg_clustersum(cgp);
|
|
|
|
/*
|
|
|
|
* Allocate or clear the actual block.
|
|
|
|
*/
|
|
|
|
if (cnt > 0)
|
|
|
|
setbit(freemapp, blkno);
|
|
|
|
else
|
|
|
|
clrbit(freemapp, blkno);
|
|
|
|
/*
|
|
|
|
* Find the size of the cluster going forward.
|
|
|
|
*/
|
|
|
|
start = blkno + 1;
|
|
|
|
end = start + fs->fs_contigsumsize;
|
|
|
|
if (end >= cgp->cg_nclusterblks)
|
|
|
|
end = cgp->cg_nclusterblks;
|
|
|
|
mapp = &freemapp[start / NBBY];
|
|
|
|
map = *mapp++;
|
|
|
|
bit = 1 << (start % NBBY);
|
|
|
|
for (i = start; i < end; i++) {
|
|
|
|
if ((map & bit) == 0)
|
|
|
|
break;
|
|
|
|
if ((i & (NBBY - 1)) != (NBBY - 1)) {
|
|
|
|
bit <<= 1;
|
|
|
|
} else {
|
|
|
|
map = *mapp++;
|
|
|
|
bit = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
forw = i - start;
|
|
|
|
/*
|
|
|
|
* Find the size of the cluster going backward.
|
|
|
|
*/
|
|
|
|
start = blkno - 1;
|
|
|
|
end = start - fs->fs_contigsumsize;
|
|
|
|
if (end < 0)
|
|
|
|
end = -1;
|
|
|
|
mapp = &freemapp[start / NBBY];
|
|
|
|
map = *mapp--;
|
|
|
|
bit = 1 << (start % NBBY);
|
|
|
|
for (i = start; i > end; i--) {
|
|
|
|
if ((map & bit) == 0)
|
|
|
|
break;
|
|
|
|
if ((i & (NBBY - 1)) != 0) {
|
|
|
|
bit >>= 1;
|
|
|
|
} else {
|
|
|
|
map = *mapp--;
|
|
|
|
bit = 1 << (NBBY - 1);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2010-04-24 07:05:35 +00:00
|
|
|
back = start - i;
|
|
|
|
/*
|
|
|
|
* Account for old cluster and the possibly new forward and
|
|
|
|
* back clusters.
|
|
|
|
*/
|
|
|
|
i = back + forw + 1;
|
|
|
|
if (i > fs->fs_contigsumsize)
|
|
|
|
i = fs->fs_contigsumsize;
|
|
|
|
sump[i] += cnt;
|
|
|
|
if (back > 0)
|
|
|
|
sump[back] -= cnt;
|
|
|
|
if (forw > 0)
|
|
|
|
sump[forw] -= cnt;
|
|
|
|
/*
|
|
|
|
* Update cluster summary information.
|
|
|
|
*/
|
|
|
|
lp = &sump[fs->fs_contigsumsize];
|
|
|
|
for (i = fs->fs_contigsumsize; i > 0; i--)
|
|
|
|
if (*lp-- > 0)
|
|
|
|
break;
|
|
|
|
fs->fs_maxcluster[cgp->cg_cgx] = i;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|