Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alan Barrett
On Mon, 16 Jun 2014, Alexander Nasonov wrote: Log Message: Add __RCSID. +#if !defined(lint) +__RCSID($NetBSD: rumpuser_bio.c,v 1.8 2014/06/16 21:07:28 alnsn Exp $); +#endif /* !lint */ Some historical uses of __RCSID have an unnecessary #if/#endif wrapper around them, but for new uses,

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Alan Barrett wrote: Some historical uses of __RCSID have an unnecessary #if/#endif wrapper around them, but for new uses, please just write __RCSID(...); without any #if/#endif wrapper. I copy/pasted this block from another file from the same directory. Alex

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Antti Kantee
On Tue, Jun 17, 2014 at 08:42:35AM +, Alexander Nasonov wrote: Module Name: src Committed By: alnsn Date: Tue Jun 17 08:42:35 UTC 2014 Modified Files: src/lib/librumpuser: Makefile Log Message: Antti objected to including rumpuser_sync_icache. Exclude it from the

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Antti Kantee wrote: To be clear: the objection was to modifying a stable interface without coordination. The hypercall interface is implemented in multiple places outside of the NetBSD tree, including by 3rd parties. Stable interface in -current? How are you supposed to make any significant

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Antti Kantee
On 17/06/14 09:46, Alexander Nasonov wrote: Antti Kantee wrote: To be clear: the objection was to modifying a stable interface without coordination. The hypercall interface is implemented in multiple places outside of the NetBSD tree, including by 3rd parties. Stable interface in -current?

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Antti Kantee wrote: I think that will be overengineering it, but if you want to come up with a concrete proposal patch, please. I'd simply use discussion and not rushing commits to avoid issues here. The code is in the tree already. I don't need anything else for sljit. The sljit library

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Antti Kantee wrote: Use RUMPCOMP_USER_SRCS, several examples under src/sys/rump Thanks for the pointer, will do. That's one more indication that sync icache is the wrong level of problem to represent at the interface level. Existence of __clear_cache is an indication of the opposite. I'm not

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Antti Kantee
On 17/06/14 11:23, Alexander Nasonov wrote: If you don't have time to wait for discussion or coordination, do everything in the privacy of the sljit component. Please teach me how to create a private component. Use RUMPCOMP_USER_SRCS, several examples under src/sys/rump I'm not saying that

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Antti Kantee
On 17/06/14 11:52, Alexander Nasonov wrote: That's one more indication that sync icache is the wrong level of problem to represent at the interface level. Existence of __clear_cache is an indication of the opposite. Let's be thankful we're not discussing implementing a compiler. If it were

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Antti Kantee wrote: Ok, one more try, this time with an example: * fact: interface will be used to say I have loaded code here, please arrange things so that it can be executed * fact: you want to call the interface sync icache and possess those semantics the example: Let's assume some

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Valery Ushakov
On Tue, Jun 17, 2014 at 16:20:57 +0200, Joerg Sonnenberger wrote: On Tue, Jun 17, 2014 at 06:43:21AM +, Alexander Nasonov wrote: Module Name:src Committed By: alnsn Date: Tue Jun 17 06:43:21 UTC 2014 Modified Files: src/lib/librumpuser:

Re: CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Valery Ushakov wrote: In that case a local rump header plays that role (either including cdefs.h or providing the necessary definition). Yes, I believe that rumpuser_port.h includes sys/cdefs.h. The conditional is a separate issue and yes it shoud be gc'ed. I agree but I wanted to be

CVS commit: src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:31:47 UTC 2014 Modified Files: src/lib/librumpuser: Makefile src/sys/rump/include/rump: rumpuser.h src/sys/rump/librump/rumpkern/arch/arm: Makefile.inc Added Files: src/lib/librumpuser:

CVS commit: src/tests/lib

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:36:01 UTC 2014 Modified Files: src/tests/lib/libbpfjit: Makefile src/tests/lib/libsljit: Makefile Log Message: Link with -l${MACHINE_CPU}. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:36:40 UTC 2014 Modified Files: src/distrib/sets/lists/comp: ad.arm src/sys/arch/arm/include: Makefile src/sys/arch/evbarm/include: Makefile src/sys/arch/hpcarm/include: Makefile

CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:43:21 UTC 2014 Modified Files: src/lib/librumpuser: rumpuser_pth_dummy.c Log Message: For consistency with other files in the same directory don't include sys/cdefs.h before __RCSID. To generate a diff of this

CVS commit: src/external/bsd/openpam/dist/lib

2014-06-17 Thread S.P.Zeidler
Module Name:src Committed By: spz Date: Tue Jun 17 07:08:47 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib: openpam_configure.c Log Message: make sure we have a log message at the appropriate level (error) on why pam is failing in the case of an included pam

CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 08:42:35 UTC 2014 Modified Files: src/lib/librumpuser: Makefile Log Message: Antti objected to including rumpuser_sync_icache. Exclude it from the build. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: src/sys/rump/librump/rumpkern/arch/arm

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 08:50:49 UTC 2014 Modified Files: src/sys/rump/librump/rumpkern/arch/arm: Makefile.inc Log Message: Antti objected to including rumpuser_sync_icache. Exclude it from the build. To generate a diff of this commit: cvs

CVS commit: src/sys/dev/usb

2014-06-17 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Tue Jun 17 09:35:46 UTC 2014 Modified Files: src/sys/dev/usb: uhidev.c uhidev.h Log Message: PR/48908: Cannot open /dev/uhid? when another report id at the same uhidev was already opened. Restore the sc reference counting lost in

CVS commit: src/lib/librumpuser

2014-06-17 Thread Justin Cormack
Module Name:src Committed By: justin Date: Tue Jun 17 09:53:59 UTC 2014 Modified Files: src/lib/librumpuser: rumpuser_port.h Log Message: Applications are not supposed to and do not need to include features.h explicitly To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/net

2014-06-17 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Tue Jun 17 10:39:46 UTC 2014 Modified Files: src/sys/net: bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c Log Message: Restructure ether_input and bridge_input The network stack of NetBSD is well organized and layered. A

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Tue Jun 17 10:47:27 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: remove last remnants of CG8 emulation To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/dev/sbus/tcx.c Please note that

CVS commit: src/sys/fs/union

2014-06-17 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Tue Jun 17 12:38:12 UTC 2014 Modified Files: src/sys/fs/union: union_subr.c Log Message: Unlock directory vnode after VOP_CREATE. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 src/sys/fs/union/union_subr.c

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Tue Jun 17 14:25:17 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: fix a few 8bit tcx issues: - set ROP when clearing the screen, tcx actually uses it - deal with possible 2MB VRAM tcx while there, consistently

CVS import: src/sys/external/bsd/sljit/dist

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 15:37:44 UTC 2014 Update of /cvsroot/src/sys/external/bsd/sljit/dist In directory ivanova.netbsd.org:/tmp/cvs-serv17842 Log Message: Import sljit 0.91 (svn r257). The changes since the last import are: r257: Add missing

CVS commit: src/usr.bin/sed

2014-06-17 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Tue Jun 17 16:39:02 UTC 2014 Modified Files: src/usr.bin/sed: main.c sed.1 Log Message: add -u (unbuffered output) after GNU sed. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/usr.bin/sed/main.c cvs rdiff

CVS commit: src/sys/net

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 16:52:33 UTC 2014 Modified Files: src/sys/net: bpfjit.c Log Message: Update code to the latest sljit version. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/net/bpfjit.c Please note that diffs

CVS commit: src/sys/external/bsd/sljit

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 16:49:11 UTC 2014 Modified Files: src/sys/external/bsd/sljit: README.import Log Message: New sljit version is r257. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/external/bsd/sljit/README.import

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 17:30:48 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitConfigInternal.h Log Message: Don't redefine SLJIT_HALT_PROCESS(). To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 \

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 17:37:08 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c if_bgereg.h Log Message: - Print yet another hardware config word in SRAM(BGE_SRAM_DATA_CFG_5) for BCM5717 and newer devices. - Fix a trivial bug in #ifdef

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 18:18:51 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c Log Message: Fix a variable name in last commit. To generate a diff of this commit: cvs rdiff -u -r1.267 -r1.268 src/sys/dev/pci/if_bge.c Please note that

CVS commit: src/doc

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 18:48:35 UTC 2014 Modified Files: src/doc: 3RDPARTY Log Message: Update sljit entry. To generate a diff of this commit: cvs rdiff -u -r1.1123 -r1.1124 src/doc/3RDPARTY Please note that diffs are not public domain;

CVS commit: src/tests/lib

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:26:18 UTC 2014 Modified Files: src/tests/lib/libbpfjit: Makefile src/tests/lib/libsljit: Makefile Log Message: libarch on sparc isn't -l${MACHINE_CPU}. Don't link to it. To generate a diff of this commit:

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:33:20 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitExecAllocator.c sljitLir.c sljitNativeARM_32.c sljitNativeARM_64.c sljitNativeARM_T2_32.c sljitNativeMIPS_32.c

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:36:45 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitConfig.h sljitConfigInternal.h sljitLir.h Log Message: Add $NetBSD$. To generate a diff of this commit: cvs rdiff -u -r1.9

CVS commit: src/sys/external/bsd/sljit/dist/test_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:37:03 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/test_src: sljitMain.c sljitTest.c Log Message: Add $NetBSD$. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4

CVS commit: src/sys/dev

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 21:37:20 UTC 2014 Modified Files: src/sys/dev/mii: brgphy.c brgphyreg.h src/sys/dev/pci: if_bge.c if_bnx.c if_bnxreg.h Log Message: - Fix detection of BGEPHYF_FIBER_{MII|TBI} - Add BCM5708S support in

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 22:29:13 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c Log Message: Add BGEPHYF_NO_WIRESPEED flag for fiber devices. To generate a diff of this commit: cvs rdiff -u -r1.269 -r1.270 src/sys/dev/pci/if_bge.c

CVS commit: src/sys/net

2014-06-17 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Wed Jun 18 01:19:19 UTC 2014 Modified Files: src/sys/net: bridgestp.c Log Message: Make local functions static This change unveiled some functions are unused. Remove some and comment out the others. No functional change. To

CVS commit: [netbsd-6] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:03:26 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:03:46 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.118 -r1.1.2.119 src/doc/CHANGES-6.2 Please note that diffs are not

CVS commit: [netbsd-6-1] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:15:27 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6-1]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6-1] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:15:51 UTC 2014 Modified Files: src/doc [netbsd-6-1]: CHANGES-6.1.5 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-6.1.5 Please note that diffs are

CVS commit: [netbsd-6-0] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:19:29 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6-0]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6-0] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:20:05 UTC 2014 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.6 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-6.0.6 Please note that diffs are

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Wed Jun 18 04:54:09 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: 8bit tcx doesn't implement a hardware cursor, so don't pretend it does. Also, avoid poking the hw cursor registers in that case. Real hardware

CVS commit: src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:31:47 UTC 2014 Modified Files: src/lib/librumpuser: Makefile src/sys/rump/include/rump: rumpuser.h src/sys/rump/librump/rumpkern/arch/arm: Makefile.inc Added Files: src/lib/librumpuser:

CVS commit: src/tests/lib

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:36:01 UTC 2014 Modified Files: src/tests/lib/libbpfjit: Makefile src/tests/lib/libsljit: Makefile Log Message: Link with -l${MACHINE_CPU}. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:36:40 UTC 2014 Modified Files: src/distrib/sets/lists/comp: ad.arm src/sys/arch/arm/include: Makefile src/sys/arch/evbarm/include: Makefile src/sys/arch/hpcarm/include: Makefile

CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 06:43:21 UTC 2014 Modified Files: src/lib/librumpuser: rumpuser_pth_dummy.c Log Message: For consistency with other files in the same directory don't include sys/cdefs.h before __RCSID. To generate a diff of this

CVS commit: src/external/bsd/openpam/dist/lib

2014-06-17 Thread S.P.Zeidler
Module Name:src Committed By: spz Date: Tue Jun 17 07:08:47 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib: openpam_configure.c Log Message: make sure we have a log message at the appropriate level (error) on why pam is failing in the case of an included pam

CVS commit: src/lib/librumpuser

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 08:42:35 UTC 2014 Modified Files: src/lib/librumpuser: Makefile Log Message: Antti objected to including rumpuser_sync_icache. Exclude it from the build. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: src/sys/rump/librump/rumpkern/arch/arm

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 08:50:49 UTC 2014 Modified Files: src/sys/rump/librump/rumpkern/arch/arm: Makefile.inc Log Message: Antti objected to including rumpuser_sync_icache. Exclude it from the build. To generate a diff of this commit: cvs

CVS commit: src/sys/dev/usb

2014-06-17 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Tue Jun 17 09:35:46 UTC 2014 Modified Files: src/sys/dev/usb: uhidev.c uhidev.h Log Message: PR/48908: Cannot open /dev/uhid? when another report id at the same uhidev was already opened. Restore the sc reference counting lost in

CVS commit: src/lib/librumpuser

2014-06-17 Thread Justin Cormack
Module Name:src Committed By: justin Date: Tue Jun 17 09:53:59 UTC 2014 Modified Files: src/lib/librumpuser: rumpuser_port.h Log Message: Applications are not supposed to and do not need to include features.h explicitly To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/net

2014-06-17 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Tue Jun 17 10:39:46 UTC 2014 Modified Files: src/sys/net: bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c Log Message: Restructure ether_input and bridge_input The network stack of NetBSD is well organized and layered. A

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Tue Jun 17 10:47:27 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: remove last remnants of CG8 emulation To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/dev/sbus/tcx.c Please note that

CVS commit: src/sys/fs/union

2014-06-17 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Tue Jun 17 12:38:12 UTC 2014 Modified Files: src/sys/fs/union: union_subr.c Log Message: Unlock directory vnode after VOP_CREATE. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 src/sys/fs/union/union_subr.c

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Tue Jun 17 14:25:17 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: fix a few 8bit tcx issues: - set ROP when clearing the screen, tcx actually uses it - deal with possible 2MB VRAM tcx while there, consistently

CVS import: src/sys/external/bsd/sljit/dist

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 15:37:44 UTC 2014 Update of /cvsroot/src/sys/external/bsd/sljit/dist In directory ivanova.netbsd.org:/tmp/cvs-serv17842 Log Message: Import sljit 0.91 (svn r257). The changes since the last import are: r257: Add missing

CVS commit: src/usr.bin/sed

2014-06-17 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Tue Jun 17 16:39:02 UTC 2014 Modified Files: src/usr.bin/sed: main.c sed.1 Log Message: add -u (unbuffered output) after GNU sed. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/usr.bin/sed/main.c cvs rdiff

CVS commit: src/sys/external/bsd/sljit/dist

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 16:48:24 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitConfig.h sljitConfigInternal.h sljitExecAllocator.c sljitLir.c sljitNativePPC_common.c sljitNativeX86_32.c

CVS commit: src/sys/net

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 16:52:33 UTC 2014 Modified Files: src/sys/net: bpfjit.c Log Message: Update code to the latest sljit version. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/net/bpfjit.c Please note that diffs

CVS commit: src/sys/external/bsd/sljit

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 16:49:11 UTC 2014 Modified Files: src/sys/external/bsd/sljit: README.import Log Message: New sljit version is r257. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/external/bsd/sljit/README.import

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 17:30:48 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitConfigInternal.h Log Message: Don't redefine SLJIT_HALT_PROCESS(). To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 \

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 17:37:08 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c if_bgereg.h Log Message: - Print yet another hardware config word in SRAM(BGE_SRAM_DATA_CFG_5) for BCM5717 and newer devices. - Fix a trivial bug in #ifdef

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 18:18:51 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c Log Message: Fix a variable name in last commit. To generate a diff of this commit: cvs rdiff -u -r1.267 -r1.268 src/sys/dev/pci/if_bge.c Please note that

CVS commit: src/doc

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 18:48:35 UTC 2014 Modified Files: src/doc: 3RDPARTY Log Message: Update sljit entry. To generate a diff of this commit: cvs rdiff -u -r1.1123 -r1.1124 src/doc/3RDPARTY Please note that diffs are not public domain;

CVS commit: src/tests/lib

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:26:18 UTC 2014 Modified Files: src/tests/lib/libbpfjit: Makefile src/tests/lib/libsljit: Makefile Log Message: libarch on sparc isn't -l${MACHINE_CPU}. Don't link to it. To generate a diff of this commit:

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:33:20 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitExecAllocator.c sljitLir.c sljitNativeARM_32.c sljitNativeARM_64.c sljitNativeARM_T2_32.c sljitNativeMIPS_32.c

CVS commit: src/sys/external/bsd/sljit/dist/sljit_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:36:45 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/sljit_src: sljitConfig.h sljitConfigInternal.h sljitLir.h Log Message: Add $NetBSD$. To generate a diff of this commit: cvs rdiff -u -r1.9

CVS commit: src/sys/external/bsd/sljit/dist/test_src

2014-06-17 Thread Alexander Nasonov
Module Name:src Committed By: alnsn Date: Tue Jun 17 19:37:03 UTC 2014 Modified Files: src/sys/external/bsd/sljit/dist/test_src: sljitMain.c sljitTest.c Log Message: Add $NetBSD$. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4

CVS commit: src/sys/dev

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 21:37:20 UTC 2014 Modified Files: src/sys/dev/mii: brgphy.c brgphyreg.h src/sys/dev/pci: if_bge.c if_bnx.c if_bnxreg.h Log Message: - Fix detection of BGEPHYF_FIBER_{MII|TBI} - Add BCM5708S support in

CVS commit: src/sys/dev/pci

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Tue Jun 17 22:29:13 UTC 2014 Modified Files: src/sys/dev/pci: if_bge.c Log Message: Add BGEPHYF_NO_WIRESPEED flag for fiber devices. To generate a diff of this commit: cvs rdiff -u -r1.269 -r1.270 src/sys/dev/pci/if_bge.c

CVS commit: src/sys/net

2014-06-17 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Wed Jun 18 01:19:19 UTC 2014 Modified Files: src/sys/net: bridgestp.c Log Message: Make local functions static This change unveiled some functions are unused. Remove some and comment out the others. No functional change. To

CVS commit: [netbsd-6] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:03:26 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:03:46 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.118 -r1.1.2.119 src/doc/CHANGES-6.2 Please note that diffs are not

CVS commit: [netbsd-6-1] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:15:27 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6-1]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6-1] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:15:51 UTC 2014 Modified Files: src/doc [netbsd-6-1]: CHANGES-6.1.5 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-6.1.5 Please note that diffs are

CVS commit: [netbsd-6-0] src/external/bsd/openpam/dist/lib

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:19:29 UTC 2014 Modified Files: src/external/bsd/openpam/dist/lib [netbsd-6-0]: openpam_configure.c Log Message: Pull up following revision(s) (requested by christos in ticket #1076):

CVS commit: [netbsd-6-0] src/doc

2014-06-17 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jun 18 02:20:05 UTC 2014 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.6 Log Message: Ticket 1076. To generate a diff of this commit: cvs rdiff -u -r1.1.2.9 -r1.1.2.10 src/doc/CHANGES-6.0.6 Please note that diffs are

CVS commit: src/sys/dev/sbus

2014-06-17 Thread Michael Lorenz
Module Name:src Committed By: macallan Date: Wed Jun 18 04:54:09 UTC 2014 Modified Files: src/sys/dev/sbus: tcx.c Log Message: 8bit tcx doesn't implement a hardware cursor, so don't pretend it does. Also, avoid poking the hw cursor registers in that case. Real hardware