CVS commit: src/sys/arch/xen/xen
Module Name:src Committed By: jdolecek Date: Mon May 4 08:22:45 UTC 2020 Modified Files: src/sys/arch/xen/xen: if_xennet_xenbus.c xennet_checksum.c xennetback_xenbus.c Log Message: remove IPv4 csum offloading for xennet(4) - it's not complete, and even if it was, it doesn't work with Linux Dom0 as it expects the IPv4 csum present To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 src/sys/arch/xen/xen/if_xennet_xenbus.c cvs rdiff -u -r1.13 -r1.14 src/sys/arch/xen/xen/xennet_checksum.c cvs rdiff -u -r1.103 -r1.104 src/sys/arch/xen/xen/xennetback_xenbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x86/pci
Module Name:src Committed By: jdolecek Date: Mon May 4 09:34:37 UTC 2020 Modified Files: src/sys/arch/x86/pci: msipic.c Log Message: constify the pic templates To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/sys/arch/x86/pci/msipic.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/xen/xen
Module Name:src Committed By: jdolecek Date: Mon May 4 10:03:45 UTC 2020 Modified Files: src/sys/arch/xen/xen: if_xennet_xenbus.c Log Message: fix delet-o To generate a diff of this commit: cvs rdiff -u -r1.122 -r1.123 src/sys/arch/xen/xen/if_xennet_xenbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbmips/conf
Module Name:src Committed By: simonb Date: Mon May 4 12:15:43 UTC 2020 Modified Files: src/sys/arch/evbmips/conf: ALCHEMY MALTA Log Message: Enable PTYFS. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/sys/arch/evbmips/conf/ALCHEMY cvs rdiff -u -r1.100 -r1.101 src/sys/arch/evbmips/conf/MALTA Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-9] src/sys/dev/scsipi
Module Name:src Committed By: martin Date: Mon May 4 13:50:07 UTC 2020 Modified Files: src/sys/dev/scsipi [netbsd-9]: scsiconf.c Log Message: Pull up following revision(s) (requested by jdc in ticket #885): sys/dev/scsipi/scsiconf.c: revision 1.287 Don't attempt to read opcodes and their timeouts at attach time for old devices. The MAINTENANCE IN command was introduced with SCSI-3 and sending it to older peripherals can cause timeouts or them not to respond to further requests. To generate a diff of this commit: cvs rdiff -u -r1.284 -r1.284.4.1 src/sys/dev/scsipi/scsiconf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-9] src/sys/dev/sun
Module Name:src Committed By: martin Date: Mon May 4 13:58:17 UTC 2020 Modified Files: src/sys/dev/sun [netbsd-9]: disksubr.c Log Message: Pull up following revision(s) (requested by jdc in ticket #886): sys/dev/sun/disksubr.c: revision 1.17 If the sector size is 0, return early in readdisklabel(). Prevents a panic trying to use a 0-sized buffer, which can happen if we run (e.g.) `scsictl /dev/cd0c identify` with no medium in the CD drive. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.16.4.1 src/sys/dev/sun/disksubr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: riastradh Date: Mon May 4 13:58:48 UTC 2020 Modified Files: src/sys/kern: uipc_sem.c Log Message: Release the collision if we find one. Candidate fix for: panic: lock error: Mutex: mutex_vector_enter,542: locking against myself: lock 0x8f611abd37e0 cpu 8 lwp 0x8f60a3c6a040 cpu8: Begin traceback... vpanic() at netbsd:vpanic+0x178 snprintf() at netbsd:snprintf lockdebug_abort() at netbsd:lockdebug_abort+0xe6 mutex_vector_enter() at netbsd:mutex_vector_enter+0x3c1 ksem_close_fop() at netbsd:ksem_close_fop+0x17 closef() at netbsd:closef+0x69 fd_free() at netbsd:fd_free+0x101 exit1() at netbsd:exit1+0x118 sys_exit() at netbsd:sys_exit+0x3d syscall() at netbsd:syscall+0x299 Would be nice to have an automatic test for this. Since semids are only 24 bits, we only need to create a few thousand of them to have a high probability of collision. Maybe we should bump default semmax while here... To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/sys/kern/uipc_sem.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-9] src/crypto/external/bsd/netpgp/lib/verify
Module Name:src Committed By: martin Date: Mon May 4 14:03:12 UTC 2020 Modified Files: src/crypto/external/bsd/netpgp/lib/verify [netbsd-9]: Makefile Added Files: src/crypto/external/bsd/netpgp/lib/verify [netbsd-9]: verify.map Log Message: Pull up following revision(s) (requested by christos in ticket #887): crypto/external/bsd/netpgp/lib/verify/Makefile: revision 1.13 crypto/external/bsd/netpgp/lib/verify/verify.map: revision 1.1 Add a linker map to hide all the symbols the this library accidentally exported. In particular the following symbols: DSA_SIG_free DSA_SIG_new DSA_do_sign DSA_do_verify DSA_free DSA_new DSA_size RSA_check_key RSA_free RSA_generate_key RSA_new RSA_private_decrypt RSA_private_encrypt RSA_public_decrypt RSA_public_encrypt conflict with libcrypto and break pkg_add which links against both libraries. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.10.2.1 \ src/crypto/external/bsd/netpgp/lib/verify/Makefile cvs rdiff -u -r0 -r1.1.2.2 \ src/crypto/external/bsd/netpgp/lib/verify/verify.map Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-9] src/doc
Module Name:src Committed By: martin Date: Mon May 4 14:04:11 UTC 2020 Modified Files: src/doc [netbsd-9]: CHANGES-9.1 Log Message: Tickets #885 - #887 To generate a diff of this commit: cvs rdiff -u -r1.1.2.51 -r1.1.2.52 src/doc/CHANGES-9.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: thorpej Date: Mon May 4 15:09:34 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_futex_ops.c Log Message: Add a test case for PR kern/55230. It is currently marked as expect-fail. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/sys/t_futex_ops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man4
Module Name:src Committed By: wiz Date: Mon May 4 15:10:41 UTC 2020 Modified Files: src/share/man/man4: rnd.4 Log Message: Break line after macro arguments end. Use \- for minus. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/share/man/man4/rnd.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man9
Module Name:src Committed By: wiz Date: Mon May 4 15:13:46 UTC 2020 Modified Files: src/share/man/man9: rnd.9 Log Message: Improve markup. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/share/man/man9/rnd.9 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch
Module Name:src Committed By: jdolecek Date: Mon May 4 15:55:57 UTC 2020 Modified Files: src/sys/arch/amd64/include: types.h src/sys/arch/i386/include: types.h src/sys/arch/x86/pci: msipic.c msipic.h pci_machdep.c src/sys/arch/xen/include: evtchn.h src/sys/arch/xen/x86: pintr.c xen_intr.c src/sys/arch/xen/xen: evtchn.c Log Message: add support for using MSI for XenPV Dom0 use PHYSDEVOP_map_pirq to get the pirq/gsi for MSI/MSI-X, switch also INTx to use it instead of PHYSDEVOP_alloc_irq_vector MSI confirmed working with single-vector MSI for wm(4), ahcisata(4), bge(4) XXX added some provision for MSI-X, but it doesn't actually work (no interrupts delivered), needs some further investigation; disable MSI-X for XENPV via flag in x86/pci/pci_machdep.c To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/sys/arch/amd64/include/types.h cvs rdiff -u -r1.90 -r1.91 src/sys/arch/i386/include/types.h cvs rdiff -u -r1.22 -r1.23 src/sys/arch/x86/pci/msipic.c cvs rdiff -u -r1.2 -r1.3 src/sys/arch/x86/pci/msipic.h cvs rdiff -u -r1.86 -r1.87 src/sys/arch/x86/pci/pci_machdep.c cvs rdiff -u -r1.30 -r1.31 src/sys/arch/xen/include/evtchn.h cvs rdiff -u -r1.13 -r1.14 src/sys/arch/xen/x86/pintr.c cvs rdiff -u -r1.24 -r1.25 src/sys/arch/xen/x86/xen_intr.c cvs rdiff -u -r1.91 -r1.92 src/sys/arch/xen/xen/evtchn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: jdolecek Date: Mon May 4 16:21:23 UTC 2020 Modified Files: src/doc: CHANGES Log Message: note feature-sg and jumbo frames for xennet(4)/xvif(4), MSI for XenPV To generate a diff of this commit: cvs rdiff -u -r1.2684 -r1.2685 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/sysinst/arch/evbarm
Module Name:src Committed By: joerg Date: Mon May 4 18:19:34 UTC 2020 Modified Files: src/usr.sbin/sysinst/arch/evbarm: md.h Log Message: boardype should not be common. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/sysinst/arch/evbarm/md.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: riastradh Date: Mon May 4 18:23:37 UTC 2020 Modified Files: src/sys/kern: kern_condvar.c subr_time.c src/sys/sys: timevar.h Log Message: New timedwaitclock_setup. C99 initializers would have been nice, but part of the struct is explicit parameters and part of the struct is implicit state, and -Wmissing-field-initializers can't discriminate between them (although for some reason it doesn't always fire!). Instead, just do: struct timedwaitclock T; timedwaitclock_setup(&T, timeout, clockid, flags, epsilon); while (...) { error = timedwaitclock_begin(&T, &timo); if (error) ... error = waitwhatever(timo); timedwaitclock_end(&T); ... } To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/sys/kern/kern_condvar.c cvs rdiff -u -r1.22 -r1.23 src/sys/kern/subr_time.c cvs rdiff -u -r1.42 -r1.43 src/sys/sys/timevar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/include/arm32
Module Name:src Committed By: joerg Date: Mon May 4 18:36:24 UTC 2020 Modified Files: src/sys/arch/arm/include/arm32: pte.h Log Message: Prevent double definition of pt_entry_t from machine/param.h To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/include/arm32/pte.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/acpi
Module Name:src Committed By: jdolecek Date: Mon May 4 20:06:38 UTC 2020 Modified Files: src/sys/dev/acpi: acpi_ec.c acpi_quirks.c wss_acpi.c Log Message: constify To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/dev/acpi/acpi_ec.c cvs rdiff -u -r1.20 -r1.21 src/sys/dev/acpi/acpi_quirks.c cvs rdiff -u -r1.32 -r1.33 src/sys/dev/acpi/wss_acpi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 20:55:48 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_register_wait.h Log Message: Move register tests out of t_ptrace_wait.c to t_ptrace_register_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_register_wait.h cvs rdiff -u -r1.173 -r1.174 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 21:21:30 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_syscall_wait.h Log Message: Move syscall tests out of t_ptrace_wait.c to t_ptrace_syscall_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_syscall_wait.h cvs rdiff -u -r1.174 -r1.175 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 21:33:20 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_step_wait.h Log Message: Move PT_STEP tests out of t_ptrace_wait.c to t_ptrace_step_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_step_wait.h cvs rdiff -u -r1.175 -r1.176 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 21:55:12 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_kill_wait.h Log Message: Move kill()-like tests out of t_ptrace_wait.c to t_ptrace_kill_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_kill_wait.h cvs rdiff -u -r1.176 -r1.177 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 22:05:29 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_bytetransfer_wait.h Log Message: Move byte transfer tests out of t_ptrace_wait.c to t_ptrace_bytetransfer_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_bytetransfer_wait.h cvs rdiff -u -r1.177 -r1.178 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 22:15:23 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_clone_wait.h Log Message: Move clone() tests out of t_ptrace_wait.c to t_ptrace_clone_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_clone_wait.h cvs rdiff -u -r1.178 -r1.179 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 22:24:31 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_clone_wait.h Log Message: Bump (c) year To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/sys/t_ptrace_clone_wait.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 22:34:22 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_fork_wait.h Log Message: Move fork/vfork/posix_spawn tests out of t_ptrace_wait.c to t_ptrace_fork_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_fork_wait.h cvs rdiff -u -r1.179 -r1.180 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 23:53:20 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Remove the duplicate ATF_TP_ADD_TC() entries Byte transfer tests are already defined in ATF_TP_ADD_TCS_PTRACE_WAIT_BYTETRANSFER(). To generate a diff of this commit: cvs rdiff -u -r1.181 -r1.182 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Mon May 4 23:49:31 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c t_ptrace_wait3.c t_ptrace_wait4.c t_ptrace_wait6.c t_ptrace_waitid.c t_ptrace_waitpid.c Added Files: src/tests/lib/libc/sys: t_ptrace_signal_wait.h Log Message: Move signal tests out of t_ptrace_wait.c to t_ptrace_signal_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_signal_wait.h cvs rdiff -u -r1.180 -r1.181 src/tests/lib/libc/sys/t_ptrace_wait.c cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/sys/t_ptrace_wait3.c \ src/tests/lib/libc/sys/t_ptrace_wait4.c \ src/tests/lib/libc/sys/t_ptrace_wait6.c \ src/tests/lib/libc/sys/t_ptrace_waitid.c \ src/tests/lib/libc/sys/t_ptrace_waitpid.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:01:15 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_eventmask_wait.h Log Message: Move eventmask tests out of t_ptrace_wait.c to t_ptrace_eventmask_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_eventmask_wait.h cvs rdiff -u -r1.182 -r1.183 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:03:49 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Remove the duplicate ATF_TP_ADD_TC() entries Event mask tests are already defined in ATF_TP_ADD_TCS_PTRACE_WAIT_EVENTMASK(). To generate a diff of this commit: cvs rdiff -u -r1.183 -r1.184 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:15:45 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_lwp_wait.h Log Message: Move LWP tests out of t_ptrace_wait.c to t_ptrace_lwp_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_lwp_wait.h cvs rdiff -u -r1.184 -r1.185 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:23:13 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_exec_wait.h Log Message: Move exec() tests out of t_ptrace_wait.c to t_ptrace_exec_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_exec_wait.h cvs rdiff -u -r1.185 -r1.186 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:33:37 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_topology_wait.h Log Message: Move topology tests out of t_ptrace_wait.c to t_ptrace_topology_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_topology_wait.h cvs rdiff -u -r1.186 -r1.187 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:50:39 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c t_ptrace_wait.h Added Files: src/tests/lib/libc/sys: t_ptrace_threads_wait.h Log Message: Move threads tests out of t_ptrace_wait.c to t_ptrace_threads_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_threads_wait.h cvs rdiff -u -r1.187 -r1.188 src/tests/lib/libc/sys/t_ptrace_wait.c cvs rdiff -u -r1.27 -r1.28 src/tests/lib/libc/sys/t_ptrace_wait.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 00:57:34 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_siginfo_wait.h Log Message: Move siginfo tests out of t_ptrace_wait.c to t_ptrace_siginfo_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_siginfo_wait.h cvs rdiff -u -r1.188 -r1.189 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 01:24:29 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_core_wait.h Log Message: Move core tests out of t_ptrace_wait.c to t_ptrace_core_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_core_wait.h cvs rdiff -u -r1.189 -r1.190 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: ginsbach Date: Tue May 5 01:28:17 UTC 2020 Modified Files: src/share/misc: acronyms.comp Log Message: Add OWASP To generate a diff of this commit: cvs rdiff -u -r1.302 -r1.303 src/share/misc/acronyms.comp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: kamil Date: Tue May 5 02:06:08 UTC 2020 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Added Files: src/tests/lib/libc/sys: t_ptrace_misc_wait.h Log Message: Move misc tests out of t_ptrace_wait.c to t_ptrace_misc_wait.h The same tests are now included with the preprocessor in t_ptrace_wait.c. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/sys/t_ptrace_misc_wait.h cvs rdiff -u -r1.190 -r1.191 src/tests/lib/libc/sys/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch/hppa
Module Name:src Committed By: skrll Date: Tue May 5 06:06:17 UTC 2020 Modified Files: src/lib/libc/arch/hppa: SYS.h Log Message: Remove unnecesary #define/#undef _LOCORE To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libc/arch/hppa/SYS.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/compat/arch/hppa/sys
Module Name:src Committed By: skrll Date: Tue May 5 06:11:06 UTC 2020 Modified Files: src/lib/libc/compat/arch/hppa/sys: compat_sigpending.S compat_sigprocmask.S compat_sigreturn.S compat_sigsuspend.S Log Message: Use the delay slot To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 \ src/lib/libc/compat/arch/hppa/sys/compat_sigpending.S \ src/lib/libc/compat/arch/hppa/sys/compat_sigprocmask.S \ src/lib/libc/compat/arch/hppa/sys/compat_sigreturn.S \ src/lib/libc/compat/arch/hppa/sys/compat_sigsuspend.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc
Module Name:src Committed By: skrll Date: Tue May 5 06:20:55 UTC 2020 Modified Files: src/lib/libc/arch/hppa/gen: __setjmp14.S _setjmp.S swapcontext.S src/lib/libc/arch/hppa/string: bcmp.S bzero.S ffs.S strlcpy.S src/lib/libc/arch/hppa/sys: __clone.S __sigtramp2.S __vfork14.S brk.S cerror.S fork.S getcontext.S pipe.S sbrk.S src/lib/libc/compat/arch/hppa/sys: compat_Ovfork.S Log Message: Add a space before any non-nullified instruction. NFCI. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libc/arch/hppa/gen/__setjmp14.S cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/hppa/gen/_setjmp.S cvs rdiff -u -r1.6 -r1.7 src/lib/libc/arch/hppa/gen/swapcontext.S cvs rdiff -u -r1.2 -r1.3 src/lib/libc/arch/hppa/string/bcmp.S cvs rdiff -u -r1.3 -r1.4 src/lib/libc/arch/hppa/string/bzero.S cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/hppa/string/ffs.S \ src/lib/libc/arch/hppa/string/strlcpy.S cvs rdiff -u -r1.6 -r1.7 src/lib/libc/arch/hppa/sys/__clone.S \ src/lib/libc/arch/hppa/sys/sbrk.S cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/hppa/sys/__sigtramp2.S \ src/lib/libc/arch/hppa/sys/cerror.S \ src/lib/libc/arch/hppa/sys/getcontext.S cvs rdiff -u -r1.7 -r1.8 src/lib/libc/arch/hppa/sys/__vfork14.S \ src/lib/libc/arch/hppa/sys/brk.S cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/hppa/sys/fork.S cvs rdiff -u -r1.3 -r1.4 src/lib/libc/arch/hppa/sys/pipe.S cvs rdiff -u -r1.2 -r1.3 src/lib/libc/compat/arch/hppa/sys/compat_Ovfork.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amd64/amd64
Module Name:src Committed By: maxv Date: Tue May 5 06:32:43 UTC 2020 Modified Files: src/sys/arch/amd64/amd64: locore.S Log Message: Fix KASAN, init_xen_early must be called after kasan_early_init. To generate a diff of this commit: cvs rdiff -u -r1.207 -r1.208 src/sys/arch/amd64/amd64/locore.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.