diff options
author | jeff <jeff@FreeBSD.org> | 2003-03-04 00:04:44 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2003-03-04 00:04:44 +0000 |
commit | 4de0ae322cb45ae3620fef3a8fcf76d44208ee44 (patch) | |
tree | 60aed2b4c31a2d4a3c1cc94b83966280f8fc3eae /sys/fs/hpfs | |
parent | 7880d78b5504f8df1d22b8539ee31167ccd22750 (diff) | |
download | FreeBSD-src-4de0ae322cb45ae3620fef3a8fcf76d44208ee44.zip FreeBSD-src-4de0ae322cb45ae3620fef3a8fcf76d44208ee44.tar.gz |
- Add a new 'flags' parameter to getblk().
- Define one flag GB_LOCK_NOWAIT that tells getblk() to pass the LK_NOWAIT
flag to the initial BUF_LOCK(). This will eventually be used in cases
were we want to use a buffer only if it is not currently in use.
- Convert all consumers of the getblk() api to use this extra parameter.
Reviwed by: arch
Not objected to by: mckusick
Diffstat (limited to 'sys/fs/hpfs')
-rw-r--r-- | sys/fs/hpfs/hpfs_alsubr.c | 2 | ||||
-rw-r--r-- | sys/fs/hpfs/hpfs_subr.c | 4 | ||||
-rw-r--r-- | sys/fs/hpfs/hpfs_vnops.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/hpfs/hpfs_alsubr.c b/sys/fs/hpfs/hpfs_alsubr.c index 07d928e..226865f 100644 --- a/sys/fs/hpfs/hpfs_alsubr.c +++ b/sys/fs/hpfs/hpfs_alsubr.c @@ -181,7 +181,7 @@ hpfs_allocalsec ( if (error) return (error); - bp = getblk(hpmp->hpm_devvp, lsn, DEV_BSIZE, 0, 0); + bp = getblk(hpmp->hpm_devvp, lsn, DEV_BSIZE, 0, 0, 0); clrbuf(bp); /* Fill AlSec info */ diff --git a/sys/fs/hpfs/hpfs_subr.c b/sys/fs/hpfs/hpfs_subr.c index b45ebbd..a547027 100644 --- a/sys/fs/hpfs/hpfs_subr.c +++ b/sys/fs/hpfs/hpfs_subr.c @@ -75,7 +75,7 @@ hpfs_bmdeinit( dprintf(("[%d: 0x%x] ", i, hpmp->hpm_bmind[i])); bp = getblk(hpmp->hpm_devvp, hpmp->hpm_bmind[i], - BMSIZE, 0, 0); + BMSIZE, 0, 0, 0); clrbuf(bp); bcopy(hpmp->hpm_bitmap + BMSIZE * i, bp->b_data, @@ -732,7 +732,7 @@ hpfs_update ( if (!(hp->h_flag & H_CHANGE)) return (0); - bp = getblk(hp->h_devvp, hp->h_no, FNODESIZE, 0, 0); + bp = getblk(hp->h_devvp, hp->h_no, FNODESIZE, 0, 0, 0); clrbuf(bp); bcopy (&hp->h_fn, bp->b_data, sizeof(struct fnode)); diff --git a/sys/fs/hpfs/hpfs_vnops.c b/sys/fs/hpfs/hpfs_vnops.c index 40649e1..51d445d 100644 --- a/sys/fs/hpfs/hpfs_vnops.c +++ b/sys/fs/hpfs/hpfs_vnops.c @@ -372,7 +372,7 @@ hpfs_write(ap) bn, runl, towrite, xfersz)); if ((off == 0) && (towrite == xfersz)) { - bp = getblk(hp->h_devvp, bn, xfersz, 0, 0); + bp = getblk(hp->h_devvp, bn, xfersz, 0, 0, 0); clrbuf(bp); } else { error = bread(hp->h_devvp, bn, xfersz, NOCRED, &bp); |