| /freebsd/sys/kern/ |
| H A D | vfs_syscalls.c | 146 vn_start_write(NULL, &mp, V_NOWAIT) == 0) { in kern_sync() 1498 if (vn_start_write(nd.ni_dvp, &mp, V_NOWAIT) != 0) { in kern_mknodat() 1501 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | V_PCATCH)) != 0) in kern_mknodat() 1590 if (vn_start_write(nd.ni_dvp, &mp, V_NOWAIT) != 0) { in kern_mkfifoat() 1593 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | V_PCATCH)) != 0) in kern_mkfifoat() 1775 error = vn_start_write(vp, &mp, V_NOWAIT); in kern_linkat_vp() 1780 error = vn_start_write(NULL, &mp, in kern_linkat_vp() 1873 if (vn_start_write(nd.ni_dvp, &mp, V_NOWAIT) != 0) { in kern_symlinkat() 1876 if ((error = vn_start_write(NULL, &mp, V_XSLEEP | V_PCATCH)) != 0) in kern_symlinkat() 1942 if (vn_start_write(nd.ni_dvp, &mp, V_NOWAIT) != 0) { in sys_undelete() [all …]
|
| H A D | vfs_vnops.c | 303 if (vn_start_write(ndp->ni_dvp, &mp, V_NOWAIT) != 0) { in vn_open_cred() 306 if ((error = vn_start_write(NULL, &mp, in vn_open_cred() 580 vn_start_write(vp, &mp, V_WAIT); in vn_close1() 700 (error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH)) in vn_rdwr() 1307 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in vn_write() 1780 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in vn_truncate() 2064 vn_start_write(struct vnode *vp, struct mount **mpp, int flags) in vn_start_write() function 2331 vn_start_write(NULL, &mp, V_WAIT); in vfs_write_suspend_umnt() 2338 vn_start_write(NULL, &mp, V_WAIT); in vfs_write_suspend_umnt() 2432 if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0) in vn_extattr_set() [all …]
|
| H A D | vfs_extattr.c | 127 error = vn_start_write(nd.ni_vp, &mp_writable, V_WAIT | V_PCATCH); in sys_extattrctl() 185 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in extattr_set_vp() 542 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in extattr_delete_vp()
|
| H A D | vfs_acl.c | 236 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in vacl_set_acl() 300 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in vacl_delete()
|
| H A D | coredump_vnode.c | 189 error = vn_start_write(ctx->vp, &mp, V_WAIT); in core_vn_extend()
|
| H A D | kern_alq.c | 371 vn_start_write(vp, &mp, V_WAIT); in alq_doio()
|
| H A D | kern_ktrace.c | 1430 vn_start_write(vp, &mp, V_WAIT); in ktr_writerequest()
|
| /freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zfs_file_os.c | 268 if ((error = vn_start_write(vp, &mp, V_WAIT | PCATCH)) != 0) in zfs_vop_fsync() 270 if ((error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH)) != 0) in zfs_vop_fsync()
|
| /freebsd/sys/ufs/ufs/ |
| H A D | ufs_vfsops.c | 120 vn_start_write(NULL, &mp, V_WAIT); in ufs_quotactl()
|
| /freebsd/sys/ufs/ffs/ |
| H A D | ffs_rawread.c | 111 if (vn_start_write(vp, &mp, V_NOWAIT) != 0) { in ffs_rawread_sync() 117 (void) vn_start_write(vp, &mp, V_WAIT); in ffs_rawread_sync()
|
| H A D | ffs_snapshot.c | 281 if (vn_start_write(NULL, &wrtmp, V_NOWAIT) != 0) { in ffs_snapshot() 284 if ((error = vn_start_write(NULL, &wrtmp, in ffs_snapshot() 438 vn_start_write(NULL, &wrtmp, V_WAIT); in ffs_snapshot() 444 vn_start_write(NULL, &wrtmp, V_WAIT); in ffs_snapshot()
|
| H A D | ffs_vfsops.c | 507 if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0) in ffs_mount() 635 if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0) in ffs_mount()
|
| /freebsd/sys/fs/unionfs/ |
| H A D | union_subr.c | 969 if ((error = vn_start_write(udvp, &mp, V_WAIT | V_PCATCH))) { in unionfs_mkshadowdir() 1244 if ((error = vn_start_write(udvp, &mp, V_WAIT | V_PCATCH))) in unionfs_mkwhiteout() 1469 if ((error = vn_start_write(udvp, &mp, V_WAIT | V_PCATCH)) != 0) in unionfs_copyfile() 1656 if ((error = vn_start_write(udvp, &mp, V_WAIT | V_PCATCH)) != 0) in unionfs_copylink()
|
| /freebsd/sys/security/mac/ |
| H A D | mac_process.c | 334 (void) vn_start_write(vp, &mp, V_WAIT); in mac_proc_vm_revoke_recurse()
|
| H A D | mac_syscalls.c | 692 error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH); in sys___mac_set_fd() 807 error = vn_start_write(nd.ni_vp, &mp, V_WAIT | V_PCATCH); in kern___mac_set_path()
|
| /freebsd/sys/security/audit/ |
| H A D | audit_worker.c | 114 error = vn_start_write(vp, &mp1, 0); in audit_worker_sync_vp()
|
| /freebsd/sys/fs/nfsserver/ |
| H A D | nfs_nfsdsocket.c | 1240 vn_start_write(vp, &temp_mp, V_WAIT); in nfsrvd_compound() 1280 vn_start_write(savevp, &temp_mp, V_WAIT); in nfsrvd_compound() 1297 vn_start_write(vp, &temp_mp, in nfsrvd_compound()
|
| /freebsd/sys/fs/fdescfs/ |
| H A D | fdesc_vnops.c | 522 if ((error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH)) == 0) { in fdesc_setattr()
|
| /freebsd/sys/fs/tmpfs/ |
| H A D | tmpfs_vfsops.c | 289 if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0) in tmpfs_rw_to_ro()
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_stats.c | 655 vn_start_write(NULL, &mp, V_NOWAIT) == 0) { in linux_syncfs()
|
| /freebsd/sys/vm/ |
| H A D | vm_object.c | 1196 (void)vn_start_write(vp, &mp, V_WAIT); in vm_object_sync() 1230 (void)vn_start_write(vp, &mp, V_WAIT); in vm_object_sync()
|
| /freebsd/sys/cam/ctl/ |
| H A D | ctl_backend_block.c | 620 (void) vn_start_write(be_lun->vn, &mountpoint, V_WAIT); in ctl_be_block_flush_file() 742 (void)vn_start_write(be_lun->vn, &mountpoint, V_WAIT); in ctl_be_block_dispatch_file() 898 (void)vn_start_write(be_lun->vn, &mp, V_WAIT); in ctl_be_block_unmap_file()
|
| /freebsd/sys/dev/md/ |
| H A D | md.c | 933 (void)vn_start_write(vp, &mp, V_WAIT); in mdstart_vnode() 1005 (void) vn_start_write(vp, &mp, V_WAIT); in mdstart_vnode()
|
| /freebsd/sys/dev/xen/blkback/ |
| H A D | blkback.c | 2164 (void) vn_start_write(xbb->vn, &mountpoint, V_WAIT); in xbb_dispatch_file() 2260 (void)vn_start_write(xbb->vn, &mountpoint, V_WAIT); in xbb_dispatch_file()
|
| /freebsd/sys/fs/msdosfs/ |
| H A D | msdosfs_vfsops.c | 254 if ((error = vn_start_write(NULL, &mp, V_WAIT)) != 0) in msdosfs_mount()
|