CVS commit: src/sys/arch
Module Name:src Committed By: tsutsui Date: Tue Nov 15 10:57:05 UTC 2011 Modified Files: src/sys/arch/amiga/amiga: locore.s src/sys/arch/atari/atari: locore.s src/sys/arch/cesfic/cesfic: locore.s src/sys/arch/hp300/hp300: locore.s src/sys/arch/luna68k/luna68k: locore.s src/sys/arch/m68k/m68k: support.s src/sys/arch/mac68k/mac68k: locore.s src/sys/arch/mvme68k/mvme68k: locore.s src/sys/arch/news68k/news68k: locore.s src/sys/arch/next68k/next68k: locore.s src/sys/arch/sun2/sun2: locore.s src/sys/arch/sun3/sun3: locore.s src/sys/arch/sun3/sun3x: locore.s src/sys/arch/x68k/x68k: locore.s Log Message: Move spread getsfc() and getdfc() functions into common m68k/support.s. Note: - ENTRY_NOPROFILE() is okay since they are used only for debug printf - they are declared to return int so no need to put a return value into %a0 To generate a diff of this commit: cvs rdiff -u -r1.152 -r1.153 src/sys/arch/amiga/amiga/locore.s cvs rdiff -u -r1.108 -r1.109 src/sys/arch/atari/atari/locore.s cvs rdiff -u -r1.25 -r1.26 src/sys/arch/cesfic/cesfic/locore.s cvs rdiff -u -r1.162 -r1.163 src/sys/arch/hp300/hp300/locore.s cvs rdiff -u -r1.43 -r1.44 src/sys/arch/luna68k/luna68k/locore.s cvs rdiff -u -r1.6 -r1.7 src/sys/arch/m68k/m68k/support.s cvs rdiff -u -r1.163 -r1.164 src/sys/arch/mac68k/mac68k/locore.s cvs rdiff -u -r1.107 -r1.108 src/sys/arch/mvme68k/mvme68k/locore.s cvs rdiff -u -r1.58 -r1.59 src/sys/arch/news68k/news68k/locore.s cvs rdiff -u -r1.58 -r1.59 src/sys/arch/next68k/next68k/locore.s cvs rdiff -u -r1.23 -r1.24 src/sys/arch/sun2/sun2/locore.s cvs rdiff -u -r1.93 -r1.94 src/sys/arch/sun3/sun3/locore.s cvs rdiff -u -r1.62 -r1.63 src/sys/arch/sun3/sun3x/locore.s cvs rdiff -u -r1.105 -r1.106 src/sys/arch/x68k/x68k/locore.s Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch
Module Name:src Committed By: tsutsui Date: Tue Nov 15 12:23:23 UTC 2011 Modified Files: src/sys/arch/atari/conf: files.atari src/sys/arch/atari/include: cpu.h src/sys/arch/m68k/include: m68k.h src/sys/arch/mac68k/conf: files.mac68k src/sys/arch/sun3/conf: files.sun3 src/sys/arch/x68k/conf: files.x68k src/sys/arch/x68k/include: cpu.h Added Files: src/sys/arch/atari/atari: fpu_machdep.c src/sys/arch/m68k/m68k: fpu.c src/sys/arch/mac68k/mac68k: fpu_machdep.c src/sys/arch/sun3/sun3: fpu_machdep.c Removed Files: src/sys/arch/atari/atari: fpu.c src/sys/arch/mac68k/mac68k: fpu.c src/sys/arch/sun3/sun3: fpu.c src/sys/arch/x68k/x68k: fpu.c Log Message: Merge copy-and-pasted fpu_probe() function (to share it among more m68k ports). Tested on TT030, Sun3/80, and X68030. To generate a diff of this commit: cvs rdiff -u -r1.15 -r0 src/sys/arch/atari/atari/fpu.c cvs rdiff -u -r0 -r1.1 src/sys/arch/atari/atari/fpu_machdep.c cvs rdiff -u -r1.119 -r1.120 src/sys/arch/atari/conf/files.atari cvs rdiff -u -r1.67 -r1.68 src/sys/arch/atari/include/cpu.h cvs rdiff -u -r1.19 -r1.20 src/sys/arch/m68k/include/m68k.h cvs rdiff -u -r0 -r1.1 src/sys/arch/m68k/m68k/fpu.c cvs rdiff -u -r1.124 -r1.125 src/sys/arch/mac68k/conf/files.mac68k cvs rdiff -u -r1.38 -r0 src/sys/arch/mac68k/mac68k/fpu.c cvs rdiff -u -r0 -r1.1 src/sys/arch/mac68k/mac68k/fpu_machdep.c cvs rdiff -u -r1.79 -r1.80 src/sys/arch/sun3/conf/files.sun3 cvs rdiff -u -r1.25 -r0 src/sys/arch/sun3/sun3/fpu.c cvs rdiff -u -r0 -r1.1 src/sys/arch/sun3/sun3/fpu_machdep.c cvs rdiff -u -r1.74 -r1.75 src/sys/arch/x68k/conf/files.x68k cvs rdiff -u -r1.54 -r1.55 src/sys/arch/x68k/include/cpu.h cvs rdiff -u -r1.14 -r0 src/sys/arch/x68k/x68k/fpu.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/luna68k
Module Name:src Committed By: tsutsui Date: Tue Nov 15 13:25:44 UTC 2011 Modified Files: src/sys/arch/luna68k/conf: files.luna68k src/sys/arch/luna68k/luna68k: locore.s machdep.c Log Message: Use now common fpu_probe() and print FPU type per probe result since it turns out that server and high-end LUNA models actually have MC68882, not MC68881 as basic and standard models: http://www.h2.dion.ne.jp/~dogs/collect/ds/luna.html Also put LUNA model names into cpu_model[] for sysctl(3). (maybe we don't have to consider sysctl backward compatibility on this port ;-) To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/arch/luna68k/conf/files.luna68k cvs rdiff -u -r1.44 -r1.45 src/sys/arch/luna68k/luna68k/locore.s cvs rdiff -u -r1.85 -r1.86 src/sys/arch/luna68k/luna68k/machdep.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/dist/ipsec-tools/src/racoon
Module Name:src Committed By: tteras Date: Tue Nov 15 13:51:24 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: cfparse.y cftoken.l isakmp_xauth.c isakmp_xauth.h racoon.conf.5 Log Message: >From Vincent Bernat : TLS support for LDAP To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/crypto/dist/ipsec-tools/src/racoon/cfparse.y cvs rdiff -u -r1.24 -r1.25 src/crypto/dist/ipsec-tools/src/racoon/cftoken.l cvs rdiff -u -r1.23 -r1.24 \ src/crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c cvs rdiff -u -r1.7 -r1.8 \ src/crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.h cvs rdiff -u -r1.62 -r1.63 \ src/crypto/dist/ipsec-tools/src/racoon/racoon.conf.5 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat/netbsd32
Module Name:src Committed By: njoly Date: Tue Nov 15 14:13:18 UTC 2011 Modified Files: src/sys/compat/netbsd32: netbsd32_netbsd.c Log Message: Fix pipe2 return value. To generate a diff of this commit: cvs rdiff -u -r1.174 -r1.175 src/sys/compat/netbsd32/netbsd32_netbsd.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: riz Date: Tue Nov 15 16:50:46 UTC 2011 Modified Files: src/distrib/sets/lists/base: mi src/distrib/sets/lists/comp: mi src/distrib/sets/lists/man: mi src/distrib/sets/lists/modules: mi src/sbin: Makefile src/sys/conf: files src/sys/dev: Makefile src/sys/modules: Makefile Added Files: src/sys/modules/iscsi: Makefile Log Message: Build and install new in-kernel iscsi initiator kernel module and associated binaries (iscsid, iscsictl) if MKISCSI != no. Initiator can also be built into a kernel by adding 'pseudo-device iscsi' in kernel configuration. To generate a diff of this commit: cvs rdiff -u -r1.970 -r1.971 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.1709 -r1.1710 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.1354 -r1.1355 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.36 -r1.37 src/distrib/sets/lists/modules/mi cvs rdiff -u -r1.121 -r1.122 src/sbin/Makefile cvs rdiff -u -r1.1030 -r1.1031 src/sys/conf/files cvs rdiff -u -r1.32 -r1.33 src/sys/dev/Makefile cvs rdiff -u -r1.97 -r1.98 src/sys/modules/Makefile cvs rdiff -u -r0 -r1.1 src/sys/modules/iscsi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/arm
Module Name:src Committed By: matt Date: Tue Nov 15 19:01:54 UTC 2011 Modified Files: src/sys/arch/arm/arm: undefined.c Log Message: Make sure to advance past the instruction we just emulated. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/sys/arch/arm/arm/undefined.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/dist/ipsec-tools/src/racoon
Module Name:src Committed By: wiz Date: Tue Nov 15 19:15:58 UTC 2011 Modified Files: src/crypto/dist/ipsec-tools/src/racoon: racoon.conf.5 Log Message: Bump date for new tls option. To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 \ src/crypto/dist/ipsec-tools/src/racoon/racoon.conf.5 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: njoly Date: Tue Nov 15 22:02:20 UTC 2011 Modified Files: src/distrib/sets/lists/comp: mi Log Message: +iscsictl.debug +iscsid.debug To generate a diff of this commit: cvs rdiff -u -r1.1710 -r1.1711 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/lib/libc/sys
Module Name:src Committed By: christos Date: Tue Nov 15 22:45:26 UTC 2011 Modified Files: src/lib/libc/sys: getrlimit.2 Log Message: mention RLIMIT_RSS is borked. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/lib/libc/sys/getrlimit.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: jdc Date: Tue Nov 15 22:55:28 UTC 2011 Modified Files: src/share/mk: bsd.own.mk Log Message: Switch alpha to gdb 7. To generate a diff of this commit: cvs rdiff -u -r1.691 -r1.692 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libedit
Module Name:src Committed By: christos Date: Tue Nov 15 23:54:14 UTC 2011 Modified Files: src/lib/libedit: chartype.h Log Message: Since Width() is used only for display purposes we don't want to pass -1 for unprintable characters. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libedit/chartype.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libedit
Module Name:src Committed By: christos Date: Wed Nov 16 01:45:10 UTC 2011 Modified Files: src/lib/libedit: chartype.h Log Message: easier with an int for now. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libedit/chartype.h 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: Wed Nov 16 04:52:40 UTC 2011 Modified Files: src/lib/libperfuse: ops.c Log Message: Correctly pass the advlock owner id from kernel to filesystem, instead of using process PID. Allow the usage of the read filehandle for advlock, in order to support shared locks on read-only files To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 src/lib/libperfuse/ops.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: dyoung Date: Wed Nov 16 06:09:37 UTC 2011 Modified Files: src/sys/net: if.c Log Message: Before freeing an ifnet_lock, destroy its mutex. Should help with kern/43294. To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 src/sys/net/if.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/adb
Module Name:src Committed By: macallan Date: Wed Nov 16 06:56:50 UTC 2011 Modified Files: src/sys/dev/adb: adb_kbd.c Log Message: only require the power button to be pressed twice on keyboards where it's easy to hit by accident, send an event to sysmon immediately otherwise To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/adb/adb_kbd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.