CVS commit: src/sys/arch/ofppc/conf
Module Name:src Committed By: phx Date: Thu Mar 8 14:18:04 UTC 2012 Modified Files: src/sys/arch/ofppc/conf: GENERIC Log Message: When detecting a new USB device on the bus ofppc panics in usb_allocmem(). Although the problem doesn't seem to affect other PPC ports, it causes big trouble for my Pegasos2. So as long as there is no real solution we should add the option USB_FRAG_DMA_WORKAROUND to the GENERIC config file. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.140 src/sys/arch/ofppc/conf/GENERIC Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libperfuse
Module Name:src Committed By: manu Date: Thu Mar 8 14:58:58 UTC 2012 Modified Files: src/lib/libperfuse: ops.c perfuse_priv.h subr.c Log Message: The kernel can lookup the same node multiple time and will reclaim as many times it looked up. All reclaims but the last one must be ignored, otherwise we discard a node which will still get operations. We therefore have to keep track of lookup/reclaim count and hnour reclaims only when the count reaches zero. To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/lib/libperfuse/ops.c cvs rdiff -u -r1.25 -r1.26 src/lib/libperfuse/perfuse_priv.h cvs rdiff -u -r1.15 -r1.16 src/lib/libperfuse/subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libpthread
Module Name:src Committed By: joerg Date: Thu Mar 8 16:33:46 UTC 2012 Modified Files: src/lib/libpthread: pthread.c Log Message: Fix the stack base pointer for the initial thread on !HPPA. AT_STACKBASE is pointing to the start of the stack, which is the upper limit on platforms where the stack grows down. To generate a diff of this commit: cvs rdiff -u -r1.126 -r1.127 src/lib/libpthread/pthread.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/microcode/cyclades-z
Module Name:src Committed By: jakllsch Date: Thu Mar 8 16:35:53 UTC 2012 Modified Files: src/sys/dev/microcode/cyclades-z: cyzfirm2h.c Log Message: More-properly quote multiline string containing C-style multiline comment. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/dev/microcode/cyclades-z/cyzfirm2h.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/microcode/cyclades-z
Module Name:src Committed By: jakllsch Date: Thu Mar 8 16:38:04 UTC 2012 Modified Files: src/sys/dev/microcode/cyclades-z: cyzfirm2h.c Log Message: Cast arguments to ctype functions to unsigned char. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/microcode/cyclades-z/cyzfirm2h.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/microcode/cyclades-z
Module Name:src Committed By: jakllsch Date: Thu Mar 8 16:40:37 UTC 2012 Modified Files: src/sys/dev/microcode/cyclades-z: cyzfirm2h.c Log Message: Nuke trailing whitespace in output header file. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/dev/microcode/cyclades-z/cyzfirm2h.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libpthread
Module Name:src Committed By: joerg Date: Thu Mar 8 16:40:45 UTC 2012 Modified Files: src/lib/libpthread: pthread.c Log Message: Actually use the stack thread attributes when creating a new thread. To generate a diff of this commit: cvs rdiff -u -r1.127 -r1.128 src/lib/libpthread/pthread.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/microcode/cyclades-z
Module Name:src Committed By: jakllsch Date: Thu Mar 8 16:43:05 UTC 2012 Modified Files: src/sys/dev/microcode/cyclades-z: cyzfirm2h.c Log Message: Prevent expansion of $NetBSD$ that should be placed verbatim into output. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/microcode/cyclades-z/cyzfirm2h.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/microcode/cyclades-z
Module Name:src Committed By: jakllsch Date: Thu Mar 8 16:45:11 UTC 2012 Modified Files: src/sys/dev/microcode/cyclades-z: cyzfirm2h.c Log Message: usage() can be "__dead static". To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/dev/microcode/cyclades-z/cyzfirm2h.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/arch/usermode/usermode
Module Name:src Committed By: riz Date: Thu Mar 8 17:21:20 UTC 2012 Modified Files: src/sys/arch/usermode/usermode [netbsd-6]: trap.c Log Message: Pull up following revision(s) (requested by reinoud in ticket #91): sys/arch/usermode/usermode/trap.c: revision 1.65 Use the signal's signo instead of just returning SIGSEGV and add a comment To generate a diff of this commit: cvs rdiff -u -r1.63.2.1 -r1.63.2.2 src/sys/arch/usermode/usermode/trap.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/lib/libc/gen
Module Name:src Committed By: riz Date: Thu Mar 8 17:23:36 UTC 2012 Modified Files: src/lib/libc/gen [netbsd-6]: arc4random.c Log Message: Pull up following revision(s) (requested by tls in ticket #92): lib/libc/gen/arc4random.c: revision 1.11 lib/libc/gen/arc4random.c: revision 1.12 Make arc4random far less greedy for entropy. Make arc4random actually implement arc4 when used by threaded programs. Fix bug in previous: don't reinitialize on every call! Fix arc4random_buf so it actually ever initializes -- a security problem with revisions 1.9 and 1.10. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.10.6.1 src/lib/libc/gen/arc4random.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/arch/hpcarm/hpcarm
Module Name:src Committed By: riz Date: Thu Mar 8 17:25:46 UTC 2012 Modified Files: src/sys/arch/hpcarm/hpcarm [netbsd-6]: pxa2x0_hpc_machdep.c Log Message: Pull up following revision(s) (requested by nonaka in ticket #94): sys/arch/hpcarm/hpcarm/pxa2x0_hpc_machdep.c: revision 1.14 increase kernel VM space. fixed problem can't boot on WS011SH (probably other 128MB RAM model too). To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.13.8.1 \ src/sys/arch/hpcarm/hpcarm/pxa2x0_hpc_machdep.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/doc
Module Name:src Committed By: riz Date: Thu Mar 8 17:27:52 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.0 Log Message: Tickets 91,92,94. To generate a diff of this commit: cvs rdiff -u -r1.1.2.47 -r1.1.2.48 src/doc/CHANGES-6.0 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/pci
Module Name:src Committed By: riz Date: Thu Mar 8 17:32:50 UTC 2012 Modified Files: src/sys/dev/pci [netbsd-6]: agp_amd64.c Log Message: Pull up following revision(s) (requested by tsutsui in ticket #95): sys/dev/pci/agp_amd64.c: revision 1.7 - make agp_amd64_attach() also checks AMD64 Family 10h CPU's misc configuration devices - print proper error message if no misc configuration device is found Fixes kernel crash right after starting Xserver with radeondrm on ASRock AM2NF3-VSTA (AM2 + nForce3 250 AGP) with Athlon II X2 CPU. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.6.14.1 src/sys/dev/pci/agp_amd64.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/lib/libsa
Module Name:src Committed By: riz Date: Thu Mar 8 17:35:12 UTC 2012 Modified Files: src/sys/lib/libsa [netbsd-6]: ls.c Log Message: Pull up following revision(s) (requested by tsutsui in ticket #96): sys/lib/libsa/ls.c: revision 1.4 Fix a bug that libsa ls doesn't work in case of filename with directory path. ("ls /path/and/file" always returns not found) From MINIX via Evgeniy Ivanov. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.2.1 src/sys/lib/libsa/ls.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
Module Name:src Committed By: riz Date: Thu Mar 8 17:38:03 UTC 2012 Modified Files: src/share/man/man4 [netbsd-6]: amdtemp.4 src/sys/arch/x86/pci [netbsd-6]: amdtemp.c Log Message: Pull up following revision(s) (requested by nonaka): share/man/man4/amdtemp.4: revision 1.6 share/man/man4/amdtemp.4: revision 1.7 sys/arch/x86/pci/amdtemp.c: revision 1.13 Added Family 12h support. Mention AMD Fusion. Bump date for previous. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.4.1 src/share/man/man4/amdtemp.4 cvs rdiff -u -r1.12 -r1.12.8.1 src/sys/arch/x86/pci/amdtemp.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/doc
Module Name:src Committed By: riz Date: Thu Mar 8 17:40:17 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.0 Log Message: Tickets 95-97. To generate a diff of this commit: cvs rdiff -u -r1.1.2.48 -r1.1.2.49 src/doc/CHANGES-6.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/usr.bin/ktruss
Module Name:src Committed By: riz Date: Thu Mar 8 17:48:59 UTC 2012 Modified Files: src/usr.bin/ktruss [netbsd-6]: dump.c Log Message: Pull up following revision(s) (requested by matt in ticket #99): usr.bin/ktruss/dump.c: revision 1.41 Need to cast to intrptr_t before casting a register_t to void * (since register_t might be wider than a void *). To generate a diff of this commit: cvs rdiff -u -r1.39.2.1 -r1.39.2.2 src/usr.bin/ktruss/dump.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/share/man/man5
Module Name:src Committed By: riz Date: Thu Mar 8 17:51:39 UTC 2012 Modified Files: src/share/man/man5 [netbsd-6]: daily.5 weekly.5 Log Message: Pull up following revision(s) (requested by plunky in ticket #101): share/man/man5/weekly.5: revision 1.4 share/man/man5/weekly.5: revision 1.5 share/man/man5/daily.5: revision 1.4 mention run_makemandb document rebuild_mandb Remove trailing whitespace. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.6.1 src/share/man/man5/daily.5 cvs rdiff -u -r1.3 -r1.3.4.1 src/share/man/man5/weekly.5 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src
Module Name:src Committed By: riz Date: Thu Mar 8 17:54:45 UTC 2012 Modified Files: src/distrib/sets/lists/man [netbsd-6]: mi src/doc [netbsd-6]: CHANGES src/external/ibm-public/postfix [netbsd-6]: Makefile.inc src/external/ibm-public/postfix/lib/global [netbsd-6]: Makefile src/external/ibm-public/postfix/man/man5 [netbsd-6]: Makefile Log Message: Pull up following revision(s) (requested by tron in ticket #102): external/ibm-public/postfix/man/man5/Makefile: revision 1.3 distrib/sets/lists/man/mi: revision 1.1383 doc/CHANGES: revision 1.1681 external/ibm-public/postfix/lib/global/Makefile: revision 1.3 external/ibm-public/postfix/Makefile.inc: revision 1.14 Add support for SQLite look-up tables to postfix(1), see sqlite_table(5) for more details. While here stop installation of pcre_table(5) as this table type is not supported. Note SQLite support for Postfix. To generate a diff of this commit: cvs rdiff -u -r1.1379.2.1 -r1.1379.2.2 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.1670.2.2 -r1.1670.2.3 src/doc/CHANGES cvs rdiff -u -r1.13 -r1.13.4.1 src/external/ibm-public/postfix/Makefile.inc cvs rdiff -u -r1.2 -r1.2.6.1 \ src/external/ibm-public/postfix/lib/global/Makefile cvs rdiff -u -r1.2 -r1.2.2.1 \ src/external/ibm-public/postfix/man/man5/Makefile 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/arch/ofppc/conf
Module Name:src Committed By: riz Date: Thu Mar 8 17:56:46 UTC 2012 Modified Files: src/sys/arch/ofppc/conf [netbsd-6]: GENERIC Log Message: Pull up following revision(s) (requested by phx in ticket #103): sys/arch/ofppc/conf/GENERIC: revision 1.140 When detecting a new USB device on the bus ofppc panics in usb_allocmem(). Although the problem doesn't seem to affect other PPC ports, it causes big trouble for my Pegasos2. So as long as there is no real solution we should add the option USB_FRAG_DMA_WORKAROUND to the GENERIC config file. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.139.2.1 src/sys/arch/ofppc/conf/GENERIC 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: riz Date: Thu Mar 8 17:58:08 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.0 Log Message: Tickets 99,101-103. To generate a diff of this commit: cvs rdiff -u -r1.1.2.49 -r1.1.2.50 src/doc/CHANGES-6.0 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: tron Date: Thu Mar 8 18:58:23 UTC 2012 Modified Files: src/doc: CHANGES CHANGES.prev Log Message: SQLite support for Postfix will be in NetBSD 6.0. To generate a diff of this commit: cvs rdiff -u -r1.1681 -r1.1682 src/doc/CHANGES cvs rdiff -u -r1.104 -r1.105 src/doc/CHANGES.prev Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/acl
Module Name:src Committed By: christos Date: Thu Mar 8 20:30:38 UTC 2012 Added Files: src/external/gpl2/xcvs/dist/acl: COPYING COPYING.LIB INSTALL README aclconfig.default Log Message: add acl info To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/gpl2/xcvs/dist/acl/COPYING \ src/external/gpl2/xcvs/dist/acl/COPYING.LIB \ src/external/gpl2/xcvs/dist/acl/INSTALL \ src/external/gpl2/xcvs/dist/acl/README \ src/external/gpl2/xcvs/dist/acl/aclconfig.default Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:32:18 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: version.c Log Message: announce acl support To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/src/version.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:32:31 UTC 2012 Added Files: src/external/gpl2/xcvs/dist/src: acl.c Log Message: acl support To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/gpl2/xcvs/dist/src/acl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:33:02 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: update.c Log Message: - acl support - check chdir return To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/update.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:34:35 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: tag.c Log Message: - restrict tag command to non-destructive operations for non-admins. [deletion, moving is dissallowed] - add history for tag commands - cvs acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/tag.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:37:29 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: acl.c Log Message: fix malloc botches in the original code To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/external/gpl2/xcvs/dist/src/acl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:39:28 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: Makefile.am Log Message: add acl.c To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/src/Makefile.am Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:41:04 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: subr.c Log Message: - Put back %, which was removed from the new format strings [with reversed meaning, so that we are still compatible with the new format] - Fix format strings To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/src/subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:41:20 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: status.c Log Message: Add cvs acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/status.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:41:48 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: server.c Log Message: - check return value of write(2) - add acl support To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/server.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:42:21 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: sanity.sh Log Message: attempt to fix the unit tests To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/src/sanity.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:42:57 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: recurse.c Log Message: restore lost fix: add nolock To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/src/recurse.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:43:19 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: rcs.c Log Message: use the result of strtoul To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/gpl2/xcvs/dist/src/rcs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:43:48 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: patch.c Log Message: - better handling of binary files - add acl support To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/gpl2/xcvs/dist/src/patch.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:44:06 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: parseinfo.c Log Message: add acl function prototype To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/parseinfo.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:44:32 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: parseinfo.h Log Message: add acl prototype To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/parseinfo.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:45:28 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: mkmodules.c Log Message: - add acl support - document availability of tag commands. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/gpl2/xcvs/dist/src/mkmodules.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:45:52 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: main.c Log Message: - fix printf format string - add acl support To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/gpl2/xcvs/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/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:46:08 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: ls.c Log Message: check chdir return To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/ls.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:46:35 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: logmsg.c Log Message: in new format strings, formats are actually checked, so put tag commands in. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/logmsg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:46:59 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: log.c Log Message: add acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/log.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:47:17 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: filesubr.c Log Message: check symlink return To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/filesubr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:47:45 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: import.c Log Message: - put back missing noexec check - add cvs acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/import.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:48:02 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: diff.c Log Message: add acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/diff.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:48:22 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: add.c admin.c annotate.c commit.c remove.c Log Message: add acl support To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/add.c \ src/external/gpl2/xcvs/dist/src/annotate.c \ src/external/gpl2/xcvs/dist/src/remove.c cvs rdiff -u -r1.4 -r1.5 src/external/gpl2/xcvs/dist/src/admin.c cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/commit.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/lib
Module Name:src Committed By: christos Date: Thu Mar 8 20:49:29 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/lib: vasnprintf.c Log Message: Don't use %n in the writable data segment. Fortified glibc complains. When the left hand does not communicate with the right hand. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/lib/vasnprintf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 8 20:50:26 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: cvs.h Log Message: add cvs acl support To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/src/cvs.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/diff
Module Name:src Committed By: christos Date: Thu Mar 8 20:50:47 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/diff: diff3.c Log Message: fix format string To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/diff/diff3.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist/diff
Module Name:src Committed By: christos Date: Thu Mar 8 20:50:55 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/diff: util.c Log Message: prefer NULL over 0 To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/diff/util.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/dist
Module Name:src Committed By: christos Date: Thu Mar 8 20:54:21 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist: INSTALL Makefile.am Makefile.in aclocal.m4 config.h.in configure configure.in src/external/gpl2/xcvs/dist/build-aux: compile config.guess config.sub depcomp install-sh mdate-sh missing texinfo.tex ylwrap src/external/gpl2/xcvs/dist/contrib: Makefile.in src/external/gpl2/xcvs/dist/contrib/pam: Makefile.in src/external/gpl2/xcvs/dist/diff: Makefile.in src/external/gpl2/xcvs/dist/doc: Makefile.in src/external/gpl2/xcvs/dist/doc/i18n: Makefile.in src/external/gpl2/xcvs/dist/doc/i18n/pt_BR: Makefile.in src/external/gpl2/xcvs/dist/lib: Makefile.in src/external/gpl2/xcvs/dist/m4: chdir-long.m4 extensions.m4 strftime.m4 src/external/gpl2/xcvs/dist/maint-aux: Makefile.in src/external/gpl2/xcvs/dist/man: Makefile.in src/external/gpl2/xcvs/dist/src: Makefile.in Added Files: src/external/gpl2/xcvs/dist/build-aux: mkinstalldirs src/external/gpl2/xcvs/dist/m4: glibc2.m4 glibc21.m4 intdiv0.m4 intmax.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 printf-posix.m4 Log Message: refresh autoconf infrastructure so that it has a fighting chance to work with something not from the previous decade. NB: I should eventually put back the OS specific stuff I've removed so that we can have a complete distribution. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/INSTALL \ src/external/gpl2/xcvs/dist/aclocal.m4 \ src/external/gpl2/xcvs/dist/config.h.in \ src/external/gpl2/xcvs/dist/configure.in cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/Makefile.am \ src/external/gpl2/xcvs/dist/Makefile.in cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/dist/configure cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/build-aux/compile \ src/external/gpl2/xcvs/dist/build-aux/config.guess \ src/external/gpl2/xcvs/dist/build-aux/config.sub \ src/external/gpl2/xcvs/dist/build-aux/depcomp \ src/external/gpl2/xcvs/dist/build-aux/install-sh \ src/external/gpl2/xcvs/dist/build-aux/mdate-sh \ src/external/gpl2/xcvs/dist/build-aux/missing \ src/external/gpl2/xcvs/dist/build-aux/texinfo.tex \ src/external/gpl2/xcvs/dist/build-aux/ylwrap cvs rdiff -u -r0 -r1.1 src/external/gpl2/xcvs/dist/build-aux/mkinstalldirs cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/contrib/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/contrib/pam/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/diff/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/doc/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/doc/i18n/Makefile.in cvs rdiff -u -r1.2 -r1.3 \ src/external/gpl2/xcvs/dist/doc/i18n/pt_BR/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/lib/Makefile.in cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl2/xcvs/dist/m4/chdir-long.m4 \ src/external/gpl2/xcvs/dist/m4/extensions.m4 \ src/external/gpl2/xcvs/dist/m4/strftime.m4 cvs rdiff -u -r0 -r1.1 src/external/gpl2/xcvs/dist/m4/glibc2.m4 \ src/external/gpl2/xcvs/dist/m4/glibc21.m4 \ src/external/gpl2/xcvs/dist/m4/intdiv0.m4 \ src/external/gpl2/xcvs/dist/m4/intmax.m4 \ src/external/gpl2/xcvs/dist/m4/inttypes-pri.m4 \ src/external/gpl2/xcvs/dist/m4/isc-posix.m4 \ src/external/gpl2/xcvs/dist/m4/lcmessage.m4 \ src/external/gpl2/xcvs/dist/m4/printf-posix.m4 cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/maint-aux/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/man/Makefile.in cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/gnu/usr.bin/rcs
Module Name:src Committed By: christos Date: Thu Mar 8 21:32:28 UTC 2012 Modified Files: src/gnu/usr.bin/rcs/lib: rcsbase.h rcssyn.c src/gnu/usr.bin/rcs/rlog: rlog.1 rlog.c Log Message: Teach rcs about the new cvs "commitid" keyword, so that we don't bitch each time we play with an RCS file maintained by CVS. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/gnu/usr.bin/rcs/lib/rcsbase.h cvs rdiff -u -r1.4 -r1.5 src/gnu/usr.bin/rcs/lib/rcssyn.c cvs rdiff -u -r1.5 -r1.6 src/gnu/usr.bin/rcs/rlog/rlog.1 cvs rdiff -u -r1.6 -r1.7 src/gnu/usr.bin/rcs/rlog/rlog.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: joerg Date: Thu Mar 8 21:55:45 UTC 2012 Modified Files: src/sys/compat/netbsd32: syscalls.master src/sys/kern: syscalls.master Log Message: Add entry for _ksem_timedwait. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 src/sys/compat/netbsd32/syscalls.master cvs rdiff -u -r1.257 -r1.258 src/sys/kern/syscalls.master 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: joerg Date: Thu Mar 8 21:59:32 UTC 2012 Modified Files: src/distrib/sets/lists/base: ad.mips64eb ad.mips64el md.amd64 md.sparc64 shl.mi src/distrib/sets/lists/comp: ad.mips64eb ad.mips64el md.amd64 md.sparc64 mi shl.mi src/external/gpl3/gdb/dist/sim/ppc: emul_netbsd.c src/gnu/dist/gdb6/sim/ppc: emul_netbsd.c src/include: semaphore.h src/lib/libc: shlib_version src/lib/libc/sys: Makefile.inc src/lib/libpthread: sem.c shlib_version src/lib/librt: Makefile sem.c sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 sem_wait.3 shlib_version src/sys/compat/netbsd32: netbsd32_sem.c netbsd32_syscall.h netbsd32_syscallargs.h netbsd32_syscalls.c netbsd32_sysent.c src/sys/kern: init_sysent.c kern_syscall.c syscalls.c uipc_sem.c src/sys/rump/include/rump: rump_syscalls.h src/sys/rump/librump/rumpkern: rump_syscalls.c src/sys/sys: ksem.h syscall.h syscallargs.h src/tests/lib/semaphore: sem.c src/tests/lib/semaphore/pthread: t_sem_pth.c Log Message: Implement sem_timedwait. To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 src/distrib/sets/lists/base/ad.mips64eb cvs rdiff -u -r1.84 -r1.85 src/distrib/sets/lists/base/ad.mips64el cvs rdiff -u -r1.159 -r1.160 src/distrib/sets/lists/base/md.amd64 cvs rdiff -u -r1.150 -r1.151 src/distrib/sets/lists/base/md.sparc64 cvs rdiff -u -r1.619 -r1.620 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.72 -r1.73 src/distrib/sets/lists/comp/ad.mips64eb cvs rdiff -u -r1.73 -r1.74 src/distrib/sets/lists/comp/ad.mips64el cvs rdiff -u -r1.158 -r1.159 src/distrib/sets/lists/comp/md.amd64 cvs rdiff -u -r1.141 -r1.142 src/distrib/sets/lists/comp/md.sparc64 cvs rdiff -u -r1.1744 -r1.1745 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.212 -r1.213 src/distrib/sets/lists/comp/shl.mi cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gdb/dist/sim/ppc/emul_netbsd.c cvs rdiff -u -r1.7 -r1.8 src/gnu/dist/gdb6/sim/ppc/emul_netbsd.c cvs rdiff -u -r1.3 -r1.4 src/include/semaphore.h cvs rdiff -u -r1.230 -r1.231 src/lib/libc/shlib_version cvs rdiff -u -r1.213 -r1.214 src/lib/libc/sys/Makefile.inc cvs rdiff -u -r1.22 -r1.23 src/lib/libpthread/sem.c cvs rdiff -u -r1.14 -r1.15 src/lib/libpthread/shlib_version cvs rdiff -u -r1.14 -r1.15 src/lib/librt/Makefile cvs rdiff -u -r1.5 -r1.6 src/lib/librt/sem.c cvs rdiff -u -r1.2 -r1.3 src/lib/librt/sem_getvalue.3 \ src/lib/librt/shlib_version cvs rdiff -u -r1.1 -r1.2 src/lib/librt/sem_init.3 src/lib/librt/sem_post.3 \ src/lib/librt/sem_wait.3 cvs rdiff -u -r1.4 -r1.5 src/lib/librt/sem_open.3 cvs rdiff -u -r1.8 -r1.9 src/sys/compat/netbsd32/netbsd32_sem.c cvs rdiff -u -r1.100 -r1.101 src/sys/compat/netbsd32/netbsd32_syscall.h \ src/sys/compat/netbsd32/netbsd32_syscallargs.h cvs rdiff -u -r1.99 -r1.100 src/sys/compat/netbsd32/netbsd32_syscalls.c \ src/sys/compat/netbsd32/netbsd32_sysent.c cvs rdiff -u -r1.263 -r1.264 src/sys/kern/init_sysent.c cvs rdiff -u -r1.5 -r1.6 src/sys/kern/kern_syscall.c cvs rdiff -u -r1.254 -r1.255 src/sys/kern/syscalls.c cvs rdiff -u -r1.35 -r1.36 src/sys/kern/uipc_sem.c cvs rdiff -u -r1.55 -r1.56 src/sys/rump/include/rump/rump_syscalls.h cvs rdiff -u -r1.77 -r1.78 src/sys/rump/librump/rumpkern/rump_syscalls.c cvs rdiff -u -r1.11 -r1.12 src/sys/sys/ksem.h cvs rdiff -u -r1.250 -r1.251 src/sys/sys/syscall.h cvs rdiff -u -r1.233 -r1.234 src/sys/sys/syscallargs.h cvs rdiff -u -r1.8 -r1.9 src/tests/lib/semaphore/sem.c cvs rdiff -u -r1.1 -r1.2 src/tests/lib/semaphore/pthread/t_sem_pth.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librt
Module Name:src Committed By: wiz Date: Thu Mar 8 22:12:37 UTC 2012 Modified Files: src/lib/librt: sem_getvalue.3 Log Message: Add missing comma. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/librt/sem_getvalue.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librt
Module Name:src Committed By: wiz Date: Thu Mar 8 22:12:52 UTC 2012 Modified Files: src/lib/librt: sem_open.3 Log Message: Merge error descriptions for same error code. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/lib/librt/sem_open.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librt
Module Name:src Committed By: wiz Date: Thu Mar 8 22:13:05 UTC 2012 Modified Files: src/lib/librt: sem_post.3 Log Message: Whitespace nits. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/lib/librt/sem_post.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librt
Module Name:src Committed By: wiz Date: Thu Mar 8 22:13:32 UTC 2012 Modified Files: src/lib/librt: sem_wait.3 Log Message: Add sem_timedwait to NAME and fix SYNOPSIS. Add serial comma. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/lib/librt/sem_wait.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share
Module Name:src Committed By: wiz Date: Thu Mar 8 22:52:23 UTC 2012 Modified Files: src/share/doc/papers/pulldown: refs.r src/share/man/man4: uyurex.4 vioif.4 viomb.4 virtio.4 Log Message: Use %U for URLs. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/share/doc/papers/pulldown/refs.r cvs rdiff -u -r1.2 -r1.3 src/share/man/man4/uyurex.4 \ src/share/man/man4/vioif.4 src/share/man/man4/viomb.4 cvs rdiff -u -r1.4 -r1.5 src/share/man/man4/virtio.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: jakllsch Date: Fri Mar 9 00:12:11 UTC 2012 Modified Files: src/sys/dev/usb: uhub.c Log Message: Restore parts of uhub_explore() needed to make usb_needs_reattach() work. To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 src/sys/dev/usb/uhub.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl2/xcvs/bin/xcvs
Module Name:src Committed By: christos Date: Fri Mar 9 00:14:16 UTC 2012 Modified Files: src/external/gpl2/xcvs/bin/xcvs: Makefile Log Message: add acl.c To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/gpl2/xcvs/bin/xcvs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: othersrc/crypto/external/bsd/ssss/dist/src/libssss
Module Name:othersrc Committed By: agc Date: Fri Mar 9 06:37:23 UTC 2012 Modified Files: othersrc/crypto/external/bsd//dist/src/lib: secsplit.c Log Message: + don't allocate space if we're passed an in-memory array as either a source or a destination of split/combine + fix up the split_vec/combine_vec combinatino so that they both work a bit better now - still some work needed here, though + free the internal s4 structure as part of the combine/combine_vec operation, rather than doing it in _end(). We know at that stage that we have allocated it, and the principle of freeing memory in the same place in the calling stack as it was allocated still applies + rip out parts of the initial comment which aren't really accurate any more - i'm not sure there's that much of the original code left To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 \ othersrc/crypto/external/bsd//dist/src/lib/secsplit.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.