OpenBSD/src 6ez00fXsys/isofs/udf udf_vnops.c, sys/kern spec_vnops.c vfs_subr.c

   Put the bowels of the various VOP_PRINT routines under
   defined(DEBUG) || defined(DIAGNOSTIC) || defined(VFSLCKDEBUG)
   as they won't be used otherwise.

   Shaves a few bytes off installation kernels.

   ok kn@ semarie@
VersionDeltaFile
1.164+3-4sys/ufs/ufs/ufs_vnops.c
1.108+5-1sys/miscfs/fifofs/fifo_vnops.c
1.75+3-1sys/isofs/udf/udf_vnops.c
1.113+3-1sys/kern/spec_vnops.c
1.324+2-2sys/kern/vfs_subr.c
1.73+3-1sys/kern/vfs_sync.c
+19-1010 files not shown
+48-2116 files

OpenBSD/src WwOQUYTsys/kern vfs_vops.c, sys/miscfs/fuse fuse_vnops.c

   vfs: VOP_REMOVE: move vnode unlocking and ref dropping to FS-indep part

   while here, ensure all vop_remove field are set, and always call the function.

   the change is very conservative: it only adds vnode ref drop/unlock where it was
   absent because it should be unreachable (and if it wasn't, it should fix
   things).

   ok miod@
VersionDeltaFile
1.36+10-4sys/kern/vfs_vops.c
1.55+1-10sys/tmpfs/tmpfs_vnops.c
1.141+1-7sys/msdosfs/msdosfs_vnops.c
1.94+1-6sys/ufs/ext2fs/ext2fs_vnops.c
1.162+1-6sys/ufs/ufs/ufs_vnops.c
1.69+1-6sys/miscfs/fuse/fuse_vnops.c
+15-394 files not shown
+22-5110 files

OpenBSD/src 3yvLkJclib/libc/sys link.2, sys/kern vfs_syscalls.c

   Move the "no (hard) linking directories" and "no cross-mount links"
   checks from all the filesystems that support hardlinks at all into
   the VFS layer.  Simplify, EPERM description in link(2).

   ok miod@ mpi@
VersionDeltaFile
1.364+13-5sys/kern/vfs_syscalls.c
1.54+1-14sys/tmpfs/tmpfs_vnops.c
1.92+1-11sys/ufs/ext2fs/ext2fs_vnops.c
1.68+1-11sys/miscfs/fuse/fuse_vnops.c
1.161+1-11sys/ufs/ufs/ufs_vnops.c
1.30+3-7lib/libc/sys/link.2
+20-592 files not shown
+23-678 files

OpenBSD/src hLOsNZAsys/miscfs/fuse fuse_vnops.c, sys/msdosfs msdosfs_vnops.c

   Remove the remnants of the leftover selinfo from vnode(9) layer. Just
   mechanical 'selinfo' to 'klist' replacement in 'vnode' structure because
   knote(9) API is already used.

   <sys/selinfo.h> headers added where is was required.

   ok bluhm
VersionDeltaFile
1.169+4-4sys/sys/vnode.h
1.158+3-3sys/ufs/ufs/ufs_vnops.c
1.53+3-3sys/tmpfs/tmpfs_vnops.c
1.67+3-3sys/miscfs/fuse/fuse_vnops.c
1.140+3-3sys/msdosfs/msdosfs_vnops.c
1.36+3-3sys/nfs/nfs_kq.c
+19-194 files not shown
+28-2510 files

OpenBSD/src Sqjuje7share/man/man9 VOP_LOOKUP.9, sys/kern spec_vnops.c vfs_vops.c

   Remove unused VOP_POLL().

   OK mpi@
VersionDeltaFile
1.95+1-50sys/miscfs/fifofs/fifo_vnops.c
1.46+2-32share/man/man9/VOP_LOOKUP.9
1.41+1-18sys/miscfs/deadfs/dead_vnops.c
1.108+1-18sys/kern/spec_vnops.c
1.35+1-17sys/kern/vfs_vops.c
1.189+1-17sys/nfs/nfs_vnops.c
+7-15220 files not shown
+30-26526 files

OpenBSD/src MnKWT6ysys/isofs/cd9660 cd9660_vnops.c, sys/kern kern_event.c spec_vnops.c

   Clarify usage of __EV_POLL and __EV_SELECT

   Make __EV_POLL specific to kqueue-based poll(2), to remove overlap
   with __EV_SELECT that only select(2) uses.

   OK millert@ mpi@
VersionDeltaFile
1.34+4-4sys/nfs/nfs_kq.c
1.61+2-2sys/sys/event.h
1.91+2-2sys/isofs/cd9660/cd9660_vnops.c
1.175+2-2sys/kern/kern_event.c
1.107+2-2sys/kern/spec_vnops.c
1.146+2-2sys/kern/sys_generic.c
+14-146 files not shown
+26-2612 files

OpenBSD/src S1vOxvXsys/tmpfs tmpfs_subr.c tmpfs_vnops.c

   tiny little whitespace fixes
VersionDeltaFile
1.24+4-4sys/tmpfs/tmpfs_subr.c
1.50+4-4sys/tmpfs/tmpfs_vnops.c
+8-82 files

OpenBSD/src EO3Qqaysys/tmpfs tmpfs_vnops.c

   Prohibit renames of tmpfs mount-points to fix a panic.

   From gerhard@
VersionDeltaFile
1.49+3-1sys/tmpfs/tmpfs_vnops.c
+3-11 files

OpenBSD/src ewpN11rsys/tmpfs tmpfs_vnops.c

   Call uvm_vnp_uncache() in tmpfs_write().  We currently only call
   uvm_vnp_uncache() in tmpfs_write() when a file grows in size.  This
   is not enough.  We need to invalidate UVM's cache of the vnode every
   time the contents of the vnode are modified.  Failure to do so might
   lead to inconsistencies between read/mmap consumers.

   From Pedro Martelletto
VersionDeltaFile
1.48+2-2sys/tmpfs/tmpfs_vnops.c
+2-21 files

OpenBSD/src SD6d3Gcsys/tmpfs tmpfs_vnops.c

   Fix tmpfs_lookup locking for ".." == ".".  unveil_find_cover() calls
   VFS_LOOKUP(dir, &parent) in a loop and looks up the parent directory
   ".." repeatedly. VFS_LOOKUP is expected to unlock 'dir' and return
   'parent' locked.

   So tmpfs_lookup() is called for ISDOTDOT and:
        - runs with dvp = dir, vpp = &parent
        - gets parent from tmpfs_vnode_get() and
        - re-locks dir with vn_lock(dvp)
   but skips the call to
        VOP_UNLOCK(dvp);
   on return because *vpp == dvp

   The reason for doing so is the lookup for ".".  In this case
   tmpfs_lookup() just increases the reference on dvp and copies the
   pointer:
        *vpp = dvp; vref(dvp);

   However, in our case we also have *vpp == dvp, but for a different

    [3 lines not shown]
VersionDeltaFile
1.47+3-3sys/tmpfs/tmpfs_vnops.c
+3-31 files

OpenBSD/src s6ZQ5u3sys/miscfs/fuse fuse_device.c, sys/msdosfs msdosfs_fat.c

   spelling
VersionDeltaFile
1.38+5-5sys/ufs/ext2fs/ext2fs_alloc.c
1.36+4-4sys/miscfs/fuse/fuse_device.c
1.34+3-3sys/msdosfs/msdosfs_fat.c
1.186+3-3sys/nfs/nfs_vnops.c
1.46+3-3sys/tmpfs/tmpfs_vnops.c
1.26+2-2sys/ufs/ext2fs/ext2fs.h
+20-2011 files not shown
+42-4217 files

OpenBSD/src UbmW3gVsys/dev audio.c, sys/kern kern_event.c tty.c

   Refactor klist insertion and removal

   Rename klist_{insert,remove}() to klist_{insert,remove}_locked().
   These functions assume that the caller has locked the klist. The current
   state of locking remains intact because the kernel lock is still used
   with all klists.

   Add new functions klist_insert() and klist_remove() that lock the klist
   internally. This allows some code simplification.

   OK mpi@
VersionDeltaFile
1.156+26-6sys/kern/kern_event.c
1.106+7-7sys/net/if_pppx.c
1.192+5-5sys/dev/audio.c
1.166+4-4sys/kern/tty.c
1.105+4-4sys/kern/tty_pty.c
1.252+4-4sys/kern/uipc_socket.c
+50-3029 files not shown
+144-12235 files

OpenBSD/src gNxpU1Ssys/tmpfs tmpfs.h tmpfs_vnops.c

   Fix build of tmpfs

   The breakage was caused by the removal of #include <sys/systm.h>
   from <uvm/uvm_map.h>.

   OK deraadt@, mpi@, beck@
VersionDeltaFile
1.10+3-1sys/tmpfs/tmpfs.h
1.44+2-1sys/tmpfs/tmpfs_vnops.c
+5-22 files

OpenBSD/src sR08hRhsys/tmpfs tmpfs_vnops.c

   tmpfs_reclaim() has to make sure the VFS cache has no more locks held
   for the vnode.

   ok beck@
VersionDeltaFile
1.43+3-1sys/tmpfs/tmpfs_vnops.c
+3-11 files

OpenBSD/src 4djhz1Lsys/isofs/cd9660 cd9660_vnops.c, sys/kern kern_event.c

   Rename poll-compatibility flag to better reflect what it is.

   While here prefix kernel-only EV flags with two underbars.

   Suggested by kettenis@, ok visa@
VersionDeltaFile
1.32+4-4sys/nfs/nfs_kq.c
1.135+4-4sys/kern/kern_event.c
1.40+3-3sys/sys/event.h
1.42+2-2sys/tmpfs/tmpfs_vnops.c
1.85+2-2sys/isofs/cd9660/cd9660_vnops.c
1.152+2-2sys/ufs/ufs/ufs_vnops.c
+17-174 files not shown
+25-2510 files

OpenBSD/src sesn7LJsys/isofs/cd9660 cd9660_vnops.c, sys/miscfs/fuse fuse_vnops.c

   Use a new EV_OLDAPI flag to match the behavior of poll(2) and select(2).

   Adapt FS kqfilters to always return true when the flag is set and bypass
   the polling mechanism of the NFS thread.

   While here implement a write filter for NFS.

   ok visa@
VersionDeltaFile
1.31+64-9sys/nfs/nfs_kq.c
1.133+5-1sys/msdosfs/msdosfs_vnops.c
1.151+4-1sys/ufs/ufs/ufs_vnops.c
1.84+4-1sys/isofs/cd9660/cd9660_vnops.c
1.60+4-1sys/miscfs/fuse/fuse_vnops.c
1.41+4-1sys/tmpfs/tmpfs_vnops.c
+85-141 files not shown
+87-157 files

OpenBSD/src 0LC6b7Ksys/kern kern_event.c uipc_socket.c, sys/miscfs/fifofs fifo_vnops.c

   Abstract the head of knote lists. This allows extending the lists,
   for example, with locking assertions.

   OK mpi@, anton@
VersionDeltaFile
1.131+39-20sys/kern/kern_event.c
1.82+7-7sys/net/if_pppx.c
1.35+10-3sys/sys/event.h
1.243+6-6sys/kern/uipc_socket.c
1.74+6-6sys/miscfs/fifofs/fifo_vnops.c
1.119+5-5sys/kern/sys_pipe.c
+73-4727 files not shown
+161-13533 files

OpenBSD/src uEmMnuLsys/dev/usb ugen.c, sys/kern kern_event.c uipc_socket.c

   Replace field f_isfd with field f_flags in struct filterops to allow
   adding more filter properties without cluttering the struct.

   OK mpi@, anton@
VersionDeltaFile
1.126+13-13sys/kern/kern_event.c
1.39+4-4sys/tmpfs/tmpfs_vnops.c
1.129+4-4sys/msdosfs/msdosfs_vnops.c
1.241+4-4sys/kern/uipc_socket.c
1.58+4-4sys/miscfs/fuse/fuse_vnops.c
1.102+4-4sys/dev/usb/ugen.c
+33-3328 files not shown
+107-10534 files

OpenBSD/src 23LLjmMsys/isofs/cd9660 cd9660_extern.h, sys/nfs nfs_vnops.c

   struct vops is not modified during runtime so use const which moves each
   into read-only data segment.
   OK deraadt@ tedu@
VersionDeltaFile
1.155+5-5sys/sys/vnode.h
1.182+4-4sys/nfs/nfs_vnops.c
1.38+4-4sys/ufs/ext2fs/ext2fs_extern.h
1.86+4-4sys/ufs/ext2fs/ext2fs_vnops.c
1.96+4-4sys/ufs/ffs/ffs_vnops.c
1.15+4-4sys/isofs/cd9660/cd9660_extern.h
+25-2524 files not shown
+78-7830 files

OpenBSD/src inmR0wWsys/isofs/cd9660 cd9660_vnops.c, sys/kern kern_event.c uipc_socket.c

   Use C99 designated initializers with struct filterops. In addition,
   make the structs const so that the data are put in .rodata.

   OK mpi@, deraadt@, anton@, bluhm@
VersionDeltaFile
1.112+36-18sys/kern/kern_event.c
1.238+21-7sys/kern/uipc_socket.c
1.127+21-7sys/msdosfs/msdosfs_vnops.c
1.37+21-7sys/tmpfs/tmpfs_vnops.c
1.80+21-7sys/isofs/cd9660/cd9660_vnops.c
1.56+21-7sys/miscfs/fuse/fuse_vnops.c
+141-5328 files not shown
+423-18234 files

OpenBSD/src 7JkAjcmsys/dev/pci/drm drm_linux.c, sys/kern vfs_vnops.c kern_descrip.c

   Allow concurrent reads of the f_offset field of struct file by
   serializing both read/write operations using the existing file mutex.
   The vnode lock still grants exclusive write access to the offset; the
   mutex is only used to make the actual write atomic and prevent any
   concurrent reader from observing intermediate values.

   ok mpi@ visa@
VersionDeltaFile
1.104+12-4sys/kern/vfs_vnops.c
1.58+14-2sys/sys/file.h
1.192+9-5sys/kern/kern_descrip.c
1.47+5-2sys/dev/pci/drm/drm_linux.c
1.146+3-3sys/ufs/ufs/ufs_vnops.c
1.55+2-2sys/miscfs/fuse/fuse_vnops.c
+45-186 files not shown
+58-2912 files

OpenBSD/src Qh9CKA3sys/kern kern_descrip.c vfs_vnops.c, sys/sys file.h

   Revert anton@ changes about read/write unlocking
   https://marc.info/?l=openbsd-cvs&m=156277704122293&w=2

   ok anton@
VersionDeltaFile
1.190+4-75sys/kern/kern_descrip.c
1.101+23-29sys/kern/vfs_vnops.c
1.57+2-11sys/sys/file.h
1.321+3-8sys/kern/vfs_syscalls.c
1.363+2-2sys/kern/kern_sysctl.c
1.145+2-2sys/ufs/ufs/ufs_vnops.c
+36-1276 files not shown
+42-13512 files

OpenBSD/src wLFLJWNsys/dev/pci/drm drm_linux.c, sys/kern kern_descrip.c vfs_vnops.c

   Make read/write of the f_offset field belonging to struct file MP-safe;
   as part of the effort to unlock the kernel. Instead of relying on the
   vnode lock, introduce a dedicated lock per file. Exclusive write access
   is granted using the new foffset_enter and foffset_leave API. A
   convenience function foffset_get is also available for threads that only
   need to read the current offset.

   The lock acquisition order in vn_write has been changed to match the one
   in vn_read in order to avoid a potential deadlock. This change also gets
   rid of a documented race in vn_read().

   Inspired by the FreeBSD implementation.

   With help and ok mpi@ visa@
VersionDeltaFile
1.189+76-5sys/kern/kern_descrip.c
1.100+30-24sys/kern/vfs_vnops.c
1.55+11-3sys/sys/file.h
1.320+9-4sys/kern/vfs_syscalls.c
1.43+4-2sys/dev/pci/drm/drm_linux.c
1.144+3-3sys/ufs/ufs/ufs_vnops.c
+133-416 files not shown
+145-5312 files

OpenBSD/src bRYRw7mlib/libc/asr asr.c, libexec/spamd spamd.c

   More "explicitely" -> "explicitly" in various comments.

   ok guenther@ tb@ deraadt@
VersionDeltaFile
1.168+2-2sys/arch/powerpc/powerpc/pmap.c
1.155+2-2libexec/spamd/spamd.c
1.33+2-2sys/tmpfs/tmpfs_vnops.c
1.9+2-2sys/dev/sbus/cgtwelve.c
1.5+2-2sys/dev/ic/aic6250.c
1.61+2-2lib/libc/asr/asr.c
+12-126 files not shown
+23-2312 files

OpenBSD/src 8tKVDKPshare/man/man9 VOP_LOOKUP.9, sys/miscfs/fuse fuse_vnops.c

   Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for
   unlocking the directory vnode.

   OK mpi@, helg@
VersionDeltaFile
1.44+13-31sys/miscfs/fuse/fuse_vnops.c
1.32+6-14sys/tmpfs/tmpfs_vnops.c
1.83+3-8sys/ufs/ext2fs/ext2fs_vnops.c
1.177+3-8sys/nfs/nfs_vnops.c
1.115+7-2sys/nfs/nfs_serv.c
1.43+4-5share/man/man9/VOP_LOOKUP.9
+36-685 files not shown
+45-8111 files

OpenBSD/src sPr46pdsys/tmpfs tmpfs_vnops.c tmpfs_subr.c, sys/ufs/ext2fs ext2fs_vnops.c

   Call vput(dvp) in vnode operation functions instead of calling it in
   the file allocation routine. This allows stepwise changing of the vnode
   locking discipline.

   OK mpi@
VersionDeltaFile
1.82+11-8sys/ufs/ext2fs/ext2fs_vnops.c
1.31+11-3sys/tmpfs/tmpfs_vnops.c
1.22+1-2sys/tmpfs/tmpfs_subr.c
+23-133 files

OpenBSD/src inp5on1sys/tmpfs tmpfs_vnops.c

   Fix build without DIAGNOSTIC, ok mikeb@
VersionDeltaFile
1.30+5-2sys/tmpfs/tmpfs_vnops.c
+5-21 files

OpenBSD/src Bfq2vdusys/arch/sparc64/dev vdsp.c, sys/kern vfs_syscalls.c spec_vnops.c

   Remove proc from the parameters of vn_lock(). The parameter is
   unnecessary because curproc always does the locking.

   OK mpi@
VersionDeltaFile
1.282+15-15sys/kern/vfs_syscalls.c
1.92+8-8sys/kern/spec_vnops.c
1.45+7-7sys/arch/sparc64/dev/vdsp.c
1.176+7-7sys/ufs/ffs/ffs_vfsops.c
1.92+6-8sys/kern/vfs_vnops.c
1.66+5-8sys/miscfs/fifofs/fifo_vnops.c
+48-5337 files not shown
+165-19043 files

OpenBSD/src jN4oWsmsys/arch/sparc64/dev vdsp.c, sys/kern vfs_syscalls.c spec_vnops.c

   Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always
   curproc that does the locking or unlocking, so the proc parameter
   is pointless and can be dropped.

   OK mpi@, deraadt@
VersionDeltaFile
1.281+14-14sys/kern/vfs_syscalls.c
1.28+14-14sys/tmpfs/tmpfs_vnops.c
1.118+11-11sys/msdosfs/msdosfs_vnops.c
1.91+9-9sys/kern/spec_vnops.c
1.38+8-8sys/miscfs/fuse/fuse_vnops.c
1.44+8-8sys/arch/sparc64/dev/vdsp.c
+64-6452 files not shown
+252-26158 files

OpenBSD/src wHLNY5Gshare/man/man9 VOP_LOOKUP.9 vnsubr.9, sys/isofs/udf udf_vnops.c

   Remove the lockmgr() API. It is only used by filesystems, where it is a
   trivial change to use rrw locks instead. All it needs is LK_* defines
   for the RW_* flags.

   tested by naddy and sthen on package building infrastructure
   input and ok jmc mpi tedu
VersionDeltaFile
1.47+1-58sys/kern/kern_lock.c
1.36+47-8share/man/man9/VOP_LOOKUP.9
1.27+12-21sys/sys/lock.h
1.12+14-18share/man/man9/vnsubr.9
1.64+5-6sys/isofs/udf/udf_vnops.c
1.28+5-4sys/miscfs/fuse/fuse_vnops.c
+84-11526 files not shown
+146-17832 files