diff options
author | jeff <jeff@FreeBSD.org> | 2005-01-24 10:33:46 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2005-01-24 10:33:46 +0000 |
commit | e5940f4bef093ba765110a2d40d0bfc1281dedb5 (patch) | |
tree | 98af7382243e665601e3a4a51d83c54420e928a1 /sys/kern/vfs_cluster.c | |
parent | 1e3b49c0c498c60161ab803f1e064e10e1bfe8f9 (diff) | |
download | FreeBSD-src-e5940f4bef093ba765110a2d40d0bfc1281dedb5.zip FreeBSD-src-e5940f4bef093ba765110a2d40d0bfc1281dedb5.tar.gz |
- Remove GIANT_REQUIRED where giant is no longer required.
Sponsored By: Isilon Systems, Inc.
Diffstat (limited to 'sys/kern/vfs_cluster.c')
-rw-r--r-- | sys/kern/vfs_cluster.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index 92687ba..527800c 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -318,8 +318,6 @@ cluster_rbuild(vp, filesize, lbn, blkno, size, run, fbp) daddr_t bn; int i, inc, j; - GIANT_REQUIRED; - KASSERT(size == vp->v_mount->mnt_stat.f_iosize, ("cluster_rbuild: size %ld != filesize %jd\n", size, (intmax_t)vp->v_mount->mnt_stat.f_iosize)); @@ -519,8 +517,6 @@ cluster_callback(bp) struct buf *nbp, *tbp; int error = 0; - GIANT_REQUIRED; - /* * Must propogate errors to all the components. */ @@ -757,8 +753,6 @@ cluster_wbuild(vp, size, start_lbn, len) int totalwritten = 0; int dbsize = btodb(size); - GIANT_REQUIRED; - while (len > 0) { s = splbio(); /* |