Home
last modified time | relevance | path

Searched refs:V_XSLEEP (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/kern/
H A Dvfs_syscalls.c1357 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in kern_mknodat()
1444 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in kern_mkfifoat()
1621 V_XSLEEP | PCATCH); in kern_linkat_vp()
1716 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in kern_symlinkat()
1780 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in sys_undelete()
1912 V_XSLEEP | PCATCH)) != 0) { in kern_funlinkat()
3647 error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH); in kern_renameat()
3769 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in kern_mkdirat()
3877 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH)) != 0) in kern_frmdirat()
H A Dvfs_vnops.c262 V_XSLEEP | PCATCH)) != 0) in vn_open_cred()
1788 if (__predict_true(!mplocked) && (flags & V_XSLEEP) == 0 && in vn_start_write_refed()
1821 if (flags & V_XSLEEP) in vn_start_write_refed()
1825 if (error != 0 || (flags & V_XSLEEP) != 0) in vn_start_write_refed()
H A Duipc_usrreq.c657 error = vn_start_write(NULL, &mp, V_XSLEEP | PCATCH); in uipc_bindat()
/f-stack/freebsd/sys/
H A Dvnode.h427 #define V_XSLEEP 0x0004 /* vn_start_write: just return after sleep */ macro