CVS commit: src/lib/libcurses
Module Name:src Committed By: roy Date: Mon Jan 2 08:44:12 UTC 2017 Modified Files: src/lib/libcurses: line.c Log Message: Whitespace To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/lib/libcurses/line.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/vmstat
Module Name:src Committed By: pgoyette Date: Mon Jan 2 09:24:55 UTC 2017 Modified Files: src/usr.bin/vmstat: vmstat.c Log Message: Use appropriate PRI* format specifiers for fixed-bit-size numbers Should fix i386 build. To generate a diff of this commit: cvs rdiff -u -r1.211 -r1.212 src/usr.bin/vmstat/vmstat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netinet
Module Name:src Committed By: skrll Date: Mon Jan 2 09:29:38 UTC 2017 Modified Files: src/sys/netinet: tcp_congctl.c Log Message: Restore behaviour to pre- tcp_congctl.c:1.18 for SACK. Further analysis of the change is required. OK kefren@ PR/51753 tcp SACK causes SSH disconnect To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/netinet/tcp_congctl.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/man9
Module Name:src Committed By: wiz Date: Mon Jan 2 09:53:04 UTC 2017 Modified Files: src/share/man/man9: bus_dma.9 Log Message: More macros, whitespace. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/share/man/man9/bus_dma.9 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: roy Date: Mon Jan 2 10:28:35 UTC 2017 Modified Files: src/distrib/sets/lists/comp: mi src/lib/libcurses: Makefile addbytes.c clrtobot.c clrtoeol.c curses.h curses_private.h curses_refresh.3 curses_touch.3 delch.c ins_wch.c ins_wstr.c insdelln.c insstr.c line.c touchwin.c Added Files: src/lib/libcurses: immedok.c syncok.c Log Message: Implement POSIX Curses functions immedok(3) and syncok(3). To generate a diff of this commit: cvs rdiff -u -r1.2088 -r1.2089 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.76 -r1.77 src/lib/libcurses/Makefile cvs rdiff -u -r1.44 -r1.45 src/lib/libcurses/addbytes.c cvs rdiff -u -r1.22 -r1.23 src/lib/libcurses/clrtobot.c \ src/lib/libcurses/delch.c cvs rdiff -u -r1.26 -r1.27 src/lib/libcurses/clrtoeol.c cvs rdiff -u -r1.112 -r1.113 src/lib/libcurses/curses.h cvs rdiff -u -r1.53 -r1.54 src/lib/libcurses/curses_private.h cvs rdiff -u -r1.11 -r1.12 src/lib/libcurses/curses_refresh.3 cvs rdiff -u -r1.8 -r1.9 src/lib/libcurses/curses_touch.3 \ src/lib/libcurses/ins_wstr.c cvs rdiff -u -r0 -r1.1 src/lib/libcurses/immedok.c src/lib/libcurses/syncok.c cvs rdiff -u -r1.7 -r1.8 src/lib/libcurses/ins_wch.c src/lib/libcurses/line.c cvs rdiff -u -r1.16 -r1.17 src/lib/libcurses/insdelln.c cvs rdiff -u -r1.3 -r1.4 src/lib/libcurses/insstr.c cvs rdiff -u -r1.28 -r1.29 src/lib/libcurses/touchwin.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: hannken Date: Mon Jan 2 10:33:28 UTC 2017 Modified Files: src/distrib/sets/lists/comp: mi src/share/man/man9: Makefile vnode.9 vnsubr.9 src/sys/kern: vfs_cache.c vfs_mount.c vfs_subr.c vfs_vnode.c src/sys/miscfs/specfs: spec_vnops.c src/sys/sys: param.h vnode.h vnode_impl.h Log Message: Rename vget() to vcache_vget() and vcache_tryvget() respectively and move the definitions to sys/vnode_impl.h. No functional change intended. Welcome to 7.99.54 To generate a diff of this commit: cvs rdiff -u -r1.2089 -r1.2090 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.399 -r1.400 src/share/man/man9/Makefile cvs rdiff -u -r1.73 -r1.74 src/share/man/man9/vnode.9 cvs rdiff -u -r1.43 -r1.44 src/share/man/man9/vnsubr.9 cvs rdiff -u -r1.110 -r1.111 src/sys/kern/vfs_cache.c cvs rdiff -u -r1.42 -r1.43 src/sys/kern/vfs_mount.c cvs rdiff -u -r1.452 -r1.453 src/sys/kern/vfs_subr.c cvs rdiff -u -r1.65 -r1.66 src/sys/kern/vfs_vnode.c cvs rdiff -u -r1.167 -r1.168 src/sys/miscfs/specfs/spec_vnops.c cvs rdiff -u -r1.520 -r1.521 src/sys/sys/param.h cvs rdiff -u -r1.267 -r1.268 src/sys/sys/vnode.h cvs rdiff -u -r1.4 -r1.5 src/sys/sys/vnode_impl.h 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: hannken Date: Mon Jan 2 10:35:00 UTC 2017 Modified Files: src/sys/kern: vfs_vnode.c Log Message: Change vcache_*vget() to increment v_usecount on success only. Increment v_holdcnt to prevent the vnode from disappearing while vcache_vget() waits for a stable state. Now v_usecount tracks the number of successfull references. To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 src/sys/kern/vfs_vnode.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: hannken Date: Mon Jan 2 10:36:58 UTC 2017 Modified Files: src/sys/kern: vfs_vnode.c Log Message: Now that v_usecount tracks valid references add some "v_usecount == 1" assertions. To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/sys/kern/vfs_vnode.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: roy Date: Mon Jan 2 12:38:16 UTC 2017 Modified Files: src/distrib/sets/lists/base: shl.mi src/lib/libcurses: fileio.h shlib_version Log Message: Bump libcurses to 7.1 for prior additions. To generate a diff of this commit: cvs rdiff -u -r1.795 -r1.796 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.3 -r1.4 src/lib/libcurses/fileio.h cvs rdiff -u -r1.41 -r1.42 src/lib/libcurses/shlib_version 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: alnsn Date: Mon Jan 2 14:28:29 UTC 2017 Modified Files: src/sys/dev: cgd_crypto.c cgd_crypto.h Log Message: Replace numeric block sizes with symbolic names, No functional change. Requested by mrg a couple of months ago. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/dev/cgd_crypto.c cvs rdiff -u -r1.9 -r1.10 src/sys/dev/cgd_crypto.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/usr.bin
Module Name:src Committed By: christos Date: Mon Jan 2 15:40:09 UTC 2017 Modified Files: src/tests/usr.bin: Makefile Added Files: src/tests/usr.bin/mixerctl: Makefile t_mixerctl.sh Log Message: mixerctl tests from Charlotte Koch To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/tests/usr.bin/Makefile cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/mixerctl/Makefile \ src/tests/usr.bin/mixerctl/t_mixerctl.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/tests
Module Name:src Committed By: christos Date: Mon Jan 2 15:41:09 UTC 2017 Modified Files: src/distrib/sets/lists/tests: mi Log Message: Add mixerctl tests To generate a diff of this commit: cvs rdiff -u -r1.710 -r1.711 src/distrib/sets/lists/tests/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/external/bsd/flex/dist
Module Name:src Committed By: christos Date: Mon Jan 2 16:26:36 UTC 2017 Update of /cvsroot/src/external/bsd/flex/dist In directory ivanova.netbsd.org:/tmp/cvs-serv23495 Log Message: 2016-12-30 Will Estes * NEWS: doc: update NEWS for 2.6.3 release 2016-11-26 Explorer09 * configure.ac, src/Makefile.am: build: New configure option '--disable-bootstrap'. If configure is run with '--disable-bootstrap', then stage1flex won't be built and stage1scan.c will be generated by sed'ing scan.c. This option is intended to workaround bootstrap bugs rather than to fix the bootstrapping issues which are proving subtler and harder to fix than anyone would like. 2016-11-26 Explorer09 * src/Makefile.am: build: "make clean" deletes stage1scan.c, stage1flex 2016-11-26 Explorer09 * configure.ac, src/Makefile.am: build: allow building libfl even with --disable-libfl. For various reasons, we may wish to build libfl explicitly even when configure has been run with the --disable-libfl option. This is possible, now, via 'make -C src libfl.la'. 2016-12-19 Alexis La Goutte * src/flex.skl: scanner: remove trailing whitespace in skeleton 2016-12-01 Demi Obenour * src/buf.c, src/main.c, src/parse.y: scanner: Disallow, overquote '[' and ']' in prefix 2016-12-29 Samuel Thibault * src/main.c: scanner: allocate correct buffer size for m4 path. Flex did not check the length of the m4 path which could lead to a buffer overflow in some cases. Additionally, not all platforms believe in PATH_MAX, so stop relying on it. Fixes #138 2016-11-24 Will Estes * NEWS: doc: note no more libcompat in NEWS 2016-11-24 Will Estes * lib/Makefile.am: build: explain empty lib/Makefile.am 2016-11-20 Explorer09 * configure.ac: build: warn about cross compiling with *alloc 2016-11-19 Explorer09 * configure.ac, lib/Makefile.am, lib/lib.c, src/Makefile.am: build: Link $(LIBOBJS) from src/ dir, remove libcompat.la. The libcompat.la library was small and less friendly to bootstrapping and cross compilation. Now, we will simply link individual object files as needed, which is simpler. 2016-11-16 Explorer09 * src/Makefile.am: build: Let stage1flex respect LFLAGS 2016-11-14 Will Estes * NEWS: doc: describe --disable-libfl in NEWS 2016-10-31 Explorer09 * configure.ac, src/Makefile.am: build: Add --disable-libfl configure option. Disabling libfl is useful when building flex for a cross-toolchain. Fixes: GH-99 2016-11-09 Demi Obenour * src/flex.skl, tests/array_r.l: fix backwards incompatible changes in 2.6.2. This patch addscompatibility `#defines` for all macros affected by `%prefix`. Fixes #113. 2016-11-08 Will Estes * tests/.gitignore: git: ignore quote_in_comment artifacts 2016-11-08 Demi Obenour * src/scan.l, tests/Makefile.am, tests/quote_in_comment.l, tests/quote_in_comment.txt: Fixes a major bug in Flex's own lexing of literals. My changes caused Flex to mishandle string and character literals in line comments. This commit fixes them. Fixes #113. 2016-11-06 Thomas Klausner * configure.ac: Fix unportable test(1) operator. "==" is only supported by bash, "=" is the standard comparison operator. 2016-11-02 Demi Obenour * tests/quotes.l: Add more escaping tests 2016-11-01 Demi Obenour * src/scan.l: Fix another escaping bug in non-indented verbatim section 2 code. I also did some reformatting. 2016-10-28 Alastair Hughes * configure.ac: build: fix false negatives for help2man and texi2dvi HELP2MAN and TEXI2DVI (or the corresponding ac_prog variables) will never be zero length as they fall back to the missing script; check for the fall back and warn on that instead of always warning. 2016-10-28 Explorer09 * doc/Makefile.am: doc: Don't delete flex.1 during "make distclean". flex.1 is pre-generated in release tarball. If we delete it, the next "configure and make" on the source directory will then require help2man unnecessarily. 2016-10-27 Alastair Hughes * NEWS, doc/Makefile.am: Only regenerate the man page when required. Make the flex binary an order-only prerequisite, and add back the prerequisites from before 7cfb440. This prevents rebuilding the man page whenever the flex binary is rebuilt, which causes problems if help2man is not installed and will never work when cross compiling. Fixes #108. 2016-10-26 Will Estes * NEWS, src/Makefile.am: build: no longer build PIC version of libfl. The PIC version of libfl was not being built correctly. From the lack of bug reports around this problem, we conclude tha
CVS commit: src/sys/compat/linux
Module Name:src Committed By: manu Date: Mon Jan 2 16:32:10 UTC 2017 Modified Files: src/sys/compat/linux/arch/alpha: syscalls.master src/sys/compat/linux/arch/amd64: syscalls.master src/sys/compat/linux/arch/arm: syscalls.master src/sys/compat/linux/arch/i386: syscalls.master src/sys/compat/linux/arch/m68k: syscalls.master src/sys/compat/linux/arch/mips: syscalls.master src/sys/compat/linux/arch/powerpc: syscalls.master src/sys/compat/linux/common: linux_misc.c linux_signal.h Log Message: Add pselect6 Linux system call. This lets Matlab R2016A run on NetBSD/amd64 To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 src/sys/compat/linux/arch/alpha/syscalls.master cvs rdiff -u -r1.57 -r1.58 src/sys/compat/linux/arch/amd64/syscalls.master cvs rdiff -u -r1.64 -r1.65 src/sys/compat/linux/arch/arm/syscalls.master cvs rdiff -u -r1.121 -r1.122 src/sys/compat/linux/arch/i386/syscalls.master cvs rdiff -u -r1.90 -r1.91 src/sys/compat/linux/arch/m68k/syscalls.master cvs rdiff -u -r1.60 -r1.61 src/sys/compat/linux/arch/mips/syscalls.master cvs rdiff -u -r1.69 -r1.70 src/sys/compat/linux/arch/powerpc/syscalls.master cvs rdiff -u -r1.233 -r1.234 src/sys/compat/linux/common/linux_misc.c cvs rdiff -u -r1.30 -r1.31 src/sys/compat/linux/common/linux_signal.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat/linux/arch
Module Name:src Committed By: manu Date: Mon Jan 2 16:32:39 UTC 2017 Modified Files: src/sys/compat/linux/arch/alpha: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/amd64: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/arm: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/i386: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/m68k: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/mips: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/powerpc: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c Log Message: Regen To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 src/sys/compat/linux/arch/alpha/linux_syscall.h \ src/sys/compat/linux/arch/alpha/linux_sysent.c cvs rdiff -u -r1.98 -r1.99 \ src/sys/compat/linux/arch/alpha/linux_syscallargs.h cvs rdiff -u -r1.100 -r1.101 src/sys/compat/linux/arch/alpha/linux_syscalls.c cvs rdiff -u -r1.60 -r1.61 src/sys/compat/linux/arch/amd64/linux_syscall.h \ src/sys/compat/linux/arch/amd64/linux_syscallargs.h \ src/sys/compat/linux/arch/amd64/linux_syscalls.c \ src/sys/compat/linux/arch/amd64/linux_sysent.c cvs rdiff -u -r1.69 -r1.70 src/sys/compat/linux/arch/arm/linux_syscall.h \ src/sys/compat/linux/arch/arm/linux_syscallargs.h \ src/sys/compat/linux/arch/arm/linux_syscalls.c \ src/sys/compat/linux/arch/arm/linux_sysent.c cvs rdiff -u -r1.108 -r1.109 src/sys/compat/linux/arch/i386/linux_syscall.h \ src/sys/compat/linux/arch/i386/linux_syscallargs.h \ src/sys/compat/linux/arch/i386/linux_sysent.c cvs rdiff -u -r1.109 -r1.110 src/sys/compat/linux/arch/i386/linux_syscalls.c cvs rdiff -u -r1.98 -r1.99 src/sys/compat/linux/arch/m68k/linux_syscall.h \ src/sys/compat/linux/arch/m68k/linux_syscalls.c \ src/sys/compat/linux/arch/m68k/linux_sysent.c cvs rdiff -u -r1.97 -r1.98 src/sys/compat/linux/arch/m68k/linux_syscallargs.h cvs rdiff -u -r1.67 -r1.68 src/sys/compat/linux/arch/mips/linux_syscall.h cvs rdiff -u -r1.66 -r1.67 src/sys/compat/linux/arch/mips/linux_syscallargs.h \ src/sys/compat/linux/arch/mips/linux_syscalls.c \ src/sys/compat/linux/arch/mips/linux_sysent.c cvs rdiff -u -r1.76 -r1.77 src/sys/compat/linux/arch/powerpc/linux_syscall.h \ src/sys/compat/linux/arch/powerpc/linux_sysent.c cvs rdiff -u -r1.75 -r1.76 \ src/sys/compat/linux/arch/powerpc/linux_syscallargs.h \ src/sys/compat/linux/arch/powerpc/linux_syscalls.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Jan 2 16:32:23 UTC 2017 Modified Files: src/sys/dev/usb [nick-nhusb]: xhci.c Log Message: Remove unnecessary brackets To generate a diff of this commit: cvs rdiff -u -r1.28.2.78 -r1.28.2.79 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Jan 2 16:39:37 UTC 2017 Modified Files: src/sys/dev/usb [nick-nhusb]: xhcireg.h Log Message: Use lower case for hex constants. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.2.2.8 -r1.2.2.9 src/sys/dev/usb/xhcireg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Jan 2 16:34:40 UTC 2017 Modified Files: src/sys/dev/usb [nick-nhusb]: xhci.c Log Message: Actually print the bus root hub device in debug output To generate a diff of this commit: cvs rdiff -u -r1.28.2.79 -r1.28.2.80 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Jan 2 16:45:30 UTC 2017 Modified Files: src/sys/dev/usb [nick-nhusb]: xhci.c Log Message: Use __func__ in panic message To generate a diff of this commit: cvs rdiff -u -r1.28.2.80 -r1.28.2.81 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Jan 2 16:54:15 UTC 2017 Modified Files: src/sys/dev/usb [nick-nhusb]: xhci.c Log Message: Use %s for __func__... oops To generate a diff of this commit: cvs rdiff -u -r1.28.2.81 -r1.28.2.82 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys
Module Name:src Committed By: skrll Date: Mon Jan 2 16:55:50 UTC 2017 Modified Files: src/sys/arch/arm/nvidia [nick-nhusb]: tegra_xusb.c src/sys/dev/pci [nick-nhusb]: xhci_pci.c src/sys/dev/usb [nick-nhusb]: usb.h xhci.c xhcireg.h xhcivar.h Log Message: Parse the extended capabilies to and log each controller port to SS/HS bus root hub ports. Create/attach the two buses and adapt the xhci_roothub_ctrl to deal with both buses and sets of roothub ports. XXX the roothub ub_devices entry needs work to interact with usbdevs(1) XXX correctly To generate a diff of this commit: cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/arch/arm/nvidia/tegra_xusb.c cvs rdiff -u -r1.4.2.7 -r1.4.2.8 src/sys/dev/pci/xhci_pci.c cvs rdiff -u -r1.111.2.10 -r1.111.2.11 src/sys/dev/usb/usb.h cvs rdiff -u -r1.28.2.82 -r1.28.2.83 src/sys/dev/usb/xhci.c cvs rdiff -u -r1.2.2.9 -r1.2.2.10 src/sys/dev/usb/xhcireg.h cvs rdiff -u -r1.4.12.11 -r1.4.12.12 src/sys/dev/usb/xhcivar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex
Module Name:src Committed By: christos Date: Mon Jan 2 17:45:32 UTC 2017 Modified Files: src/external/bsd/flex: Makefile.inc src/external/bsd/flex/bin: Makefile src/external/bsd/flex/dist/src: FlexLexer.h buf.c ccl.c dfa.c ecs.c filter.c flex.skl flexdef.h gen.c initparse.c initparse.h initscan.c libmain.c main.c misc.c nfa.c options.c options.h parse.y regex.c scan.l scanflags.c scanopt.c scanopt.h sym.c tables.c tables.h tblcmp.c yylex.c src/external/bsd/flex/include: config.h Removed Files: src/external/bsd/flex/dist: INSTALL README TODO src/external/bsd/flex/dist/doc: Makefile flex.pdf mdate-sh texinfo.tex src/external/bsd/flex/dist/examples: Makefile src/external/bsd/flex/dist/examples/fastwc: Makefile src/external/bsd/flex/dist/examples/manual: Makefile src/external/bsd/flex/dist/lib: Makefile lib.c src/external/bsd/flex/dist/lib/.deps: lib.Plo malloc.Po realloc.Po src/external/bsd/flex/dist/po: Makefile Makefile.in POTFILES src/external/bsd/flex/dist/tests: Makefile create-test noansi_nr.l noansi_nr.txt noansi_r.l noansi_r.txt src/external/bsd/flex/dist/tests/TEMPLATE: Makefile Makefile.am Makefile.in parser.y scanner.l test.input src/external/bsd/flex/dist/tests/test-alloc-extra: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-array-nr: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-array-r: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-basic-nr: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-basic-r: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-bison-nr: Makefile Makefile.am Makefile.in main.c parser.y scanner.l test.input src/external/bsd/flex/dist/tests/test-bison-yylloc: Makefile Makefile.am Makefile.in main.c parser.y scanner.l test.input src/external/bsd/flex/dist/tests/test-bison-yylval: Makefile Makefile.am Makefile.in main.c parser.y scanner.l test.input src/external/bsd/flex/dist/tests/test-c++-basic: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-c++-multiple-scanners: Makefile Makefile.am Makefile.in main.cpp scanner-1.l scanner-2.l test.input src/external/bsd/flex/dist/tests/test-c++-yywrap: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-c-cpp-nr: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-c-cpp-r: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-ccl: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-concatenated-options: Makefile Makefile.am Makefile.in src/external/bsd/flex/dist/tests/test-debug-nr: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-debug-r: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-extended: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-header-nr: Makefile Makefile.am Makefile.in main.c scanner.l test.input src/external/bsd/flex/dist/tests/test-header-r: Makefile Makefile.am Makefile.in main.c scanner.l test.input src/external/bsd/flex/dist/tests/test-include-by-buffer: Makefile Makefile.am Makefile.in scanner.l test-1.input test-2.input test-3.input src/external/bsd/flex/dist/tests/test-include-by-push: Makefile Makefile.am Makefile.in scanner.l test-1.input test-2.input test-3.input src/external/bsd/flex/dist/tests/test-include-by-reentrant: Makefile Makefile.am Makefile.in scanner.l test-1.input test-2.input test-3.input src/external/bsd/flex/dist/tests/test-linedir-r: Makefile Makefile.am Makefile.in check-lines.awk main.c scanner.l test.input src/external/bsd/flex/dist/tests/test-lineno-nr: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-lineno-r: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-lineno-trailing: Makefile Makefile.am Makefile.in scanner.l test.input src/external/bsd/flex/dist/tests/test-mem-nr: Makefile Makefile.
CVS commit: src/doc
Module Name:src Committed By: christos Date: Mon Jan 2 17:46:39 UTC 2017 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new flex To generate a diff of this commit: cvs rdiff -u -r1.1388 -r1.1389 src/doc/3RDPARTY cvs rdiff -u -r1.2230 -r1.2231 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/flex/include
Module Name:src Committed By: christos Date: Mon Jan 2 18:15:55 UTC 2017 Modified Files: src/external/bsd/flex/include: config.h Log Message: avoid m4 redefinition To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/flex/include/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex
Module Name:src Committed By: christos Date: Mon Jan 2 18:33:22 UTC 2017 Modified Files: src/external/bsd/flex/bin: Makefile src/external/bsd/flex/dist/src: initscan.c Log Message: fix the scanner build and regen To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/flex/bin/Makefile cvs rdiff -u -r1.3 -r1.4 src/external/bsd/flex/dist/src/initscan.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/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 18:41:18 UTC 2017 Removed Files: src/external/bsd/flex/dist/src: skel.c Log Message: delete the generated skeleton, we generate it all the time. To generate a diff of this commit: cvs rdiff -u -r1.2 -r0 src/external/bsd/flex/dist/src/skel.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/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 19:24:40 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: main.c Log Message: avoid yywrap redefinition To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/flex/dist/src/main.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/linux/arch
Module Name:src Committed By: martin Date: Mon Jan 2 19:54:12 UTC 2017 Modified Files: src/sys/compat/linux/arch/alpha: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/amd64: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c linux_systrace_args.c src/sys/compat/linux/arch/arm: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c linux_systrace_args.c src/sys/compat/linux/arch/i386: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c linux_systrace_args.c src/sys/compat/linux/arch/m68k: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/mips: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c src/sys/compat/linux/arch/powerpc: linux_syscall.h linux_syscallargs.h linux_syscalls.c linux_sysent.c Log Message: Regen (something apparently went wrong in previous) To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 src/sys/compat/linux/arch/alpha/linux_syscall.h \ src/sys/compat/linux/arch/alpha/linux_sysent.c cvs rdiff -u -r1.99 -r1.100 \ src/sys/compat/linux/arch/alpha/linux_syscallargs.h cvs rdiff -u -r1.101 -r1.102 src/sys/compat/linux/arch/alpha/linux_syscalls.c cvs rdiff -u -r1.61 -r1.62 src/sys/compat/linux/arch/amd64/linux_syscall.h \ src/sys/compat/linux/arch/amd64/linux_syscallargs.h \ src/sys/compat/linux/arch/amd64/linux_syscalls.c \ src/sys/compat/linux/arch/amd64/linux_sysent.c cvs rdiff -u -r1.5 -r1.6 \ src/sys/compat/linux/arch/amd64/linux_systrace_args.c cvs rdiff -u -r1.70 -r1.71 src/sys/compat/linux/arch/arm/linux_syscall.h \ src/sys/compat/linux/arch/arm/linux_syscallargs.h \ src/sys/compat/linux/arch/arm/linux_syscalls.c \ src/sys/compat/linux/arch/arm/linux_sysent.c cvs rdiff -u -r1.2 -r1.3 src/sys/compat/linux/arch/arm/linux_systrace_args.c cvs rdiff -u -r1.109 -r1.110 src/sys/compat/linux/arch/i386/linux_syscall.h \ src/sys/compat/linux/arch/i386/linux_syscallargs.h \ src/sys/compat/linux/arch/i386/linux_sysent.c cvs rdiff -u -r1.110 -r1.111 src/sys/compat/linux/arch/i386/linux_syscalls.c cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/arch/i386/linux_systrace_args.c cvs rdiff -u -r1.99 -r1.100 src/sys/compat/linux/arch/m68k/linux_syscall.h \ src/sys/compat/linux/arch/m68k/linux_syscalls.c \ src/sys/compat/linux/arch/m68k/linux_sysent.c cvs rdiff -u -r1.98 -r1.99 src/sys/compat/linux/arch/m68k/linux_syscallargs.h cvs rdiff -u -r1.68 -r1.69 src/sys/compat/linux/arch/mips/linux_syscall.h cvs rdiff -u -r1.67 -r1.68 src/sys/compat/linux/arch/mips/linux_syscallargs.h \ src/sys/compat/linux/arch/mips/linux_syscalls.c \ src/sys/compat/linux/arch/mips/linux_sysent.c cvs rdiff -u -r1.77 -r1.78 src/sys/compat/linux/arch/powerpc/linux_syscall.h \ src/sys/compat/linux/arch/powerpc/linux_sysent.c cvs rdiff -u -r1.76 -r1.77 \ src/sys/compat/linux/arch/powerpc/linux_syscallargs.h \ src/sys/compat/linux/arch/powerpc/linux_syscalls.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/uvm
Module Name:src Committed By: cherry Date: Mon Jan 2 20:08:33 UTC 2017 Modified Files: src/sys/uvm: uvm.h uvm_physseg.h Log Message: Move sys/uvm/uvm_physseg.h inclusion to within _KERNEL only. To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/sys/uvm/uvm.h cvs rdiff -u -r1.7 -r1.8 src/sys/uvm/uvm_physseg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat/linux/common
Module Name:src Committed By: martin Date: Mon Jan 2 20:10:44 UTC 2017 Modified Files: src/sys/compat/linux/common: linux_signal.h Log Message: Provide a dummy linux_sigset_t for all architectures that do not have any machdep one. This make kdump compile again. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/compat/linux/common/linux_signal.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/comp
Module Name:src Committed By: cherry Date: Mon Jan 2 20:17:15 UTC 2017 Modified Files: src/distrib/sets/lists/comp: mi Log Message: We don't need sys/uvm/uvm_physseg.h installed, since userland has no use for it. Obsolete it in the set list. To generate a diff of this commit: cvs rdiff -u -r1.2090 -r1.2091 src/distrib/sets/lists/comp/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/uvm
Module Name:src Committed By: cherry Date: Mon Jan 2 20:22:20 UTC 2017 Modified Files: src/sys/uvm: uvm_extern.h Log Message: Remove a redundant #ifdef _KERNEL/#endif pair. ok mrg@ To generate a diff of this commit: cvs rdiff -u -r1.201 -r1.202 src/sys/uvm/uvm_extern.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc/mtree
Module Name:src Committed By: martin Date: Mon Jan 2 20:37:12 UTC 2017 Modified Files: src/etc/mtree: NetBSD.dist.tests Log Message: Add mixerctl test directory To generate a diff of this commit: cvs rdiff -u -r1.138 -r1.139 src/etc/mtree/NetBSD.dist.tests Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/debug
Module Name:src Committed By: martin Date: Mon Jan 2 20:45:09 UTC 2017 Modified Files: src/distrib/sets/lists/debug: shl.mi Log Message: libcurses version bump To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 src/distrib/sets/lists/debug/shl.mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 20:53:11 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl initscan.c Log Message: deal with our int -> size_t changes. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/flex/dist/src/flex.skl cvs rdiff -u -r1.4 -r1.5 src/external/bsd/flex/dist/src/initscan.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: Mon Jan 2 21:02:03 UTC 2017 Modified Files: src/tests/kernel: t_ptrace_wait.c Log Message: Fix typo in atf_tc_set_md_var(): baic -> basic No functional change. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 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/distrib/sets/lists/tests
Module Name:src Committed By: martin Date: Mon Jan 2 21:05:06 UTC 2017 Modified Files: src/distrib/sets/lists/tests: mi Log Message: Add misising mixerctl file To generate a diff of this commit: cvs rdiff -u -r1.711 -r1.712 src/distrib/sets/lists/tests/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 21:06:10 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl Log Message: another int to yy_size_t To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/flex/dist/src/flex.skl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 21:20:00 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: gen.c initscan.c Log Message: another int -> size_t To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/flex/dist/src/gen.c cvs rdiff -u -r1.5 -r1.6 src/external/bsd/flex/dist/src/initscan.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/man9
Module Name:src Committed By: cherry Date: Mon Jan 2 21:42:01 UTC 2017 Modified Files: src/share/man/man9: uvm.9 Log Message: Document sys/uvm/uvm_init.c:uvm_md_init() To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/share/man/man9/uvm.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/evbarm/gumstix
Module Name:src Committed By: skrll Date: Mon Jan 2 21:46:59 UTC 2017 Modified Files: src/sys/arch/evbarm/gumstix: gumstix_start.S Log Message: Fix boot on Gumstix Verdex boards. Reported by smesgr on port-arm To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/evbarm/gumstix/gumstix_start.S 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: rmind Date: Mon Jan 2 21:49:51 UTC 2017 Modified Files: src/sys/modules/npf: Makefile src/sys/net/npf: files.npf npf_ctl.c npf_impl.h npf_os.c npf_tableset.c npf_worker.c Added Files: src/sys/net/npf: npf_ifaddr.c Log Message: NPF: implement dynamic handling of interface addresses (the kernel part). To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/modules/npf/Makefile cvs rdiff -u -r1.19 -r1.20 src/sys/net/npf/files.npf cvs rdiff -u -r1.45 -r1.46 src/sys/net/npf/npf_ctl.c cvs rdiff -u -r0 -r1.1 src/sys/net/npf/npf_ifaddr.c cvs rdiff -u -r1.65 -r1.66 src/sys/net/npf/npf_impl.h cvs rdiff -u -r1.2 -r1.3 src/sys/net/npf/npf_os.c \ src/sys/net/npf/npf_worker.c cvs rdiff -u -r1.25 -r1.26 src/sys/net/npf/npf_tableset.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netinet
Module Name:src Committed By: christos Date: Mon Jan 2 23:00:25 UTC 2017 Modified Files: src/sys/netinet: in.c in_var.h Log Message: - You can't just call the pfil hook to remove an address before an address is removed! Hold a reference instead, remove it, and then free it. - GC iatoifa() To generate a diff of this commit: cvs rdiff -u -r1.194 -r1.195 src/sys/netinet/in.c cvs rdiff -u -r1.90 -r1.91 src/sys/netinet/in_var.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net/npf
Module Name:src Committed By: christos Date: Mon Jan 2 23:02:04 UTC 2017 Modified Files: src/sys/net/npf: npf_os.c Log Message: make this compile as a module. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/net/npf/npf_os.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/flex/dist/src
Module Name:src Committed By: christos Date: Mon Jan 2 23:21:14 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl gen.c initscan.c Log Message: more yy_size_t <-> int fixes To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/flex/dist/src/flex.skl cvs rdiff -u -r1.4 -r1.5 src/external/bsd/flex/dist/src/gen.c cvs rdiff -u -r1.6 -r1.7 src/external/bsd/flex/dist/src/initscan.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/flex/dist/src
Module Name:src Committed By: christos Date: Tue Jan 3 00:22:56 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl main.c Log Message: don't #define yywrap yywrap (that is if the prefix is yy, don't #define macros for the same name). Breaks compatibility for things like: #ifndef yywrap int yywrap(void) { return 1; } #endif To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/flex/dist/src/flex.skl cvs rdiff -u -r1.4 -r1.5 src/external/bsd/flex/dist/src/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/postinstall
Module Name:src Committed By: jnemeth Date: Tue Jan 3 00:35:07 UTC 2017 Modified Files: src/usr.sbin/postinstall: postinstall Log Message: add rtsold to rc_obsolete_files :-( To generate a diff of this commit: cvs rdiff -u -r1.206 -r1.207 src/usr.sbin/postinstall/postinstall Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex/dist/src
Module Name:src Committed By: christos Date: Tue Jan 3 00:50:11 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl Log Message: Add missing macros to the non-recursive prefixed-parser. Disable macros for the recursive parser. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/flex/dist/src/flex.skl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net/npf
Module Name:src Committed By: rmind Date: Tue Jan 3 00:58:05 UTC 2017 Modified Files: src/sys/net/npf: npf_conf.c npf_ifaddr.c npf_impl.h npf_os.c Log Message: NPF: fix the interface table initialisation on load. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/net/npf/npf_conf.c cvs rdiff -u -r1.1 -r1.2 src/sys/net/npf/npf_ifaddr.c cvs rdiff -u -r1.66 -r1.67 src/sys/net/npf/npf_impl.h cvs rdiff -u -r1.4 -r1.5 src/sys/net/npf/npf_os.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libnpf
Module Name:src Committed By: christos Date: Tue Jan 3 00:59:31 UTC 2017 Modified Files: src/lib/libnpf: npf.c Log Message: set to NULL after releasing to avoid double free. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/lib/libnpf/npf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/npf/npfctl
Module Name:src Committed By: rmind Date: Tue Jan 3 01:29:49 UTC 2017 Modified Files: src/usr.sbin/npf/npfctl: npf.conf.5 npf_build.c npf_parse.y npf_scan.l npfctl.h Log Message: npfctl: dynamic interface address handling; update npf.conf(8). To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/usr.sbin/npf/npfctl/npf.conf.5 cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/npf/npfctl/npf_build.c \ src/usr.sbin/npf/npfctl/npfctl.h cvs rdiff -u -r1.39 -r1.40 src/usr.sbin/npf/npfctl/npf_parse.y cvs rdiff -u -r1.24 -r1.25 src/usr.sbin/npf/npfctl/npf_scan.l 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: Tue Jan 3 01:30:16 UTC 2017 Modified Files: src/sys/dev/ic: siisata.c Log Message: The SiI3124 was implemented at a time when the ATA/ACS2 DATA SET MANAGEMENT/TRIM command did not exist. As such, the (presumably immutable) lookup table in the chip does not know that this command indicates a data write to follow. Use the PRB Protocol Override functionality to tell the chip the protocol we need for this command. For PR kern/51756. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ic/siisata.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/flex/dist/src
Module Name:src Committed By: christos Date: Tue Jan 3 01:56:04 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl main.c Log Message: fix the re-entrant prefixed case. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/external/bsd/flex/dist/src/flex.skl cvs rdiff -u -r1.5 -r1.6 src/external/bsd/flex/dist/src/main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/comp
Module Name:src Committed By: wiz Date: Tue Jan 3 02:13:05 UTC 2017 Modified Files: src/distrib/sets/lists/comp: mi Log Message: Fix tag. To generate a diff of this commit: cvs rdiff -u -r1.2091 -r1.2092 src/distrib/sets/lists/comp/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/flex/dist/src
Module Name:src Committed By: christos Date: Tue Jan 3 02:51:56 UTC 2017 Modified Files: src/external/bsd/flex/dist/src: flex.skl Log Message: always define all the renames. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/flex/dist/src/flex.skl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/net/lib/libnpf
Module Name:src Committed By: christos Date: Tue Jan 3 03:47:51 UTC 2017 Modified Files: src/sys/rump/net/lib/libnpf: Makefile Log Message: need new file To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/rump/net/lib/libnpf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/comp
Module Name:src Committed By: kamil Date: Tue Jan 3 04:12:18 UTC 2017 Modified Files: src/distrib/sets/lists/comp: mi Log Message: Fix typo in distribution synckok.0 -> syncok.0 To generate a diff of this commit: cvs rdiff -u -r1.2092 -r1.2093 src/distrib/sets/lists/comp/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/powerpc/fpu
Module Name:src Committed By: snj Date: Tue Jan 3 06:19:21 UTC 2017 Modified Files: src/sys/arch/powerpc/fpu [netbsd-7]: fpu_emu.c fpu_explode.c Log Message: Pull up following revision(s) (requested by rin in ticket #1341): sys/arch/powerpc/fpu/fpu_emu.c: revision 1.19 sys/arch/powerpc/fpu/fpu_explode.c: revision 1.7 - add missing default from FreeBSD - remove duplicate panic pointed out by matt -- PR port-powerpc/51368: powerpc FPU emulation fails for single precision floating point arithmetic For single precision instruction, calculate first in double precision, and then round it. With this fix, single precision arithmetic gets sane on ibm4xx and booke. Taken from FreeBSD commit r258250: https://svnweb.freebsd.org/base?view=revision&revision=258250 Ok matt and simonb. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.16.14.1 src/sys/arch/powerpc/fpu/fpu_emu.c cvs rdiff -u -r1.6 -r1.6.140.1 src/sys/arch/powerpc/fpu/fpu_explode.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/powerpc/fpu
Module Name:src Committed By: snj Date: Tue Jan 3 06:37:25 UTC 2017 Modified Files: src/sys/arch/powerpc/fpu [netbsd-7]: fpu_emu.c Log Message: Pull up following revision(s) (requested by rin in ticket #1342): sys/arch/powerpc/fpu/fpu_emu.c: revision 1.18 Fix build without DDB. To generate a diff of this commit: cvs rdiff -u -r1.16.14.1 -r1.16.14.2 src/sys/arch/powerpc/fpu/fpu_emu.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/amiga/dev
Module Name:src Committed By: snj Date: Tue Jan 3 06:42:04 UTC 2017 Modified Files: src/sys/arch/amiga/dev [netbsd-7]: sbic.c Log Message: Pull up following revision(s) (requested by mlelstv in ticket #1345): sys/arch/amiga/dev/sbic.c: revision 1.74 Make it compile with -DDEBUG again. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.73.2.1 src/sys/arch/amiga/dev/sbic.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/share/man/man9
Module Name:src Committed By: snj Date: Tue Jan 3 06:49:30 UTC 2017 Modified Files: src/share/man/man9 [netbsd-7]: bus_dma.9 Log Message: Pull up following revision(s) (requested by sevan in ticket #1346): share/man/man9/bus_dma.9: revisions 1.61, 1.62 via patch Use .An -nosplit. -- Give a heads up about bus_dmatag_subregion() To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.59.4.1 src/share/man/man9/bus_dma.9 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: snj Date: Tue Jan 3 07:08:05 UTC 2017 Modified Files: src/doc [netbsd-7]: CHANGES-7.1 Log Message: tickets 1341, 1342, 1345, and 1346 To generate a diff of this commit: cvs rdiff -u -r1.1.2.141 -r1.1.2.142 src/doc/CHANGES-7.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.