Searched refs:f_vflags (Results 1 – 2 of 2) sorted by relevance
807 flagsp = &fp->f_vflags; in file_v_lock()846 flagsp = &fp->f_vflags; in file_v_unlock()921 while ((fp->f_vflags & lock_bit) != 0) { in file_v_lock_mtxp()922 fp->f_vflags |= lock_wait_bit; in file_v_lock_mtxp()923 msleep(&fp->f_vflags, mtxp, PRI_MAX_KERN, in file_v_lock_mtxp()926 fp->f_vflags |= lock_bit; in file_v_lock_mtxp()935 KASSERT((fp->f_vflags & lock_bit) != 0, ("Lost lock_bit")); in file_v_unlock_mtxp()936 if ((fp->f_vflags & lock_wait_bit) != 0) in file_v_unlock_mtxp()937 wakeup(&fp->f_vflags); in file_v_unlock_mtxp()938 fp->f_vflags &= ~(lock_bit | lock_wait_bit); in file_v_unlock_mtxp()
208 short f_vflags; /* (f) Sleep lock flags for members */ member