svn commit: r318267 - stable/10/sys/ufs/ffs
Konstantin Belousov
kib at FreeBSD.org
Sun May 14 12:00:01 UTC 2017
Author: kib
Date: Sun May 14 12:00:00 2017
New Revision: 318267
URL: https://svnweb.freebsd.org/changeset/base/318267
Log:
MFC r317908:
Remove spl() calls from UFS code.
Modified:
stable/10/sys/ufs/ffs/ffs_rawread.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/ufs/ffs/ffs_rawread.c
==============================================================================
--- stable/10/sys/ufs/ffs/ffs_rawread.c Sun May 14 11:51:30 2017 (r318266)
+++ stable/10/sys/ufs/ffs/ffs_rawread.c Sun May 14 12:00:00 2017 (r318267)
@@ -274,7 +274,6 @@ ffs_rawread_main(struct vnode *vp,
struct buf *bp, *nbp, *tbp;
caddr_t sa, nsa, tsa;
u_int iolen;
- int spl;
caddr_t udata;
long resid;
off_t offset;
@@ -339,10 +338,7 @@ ffs_rawread_main(struct vnode *vp,
}
}
- spl = splbio();
bwait(bp, PRIBIO, "rawrd");
- splx(spl);
-
vunmapbuf(bp);
iolen = bp->b_bcount - bp->b_resid;
@@ -415,9 +411,7 @@ ffs_rawread_main(struct vnode *vp,
relpbuf(bp, &ffsrawbufcnt);
}
if (nbp != NULL) { /* Run down readahead buffer */
- spl = splbio();
bwait(nbp, PRIBIO, "rawrd");
- splx(spl);
vunmapbuf(nbp);
pbrelvp(nbp);
relpbuf(nbp, &ffsrawbufcnt);
More information about the svn-src-stable-10
mailing list