CVS commit: [netbsd-6] src
Module Name:src Committed By: msaitoh Date: Fri Apr 11 08:31:56 UTC 2014 Modified Files: src/distrib/evbppc/md-kernel [netbsd-6]: Makefile src/sys/arch/evbppc/compile [netbsd-6]: walnut-mkimg.sh src/sys/arch/evbppc/conf [netbsd-6]: Makefile.ev64260.inc Makefile.obs405.inc Makefile.walnut.inc Log Message: Pull up following revision(s) (requested by joerg in ticket #1035): distrib/evbppc/md-kernel/Makefile 1.4 sys/arch/evbppc/compile/walnut-mkimg.sh 1.5 sys/arch/evbppc/conf/Makefile.ev64260.inc 1.6-1.7 sys/arch/evbppc/conf/Makefile.obs405.inc1.10-1.11 sys/arch/evbppc/conf/Makefile.walnut.inc1.7-1.8 Use TOOL_* for cross compiling. Fixes buiild break on linux. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.46.1 src/distrib/evbppc/md-kernel/Makefile cvs rdiff -u -r1.4 -r1.4.14.1 src/sys/arch/evbppc/compile/walnut-mkimg.sh cvs rdiff -u -r1.5 -r1.5.14.1 src/sys/arch/evbppc/conf/Makefile.ev64260.inc cvs rdiff -u -r1.6 -r1.6.14.1 src/sys/arch/evbppc/conf/Makefile.obs405.inc cvs rdiff -u -r1.6 -r1.6.2.1 src/sys/arch/evbppc/conf/Makefile.walnut.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/wscons
Module Name:src Committed By: msaitoh Date: Fri Apr 11 08:38:07 UTC 2014 Modified Files: src/sys/dev/wscons [netbsd-6]: mra.c Log Message: Pull up following revision(s) (requested by khorben in ticket #1037): sys/dev/wscons/mra.c1.6 Fixed wrong cast and invalid array access in the calibration framework, as documented in PR kern/45872. The AA() macro accessed sample coordinates as long integers, whereas they are really stored as signed integers. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.94.1 src/sys/dev/wscons/mra.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/acpi
Module Name:src Committed By: msaitoh Date: Fri Apr 11 08:45:18 UTC 2014 Modified Files: src/sys/dev/acpi [netbsd-6]: thinkpad_acpi.c Log Message: Pull up following revision(s) (requested by riastradh in ticket #1039): sys/dev/acpi/thinkpad_acpi.c: revision 1.42 Match LEN0068 in thinkpad(4) too, as newer Thinkpads report. Tested on a W530. Lots of stuff is missing, though. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.39.8.1 src/sys/dev/acpi/thinkpad_acpi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/netinet
Module Name:src Committed By: msaitoh Date: Fri Apr 11 08:52:14 UTC 2014 Modified Files: src/sys/netinet [netbsd-6]: ip_carp.c Log Message: Pull up following revision(s) (requested by bouyer in ticket #1043): sys/netinet/ip_carp.c: revision 1.53 Proper MBUFTRACE handling. Without it, ec_tx_mowner, ec_rx_mowner and ifp->if_mowner would be used uninitialised. To generate a diff of this commit: cvs rdiff -u -r1.47.4.1 -r1.47.4.2 src/sys/netinet/ip_carp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/distrib/sets/lists/comp
Module Name:src Committed By: msaitoh Date: Fri Apr 11 10:59:02 UTC 2014 Modified Files: src/distrib/sets/lists/comp [netbsd-6]: md.amd64 shl.mi Log Message: Pull up following revision(s) (requested by htodd in ticket #1046): distrib/sets/lists/comp/md.amd64patch distrib/sets/lists/comp/shl.mi patch Fix MKDEBUG=yes build problem. To generate a diff of this commit: cvs rdiff -u -r1.155.2.11 -r1.155.2.12 src/distrib/sets/lists/comp/md.amd64 cvs rdiff -u -r1.209.2.15 -r1.209.2.16 src/distrib/sets/lists/comp/shl.mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: msaitoh Date: Fri Apr 11 11:02:16 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1035, 1037, 1039, 1043 and 1046. To generate a diff of this commit: cvs rdiff -u -r1.1.2.102 -r1.1.2.103 src/doc/CHANGES-6.2 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: uebayasi Date: Fri Apr 11 11:11:06 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Try to decrypt stack size calculation code in execve_loadvm(). No functional changes. Two potential miscalculations remain. To generate a diff of this commit: cvs rdiff -u -r1.378 -r1.379 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: uebayasi Date: Fri Apr 11 11:21:29 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Protect not only proc::p_flag but also lwp::l_ctxlink and proc::p_acflag with proc:p_lock. To generate a diff of this commit: cvs rdiff -u -r1.379 -r1.380 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: uebayasi Date: Fri Apr 11 11:32:15 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Clean up assertions. To generate a diff of this commit: cvs rdiff -u -r1.380 -r1.381 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: uebayasi Date: Fri Apr 11 11:49:38 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Clarify stack size calculation in copyargs(). Comments. To generate a diff of this commit: cvs rdiff -u -r1.381 -r1.382 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/external/bsd/libevent/man
Module Name:src Committed By: christos Date: Fri Apr 11 13:18:35 UTC 2014 Modified Files: src/external/bsd/libevent/man: Makefile Log Message: oops missed one instance of fixman To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/libevent/man/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: christos Date: Fri Apr 11 15:56:09 UTC 2014 Modified Files: src/share/mk: bsd.lib.mk Log Message: explain what's going on, add another kludge for -g To generate a diff of this commit: cvs rdiff -u -r1.351 -r1.352 src/share/mk/bsd.lib.mk 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/allwinner
Module Name:src Committed By: matt Date: Fri Apr 11 16:32:38 UTC 2014 Modified Files: src/sys/arch/arm/allwinner: awin_board.c Log Message: whitespace cleanup To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/allwinner/awin_board.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/arm/cortex
Module Name:src Committed By: matt Date: Fri Apr 11 16:32:12 UTC 2014 Modified Files: src/sys/arch/arm/cortex: a9_mpsubr.S Log Message: whitespace cleanup To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/cortex/a9_mpsubr.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/arm/arm32
Module Name:src Committed By: matt Date: Fri Apr 11 16:34:29 UTC 2014 Modified Files: src/sys/arch/arm/arm32: locore.S Log Message: whitespace cleanup To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/arch/arm/arm32/locore.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: matt Date: Fri Apr 11 16:51:43 UTC 2014 Modified Files: src/share/mk: bsd.lib.mk Log Message: Back changes from 1.349 on since the -Wl,-x bug has been fixed in binutils. To generate a diff of this commit: cvs rdiff -u -r1.352 -r1.353 src/share/mk/bsd.lib.mk 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: uebayasi Date: Fri Apr 11 17:06:02 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: execve_runproc: Reorder a few local vars. Avoid reuse. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.382 -r1.383 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: uebayasi Date: Fri Apr 11 17:28:24 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: execve_runproc: The stack address passed to the newly execve()'ed process, via the 3rd register argument, always points to the stack base address (== minsaddr (min stack address) + ssize (stack size)). Clarify that. To generate a diff of this commit: cvs rdiff -u -r1.383 -r1.384 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/usr.bin/patch
Module Name:src Committed By: christos Date: Fri Apr 11 17:30:03 UTC 2014 Modified Files: src/usr.bin/patch: backupfile.c Log Message: recognize -V none To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/usr.bin/patch/backupfile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/patch
Module Name:src Committed By: christos Date: Fri Apr 11 17:41:09 UTC 2014 Modified Files: src/usr.bin/patch: patch.1 Log Message: mention -V none To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/usr.bin/patch/patch.1 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: buhrow Date: Fri Apr 11 18:01:13 UTC 2014 Modified Files: src/sys/dev/ic: mpt_netbsd.c Log Message: Fix up some KNF errors. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/dev/ic/mpt_netbsd.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: uebayasi Date: Fri Apr 11 18:02:33 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Reorder a new lines. Comments. To generate a diff of this commit: cvs rdiff -u -r1.384 -r1.385 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: [netbsd-6-0] src/doc
Module Name:src Committed By: snj Date: Fri Apr 11 19:52:38 UTC 2014 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.5 Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-6.0.5 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-1] src/doc
Module Name:src Committed By: snj Date: Fri Apr 11 19:53:19 UTC 2014 Modified Files: src/doc [netbsd-6-1]: CHANGES-6.1.4 Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-6.1.4 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: uebayasi Date: Sat Apr 12 05:25:23 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: execve_runproc: Unbreak __MACHINE_STACK_GROWS_UP machines. Clarify the stack address allocation code. Summarize an awful big comment about the _rtld() "gap". (The log message in Rev. 1.384 was wrong; the new stack address is passed not via the 3rd register argument, but via the SP. The 3rd is for ps_strings.) To generate a diff of this commit: cvs rdiff -u -r1.385 -r1.386 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: uebayasi Date: Sat Apr 12 06:31:27 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: execve_runproc: Move a long code block handling credential into a separate function. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.386 -r1.387 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.