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

  /src/tests/kernel/
t_unmount.c 87 printf("mnt_iflag & IMNT_ONWORKLIST == %d\n",
88 (vp->v_mount->mnt_iflag & IMNT_ONWORKLIST) != 0);
93 printf("mnt_iflag & IMNT_ONWORKLIST == %d\n",
94 (vp->v_mount->mnt_iflag & IMNT_ONWORKLIST) != 0);
97 ATF_REQUIRE_MSG(((vp->v_mount->mnt_iflag & IMNT_ONWORKLIST) == 0),
  /src/sys/sys/
fstypes.h 235 #define IMNT_ONWORKLIST 0x00000400 /* on syncer worklist */
280 "\13IMNT_ONWORKLIST" \
  /src/sys/kern/
vfs_subr.c 760 KASSERT((mp->mnt_iflag & IMNT_ONWORKLIST) == 0);
778 mp->mnt_iflag |= IMNT_ONWORKLIST;
793 KASSERT((mp->mnt_iflag & IMNT_ONWORKLIST) != 0);
796 mp->mnt_iflag &= ~IMNT_ONWORKLIST;
857 if ((mp->mnt_iflag & IMNT_ONWORKLIST) == 0 ||
vfs_mount.c 961 used_syncer = (mp->mnt_iflag & IMNT_ONWORKLIST) != 0;
vfs_syscalls.c 430 if ((mp->mnt_iflag & IMNT_ONWORKLIST) == 0)
433 if ((mp->mnt_iflag & IMNT_ONWORKLIST) != 0)

Completed in 16 milliseconds