CVS commit: src
Module Name:src Committed By: wiz Date: Thu Mar 22 07:58:20 UTC 2012 Modified Files: src/bin/csh: csh.1 src/bin/kill: kill.1 src/bin/ln: ln.1 src/bin/mkdir: mkdir.1 src/bin/mv: mv.1 src/bin/pax: tar.1 src/bin/rcp: rcp.1 src/distrib/utils/more: more.1 src/share/man/man4/man4.mac68k: ae.4 src/share/man/man4/man4.vax: dh.4 dmf.4 dmz.4 src/share/man/man7: hostname.7 sysctl.7 src/usr.bin/chpass: chpass.1 src/usr.bin/col: col.1 src/usr.bin/find: find.1 src/usr.bin/fpr: fpr.1 src/usr.bin/ftp: ftp.1 src/usr.bin/gcore: gcore.1 src/usr.bin/logger: logger.1 src/usr.bin/lorder: lorder.1 src/usr.bin/msgs: msgs.1 src/usr.bin/nice: nice.1 src/usr.bin/rdist: rdist.1 src/usr.bin/rusers: rusers.1 src/usr.bin/shar: shar.1 src/usr.bin/systat: systat.1 src/usr.bin/telnet: telnet.1 src/usr.bin/tip: tip.1 src/usr.bin/xinstall: install.1 src/usr.sbin/lpr/lpq: lpq.1 src/usr.sbin/lpr/lprm: lprm.1 Log Message: Fix whitespace nits. Suggested by Bug Hunting. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/bin/csh/csh.1 cvs rdiff -u -r1.21 -r1.22 src/bin/kill/kill.1 cvs rdiff -u -r1.24 -r1.25 src/bin/ln/ln.1 cvs rdiff -u -r1.16 -r1.17 src/bin/mkdir/mkdir.1 cvs rdiff -u -r1.25 -r1.26 src/bin/mv/mv.1 cvs rdiff -u -r1.32 -r1.33 src/bin/pax/tar.1 cvs rdiff -u -r1.21 -r1.22 src/bin/rcp/rcp.1 cvs rdiff -u -r1.8 -r1.9 src/distrib/utils/more/more.1 cvs rdiff -u -r1.8 -r1.9 src/share/man/man4/man4.mac68k/ae.4 cvs rdiff -u -r1.14 -r1.15 src/share/man/man4/man4.vax/dh.4 cvs rdiff -u -r1.10 -r1.11 src/share/man/man4/man4.vax/dmf.4 cvs rdiff -u -r1.11 -r1.12 src/share/man/man4/man4.vax/dmz.4 cvs rdiff -u -r1.11 -r1.12 src/share/man/man7/hostname.7 cvs rdiff -u -r1.68 -r1.69 src/share/man/man7/sysctl.7 cvs rdiff -u -r1.23 -r1.24 src/usr.bin/chpass/chpass.1 cvs rdiff -u -r1.9 -r1.10 src/usr.bin/col/col.1 cvs rdiff -u -r1.71 -r1.72 src/usr.bin/find/find.1 cvs rdiff -u -r1.11 -r1.12 src/usr.bin/fpr/fpr.1 cvs rdiff -u -r1.131 -r1.132 src/usr.bin/ftp/ftp.1 cvs rdiff -u -r1.13 -r1.14 src/usr.bin/gcore/gcore.1 cvs rdiff -u -r1.12 -r1.13 src/usr.bin/logger/logger.1 cvs rdiff -u -r1.7 -r1.8 src/usr.bin/lorder/lorder.1 cvs rdiff -u -r1.17 -r1.18 src/usr.bin/msgs/msgs.1 cvs rdiff -u -r1.14 -r1.15 src/usr.bin/nice/nice.1 cvs rdiff -u -r1.19 -r1.20 src/usr.bin/rdist/rdist.1 cvs rdiff -u -r1.14 -r1.15 src/usr.bin/rusers/rusers.1 cvs rdiff -u -r1.11 -r1.12 src/usr.bin/shar/shar.1 cvs rdiff -u -r1.41 -r1.42 src/usr.bin/systat/systat.1 cvs rdiff -u -r1.31 -r1.32 src/usr.bin/telnet/telnet.1 cvs rdiff -u -r1.31 -r1.32 src/usr.bin/tip/tip.1 cvs rdiff -u -r1.45 -r1.46 src/usr.bin/xinstall/install.1 cvs rdiff -u -r1.14 -r1.15 src/usr.sbin/lpr/lpq/lpq.1 cvs rdiff -u -r1.15 -r1.16 src/usr.sbin/lpr/lprm/lprm.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/include
Module Name:src Committed By: he Date: Thu Mar 22 08:39:44 UTC 2012 Modified Files: src/sys/arch/arm/include: limits.h Log Message: Make sure that the UQUAD_MAX constant is marked as unsigned, to avoid "ANSI C treats constant as unsigned" warning from lint. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/include/limits.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libarch/alpha
Module Name:src Committed By: he Date: Thu Mar 22 08:52:22 UTC 2012 Modified Files: src/lib/libarch/alpha: alpha_bus_window.c Log Message: Make 'i' unsigned to avoid signed/unsigned comparison warnings from lint. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/libarch/alpha/alpha_bus_window.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libarch/alpha
Module Name:src Committed By: he Date: Thu Mar 22 08:54:48 UTC 2012 Modified Files: src/lib/libarch/alpha: alpha_pci_io.c Log Message: Add a cast of the shift count to int32_t, so that we don't try to do int32_t << long, since ANSI C doesn't perform "balancing" before the shift operation according to lint. Should not make a difference, offset is limited to 0..3 anyway. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/lib/libarch/alpha/alpha_pci_io.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/dist/pdisk
Module Name:src Committed By: he Date: Thu Mar 22 08:56:52 UTC 2012 Modified Files: src/dist/pdisk: dump.c Log Message: Add a void to make function declaration c89. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/dist/pdisk/dump.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch/sh3/gen
Module Name:src Committed By: he Date: Thu Mar 22 08:58:39 UTC 2012 Modified Files: src/lib/libc/arch/sh3/gen: flt_rounds.c Log Message: Add a void to make function declaration c89. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/sh3/gen/flt_rounds.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch
Module Name:src Committed By: he Date: Thu Mar 22 09:32:04 UTC 2012 Modified Files: src/lib/libc/arch/arm/gen: _lwp.c src/lib/libc/arch/sh3/gen: _lwp.c Log Message: Follow the pattern from powerpc, make lint happy. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/lib/libc/arch/arm/gen/_lwp.c cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/sh3/gen/_lwp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch/hppa/gen
Module Name:src Committed By: skrll Date: Thu Mar 22 12:31:32 UTC 2012 Modified Files: src/lib/libc/arch/hppa/gen: __longjmp14.c makecontext.c Log Message: Shut lint up about dp. >From he@ To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/hppa/gen/__longjmp14.c cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/hppa/gen/makecontext.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net
Module Name:src Committed By: wiz Date: Thu Mar 22 12:59:33 UTC 2012 Modified Files: src/sys/net: if_bridge.c Log Message: Fix typo in kauth name. From PR 46234 by Matthew Mondor. Tested by Geoff Adams and Ryo ONODERA. To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 src/sys/net/if_bridge.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/csu/alpha
Module Name:src Committed By: he Date: Thu Mar 22 13:02:16 UTC 2012 Modified Files: src/lib/csu/alpha: crt0.c Log Message: Convert to use c89 function declaration. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/lib/csu/alpha/crt0.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gdtoa
Module Name:src Committed By: he Date: Thu Mar 22 13:09:13 UTC 2012 Modified Files: src/lib/libc/gdtoa: strtodg.c Log Message: A few fixes to make this build for vax: * The fivesbits[] variable is not used for vax * The decpt variable is only used if INFNAN_CHECK, which isn't defined for vax To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libc/gdtoa/strtodg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gdtoa
Module Name:src Committed By: he Date: Thu Mar 22 13:15:48 UTC 2012 Modified Files: src/lib/libc/gdtoa: strtod.c Log Message: A few modifications to make this build for vax: * The decpt variable is only used if INFNAN_CHECK, which isn't defined for vax. * Use a cast to avoid warning about shift of a signed variable. * Mark a condition as (potentially) a constant condition. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libc/gdtoa/strtod.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: he Date: Thu Mar 22 13:25:45 UTC 2012 Modified Files: src/lib/libc/gen: modf_ieee754.c Log Message: Add a pair of casts to silence lint about conversion possibly losing bits. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/libc/gen/modf_ieee754.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: he Date: Thu Mar 22 13:42:36 UTC 2012 Modified Files: src/lib/libc/gen: nlist_coff.c Log Message: Make this lint-free (only built for real for the __sh__ ports): * Mark some code after goto as /* NOTREACHED */ * Add a cast for file size (off_t) to size_t to avoid warning about possibly losing bits. * Avoid a "pointer casts may be troublesome" warning from lint by doing a cast via "void *" instead of directly to "struct coff_filehdr *". To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libc/gen/nlist_coff.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: christos Date: Thu Mar 22 14:18:34 UTC 2012 Modified Files: src/lib/libc/gen: nlist_coff.c Log Message: get rid of the cheesy BAD macros To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/lib/libc/gen/nlist_coff.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/pci
Module Name:src Committed By: sborrill Date: Thu Mar 22 15:05:37 UTC 2012 Modified Files: src/sys/dev/pci: mfi_pci.c Log Message: Add IBM ServeRAID M5014 as subtype To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/pci/mfi_pci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/gdb
Module Name:src Committed By: christos Date: Thu Mar 22 15:26:32 UTC 2012 Modified Files: src/external/gpl3/gdb/dist/gdb: nbsd-thread.c Log Message: complete the mapping of the lwp -> (lwp - 1), by adding 1 where appropriate. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/gpl3/gdb/dist/gdb/nbsd-thread.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gdtoa
Module Name:src Committed By: christos Date: Thu Mar 22 15:34:14 UTC 2012 Modified Files: src/lib/libc/gdtoa: strtod.c Log Message: add constcond, make shifts unsigned To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/lib/libc/gdtoa/strtod.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man4
Module Name:src Committed By: sborrill Date: Thu Mar 22 15:43:37 UTC 2012 Modified Files: src/share/man/man4: mfi.4 Log Message: Add IBM ServeRAID M1015 and M5014 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/share/man/man4/mfi.4 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/common/lib/libc/stdlib
Module Name:src Committed By: christos Date: Thu Mar 22 15:57:29 UTC 2012 Modified Files: src/common/lib/libc/stdlib: _strtoul.h Log Message: bring the casts to the operands, not the operation results. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/stdlib/_strtoul.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/dist/gdb
Module Name:src Committed By: christos Date: Thu Mar 22 16:06:02 UTC 2012 Modified Files: src/external/gpl3/gdb/dist/gdb: nbsd-thread.c Log Message: only +1 for the 0'th thread (if we did not find any other) To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gdb/dist/gdb/nbsd-thread.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc
Module Name:src Committed By: christos Date: Thu Mar 22 17:32:22 UTC 2012 Modified Files: src/lib/libc/arch/vax/gen: _lwp.c makecontext.c src/lib/libc/rpc: xdr_float.c Log Message: vax-specific lint fixes. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/lib/libc/arch/vax/gen/_lwp.c cvs rdiff -u -r1.3 -r1.4 src/lib/libc/arch/vax/gen/makecontext.c cvs rdiff -u -r1.35 -r1.36 src/lib/libc/rpc/xdr_float.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: dholland Date: Thu Mar 22 17:46:07 UTC 2012 Modified Files: src/sys/kern: kern_time.c Log Message: Misplaced parenthesis; fixes PR 44927 To generate a diff of this commit: cvs rdiff -u -r1.173 -r1.174 src/sys/kern/kern_time.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/sys
Module Name:src Committed By: christos Date: Thu Mar 22 18:20:46 UTC 2012 Modified Files: src/tests/lib/libc/sys: t_getitimer.c Log Message: dholland fixed PR/44927 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/sys/t_getitimer.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: drochner Date: Thu Mar 22 20:01:19 UTC 2012 Modified Files: src/lib/libpthread: pthread.c Log Message: don't reuse a dynamically allocated stack if a fixed one is requested To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133 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
Module Name:src Committed By: drochner Date: Thu Mar 22 20:34:43 UTC 2012 Modified Files: src/sbin/mount_kernfs: mount_kernfs.8 src/share/man/man4: Makefile fast_ipsec.4 ipsec.4 options.4 src/sys/conf: files src/sys/dist/ipf/netinet: ip_fil_netbsd.c src/sys/dist/pf/net: if_pfsync.c pf.c src/sys/miscfs/kernfs: kernfs.h kernfs_subr.c kernfs_vnops.c src/sys/netinet: in_pcb.c in_proto.c ip_icmp.c ip_input.c ip_mroute.c ip_output.c raw_ip.c tcp_input.c tcp_output.c tcp_subr.c tcp_usrreq.c udp_usrreq.c src/sys/netinet6: icmp6.c in6_pcb.c in6_proto.c ip6_forward.c ip6_input.c ip6_output.c ipsec.h nd6.c nd6_nbr.c raw_ip6.c src/sys/netipsec: files.netipsec src/sys/netkey: keysock.h src/usr.bin/netstat: Makefile fast_ipsec.c main.c netstat.h Removed Files: src/share/man/man4: kame_ipsec.4 src/sys/netinet6: ah.h ah_aesxcbcmac.c ah_aesxcbcmac.h ah_core.c ah_input.c ah_output.c esp.h esp_aesctr.c esp_aesctr.h esp_core.c esp_input.c esp_output.c esp_rijndael.c esp_rijndael.h files.ipsec ipcomp.h ipcomp_core.c ipcomp_input.c ipcomp_output.c ipsec.c ipsec_private.h src/sys/netkey: key.c key.h key_debug.c key_debug.h key_private.h key_var.h keydb.c keydb.h keysock.c src/usr.bin/netstat: ipsec.c Log Message: remove KAME IPSEC, replaced by FAST_IPSEC To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sbin/mount_kernfs/mount_kernfs.8 cvs rdiff -u -r1.581 -r1.582 src/share/man/man4/Makefile cvs rdiff -u -r1.12 -r1.13 src/share/man/man4/fast_ipsec.4 cvs rdiff -u -r1.37 -r1.38 src/share/man/man4/ipsec.4 cvs rdiff -u -r1.3 -r0 src/share/man/man4/kame_ipsec.4 cvs rdiff -u -r1.414 -r1.415 src/share/man/man4/options.4 cvs rdiff -u -r1.1045 -r1.1046 src/sys/conf/files cvs rdiff -u -r1.61 -r1.62 src/sys/dist/ipf/netinet/ip_fil_netbsd.c cvs rdiff -u -r1.8 -r1.9 src/sys/dist/pf/net/if_pfsync.c cvs rdiff -u -r1.68 -r1.69 src/sys/dist/pf/net/pf.c cvs rdiff -u -r1.36 -r1.37 src/sys/miscfs/kernfs/kernfs.h cvs rdiff -u -r1.24 -r1.25 src/sys/miscfs/kernfs/kernfs_subr.c cvs rdiff -u -r1.145 -r1.146 src/sys/miscfs/kernfs/kernfs_vnops.c cvs rdiff -u -r1.140 -r1.141 src/sys/netinet/in_pcb.c cvs rdiff -u -r1.102 -r1.103 src/sys/netinet/in_proto.c cvs rdiff -u -r1.128 -r1.129 src/sys/netinet/ip_icmp.c cvs rdiff -u -r1.298 -r1.299 src/sys/netinet/ip_input.c cvs rdiff -u -r1.122 -r1.123 src/sys/netinet/ip_mroute.c cvs rdiff -u -r1.213 -r1.214 src/sys/netinet/ip_output.c cvs rdiff -u -r1.113 -r1.114 src/sys/netinet/raw_ip.c cvs rdiff -u -r1.321 -r1.322 src/sys/netinet/tcp_input.c cvs rdiff -u -r1.173 -r1.174 src/sys/netinet/tcp_output.c cvs rdiff -u -r1.246 -r1.247 src/sys/netinet/tcp_subr.c cvs rdiff -u -r1.163 -r1.164 src/sys/netinet/tcp_usrreq.c cvs rdiff -u -r1.185 -r1.186 src/sys/netinet/udp_usrreq.c cvs rdiff -u -r1.26 -r0 src/sys/netinet6/ah.h src/sys/netinet6/esp.h cvs rdiff -u -r1.7 -r0 src/sys/netinet6/ah_aesxcbcmac.c cvs rdiff -u -r1.3 -r0 src/sys/netinet6/ah_aesxcbcmac.h \ src/sys/netinet6/esp_aesctr.h cvs rdiff -u -r1.48 -r0 src/sys/netinet6/ah_core.c cvs rdiff -u -r1.59 -r0 src/sys/netinet6/ah_input.c cvs rdiff -u -r1.33 -r0 src/sys/netinet6/ah_output.c cvs rdiff -u -r1.13 -r0 src/sys/netinet6/esp_aesctr.c \ src/sys/netinet6/ipcomp.h cvs rdiff -u -r1.46 -r0 src/sys/netinet6/esp_core.c cvs rdiff -u -r1.50 -r0 src/sys/netinet6/esp_input.c cvs rdiff -u -r1.36 -r0 src/sys/netinet6/esp_output.c cvs rdiff -u -r1.20 -r0 src/sys/netinet6/esp_rijndael.c cvs rdiff -u -r1.4 -r0 src/sys/netinet6/esp_rijndael.h cvs rdiff -u -r1.8 -r0 src/sys/netinet6/files.ipsec cvs rdiff -u -r1.159 -r1.160 src/sys/netinet6/icmp6.c cvs rdiff -u -r1.118 -r1.119 src/sys/netinet6/in6_pcb.c cvs rdiff -u -r1.95 -r1.96 src/sys/netinet6/in6_proto.c \ src/sys/netinet6/nd6_nbr.c cvs rdiff -u -r1.69 -r1.70 src/sys/netinet6/ip6_forward.c cvs rdiff -u -r1.136 -r1.137 src/sys/netinet6/ip6_input.c cvs rdiff -u -r1.146 -r1.147 src/sys/netinet6/ip6_output.c cvs rdiff -u -r1.30 -r0 src/sys/netinet6/ipcomp_core.c \ src/sys/netinet6/ipcomp_output.c cvs rdiff -u -r1.38 -r0 src/sys/netinet6/ipcomp_input.c cvs rdiff -u -r1.145 -r0 src/sys/netinet6/ipsec.c cvs rdiff -u -r1.53 -r1.54 src/sys/netinet6/ipsec.h cvs rdiff -u -r1.2 -r0 src/sys/netinet6/ipsec_private.h cvs rdiff -u -r1.141 -r1.142 src/sys/netinet6/nd6.c cvs rdiff -u -r1.109 -r1.110 src/sys/netinet6/raw_ip6.c cvs rdiff -u -r1.9 -r1.10 src/sys/netipsec/files.netipsec cvs rdiff -u -r1.181 -r0 src/sys/netkey/key.c cvs rdiff -u -r1.23 -r0 src/sys/netkey/key.h cvs rdiff -u -r1.35 -r0 src/sys/netkey/key_debug.c cvs rdiff -u -r1.12 -r0 src/sys/netkey/key_debug.h cvs rdiff -u -r1.2 -r0 src/sys/netkey/key_private.h cvs rdiff -u -r1.16 -r0 src/sys/netkey/key_var.h cvs rdiff -u -r1.19 -r0 src/sys/netkey/keydb.c cvs rdiff -u -r1.29 -r0 src/sys/netkey/keydb.h cvs rdiff -u -r1.54 -r
CVS commit: src/external/gpl2/xcvs/dist/src
Module Name:src Committed By: christos Date: Thu Mar 22 20:49:55 UTC 2012 Modified Files: src/external/gpl2/xcvs/dist/src: sanity.sh Log Message: >From Garo Taft: - Add a -w flag which will make the sanity script sleep for a second before and after checkouts, commits, and updates. - Fix expected output to look for the right default action on empty log message. It's now "abort". - Add new requests "Checkin-prog" and "Update-prog" to expectation values. - Add new "access"�and "group" files to CVSROOT admin database expectation values. - All tests pass except client-20, which hangs. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 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/distrib/sets/lists/man
Module Name:src Committed By: drochner Date: Thu Mar 22 20:52:47 UTC 2012 Modified Files: src/distrib/sets/lists/man: mi Log Message: obsolete kame_ipsec(4) To generate a diff of this commit: cvs rdiff -u -r1.1383 -r1.1384 src/distrib/sets/lists/man/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/mount_kernfs
Module Name:src Committed By: wiz Date: Thu Mar 22 21:47:20 UTC 2012 Modified Files: src/sbin/mount_kernfs: mount_kernfs.8 Log Message: Bump date for previous. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sbin/mount_kernfs/mount_kernfs.8 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/fs/v7fs
Module Name:src Committed By: njoly Date: Thu Mar 22 22:16:21 UTC 2012 Modified Files: src/sys/fs/v7fs: v7fs_vnops.c Log Message: Pass operations flags to genfs_can_chtimes(), not file ones. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/fs/v7fs/v7fs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpvfs
Module Name:src Committed By: njoly Date: Thu Mar 22 22:48:56 UTC 2012 Modified Files: src/sys/rump/librump/rumpvfs: rumpfs.c Log Message: Use the appropriates vop_*_args structures. To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 src/sys/rump/librump/rumpvfs/rumpfs.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
Module Name:src Committed By: riz Date: Thu Mar 22 22:50:49 UTC 2012 Modified Files: src/sys/arch/amd64/amd64 [netbsd-6]: machdep.c src/sys/arch/i386/i386 [netbsd-6]: machdep.c Log Message: Pull up following revision(s) (requested by mrg in ticket #126): sys/arch/amd64/amd64/machdep.c: revision 1.180 sys/arch/i386/i386/machdep.c: revision 1.724 make i386 and amd64 cpu_reboot() more similar. in particular, bring in the unmount/sync code from i386 to amd64, and call doshutdownhooks() for i386. the amd64 changes avoid umass triggering an assert later when sd@umass is trying to sync the cache. XXX merge x86 cpu_reboot(), but there's non-trivially different still. To generate a diff of this commit: cvs rdiff -u -r1.175.2.2 -r1.175.2.3 src/sys/arch/amd64/amd64/machdep.c cvs rdiff -u -r1.717.2.5 -r1.717.2.6 src/sys/arch/i386/i386/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/sys/dev/pci
Module Name:src Committed By: riz Date: Thu Mar 22 22:55:18 UTC 2012 Modified Files: src/sys/dev/pci [netbsd-6]: if_iwi.c Log Message: Pull up following revision(s) (requested by nisimura in ticket #134): sys/dev/pci/if_iwi.c: revision 1.90 Unbreak the endian issue in firmware header decoding. Comfirmed good and running by a powerpc machine. To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.89.2.1 src/sys/dev/pci/if_iwi.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/kern
Module Name:src Committed By: riz Date: Thu Mar 22 22:56:55 UTC 2012 Modified Files: src/sys/kern [netbsd-6]: kern_sysctl.c Log Message: Pull up following revision(s) (requested by martin in ticket #135): sys/kern/kern_sysctl.c: revision 1.234 Fix query of IMMEDIATE bool values (copy & pasto). To generate a diff of this commit: cvs rdiff -u -r1.233 -r1.233.4.1 src/sys/kern/kern_sysctl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libwrap
Module Name:src Committed By: joerg Date: Thu Mar 22 22:58:15 UTC 2012 Modified Files: src/lib/libwrap: diag.c Log Message: Format the diagnostic with vasprintf once and use plain syslog instead of messing with format strings. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libwrap/diag.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/ic
Module Name:src Committed By: riz Date: Thu Mar 22 22:58:24 UTC 2012 Modified Files: src/sys/dev/ic [netbsd-6]: mfi.c Log Message: Pull up following revision(s) (requested by sborrill in ticket #136): sys/dev/ic/mfi.c: revision 1.37 >From OpenBSD. Fixes a deadlock during autoconf. scrub more fields in the ccb when returning them to the free list after theyve been used, in particular the mfi header flags which has a bit that specifies if a command should be completed via the interrupt path. if we use a ccb during boot we set that bit, but it isnt necessarily cleared by things that use it later on. this means a ccb we expected to complete via an interrupt never actually generates an interrupt or appears in the reply queue. this obviously stalls the io. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.36.8.1 src/sys/dev/ic/mfi.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: joerg Date: Thu Mar 22 22:59:43 UTC 2012 Modified Files: src/dist/bzip2: bzlib_private.h src/lib/csu/common: crt0-common.c src/lib/libskey: skeysubr.c src/lib/libwrap: options.c rfc931.c shell_cmd.c tcpd.h Log Message: Add some more __dead as exposed by the recent WARN bumps. To generate a diff of this commit: cvs rdiff -u -r1.1.1.3 -r1.2 src/dist/bzip2/bzlib_private.h cvs rdiff -u -r1.7 -r1.8 src/lib/csu/common/crt0-common.c cvs rdiff -u -r1.27 -r1.28 src/lib/libskey/skeysubr.c cvs rdiff -u -r1.15 -r1.16 src/lib/libwrap/options.c cvs rdiff -u -r1.9 -r1.10 src/lib/libwrap/rfc931.c cvs rdiff -u -r1.6 -r1.7 src/lib/libwrap/shell_cmd.c cvs rdiff -u -r1.13 -r1.14 src/lib/libwrap/tcpd.h 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 22 23:00:29 UTC 2012 Modified Files: src/sys/dev/pci [netbsd-6]: pcidevs Log Message: Pull up following revision(s) (requested by sborrill in ticket #137): sys/dev/pci/pcidevs: revision 1.1107 Add some Symbios SAS2108 devices. Add new Symbios SAS2008 device (as used by IBM ServeRAID M1015). To generate a diff of this commit: cvs rdiff -u -r1.1102 -r1.1102.2.1 src/sys/dev/pci/pcidevs 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 22 23:01:06 UTC 2012 Modified Files: src/sys/dev/pci [netbsd-6]: pcidevs.h pcidevs_data.h Log Message: Regen for ticket #137. To generate a diff of this commit: cvs rdiff -u -r1.1097 -r1.1097.2.1 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1096 -r1.1096.2.1 src/sys/dev/pci/pcidevs_data.h 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
Module Name:src Committed By: riz Date: Thu Mar 22 23:04:27 UTC 2012 Modified Files: src/sys/dev/ic [netbsd-6]: mfi.c mfireg.h mfivar.h src/sys/dev/pci [netbsd-6]: mfi_pci.c Log Message: Pull up following revision(s) (requested by sborrill in ticket #138): sys/dev/pci/mfi_pci.c: revision 1.13 sys/dev/ic/mfi.c: revision 1.38 sys/dev/ic/mfivar.h: revision 1.15 sys/dev/ic/mfireg.h: revision 1.5 Add support for skinny variants (e.g. IBM ServeRAID M1015). Based on OpenBSD changes with some improvements. Tested on IBM x3550M3 with RAID0 and RAID1 volumes including bioctl(8) operation. To generate a diff of this commit: cvs rdiff -u -r1.36.8.1 -r1.36.8.2 src/sys/dev/ic/mfi.c cvs rdiff -u -r1.4 -r1.4.16.1 src/sys/dev/ic/mfireg.h cvs rdiff -u -r1.14 -r1.14.16.1 src/sys/dev/ic/mfivar.h cvs rdiff -u -r1.12 -r1.12.16.1 src/sys/dev/pci/mfi_pci.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 22 23:05:17 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.0 Log Message: Tickets 126, 134-138. To generate a diff of this commit: cvs rdiff -u -r1.1.2.58 -r1.1.2.59 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/external/mit/xorg
Module Name:src Committed By: joerg Date: Thu Mar 22 23:46:28 UTC 2012 Modified Files: src/external/mit/xorg/bin/xsetwallpaper: Makefile src/external/mit/xorg/bin/xterm: Makefile src/external/mit/xorg/bin/xvinfo: Makefile src/external/mit/xorg/lib/dri/i965: Makefile src/external/mit/xorg/lib/dri/libmesa: Makefile src/external/mit/xorg/lib/fontconfig/src: Makefile src/external/mit/xorg/lib/libGL: Makefile src/external/mit/xorg/lib/libOSMesa: Makefile src/external/mit/xorg/server/drivers/xf86-input-ws: Makefile src/external/mit/xorg/server/drivers/xf86-video-mga: Makefile src/external/mit/xorg/server/drivers/xf86-video-trident: Makefile src/external/mit/xorg/server/xorg-server/dix: Makefile Log Message: Disable a bunch of additional warnings for now for the clang build. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/bin/xsetwallpaper/Makefile cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/bin/xterm/Makefile cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/xvinfo/Makefile cvs rdiff -u -r1.13 -r1.14 src/external/mit/xorg/lib/dri/i965/Makefile cvs rdiff -u -r1.9 -r1.10 src/external/mit/xorg/lib/dri/libmesa/Makefile cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/lib/fontconfig/src/Makefile cvs rdiff -u -r1.17 -r1.18 src/external/mit/xorg/lib/libGL/Makefile cvs rdiff -u -r1.6 -r1.7 src/external/mit/xorg/lib/libOSMesa/Makefile cvs rdiff -u -r1.2 -r1.3 \ src/external/mit/xorg/server/drivers/xf86-input-ws/Makefile cvs rdiff -u -r1.9 -r1.10 \ src/external/mit/xorg/server/drivers/xf86-video-mga/Makefile cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-trident/Makefile cvs rdiff -u -r1.11 -r1.12 \ src/external/mit/xorg/server/xorg-server/dix/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libbluetooth
Module Name:src Committed By: joerg Date: Thu Mar 22 23:46:49 UTC 2012 Modified Files: src/lib/libbluetooth: sdp_data.c Log Message: Use __printflike. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/libbluetooth/sdp_data.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.