OpenBSD/src 6ez00fXsys/miscfs/fifofs fifo_vnops.c, sys/msdosfs msdosfs_vnops.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.56+3-1sys/tmpfs/tmpfs_vnops.c
1.51+3-1sys/ntfs/ntfs_vnops.c
1.205+3-1sys/nfs/nfs_vnops.c
1.143+3-1sys/msdosfs/msdosfs_vnops.c
+20-910 files not shown
+48-2116 files

OpenBSD/src XpCPs9Ebin/csh func.c, lib/libedit vi.c common.c

   Delete obsolete /* ARGSUSED */ lint comments.

   ok miod@ millert@
VersionDeltaFile
1.462+1-52sbin/ifconfig/ifconfig.c
1.29+1-46lib/libedit/vi.c
1.41+1-28bin/csh/func.c
1.85+1-26usr.bin/ftp/cmds.c
1.23+1-25lib/libedit/common.c
1.98+1-21sys/ddb/db_command.c
+6-198283 files not shown
+289-1,192289 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.189+1-17sys/nfs/nfs_vnops.c
1.35+1-17sys/kern/vfs_vops.c
+7-15220 files not shown
+30-26526 files

OpenBSD/src B22HDP2sys/miscfs/deadfs dead_vnops.c

   Let poll(2) register EVFILT_EXCEPT filter with dead vnodes

   This enables the system deliver POLLHUP when pollfd.events == 0.
VersionDeltaFile
1.40+6-1sys/miscfs/deadfs/dead_vnops.c
+6-11 files

OpenBSD/src UvNkEYishare/man/man9 VOP_LOOKUP.9, sys/dev softraid.c

   Add vnode parameter to VOP_STRATEGY()

   Pass the device vnode as a parameter to VOP_STRATEGY() to allow calling
   the correct vop_strategy callback. Now the vnode is also available
   in the callback.

   OK mpi@
VersionDeltaFile
1.45+8-5share/man/man9/VOP_LOOKUP.9
1.34+5-4sys/kern/vfs_vops.c
1.208+4-4sys/kern/vfs_bio.c
1.152+4-4sys/uvm/uvm_swap.c
1.163+4-3sys/sys/vnode.h
1.420+3-3sys/dev/softraid.c
+28-2310 files not shown
+48-4316 files

OpenBSD/src kwJCqQvsys/miscfs/deadfs dead_vnops.c

   vnode: deadfs: do not call v_op->vop_lock directly, use VOP_LOCK() wrapper

   ok mpi@ visa@ (as part of larger diff)
VersionDeltaFile
1.38+2-2sys/miscfs/deadfs/dead_vnops.c
+2-21 files

OpenBSD/src VpkAZBcsys/kern vfs_default.c vfs_sync.c, sys/miscfs/fifofs fifo_vnops.c

   vnode: remove vop_generic_{,is,un}lock stub functions

   These functions are only stubs (returning 0). Replace them with nullop
   function (same behaviour). There is no intented behaviour changes.

   While here, reorder some vop_islocked member in structs to be next
   others vop_{,un}lock members.

   ok visa@
VersionDeltaFile
1.50+1-32sys/kern/vfs_default.c
1.67+4-4sys/kern/vfs_sync.c
1.82+4-4sys/miscfs/fifofs/fifo_vnops.c
1.47+4-4sys/ntfs/ntfs_vnops.c
1.58+4-4sys/ufs/mfs/mfs_vnops.c
1.106+4-4sys/kern/spec_vnops.c
+21-522 files not shown
+25-598 files

OpenBSD/src uboVljSsys/isofs/cd9660 cd9660_vnops.c, sys/miscfs/fifofs fifo_vnops.c

   vfs: merge *_badop to vop_generic_badop

   It replaces spec_badop, fifo_badop, dead_badop and mfs_badop, which
   are only calls to panic(9), to one unique function vop_generic_badop().

   No intented behaviour changes (outside the panic message which isn't
   the same).

   ok mpi@
VersionDeltaFile
1.56+22-31sys/ufs/mfs/mfs_vnops.c
1.99+24-24sys/ufs/ffs/ffs_vnops.c
1.90+24-24sys/isofs/cd9660/cd9660_vnops.c
1.89+24-24sys/ufs/ext2fs/ext2fs_vnops.c
1.187+24-24sys/nfs/nfs_vnops.c
1.81+13-27sys/miscfs/fifofs/fifo_vnops.c
+131-1549 files not shown
+190-23215 files

OpenBSD/src 4sO1jTysys/kern vfs_subr.c spec_vnops.c, sys/miscfs/deadfs dead_vnops.c

   Introduce a global vnode_mtx and use it to make vn_lock() safe to be called
   without the KERNEL_LOCK.
   This moves VXLOCK and VXWANT to a mutex protected v_lflag field and also
   v_lockcount is protected by this mutex.

   The vn_lock() dance is overly complex and all of this should probably replaced
   by a proper lock on the vnode but such a diff is a lot more complex. This
   is an intermediate step so that at least some calls can be modified to grab
   the KERNEL_LOCK later or not at all.

   OK mpi@
VersionDeltaFile
1.305+33-18sys/kern/vfs_subr.c
1.157+18-11sys/sys/vnode.h
1.104+19-7sys/kern/spec_vnops.c
1.115+17-7sys/kern/vfs_vnops.c
1.48+13-6sys/kern/vfs_default.c
1.35+6-4sys/miscfs/deadfs/dead_vnops.c
+106-532 files not shown
+115-588 files

OpenBSD/src JWBDjbPsys/miscfs/deadfs dead_vnops.c, sys/miscfs/fuse fuse_vnops.c

   make some `struct vops' members explicitly NULL instead of implicitly NULL

   ok mpi@
VersionDeltaFile
1.88+3-2sys/ufs/ext2fs/ext2fs_vnops.c
1.63+3-1sys/miscfs/fuse/fuse_vnops.c
1.34+2-1sys/miscfs/deadfs/dead_vnops.c
+8-43 files

OpenBSD/src jO33fResys/kern kern_event.c, sys/miscfs/deadfs dead_vnops.c

   Implement a simple kqfilter for deadfs matching its poll handler.

   ok visa@, millert@
VersionDeltaFile
1.33+21-1sys/miscfs/deadfs/dead_vnops.c
1.139+4-2sys/kern/kern_event.c
1.43+2-1sys/sys/event.h
+27-43 files

OpenBSD/src 23LLjmMsys/isofs/cd9660 cd9660_extern.h cd9660_vnops.c, sys/sys vnode.h

   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.15+4-4sys/isofs/cd9660/cd9660_extern.h
1.38+4-4sys/ufs/ext2fs/ext2fs_extern.h
1.45+4-4sys/ufs/ffs/ffs_extern.h
1.96+4-4sys/ufs/ffs/ffs_vnops.c
1.81+4-4sys/isofs/cd9660/cd9660_vnops.c
+25-2524 files not shown
+78-7830 files

OpenBSD/src Ks1WeRisys/miscfs/deadfs dead_vnops.c, sys/miscfs/fuse fusebuf.c

   Convert infinite sleeps to tsleep_nsec(9).

   ok jca@
VersionDeltaFile
1.17+2-2sys/miscfs/fuse/fusebuf.c
1.31+2-2sys/miscfs/deadfs/dead_vnops.c
+4-42 files

OpenBSD/src O2b3xH7sys/miscfs/deadfs dead_vnops.c

   Unlock the vnode in vop_inactive of deadfs. The unlock operation is
   a no-op at the moment, but future work will introduce an actual lock
   that has to be released.

   OK mpi@ anton@
VersionDeltaFile
1.30+12-2sys/miscfs/deadfs/dead_vnops.c
+12-21 files

OpenBSD/src p4LJxGKsys/dev/pci if_lmc_obsd.c ahc_pci.c, sys/kern vfs_bio.c

   Remove some includes include-what-you-use claims don't
   have any direct symbols used.  Tested for indirect use by compiling
   amd64/i386/sparc64 kernels.

   ok tedu@ deraadt@
VersionDeltaFile
1.25+1-8sys/dev/pci/if_lmc_obsd.c
1.51+1-7sys/net80211/ieee80211_proto.c
1.169+1-6sys/kern/vfs_bio.c
1.87+1-6sys/net80211/ieee80211_node.c
1.43+1-5sys/netinet/in_gif.c
1.57+2-4sys/dev/pci/ahc_pci.c
+7-36564 files not shown
+569-1,202570 files

OpenBSD/src P6Av4XGsys/kern subr_disk.c vfs_subr.c, sys/scsi st.c

   primary change: move uvm_vnode out of vnode, keeping only a pointer.
   objective: vnode.h doesn't include uvm_extern.h anymore.
   followup changes: include uvm_extern.h or lock.h where necessary.
   ok and help from deraadt
VersionDeltaFile
1.86+10-10sys/uvm/uvm_vnode.c
1.128+8-8sys/scsi/st.c
1.128+10-5sys/sys/vnode.h
1.174+5-5sys/kern/subr_disk.c
1.225+9-1sys/kern/vfs_subr.c
1.14+5-4sys/uvm/uvm_vnode.h
+47-3356 files not shown
+173-9862 files

OpenBSD/src uzzBR7hsys/dev/ata wd.c, sys/dev/ic qla.c

   remove uneeded proc.h includes
   ok mpi@ kspillner@
VersionDeltaFile
1.26+2-2sys/kern/kern_tc.c
1.10+2-2sys/kern/kern_watchdog.c
1.6+2-2sys/nfs/nfs_debug.c
1.57+2-2sys/nfs/nfs_node.c
1.117+2-2sys/dev/ata/wd.c
1.45+2-2sys/dev/ic/qla.c
+12-12265 files not shown
+281-542271 files

OpenBSD/src 8106964sys/isofs/cd9660 cd9660_vnops.c, sys/kern vfs_vops.c

   Every single vop_default is set to eopnotsupp, so retire it
   and return EOPNOTSUPP directly from the VOP_* functions.

   Filesystems should, at some point fill in every function
   in the vop_default struct so we can get rid of the 'if'
   statements in VOP_*.
VersionDeltaFile
1.3+72-38sys/kern/vfs_vops.c
1.61+1-4sys/ufs/ffs/ffs_vnops.c
1.134+1-4sys/nfs/nfs_vnops.c
1.53+1-4sys/isofs/cd9660/cd9660_vnops.c
1.59+1-4sys/ufs/ext2fs/ext2fs_vnops.c
1.108+1-2sys/sys/vnode.h
+77-5612 files not shown
+87-7818 files

OpenBSD/src 1194c83sys/isofs/cd9660 cd9660_vnops.c, sys/kern vfs_init.c

   Bring back the "End the VOP experiment." diff, naddy's issues where
   unrelated, and his alpha is much happier now.

   OK deraadt@
VersionDeltaFile
1.107+350-73sys/sys/vnode.h
1.133+124-96sys/nfs/nfs_vnops.c
1.59+119-86sys/ufs/ffs/ffs_vnops.c
1.52+118-79sys/isofs/cd9660/cd9660_vnops.c
1.58+115-80sys/ufs/ext2fs/ext2fs_vnops.c
1.28+5-153sys/kern/vfs_init.c
+831-56741 files not shown
+1,331-1,32947 files

OpenBSD/src 46dc0edsys/isofs/cd9660 cd9660_vnops.c, sys/kern vfs_init.c

   Backout the VOP diff until the issues naddy was seeing on alpha (gcc3)
   have been resolved.
VersionDeltaFile
1.106+74-315sys/sys/vnode.h
1.132+96-124sys/nfs/nfs_vnops.c
1.58+86-119sys/ufs/ffs/ffs_vnops.c
1.51+79-118sys/isofs/cd9660/cd9660_vnops.c
1.56+80-115sys/ufs/ext2fs/ext2fs_vnops.c
1.27+153-5sys/kern/vfs_init.c
+568-79641 files not shown
+1,330-1,29647 files

OpenBSD/src a46114dsys/isofs/cd9660 cd9660_vnops.c, sys/kern vfs_vops.c

   End the VOP experiment. Instead of the ridicolusly complicated operation
   vector setup that has questionable features (that have, as far as I can
   tell never been used in practice, atleast not in OpenBSD), remove all
   the gunk and favor a simple struct full of function pointers that get
   set directly by each of the filesystems.

   Removes gobs of ugly code and makes things simpler by a magnitude.

   The only downside of this is that we loose the vnoperate feature so
   the spec/fifo operations of the filesystems need to be kept in sync
   with specfs and fifofs, this is no big deal as the API it self is pretty
   static.

   Many thanks to armani@ who pulled an earlier version of this diff to
   current after c2k10 and Gabriel Kihlman on tech@ for testing.

   Liked by many. "come on, find your balls" deraadt@.
VersionDeltaFile
1.1+595-0sys/kern/vfs_vops.c
1.105+315-74sys/sys/vnode.h
1.131+124-96sys/nfs/nfs_vnops.c
1.57+119-86sys/ufs/ffs/ffs_vnops.c
1.50+118-79sys/isofs/cd9660/cd9660_vnops.c
1.54+115-80sys/ufs/ext2fs/ext2fs_vnops.c
+1,386-41539 files not shown
+1,823-1,22945 files

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

   - remove super-obvious comments from $fs_vnodeop_entries[]

   prodded by and ok thib@
   agreed by art@ and blambert@
VersionDeltaFile
1.55+62-62sys/ufs/ffs/ffs_vnops.c
1.52+62-62sys/ufs/ext2fs/ext2fs_vnops.c
1.121+61-61sys/nfs/nfs_vnops.c
1.48+52-52sys/isofs/cd9660/cd9660_vnops.c
1.56+36-36sys/kern/spec_vnops.c
1.31+36-36sys/miscfs/fifofs/fifo_vnops.c
+309-3098 files not shown
+543-54314 files

OpenBSD/src a988ea1sys/kern vfs_init.c vfs_sync.c, sys/msdosfs msdosfs_vnops.c

   retire vn_default_error() and replace all instances
   with eopnotsupp() instead;

   ok blambert@
VersionDeltaFile
1.21+1-13sys/kern/vfs_init.c
1.94+1-6sys/sys/vnode.h
1.50+2-2sys/ufs/ext2fs/ext2fs_vnops.c
1.44+2-2sys/kern/vfs_sync.c
1.49+2-2sys/kern/spec_vnops.c
1.66+2-2sys/msdosfs/msdosfs_vnops.c
+10-2710 files not shown
+30-4716 files

OpenBSD/src 1f5ffd2sys/miscfs/deadfs dead_vnops.c

   remove useless defines for the vnode operations, and instead
   init the op array functions with whatever the define was set
   too.

   ok dlg@
VersionDeltaFile
1.20+24-47sys/miscfs/deadfs/dead_vnops.c
+24-471 files

OpenBSD/src eaff807sys/kern spec_vnops.c vfs_default.c, sys/miscfs/deadfs dead_vnops.c

   fifofs, deadfs and specfs all have the same "trivial lookup routine that
   always fails". Introduce vop_generic_lookup(), which is a trivial lookup
   routine that always fails and use that instead, zap the redundant copies.

   ok toby@, tedu@, art@
VersionDeltaFile
1.19+2-16sys/miscfs/deadfs/dead_vnops.c
1.26+2-15sys/miscfs/fifofs/fifo_vnops.c
1.44+2-14sys/miscfs/specfs/spec_vnops.c
1.44+2-14sys/kern/spec_vnops.c
1.36+11-1sys/kern/vfs_default.c
1.21+1-2sys/miscfs/specfs/specdev.h
+20-623 files not shown
+24-679 files

OpenBSD/src 19cee46sys/kern spec_vnops.c, sys/miscfs/specfs spec_vnops.c

   pedro ok'd this ~3500 line diff which removes the vop argument
   "ap = v" comments in under 8 seconds, so it must be ok.  and it compiles
   too.
VersionDeltaFile
1.75+32-186sys/nfs/nfs_vnops.c
1.81+32-176sys/ufs/ufs/ufs_vnops.c
1.63+26-140sys/msdosfs/msdosfs_vnops.c
1.47+17-94sys/ufs/ext2fs/ext2fs_vnops.c
1.41+16-83sys/kern/spec_vnops.c
1.41+16-83sys/miscfs/specfs/spec_vnops.c
+139-76227 files not shown
+278-1,36833 files

OpenBSD/src 38cb191sys/miscfs/deadfs dead_vnops.c

   ansify and deregister, no binary change, okay mickey@ bluhm@
VersionDeltaFile
1.17+14-31sys/miscfs/deadfs/dead_vnops.c
+14-311 files

OpenBSD/src ec6164csys/kern vfs_subr.c vfs_default.c, sys/miscfs/deadfs dead_vnops.c

   Remove the v_interlock simplelock from the vnode structure.
   Zap all calls to simple_lock/unlock() on it (those calls are
   #defined away though). Remove the LK_INTERLOCK from the calls
   to vn_lock() and cleanup the filesystems wich implement VOP_LOCK().
   (by remvoing the v_interlock from there calls to lockmgr()).

   ok pedro@, art@, tedu@
VersionDeltaFile
1.141+10-61sys/kern/vfs_subr.c
1.27+8-13sys/ufs/ufs/ufs_quota.c
1.32+1-19sys/kern/vfs_default.c
1.75+1-12sys/sys/vnode.h
1.74+3-10sys/ufs/ufs/ufs_vnops.c
1.16+2-10sys/miscfs/deadfs/dead_vnops.c
+25-12513 files not shown
+56-17119 files

OpenBSD/src 4455034sys/arch/mvme88k/mvme88k m88100_fp.S eh.S, sys/dev/pci if_em_hw.c pcidevs_data.h

   Merge of current from two weeks agointo the SMP branch
VersionDeltaFile
1.6.4.6+2,185-1,969sys/arch/mvme88k/mvme88k/m88100_fp.S
1.8.4.7+1,526-1,864sys/arch/mvme88k/mvme88k/eh.S
1.1.8.1+2,407-903sys/dev/pci/if_em_hw.c
1.220.2.15+946-1,826sys/dev/pci/pcidevs_data.h
1.95.2.10+1,724-932sys/net/pf.c
1.7.4.1+1,507-1,009sys/dev/pci/if_em.c
+10,295-8,5032,242 files not shown
+77,002-62,3532,248 files

OpenBSD/src f1bdb26sys/dev audio.c, sys/kern tty_pty.c sys_generic.c

   Replace select backends with poll backends.  selscan() and pollscan()
   now call the poll backend.  With this change we implement greater
   poll(2) functionality instead of emulating it via the select backend.
   Adapted from NetBSD and including some changes from FreeBSD.
   Tested by many, deraadt@ OK
VersionDeltaFile
1.72+50-50sys/sys/conf.h
1.15+41-46sys/kern/tty_pty.c
1.46+31-40sys/kern/sys_generic.c
1.44+32-37sys/kern/sys_pipe.c
1.9+29-34sys/kern/sys_socket.c
1.42+22-26sys/dev/audio.c
+205-23378 files not shown
+718-72084 files