- Remove GIANT_REQUIRED where giant is no longer required.

Sponsored By:	Isilon Systems, Inc.
This commit is contained in:
Jeff Roberson 2005-01-24 10:10:47 +00:00
parent 5cef9d6add
commit dec351f69e

View File

@ -347,8 +347,6 @@ ffs_read(ap)
}
#endif
GIANT_REQUIRED;
seqcount = ap->a_ioflag >> IO_SEQSHIFT;
ip = VTOI(vp);
@ -548,8 +546,6 @@ ffs_write(ap)
panic("ffs_write+IO_EXT");
#endif
GIANT_REQUIRED;
extended = 0;
seqcount = ap->a_ioflag >> IO_SEQSHIFT;
ip = VTOI(vp);
@ -729,8 +725,6 @@ ffs_getpages(ap)
vm_page_t mreq;
int pcount;
GIANT_REQUIRED;
pcount = round_page(ap->a_count) / PAGE_SIZE;
mreq = ap->a_m[ap->a_reqpage];
@ -777,8 +771,6 @@ ffs_extread(struct vnode *vp, struct uio *uio, int ioflag)
long size, xfersize, blkoffset;
int error, orig_resid;
GIANT_REQUIRED;
ip = VTOI(vp);
fs = ip->i_fs;
dp = ip->i_din2;
@ -935,8 +927,6 @@ ffs_extwrite(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *ucred)
off_t osize;
int blkoffset, error, flags, resid, size, xfersize;
GIANT_REQUIRED;
ip = VTOI(vp);
fs = ip->i_fs;
dp = ip->i_din2;