HomeSort by: relevance | last modified time | path
    Searched refs:B_LOCKED (Results 1 - 12 of 12) sorted by relevancy

  /src/sbin/fsck_lfs/
bufcache.h 101 #define B_LOCKED 0x00004000 /* Locked in core (not reusable). */
bufcache.c 177 if (bp->b_flags & B_LOCKED) {
295 bp->b_flags &= ~(B_READ | B_DONE | B_DELWRI | B_LOCKED);
318 if (bp->b_flags & B_LOCKED) {
segwrite.c 885 B_LOCKED);
lfs.c 142 bp->b_flags |= B_DELWRI | B_LOCKED;
  /src/sys/sys/
buf.h 196 #define B_LOCKED 0x00004000 /* Locked in core (not reusable). */
  /src/sys/ufs/lfs/
lfs_bio.c 426 KASSERT((bp->b_flags & B_LOCKED) || !(bp->b_oflags & BO_DELWRI));
452 * Set the B_LOCKED flag and unlock the buffer, causing brelse to move
462 if ((bp->b_flags & B_LOCKED) == 0) {
lfs_accessors.h 602 if (((bp)->b_flags & B_LOCKED) == 0 && bp->b_iodone == NULL) { \
608 (bp)->b_flags |= B_LOCKED; \
612 if (((bp)->b_flags & B_LOCKED) != 0 && bp->b_iodone == NULL) { \
621 (bp)->b_flags &= ~B_LOCKED; \
lfs_balloc.c 589 if (((*bpp)->b_flags & B_LOCKED) != 0 &&
lfs_segment.c 1416 if (!(bp->b_flags & B_LOCKED)) {
1418 " blk %" PRId64 " not B_LOCKED\n",
1422 panic("lfs_gather: bp not B_LOCKED");
2618 KASSERT(tbp->b_flags & B_LOCKED);
2640 if ((tbp->b_flags & B_LOCKED) && !(tbp->b_oflags & BO_DELWRI))
lfs_inode.c 376 if ((bp->b_flags & B_LOCKED) != 0 && bp->b_iodone == NULL) {
  /src/sys/kern/
vfs_bio.c 1056 if (ISSET(bp->b_flags, B_LOCKED))
1072 !ISSET(bp->b_flags, B_LOCKED) && bp->b_error == 0) {
1089 if (ISSET(bp->b_flags, B_LOCKED)) {
1128 if (ISSET(bp->b_flags, B_LOCKED)) {
1256 * LFS can't track total size of B_LOCKED buffer (locked_queue_bytes)
1259 if (ISSET(bp->b_flags, B_LOCKED)) {
vfs_wapbl.c 790 KASSERT(bp->b_flags & B_LOCKED);
1308 if (bp->b_flags & B_LOCKED) {
1330 bp->b_flags |= B_LOCKED;
1350 KASSERT(bp->b_flags & B_LOCKED);
1368 bp->b_flags &= ~B_LOCKED;
1388 * XXX: why does this depend on B_LOCKED? otherwise the buf
1392 if (bp->b_flags & B_LOCKED) {
1659 KDASSERT(!(bp->b_flags & B_LOCKED));
2574 KASSERT(bp->b_flags & B_LOCKED);

Completed in 23 milliseconds