CVS commit: src/external/bsd/tcpdump/dist
Module Name:src Committed By: martin Date: Wed Jan 25 08:14:07 UTC 2017 Modified Files: src/external/bsd/tcpdump/dist: util-print.c Log Message: toupper() takes an unsigned char. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tcpdump/dist/util-print.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tcpdump/dist
Module Name:src Committed By: martin Date: Wed Jan 25 08:20:15 UTC 2017 Modified Files: src/external/bsd/tcpdump/dist: print-ip.c Log Message: Add missing argument To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/tcpdump/dist/print-ip.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Wed Jan 25 11:44:55 UTC 2017 Modified Files: src/lib/libcurses: curses.3 Log Message: Reference curses_slk(3). To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 src/lib/libcurses/curses.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Wed Jan 25 12:00:57 UTC 2017 Modified Files: src/lib/libcurses: curses.3 Log Message: Document recently added functions in curses.3 To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/lib/libcurses/curses.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Wed Jan 25 12:05:26 UTC 2017 Modified Files: src/lib/libcurses: curses.3 Log Message: Note the substantial work by others on the curses library. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/lib/libcurses/curses.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Wed Jan 25 12:21:18 UTC 2017 Modified Files: src/lib/libcurses: curses.3 Log Message: And more functions To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/lib/libcurses/curses.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Wed Jan 25 12:42:05 UTC 2017 Modified Files: src/lib/libcurses: curses.3 curses_tty.3 Log Message: Document baudrate(3). To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 src/lib/libcurses/curses.3 cvs rdiff -u -r1.10 -r1.11 src/lib/libcurses/curses_tty.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: sys/external/bsd/acpica/dist
Module Name:sys Committed By: christos Date: Wed Jan 25 13:02:33 UTC 2017 Update of /cvsroot/sys/external/bsd/acpica/dist In directory ivanova.netbsd.org:/tmp/cvs-serv7705 Log Message: 19 January 2017. Summary of changes for version 20170119: This release is available at https://acpica.org/downloads 1) General ACPICA software: Entire source code base: Added the 2017 copyright to all source code legal/licensing module headers and utility/tool signons. This includes the standard Linux dual-license header. This affects virtually every file in the ACPICA core subsystem, iASL compiler, all ACPICA utilities, and the ACPICA test suite. 2) iASL Compiler/Disassembler and Tools: iASL: Removed/fixed an inadvertent remark when a method argument containing a reference is used as a target operand within the method (and never used as a simple argument), as in the example below. Jeffrey Hugo. dsdt.asl 1507:Store(0x1, Arg0) Remark 2146 -^ Method Argument is never used (Arg0) All tools: Removed the bit width of the compiler that generated the tool from the common signon for all user space tools. This proved to be confusing and unnecessary. This includes similar removal of HARDWARE_NAME from the generic makefiles (Thomas Petazzoni). Example below. Old: ASL+ Optimizing Compiler version 20170119-32 ASL+ Optimizing Compiler version 20170119-64 New: ASL+ Optimizing Compiler version 20170119 22 December 2016. Summary of changes for version 20161222: 1) ACPICA kernel-resident subsystem: AML Debugger: Implemented a new mechanism to simplify and enhance debugger integration into all environments, including kernel debuggers and user-space utilities, as well as remote debug services. This mechanism essentially consists of new OSL interfaces to support debugger initialization/termination, as well as wait/notify interfaces to perform the debugger handshake with the host. Lv Zheng. New OSL interfaces: AcpiOsInitializeDebugger (void) AcpiOsTerminateDebugger (void) AcpiOsWaitCommandReady (void) AcpiOsNotifyCommandComplete (void) New OS services layer: osgendbg.c -- Example implementation, and used for AcpiExec Update for Generic Address Space (GAS) support: Although the AccessWidth and/or BitOffset fields of the GAS are not often used, this change now fully supports these fields. This affects the internal support for FADT registers, registers in other ACPI data tables, and the AcpiRead and AcpiWrite public interfaces. Lv Zheng. Sleep support: In order to simplify integration of ACPI sleep for the various host operating systems, a new OSL interface has been introduced. AcpiOsEnterSleep allows the host to perform any required operations before the final write to the sleep control register(s) is performed by ACPICA. Lv Zheng. New OSL interface: AcpiOsEnterSleep(SleepState, RegisterAValue, RegisterBValue) Called from these internal interfaces: AcpiHwLegacySleep AcpiHwExtendedSleep EFI support: Added a very small EFI/ACPICA example application. Provides a simple demo for EFI integration, as well as assisting with resolution of issues related to customer ACPICA/EFI integration. Lv Zheng. See: source/tools/efihello/efihello.c Local C library: Implemented several new functions to enhance ACPICA portability, for environments where these clib functions are not available (such as EFI). Lv Zheng: putchar getchar strpbrk strtok memmove Fixed a regression where occasionally a valid resource descriptor was incorrectly detected as invalid at runtime, and a AE_AML_NO_RESOURCE_END_TAG was returned. Fixed a problem with the recently implemented support that enables control method invocations as Target operands to many ASL operators. Warnings of this form: "Needed type [Reference], found [Processor]" were seen at runtime for some method invocations. Example Code and Data Size: These are the sizes for the OS-independent acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code includes the debug output trace mechanism and has a much larger code and data size. Current Release: Non-Debug Version: 141.5K Code, 58.5K Data, 200.0K Total Debug Version: 201.7K Code, 82.7K Data, 284.4K Total Previous Release: Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total Debug Version: 201.3K Code, 82.7K Data, 284.0K Total 2) iASL Compiler/Disassembler and Tools: Disassembler: Enhanced output by adding the capability to detect and disassemble ASL Switch/Case statements back to the original ASL source code instead of if/else blocks. David Box. AcpiHelp: Split a large file into separate files based upon functionality/purpose. New files are: ahaml.c ahasl.c
CVS import: src/sys/external/bsd/acpica/dist
Module Name:src Committed By: christos Date: Wed Jan 25 13:03:58 UTC 2017 Update of /cvsroot/src/sys/external/bsd/acpica/dist In directory ivanova.netbsd.org:/tmp/cvs-serv20065 Log Message: One more time in the right place... 19 January 2017. Summary of changes for version 20170119: This release is available at https://acpica.org/downloads 1) General ACPICA software: Entire source code base: Added the 2017 copyright to all source code legal/licensing module headers and utility/tool signons. This includes the standard Linux dual-license header. This affects virtually every file in the ACPICA core subsystem, iASL compiler, all ACPICA utilities, and the ACPICA test suite. 2) iASL Compiler/Disassembler and Tools: iASL: Removed/fixed an inadvertent remark when a method argument containing a reference is used as a target operand within the method (and never used as a simple argument), as in the example below. Jeffrey Hugo. dsdt.asl 1507:Store(0x1, Arg0) Remark 2146 -^ Method Argument is never used (Arg0) All tools: Removed the bit width of the compiler that generated the tool from the common signon for all user space tools. This proved to be confusing and unnecessary. This includes similar removal of HARDWARE_NAME from the generic makefiles (Thomas Petazzoni). Example below. Old: ASL+ Optimizing Compiler version 20170119-32 ASL+ Optimizing Compiler version 20170119-64 New: ASL+ Optimizing Compiler version 20170119 22 December 2016. Summary of changes for version 20161222: 1) ACPICA kernel-resident subsystem: AML Debugger: Implemented a new mechanism to simplify and enhance debugger integration into all environments, including kernel debuggers and user-space utilities, as well as remote debug services. This mechanism essentially consists of new OSL interfaces to support debugger initialization/termination, as well as wait/notify interfaces to perform the debugger handshake with the host. Lv Zheng. New OSL interfaces: AcpiOsInitializeDebugger (void) AcpiOsTerminateDebugger (void) AcpiOsWaitCommandReady (void) AcpiOsNotifyCommandComplete (void) New OS services layer: osgendbg.c -- Example implementation, and used for AcpiExec Update for Generic Address Space (GAS) support: Although the AccessWidth and/or BitOffset fields of the GAS are not often used, this change now fully supports these fields. This affects the internal support for FADT registers, registers in other ACPI data tables, and the AcpiRead and AcpiWrite public interfaces. Lv Zheng. Sleep support: In order to simplify integration of ACPI sleep for the various host operating systems, a new OSL interface has been introduced. AcpiOsEnterSleep allows the host to perform any required operations before the final write to the sleep control register(s) is performed by ACPICA. Lv Zheng. New OSL interface: AcpiOsEnterSleep(SleepState, RegisterAValue, RegisterBValue) Called from these internal interfaces: AcpiHwLegacySleep AcpiHwExtendedSleep EFI support: Added a very small EFI/ACPICA example application. Provides a simple demo for EFI integration, as well as assisting with resolution of issues related to customer ACPICA/EFI integration. Lv Zheng. See: source/tools/efihello/efihello.c Local C library: Implemented several new functions to enhance ACPICA portability, for environments where these clib functions are not available (such as EFI). Lv Zheng: putchar getchar strpbrk strtok memmove Fixed a regression where occasionally a valid resource descriptor was incorrectly detected as invalid at runtime, and a AE_AML_NO_RESOURCE_END_TAG was returned. Fixed a problem with the recently implemented support that enables control method invocations as Target operands to many ASL operators. Warnings of this form: "Needed type [Reference], found [Processor]" were seen at runtime for some method invocations. Example Code and Data Size: These are the sizes for the OS-independent acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code includes the debug output trace mechanism and has a much larger code and data size. Current Release: Non-Debug Version: 141.5K Code, 58.5K Data, 200.0K Total Debug Version: 201.7K Code, 82.7K Data, 284.4K Total Previous Release: Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total Debug Version: 201.3K Code, 82.7K Data, 284.0K Total 2) iASL Compiler/Disassembler and Tools: Disassembler: Enhanced output by adding the capability to detect and disassemble ASL Switch/Case statements back to the original ASL source code instead of if/else blocks. David Box. AcpiHelp: Split a large file into separate files based upon functionality/purpose. New files are: aham
CVS commit: src/sys/dev/pci/ixgbe
Module Name:src Committed By: msaitoh Date: Wed Jan 25 13:08:31 UTC 2017 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Call ixgbe_get_supported_physical_layer() before ixgbe_add_media_types() to set new media types correctly. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 src/sys/dev/pci/ixgbe/ixgbe.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/external/bsd/acpica/dist
Module Name:src Committed By: christos Date: Wed Jan 25 13:38:23 UTC 2017 Modified Files: src/sys/external/bsd/acpica/dist/common: dmtbdump.c dmtbinfo.c src/sys/external/bsd/acpica/dist/compiler: aslanalyze.c aslcompile.c aslcompiler.h aslcompiler.l aslerror.c aslfileio.c aslfiles.c aslload.c asllookup.c aslopcodes.c aslopt.c asloptions.c aslpredef.c aslprepkg.c aslsupport.l asltree.c aslutils.c aslwalks.c aslxref.c dtcompile.c dtfield.c dtparser.y dtsubtable.c dttable.c dtutils.c prparser.y prutils.c src/sys/external/bsd/acpica/dist/debugger: dbcmds.c dbdisply.c dbexec.c dbinput.c dbmethod.c dbnames.c dbtest.c dbutils.c src/sys/external/bsd/acpica/dist/disassembler: dmbuffer.c dmcstyle.c dmresrc.c dmresrcl.c dmresrcl2.c dmwalk.c src/sys/external/bsd/acpica/dist/dispatcher: dscontrol.c dsopcode.c dsutils.c src/sys/external/bsd/acpica/dist/events: evregion.c evrgnini.c evxface.c src/sys/external/bsd/acpica/dist/executer: exconfig.c exdebug.c exdump.c src/sys/external/bsd/acpica/dist/hardware: hwesleep.c hwregs.c hwsleep.c hwxfsleep.c src/sys/external/bsd/acpica/dist/include: acapps.h acdebug.h acdisasm.h acexcep.h acglobal.h acinterp.h aclocal.h acmacros.h acnamesp.h acoutput.h acpiosxf.h acpixf.h acresrc.h actables.h actbl1.h actypes.h acutils.h src/sys/external/bsd/acpica/dist/include/platform: acgcc.h acnetbsd.h src/sys/external/bsd/acpica/dist/namespace: nsaccess.c nsdump.c nseval.c nsinit.c nsrepair2.c nsxfeval.c nsxfname.c src/sys/external/bsd/acpica/dist/os_specific/service_layers: oslinuxtbl.c src/sys/external/bsd/acpica/dist/parser: psopcode.c psopinfo.c src/sys/external/bsd/acpica/dist/resources: rsdump.c rsdumpinfo.c rsutils.c rsxface.c src/sys/external/bsd/acpica/dist/tables: tbdata.c tbfadt.c tbinstal.c tbutils.c tbxface.c tbxfload.c tbxfroot.c src/sys/external/bsd/acpica/dist/tools/acpidump: apfiles.c src/sys/external/bsd/acpica/dist/tools/acpixtract: acpixtract.c src/sys/external/bsd/acpica/dist/utilities: utcache.c utdebug.c utdecode.c uteval.c utglobal.c utmisc.c utmutex.c utobject.c utosi.c utprint.c uttrack.c utuuid.c Log Message: merge conflicts To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/external/bsd/acpica/dist/common/dmtbdump.c cvs rdiff -u -r1.11 -r1.12 src/sys/external/bsd/acpica/dist/common/dmtbinfo.c cvs rdiff -u -r1.7 -r1.8 \ src/sys/external/bsd/acpica/dist/compiler/aslanalyze.c \ src/sys/external/bsd/acpica/dist/compiler/aslcompiler.l \ src/sys/external/bsd/acpica/dist/compiler/aslfiles.c \ src/sys/external/bsd/acpica/dist/compiler/asllookup.c \ src/sys/external/bsd/acpica/dist/compiler/aslprepkg.c \ src/sys/external/bsd/acpica/dist/compiler/asltree.c \ src/sys/external/bsd/acpica/dist/compiler/dtcompile.c \ src/sys/external/bsd/acpica/dist/compiler/dtfield.c \ src/sys/external/bsd/acpica/dist/compiler/dtutils.c \ src/sys/external/bsd/acpica/dist/compiler/prutils.c cvs rdiff -u -r1.9 -r1.10 \ src/sys/external/bsd/acpica/dist/compiler/aslcompile.c cvs rdiff -u -r1.6 -r1.7 \ src/sys/external/bsd/acpica/dist/compiler/aslcompiler.h \ src/sys/external/bsd/acpica/dist/compiler/aslerror.c \ src/sys/external/bsd/acpica/dist/compiler/aslfileio.c \ src/sys/external/bsd/acpica/dist/compiler/aslload.c \ src/sys/external/bsd/acpica/dist/compiler/aslopcodes.c \ src/sys/external/bsd/acpica/dist/compiler/aslpredef.c \ src/sys/external/bsd/acpica/dist/compiler/aslsupport.l \ src/sys/external/bsd/acpica/dist/compiler/aslwalks.c \ src/sys/external/bsd/acpica/dist/compiler/dtsubtable.c cvs rdiff -u -r1.2 -r1.3 src/sys/external/bsd/acpica/dist/compiler/aslopt.c \ src/sys/external/bsd/acpica/dist/compiler/asloptions.c cvs rdiff -u -r1.15 -r1.16 \ src/sys/external/bsd/acpica/dist/compiler/aslutils.c cvs rdiff -u -r1.8 -r1.9 src/sys/external/bsd/acpica/dist/compiler/aslxref.c \ src/sys/external/bsd/acpica/dist/compiler/dtparser.y \ src/sys/external/bsd/acpica/dist/compiler/dttable.c \ src/sys/external/bsd/acpica/dist/compiler/prparser.y cvs rdiff -u -r1.10 -r1.11 src/sys/external/bsd/acpica/dist/debugger/dbcmds.c \ src/sys/external/bsd/acpica/dist/debugger/dbutils.c cvs rdiff -u -r1.11 -r1.12 \ src/sys/external/bsd/acpica/dist/debugger/dbdisply.c \ src/sys/external/bsd/acpica/dist/debugger/dbexec.c cvs rdiff -u -r1.12 -r1.13 \ src/sys/external/bsd/acpica/dist/debugger/dbinput.c cvs rdiff -u -r1.7 -r1.8 src/sys/external/bsd/acpica/dist/debugger/dbmethod.c \ src/sys/external/bsd/acpica/dist/debugger/dbnames.c cvs rdiff -u -r1.5 -r1.6 src/sys/external/bsd/acpica/dist
CVS commit: src/sys/dev/acpi/acpica
Module Name:src Committed By: christos Date: Wed Jan 25 13:38:40 UTC 2017 Modified Files: src/sys/dev/acpi/acpica: OsdMisc.c Log Message: implement new interfaces To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/acpi/acpica/OsdMisc.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: christos Date: Wed Jan 25 13:43:58 UTC 2017 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new acpica To generate a diff of this commit: cvs rdiff -u -r1.1401 -r1.1402 src/doc/3RDPARTY cvs rdiff -u -r1.2238 -r1.2239 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/external/bsd/tcpdump/dist
Module Name:src Committed By: christos Date: Wed Jan 25 14:46:16 UTC 2017 Modified Files: src/external/bsd/tcpdump/dist: netdissect-stdinc.h Log Message: - don't use their ntoh{l,s}/hton{l,s} implementation - fix their ntohl/htonl implementations to use unsigned int instead of unsigned long so they work on _LP64. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 \ src/external/bsd/tcpdump/dist/netdissect-stdinc.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/rasops
Module Name:src Committed By: jakllsch Date: Wed Jan 25 14:53:43 UTC 2017 Modified Files: src/sys/dev/rasops: rasops15.c Log Message: Add rasops15_putchar_aa() for greyscale fonts. Based on rasops8_putchar_aa() and rasops32_putchar_aa(). To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/dev/rasops/rasops15.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/wscons
Module Name:src Committed By: jakllsch Date: Wed Jan 25 15:40:31 UTC 2017 Modified Files: src/sys/dev/wscons: wsdisplay.c Log Message: Double size of WSDISPLAYIO_SFONT name buffer to 32 characters. We've got a font known as "DejaVu Sans Mono", and that is 17 bytes by the time it's NUL terminated. To generate a diff of this commit: cvs rdiff -u -r1.140 -r1.141 src/sys/dev/wscons/wsdisplay.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jakllsch Date: Wed Jan 25 15:51:07 UTC 2017 Modified Files: src/sys/dev/ic: igsfb.c Log Message: igsfb(4): use WSDISPLAY_BORDER_COLOR for overscan color To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/sys/dev/ic/igsfb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jakllsch Date: Wed Jan 25 16:11:54 UTC 2017 Modified Files: src/sys/dev/ic: igsfb.c Log Message: Map coprocessor registers before igsfb_hw_setup(), they are needed for setting up the video mode. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/sys/dev/ic/igsfb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/kernel
Module Name:src Committed By: kamil Date: Wed Jan 25 17:01:57 UTC 2017 Modified Files: src/tests/kernel: t_ptrace_wait.c Log Message: Add io_read_auxv1 in t_ptrace_wait{,3,4,6,id,pid} io_read_auxv1: Verify PT_READ_AUXV called for tracee Sponsored by To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.61 src/tests/kernel/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/sys
Module Name:src Committed By: kamil Date: Wed Jan 25 17:12:56 UTC 2017 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Make the PIOD_READ_AUXV operation more clear Describe how to set piod_offs. Sponsored by To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/lib/libc/sys/ptrace.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jakllsch Date: Wed Jan 25 17:31:55 UTC 2017 Modified Files: src/sys/dev/ic: igsfb.c igsfb_subr.c Log Message: Improve/fix igsfb(4) support for 15BPP. Use howmany(depth, NBBY) instead of (depth >> 3), so that 15 bits maps to 2 bytes instead of 1. While here, in a nearly-identical change, don't hard-code 8BPP into the CyberPro blitter. To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 src/sys/dev/ic/igsfb.c cvs rdiff -u -r1.12 -r1.13 src/sys/dev/ic/igsfb_subr.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: christos Date: Wed Jan 25 17:55:47 UTC 2017 Modified Files: src/sys/kern: core_elf32.c sys_ptrace_common.c Log Message: PR/51916: Kamil Rytarowski: Don't multiply es_arglen with ptrsz since it is already in bytes and contains the maximum possible size: ELF_AUX_ENTRIES * sizeof(auxv) + MAXPATHLEN + ALIGN To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/sys/kern/core_elf32.c cvs rdiff -u -r1.10 -r1.11 src/sys/kern/sys_ptrace_common.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: christos Date: Wed Jan 25 17:57:14 UTC 2017 Modified Files: src/sys/kern: kern_exec.c Log Message: es_arglen is already in bytes... To generate a diff of this commit: cvs rdiff -u -r1.440 -r1.441 src/sys/kern/kern_exec.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: christos Date: Wed Jan 25 17:56:45 UTC 2017 Modified Files: src/sys/kern: exec_elf32.c exec_elf64.c Log Message: The argument length is in bytes; don't use howmany() To generate a diff of this commit: cvs rdiff -u -r1.141 -r1.142 src/sys/kern/exec_elf32.c cvs rdiff -u -r1.6 -r1.7 src/sys/kern/exec_elf64.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat/netbsd32
Module Name:src Committed By: jakllsch Date: Wed Jan 25 21:45:39 UTC 2017 Modified Files: src/sys/compat/netbsd32: netbsd32_exec.h Log Message: Catch netbsd32_copyargs() up to changes in r1.441 src/sys/kern/kern_exec.c To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/compat/netbsd32/netbsd32_exec.h 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: kamil Date: Thu Jan 26 01:04:24 UTC 2017 Modified Files: src/doc: TODO.ptrace Log Message: Update TODO.ptrace Drop: - add ATF tests for PIOD_READ_AUXV Add new entry: - research what happens when a tracee masks signals (including SIGTRAP) and a breakpoint is triggered Sponsored by To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/doc/TODO.ptrace 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: kamil Date: Thu Jan 26 01:12:13 UTC 2017 Modified Files: src/doc: TODO.ptrace Log Message: Update TODO.ptrace Added: - reiterate over FreeBSD tests and add missing ones if applicable Sponsored by To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/doc/TODO.ptrace Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/modules/compat_netbsd32
Module Name:src Committed By: christos Date: Thu Jan 26 01:32:34 UTC 2017 Modified Files: src/sys/modules/compat_netbsd32: Makefile Log Message: Define MODULAR so we can have syscalls autoload after the module autoloads. XXX: This is toxic, and currently caused LOCKDEBUG crashes. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/modules/compat_netbsd32/Makefile 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/x86
Module Name:src Committed By: nonaka Date: Thu Jan 26 01:35:51 UTC 2017 Modified Files: src/sys/arch/x86/x86: efi.c Log Message: Fix compile failure on i386 with PAE. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/x86/x86/efi.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/x86
Module Name:src Committed By: nonaka Date: Thu Jan 26 01:36:35 UTC 2017 Modified Files: src/sys/arch/x86/x86: x86_machdep.c Log Message: Fix compile failure on i386 with DEBUG_MEMLOAD. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/arch/x86/x86/x86_machdep.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: christos Date: Thu Jan 26 03:54:01 UTC 2017 Modified Files: src/sys/kern: sys_ptrace_common.c Log Message: don't return early holding a lock! To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/kern/sys_ptrace_common.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: christos Date: Thu Jan 26 03:54:54 UTC 2017 Modified Files: src/sys/kern: kern_proc.c Log Message: always compile in the COMPAT32 code; it is tiny and if we don't it breaks the modules. To generate a diff of this commit: cvs rdiff -u -r1.199 -r1.200 src/sys/kern/kern_proc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pad
Module Name:src Committed By: nat Date: Thu Jan 26 04:10:27 UTC 2017 Modified Files: src/sys/dev/pad: pad.c Log Message: Don't hold the thread_lock between successive calls to sc_intr as it breaks mixing. This will help passing the atf test. Changes to audio.c to ensue this will be in a followup commit. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/pad/pad.c 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: christos Date: Thu Jan 26 04:11:56 UTC 2017 Modified Files: src/sys/kern: kern_lock.c kern_mutex.c kern_rwlock.c subr_lockdebug.c src/sys/sys: lockdebug.h Log Message: For LOCKDEBUG: Always provide the location of the caller of the lock as __func__, __LINE__. To generate a diff of this commit: cvs rdiff -u -r1.157 -r1.158 src/sys/kern/kern_lock.c cvs rdiff -u -r1.63 -r1.64 src/sys/kern/kern_mutex.c cvs rdiff -u -r1.45 -r1.46 src/sys/kern/kern_rwlock.c cvs rdiff -u -r1.54 -r1.55 src/sys/kern/subr_lockdebug.c cvs rdiff -u -r1.14 -r1.15 src/sys/sys/lockdebug.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
Module Name:src Committed By: nat Date: Thu Jan 26 04:15:38 UTC 2017 Modified Files: src/sys/dev: audio.c Log Message: Use sc_pr the mixing ring in full not just the first block. Audio will pass the atf test again. To generate a diff of this commit: cvs rdiff -u -r1.296 -r1.297 src/sys/dev/audio.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: pgoyette Date: Thu Jan 26 04:24:20 UTC 2017 Modified Files: src/doc: TODO.modules Log Message: Add comment about possibly prompting for "release" portion of module path at boot-loader time. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/doc/TODO.modules 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: martin Date: Thu Jan 26 07:54:05 UTC 2017 Modified Files: src/sys/kern: kern_proc.c Log Message: No COMPAT_NETBSD32 for rump To generate a diff of this commit: cvs rdiff -u -r1.200 -r1.201 src/sys/kern/kern_proc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.