NetBSD/src 21b179bsys/kern init_sysent.c init_sysent.c, sys/sys syscall.h syscall.h

   Regen.
VersionDeltaFile
1.220+3-3sys/kern/init_sysent.c
1.216+3-3sys/kern/init_sysent.c
1.215+3-3sys/kern/init_sysent.c
1.209+1-1sys/kern/syscalls.c
1.209+1-1sys/sys/syscall.h
1.206+1-1sys/sys/syscall.h
+12-125 files not shown
+17-1711 files

NetBSD/src 0195212sys/net/agr if_agrmonitor.c

by yamt on ⎇🏷
   agrport_monitor: map IFM_NONE to IFM_NONE|IFM_ETHER and add a comment.
VersionDeltaFile
1.4+12-2sys/net/agr/if_agrmonitor.c
+12-21 files

NetBSD/src 3f06008sys/kern kern_event.c

   add some DEBUG checks.
VersionDeltaFile
1.52+64-3sys/kern/kern_event.c
+64-31 files

NetBSD/src e7c7071sys/uvm uvm_page.c uvm_km.c

   remove a redundant pmap_update and add a comment instead.
VersionDeltaFile
1.131+6-3sys/uvm/uvm_page.c
1.99+6-3sys/uvm/uvm_km.c
+12-62 files

NetBSD/src 26df36bsys/arch/hp700/hp700 mainbus.c

   Typo in commit.
VersionDeltaFile
1.41+3-3sys/arch/hp700/hp700/mainbus.c
+3-31 files

NetBSD/src 183e2b6sys/arch/sparc64/dev pci_machdep.c

   Change previous to use aprint_error_dev.
VersionDeltaFile
1.57+4-5sys/arch/sparc64/dev/pci_machdep.c
+4-51 files

NetBSD/src 0194e45sys/compat/linux/common linux_socket.c

   linux_get_sa: fix botched fd handling.
VersionDeltaFile
1.88+4-7sys/compat/linux/common/linux_socket.c
+4-71 files

NetBSD/src 98c5464sys/dev/acpi acpi_acad.c

   acpiacad_get_status: move sc_notifysent to the correct place, otherwise
   the notify might not be sent.
VersionDeltaFile
1.33+3-3sys/dev/acpi/acpi_acad.c
+3-31 files

NetBSD/src 5ddff63sys/kern kern_fork.c

   Undo 1.150 (Don't make root an exception when enforcing rlimits). No other
   Unix behaves this way and it breaks too many things, e.g. web servers.
VersionDeltaFile
1.160+4-3sys/kern/kern_fork.c
+4-31 files

NetBSD/src ea7ead4sys/arch/cobalt/include cpu.h, sys/arch/cobalt/stand/boot zs.c ns16550.c

   Use macro defined in <machine/cpu.h> for cobalt_id and device addresses etc.
   since <machine/leds.h> has been removed.
   Also remove redundant address definitions in Makefile and local headers.
   Pointed out by dieter roelants.
VersionDeltaFile
1.2+6-2sys/arch/cobalt/stand/boot/zs.c
1.4+6-2sys/arch/cobalt/stand/boot/ns16550.c
1.17+3-5sys/arch/cobalt/stand/boot/Makefile
1.14+3-4sys/arch/cobalt/stand/boot/boot.c
1.13+4-3sys/arch/cobalt/include/cpu.h
1.9+1-6sys/arch/cobalt/stand/boot/boot.h
+23-224 files not shown
+31-3410 files

NetBSD/src eaf6468sys/kern kern_exit.c

   Reorder a code block slightly, to allow proclist_mutex to be an adaptive
   mutex (purely for testing).
VersionDeltaFile
1.201+9-7sys/kern/kern_exit.c
+9-71 files

NetBSD/src ca0df93sys/dev/pci pci.c pci_usrreq.c

   Split device_t and softc for pci(4).
VersionDeltaFile
1.115+11-9sys/dev/pci/pci.c
1.15+9-9sys/dev/pci/pci_usrreq.c
1.79+3-3sys/dev/pci/pcivar.h
+23-213 files

NetBSD/src 83c3017sys/kern kern_lwp.c

   lwp_ctl_alloc: initialize lcp_kaddr to vm_map_min(kernel_map), in order to
   prevent uvm_map() from spuriously failing.
VersionDeltaFile
1.99+3-2sys/kern/kern_lwp.c
+3-21 files

NetBSD/src 23a6d75sys/dev/acpi acpi_bat.c

   Use the SME_INIT_REFRESH flag to fetch sensor data once in the
   autoconf(9) process.
VersionDeltaFile
1.65+3-2sys/dev/acpi/acpi_bat.c
+3-21 files

NetBSD/src 8e54208sys/dev/sysmon sysmon_envsys.c sysmon_envsys_events.c

   Fix some problems reported by <drochner> a while ago on tech-kern:

   sme_events_worker: skip sensors with invalid state.
   sme_acadapter_check:

        * use a boolean to check if an SME_CLASS_ACADAPTER was found.
        * Always refresh sensor data before checking value_cur.

   Introduce the SME_INIT_REFRESH flag. If a device sets this it will mean
   that after interrupts are enabled in the autoconf(9) process, sensor
   data will be refreshed once.
VersionDeltaFile
1.81+30-8sys/dev/sysmon/sysmon_envsys.c
1.50+19-11sys/dev/sysmon/sysmon_envsys_events.c
1.24+4-1sys/dev/sysmon/sysmonvar.h
+53-203 files

NetBSD/src 9dac558sys/arch/amiga/dev view.c, sys/arch/atari/dev view.c

   Use M_TEMP for allocations instead of the now deceased M_IOCTLOPS.
VersionDeltaFile
1.27+6-6sys/arch/amiga/dev/view.c
1.25+6-6sys/arch/atari/dev/view.c
+12-122 files

NetBSD/src fdbe170sys/rump/librump/rumpkern pool.c

   pool_cache_init: Remove the alignment of pc according to the CACHE_LINE_SIZE,
   which is not useful for rump.  This fixes the pool_cache_destroy() which was
   freeing the modified pointer, instead of the original one.

   OK by <pooka>.
VersionDeltaFile
1.7+3-7sys/rump/librump/rumpkern/pool.c
+3-71 files

NetBSD/src a31a935sys/dev/acpi acpi_lid.c

   Add missing acpilid_wake_event() proto.
VersionDeltaFile
1.24+3-2sys/dev/acpi/acpi_lid.c
+3-21 files

NetBSD/src efba9c1sys/kern init_main.c vfs_bio.c, sys/rump/librump/rumpkern emul.c

   when calculating some cache sizes, consider the amount of available kva.
   PR/33185.
VersionDeltaFile
1.345+22-3sys/kern/init_main.c
1.192+9-9sys/kern/vfs_bio.c
1.34+13-1sys/rump/librump/rumpkern/emul.c
1.217+4-1sys/sys/systm.h
+48-144 files

NetBSD/src 8f9a8afsys/conf files, sys/kern sys_select.c sys_generic.c

   Split select/poll into their own file.
VersionDeltaFile
1.1+841-0sys/kern/sys_select.c
1.117+2-747sys/kern/sys_generic.c
1.896+2-1sys/conf/files
+845-7483 files

NetBSD/src b11cd5bsys/compat/aoutm68k aoutm68k_stat.c

   Make this build again. From isaki@.
VersionDeltaFile
1.23+11-11sys/compat/aoutm68k/aoutm68k_stat.c
+11-111 files

NetBSD/src 553d54esys/dev/ic tulip.c tulipvar.h

   On preparing a setup packet, use proper byteswap ops and byte shift ops
   rather than #ifdef BYTE_ORDER and subtle pointer casts.
VersionDeltaFile
1.161+20-20sys/dev/ic/tulip.c
1.60+3-7sys/dev/ic/tulipvar.h
+23-272 files

NetBSD/src bb0bc70sys/arch/sh3/sh3 interrupt.c

   G/c old softint code.
VersionDeltaFile
1.26+2-72sys/arch/sh3/sh3/interrupt.c
+2-721 files

NetBSD/src 3cb2237sys/arch/sh3/include exception.h

   Sort SH4_INTEVT_PCI* codes.
VersionDeltaFile
1.10+10-10sys/arch/sh3/include/exception.h
+10-101 files

NetBSD/src eab36e0sys/nfs nfs_syscalls.c, sys/sys lwp.h

   G/C l->l_locks.
   OK by <ad>.
VersionDeltaFile
1.133+2-36sys/nfs/nfs_syscalls.c
1.84+2-2sys/sys/lwp.h
+4-382 files

NetBSD/src a041edbsys/kern sys_mqueue.c, sys/sys mqueue.h

   - Support for select/poll.
   - Convert pool to pool-cache.
   - Wrap long lines, adjust the license.
VersionDeltaFile
1.8+82-34sys/kern/sys_mqueue.c
1.4+16-13sys/sys/mqueue.h
+98-472 files

NetBSD/src a94ff74sys/dev/sbus if_gem_sbus.c

   Check the "shared-pins" property for the value "serdes".
   Makes SBUS GEM 1000Base-SX cards attach.
VersionDeltaFile
1.3+5-2sys/dev/sbus/if_gem_sbus.c
+5-21 files

NetBSD/src 1fd5e03sys/arch/hppa/include ansi.h

   Remove unused _BSD_OFF_T_.
VersionDeltaFile
1.10+1-7sys/arch/hppa/include/ansi.h
+1-71 files

NetBSD/src 95d7b79sys/rump/librump/rumpkern rump.c

   Update for select/poll changes.
VersionDeltaFile
1.41+2-2sys/rump/librump/rumpkern/rump.c
+2-21 files

NetBSD/src fd01b94sys/arch/cobalt/cobalt machdep.c

   Use C99 initializer.
VersionDeltaFile
1.95+6-9sys/arch/cobalt/cobalt/machdep.c
+6-91 files