CVS commit: src/share/examples/npf

2014-02-07 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Sat Feb  8 01:32:19 UTC 2014

Modified Files:
src/share/examples/npf: host-npf.conf soho_gw-npf.conf

Log Message:
Sync some NPF config examples with the reality.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/examples/npf/host-npf.conf \
src/share/examples/npf/soho_gw-npf.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/npf/npfctl

2014-02-07 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Sat Feb  8 01:20:09 UTC 2014

Modified Files:
src/usr.sbin/npf/npfctl: npf.conf.5 npf_parse.y npf_scan.l npf_show.c

Log Message:
NPF:
- Adjust the syntax - remove "inet" keyword in favour of more explicit
  "inet4" for the address family.  Consistent with "inet6" for IPv6.
- Adjust and improve the man page a little bit.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.sbin/npf/npfctl/npf.conf.5
cvs rdiff -u -r1.30 -r1.31 src/usr.sbin/npf/npfctl/npf_parse.y
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/npf/npfctl/npf_scan.l
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/npf/npfctl/npf_show.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-02-07 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Fri Feb  7 23:45:22 UTC 2014

Modified Files:
src/lib/libnpf: npf.c npf.h
src/sys/net/npf: npf.h npf_nat.c
src/usr.sbin/npf/npfctl: npf_build.c npf_show.c
src/usr.sbin/npf/npftest: npftest.conf
src/usr.sbin/npf/npftest/libnpftest: npf_nat_test.c npf_test.h

Log Message:
NPF: add support for static (stateless) NAT.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/lib/libnpf/npf.c
cvs rdiff -u -r1.23 -r1.24 src/lib/libnpf/npf.h
cvs rdiff -u -r1.35 -r1.36 src/sys/net/npf/npf.h
cvs rdiff -u -r1.23 -r1.24 src/sys/net/npf/npf_nat.c
cvs rdiff -u -r1.34 -r1.35 src/usr.sbin/npf/npfctl/npf_build.c
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/npf/npfctl/npf_show.c
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/npf/npftest/npftest.conf
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/npf/npftest/libnpftest/npf_nat_test.c
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/npf/npftest/libnpftest/npf_test.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/comp

2014-02-07 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Fri Feb  7 23:18:04 UTC 2014

Modified Files:
src/distrib/sets/lists/comp: md.amd64 md.i386

Log Message:
Add cpu_extended_state.h


To generate a diff of this commit:
cvs rdiff -u -r1.212 -r1.213 src/distrib/sets/lists/comp/md.amd64
cvs rdiff -u -r1.142 -r1.143 src/distrib/sets/lists/comp/md.i386

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2014-02-07 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Fri Feb  7 22:40:22 UTC 2014

Modified Files:
src/sys/arch/amd64/amd64: fpu.c machdep.c netbsd32_machdep.c
process_machdep.c
src/sys/arch/amd64/conf: files.amd64
src/sys/arch/amd64/include: fpu.h netbsd32_machdep.h pcb.h reg.h
src/sys/arch/i386/conf: files.i386
src/sys/arch/i386/i386: process_machdep.c
src/sys/arch/i386/include: npx.h
src/sys/arch/x86/include: cpu_extended_state.h
src/sys/arch/xen/conf: files.xen
src/sys/compat/linux/arch/amd64: linux_machdep.c linux_machdep.h
src/sys/compat/linux32/arch/amd64: linux32_machdep.c
Added Files:
src/sys/arch/x86/x86: convert_xmm_s87.c

Log Message:
Convert the amd64 build to use x86/cpu_extended_state.h so that the fpu
  definitions match those of i386.
Mostly just structure and field renames, in addition:
1) process_xmm_to_s87() and process_s87_to_xmm() moved into
   x86/convert_xmm_s87.c so they can be used by amd64's netbsd32 code.
2) The linux signal code simplified to use a structure copy for ths fxsave
   data - it matches the hardware definition and won't change.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/amd64/amd64/fpu.c
cvs rdiff -u -r1.201 -r1.202 src/sys/arch/amd64/amd64/machdep.c
cvs rdiff -u -r1.88 -r1.89 src/sys/arch/amd64/amd64/netbsd32_machdep.c
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/amd64/amd64/process_machdep.c
cvs rdiff -u -r1.80 -r1.81 src/sys/arch/amd64/conf/files.amd64
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/amd64/include/fpu.h
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/amd64/include/netbsd32_machdep.h
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/amd64/include/pcb.h
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/amd64/include/reg.h
cvs rdiff -u -r1.372 -r1.373 src/sys/arch/i386/conf/files.i386
cvs rdiff -u -r1.81 -r1.82 src/sys/arch/i386/i386/process_machdep.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/i386/include/npx.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/x86/include/cpu_extended_state.h
cvs rdiff -u -r0 -r1.1 src/sys/arch/x86/x86/convert_xmm_s87.c
cvs rdiff -u -r1.130 -r1.131 src/sys/arch/xen/conf/files.xen
cvs rdiff -u -r1.44 -r1.45 src/sys/compat/linux/arch/amd64/linux_machdep.c
cvs rdiff -u -r1.13 -r1.14 src/sys/compat/linux/arch/amd64/linux_machdep.h
cvs rdiff -u -r1.33 -r1.34 \
src/sys/compat/linux32/arch/amd64/linux32_machdep.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/x86/include

2014-02-07 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Fri Feb  7 21:52:46 UTC 2014

Modified Files:
src/sys/arch/x86/include: Makefile

Log Message:
Userspace (especially libkvm) build better is cpu_extended_state.h
is exported.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/x86/include/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2014-02-07 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Feb  7 21:37:28 UTC 2014

Modified Files:
src/doc: 3RDPARTY

Log Message:
gdb-7.7 out.


To generate a diff of this commit:
cvs rdiff -u -r1.1088 -r1.1089 src/doc/3RDPARTY

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

2014-02-07 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb  7 20:20:56 UTC 2014

Modified Files:
src/lib/libc/gen: getttyent.3

Log Message:
don't lie about function signatures.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/lib/libc/gen/getttyent.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2014-02-07 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Fri Feb  7 19:36:15 UTC 2014

Modified Files:
src/sys/arch/i386/include: npx.h
Added Files:
src/sys/arch/x86/include: cpu_extended_state.h

Log Message:
Move all the hardware register layout for the x86 cpus into a header
that can also be used by amd64.
Add in skeleton definitions for XSAVE and AVX.
Update some comments to match reality.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/i386/include/npx.h
cvs rdiff -u -r0 -r1.1 src/sys/arch/x86/include/cpu_extended_state.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/i386/i386

2014-02-07 Thread David Laight
Module Name:src
Committed By:   dsl
Date:   Fri Feb  7 19:32:50 UTC 2014

Modified Files:
src/sys/arch/i386/i386: trap.c

Log Message:
Remove the splurious check for EN_SW_DATACHAIN when looking at mxcsr traps.
The relevant bit is always masked out higher up.
The only place I can find a reference to a 'datachain' error is for the
  weitek 1167 fpu. Even the 8087 has the corresponding bit of the x87
  status reserved.
Quite why it has appeared here is anybodies guess.


To generate a diff of this commit:
cvs rdiff -u -r1.269 -r1.270 src/sys/arch/i386/i386/trap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/make

2014-02-07 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri Feb  7 17:23:35 UTC 2014

Modified Files:
src/usr.bin/make: main.c

Log Message:
Use Var_Value() instead of getenv() to obtain MAKEOBJDIR{,PREFIX}.

Fixes "make -X MAKEOBJDIR=foo".  Purely uncoincidentally, build.sh
creates the nbmake wrapper with MAKEFLAGS -X on FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.225 -r1.226 src/usr.bin/make/main.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2014-02-07 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Feb  7 16:57:05 UTC 2014

Modified Files:
src/share/man/man9: namecache.9

Log Message:
Mark up author name with An.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/share/man/man9/namecache.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/mips/atheros/dev

2014-02-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Feb  7 15:49:40 UTC 2014

Modified Files:
src/sys/arch/mips/atheros/dev: com_arbus.c

Log Message:
Check _BYTE_ORDER.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/mips/atheros/dev/com_arbus.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-02-07 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Fri Feb  7 15:29:23 UTC 2014

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_replay.c
zfs_vnops.c
src/lib/libp2k: p2k.c
src/share/man/man9: namecache.9 vnodeops.9
src/sys/coda: coda_vnops.c
src/sys/fs/adosfs: adlookup.c
src/sys/fs/cd9660: cd9660_lookup.c
src/sys/fs/efs: efs_vnops.c
src/sys/fs/filecorefs: filecore_lookup.c
src/sys/fs/hfs: hfs_vnops.c
src/sys/fs/msdosfs: msdosfs_lookup.c
src/sys/fs/nilfs: nilfs_vnops.c
src/sys/fs/ntfs: ntfs_vnops.c
src/sys/fs/ptyfs: ptyfs_vnops.c
src/sys/fs/puffs: puffs_vnops.c
src/sys/fs/smbfs: smbfs_vnops.c
src/sys/fs/sysvbfs: sysvbfs_vnops.c
src/sys/fs/tmpfs: tmpfs_vnops.c
src/sys/fs/udf: udf_vnops.c
src/sys/fs/union: union_subr.c union_vnops.c
src/sys/fs/v7fs: v7fs_vnops.c
src/sys/kern: vfs_cache.c vfs_getcwd.c vfs_lookup.c vnode_if.c
src/sys/miscfs/deadfs: dead_vnops.c
src/sys/miscfs/fdesc: fdesc_vnops.c
src/sys/miscfs/fifofs: fifo_vnops.c
src/sys/miscfs/genfs: layer_vnops.c
src/sys/miscfs/kernfs: kernfs_vnops.c
src/sys/miscfs/procfs: procfs_subr.c procfs_vfsops.c procfs_vnops.c
src/sys/miscfs/specfs: spec_vnops.c
src/sys/miscfs/umapfs: umap_vnops.c
src/sys/nfs: nfs_vnops.c
src/sys/rump/include/rump: rumpvnode_if.h
src/sys/rump/librump/rumpvfs: rumpfs.c rumpvnode_if.c
src/sys/sys: param.h vnode_if.h
src/sys/ufs/chfs: chfs_vnops.c
src/sys/ufs/ext2fs: ext2fs_lookup.c
src/sys/ufs/lfs: ulfs_extattr.c ulfs_lookup.c
src/sys/ufs/ufs: ufs_extattr.c ufs_lookup.c
src/tests/rump/rumpvfs: t_p2kifs.c

Log Message:
Change vnode operation lookup to return the resulting vnode *vpp unlocked.
Change cache_lookup() to return an unlocked vnode.

Discussed on tech-kern@

Welcome to 6.99.31


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_replay.c
cvs rdiff -u -r1.16 -r1.17 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c
cvs rdiff -u -r1.62 -r1.63 src/lib/libp2k/p2k.c
cvs rdiff -u -r1.17 -r1.18 src/share/man/man9/namecache.9
cvs rdiff -u -r1.91 -r1.92 src/share/man/man9/vnodeops.9
cvs rdiff -u -r1.93 -r1.94 src/sys/coda/coda_vnops.c
cvs rdiff -u -r1.18 -r1.19 src/sys/fs/adosfs/adlookup.c
cvs rdiff -u -r1.25 -r1.26 src/sys/fs/cd9660/cd9660_lookup.c
cvs rdiff -u -r1.30 -r1.31 src/sys/fs/efs/efs_vnops.c
cvs rdiff -u -r1.18 -r1.19 src/sys/fs/filecorefs/filecore_lookup.c
cvs rdiff -u -r1.28 -r1.29 src/sys/fs/hfs/hfs_vnops.c
cvs rdiff -u -r1.31 -r1.32 src/sys/fs/msdosfs/msdosfs_lookup.c
cvs rdiff -u -r1.26 -r1.27 src/sys/fs/nilfs/nilfs_vnops.c
cvs rdiff -u -r1.55 -r1.56 src/sys/fs/ntfs/ntfs_vnops.c
cvs rdiff -u -r1.42 -r1.43 src/sys/fs/ptyfs/ptyfs_vnops.c
cvs rdiff -u -r1.179 -r1.180 src/sys/fs/puffs/puffs_vnops.c
cvs rdiff -u -r1.88 -r1.89 src/sys/fs/smbfs/smbfs_vnops.c
cvs rdiff -u -r1.52 -r1.53 src/sys/fs/sysvbfs/sysvbfs_vnops.c
cvs rdiff -u -r1.114 -r1.115 src/sys/fs/tmpfs/tmpfs_vnops.c
cvs rdiff -u -r1.89 -r1.90 src/sys/fs/udf/udf_vnops.c
cvs rdiff -u -r1.59 -r1.60 src/sys/fs/union/union_subr.c
cvs rdiff -u -r1.51 -r1.52 src/sys/fs/union/union_vnops.c
cvs rdiff -u -r1.15 -r1.16 src/sys/fs/v7fs/v7fs_vnops.c
cvs rdiff -u -r1.93 -r1.94 src/sys/kern/vfs_cache.c
cvs rdiff -u -r1.49 -r1.50 src/sys/kern/vfs_getcwd.c
cvs rdiff -u -r1.200 -r1.201 src/sys/kern/vfs_lookup.c
cvs rdiff -u -r1.91 -r1.92 src/sys/kern/vnode_if.c
cvs rdiff -u -r1.53 -r1.54 src/sys/miscfs/deadfs/dead_vnops.c
cvs rdiff -u -r1.116 -r1.117 src/sys/miscfs/fdesc/fdesc_vnops.c
cvs rdiff -u -r1.73 -r1.74 src/sys/miscfs/fifofs/fifo_vnops.c
cvs rdiff -u -r1.53 -r1.54 src/sys/miscfs/genfs/layer_vnops.c
cvs rdiff -u -r1.149 -r1.150 src/sys/miscfs/kernfs/kernfs_vnops.c
cvs rdiff -u -r1.103 -r1.104 src/sys/miscfs/procfs/procfs_subr.c
cvs rdiff -u -r1.87 -r1.88 src/sys/miscfs/procfs/procfs_vfsops.c
cvs rdiff -u -r1.188 -r1.189 src/sys/miscfs/procfs/procfs_vnops.c
cvs rdiff -u -r1.141 -r1.142 src/sys/miscfs/specfs/spec_vnops.c
cvs rdiff -u -r1.53 -r1.54 src/sys/miscfs/umapfs/umap_vnops.c
cvs rdiff -u -r1.303 -r1.304 src/sys/nfs/nfs_vnops.c
cvs rdiff -u -r1.15 -r1.16 src/sys/rump/include/rump/rumpvnode_if.h
cvs rdiff -u -r1.123 -r1.124 src/sys/rump/librump/rumpvfs/rumpfs.c
cvs rdiff -u -r1.14 -r1.15 src/sys/rump/librump/rumpvfs/rumpvnode_if.c
cvs rdiff -u -r1.439 -r1.440 src/sys/sys/param.h
cvs rdiff -u -r1.86 -r1.87 src/sys/sys/vnode_if.h
cvs rdiff -u -r1.20 -r1.21 src/sys/ufs/chfs/chfs_vnops.c
cvs rdiff -u -r1.73 -r1.74 src/sys/ufs/ext2fs/ext2fs_lookup.c
cvs rdiff -u -r1.6 -r1.7 src/sys/ufs/lfs/ulfs_extattr.c
cvs rdiff -u -r1.18 -r1.19 src/sys/ufs/lfs/ulfs_lookup.c
cvs rdiff -u -r1.42 -r1.43 src/sys/ufs/ufs/ufs_extattr.c
cvs rdiff -u -r1.128 -r1.129 src/sys/ufs/ufs

CVS commit: src/sys/kern

2014-02-07 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Fri Feb  7 15:26:42 UTC 2014

Modified Files:
src/sys/kern: vnode_if.src

Log Message:
Change vnode operation lookup to return the resulting vnode *vpp unlocked.
Change cache_lookup() to return an unlocked vnode.

Discussed on tech-kern@


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/kern/vnode_if.src

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 13:28:58 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Fix revision in previous commit


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.89 -r1.1.2.90 src/doc/CHANGES-6.2

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 13:28:24 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1020


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.88 -r1.1.2.89 src/doc/CHANGES-6.2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-6] src/external/gpl3/gcc/dist/gcc/config/mips

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 13:27:58 UTC 2014

Modified Files:
src/external/gpl3/gcc/dist/gcc/config/mips [netbsd-6]: mips.c

Log Message:
Pull up the following revisions(s) (requested by bouyer in ticket #1020):
external/gpl3/gcc/dist/gcc/config/mips/mips.c:  revision 1.2

Fix a problem with lazy symbols binding caused by an overly
aggressive optimisation. This bug shows up with Xorg, preventing
xf86-video-sis and xf86-video-silicon modules from being loaded.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.4.1 \
src/external/gpl3/gcc/dist/gcc/config/mips/mips.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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 13:22:51 UTC 2014

Modified Files:
src/sys/arch/evbmips/conf [netbsd-6]: LOONGSON
src/sys/dev/pci [netbsd-6]: sisfb.c

Log Message:
Pull up the following revisions(s) (requested by bouyer in ticket #1019):
sys/dev/pci/sisfb.c:revision 1.3
sys/arch/evbmips/conf/LOONGSON: revision 1.22

Make sysinst much more useable when used with the VGA display on
LOONGSON.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.2.1 src/sys/arch/evbmips/conf/LOONGSON
cvs rdiff -u -r1.2 -r1.2.2.1 src/sys/dev/pci/sisfb.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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 13:23:09 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1019


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.87 -r1.1.2.88 src/doc/CHANGES-6.2

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 12:33:18 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1018 part 2


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.86 -r1.1.2.87 src/doc/CHANGES-6.2

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/hp700/dev

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 12:32:55 UTC 2014

Modified Files:
src/sys/arch/hp700/dev [netbsd-6]: lasi.c

Log Message:
Pull up the following revisions(s) (requested by skrll in ticket #1018):
sys/arch/hp700/dev/lasi.c:  revision 1.25

Fix HP715/100 cpu and device detection.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.21.8.1 src/sys/arch/hp700/dev/lasi.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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 12:30:11 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1018


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.85 -r1.1.2.86 src/doc/CHANGES-6.2

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/hp700/hp700

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 12:12:27 UTC 2014

Modified Files:
src/sys/arch/hp700/hp700 [netbsd-6]: machdep.c

Log Message:
Pull up the following revisions(s) (requested by skrll in ticket #1018):
sys/arch/hp700/hp700/machdep.c: revision 1.118

Fix HP715/100 cpu and device detection.


To generate a diff of this commit:
cvs rdiff -u -r1.107.2.2 -r1.107.2.3 src/sys/arch/hp700/hp700/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2014-02-07 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Feb  7 11:51:00 UTC 2014

Modified Files:
src/sys/dev/pci: puc.c
src/sys/kern: sysv_msg.c

Log Message:
s/mesage/message/


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/dev/pci/puc.c
cvs rdiff -u -r1.64 -r1.65 src/sys/kern/sysv_msg.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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:41:22 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1017


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.84 -r1.1.2.85 src/doc/CHANGES-6.2

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:41:02 UTC 2014

Modified Files:
src/sys/arch/i386/i386 [netbsd-6]: db_machdep.c
src/sys/arch/x86/include [netbsd-6]: db_machdep.h

Log Message:
Pull up the following revisions(s) (requested by christos in ticket #1017):
sys/arch/x86/include/db_machdep.h:  revision 1.4
sys/arch/i386/i386/db_machdep.c:revision 1.5

Fix ddb backtrace for softintr (i386).


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.16.1 src/sys/arch/i386/i386/db_machdep.c
cvs rdiff -u -r1.3 -r1.3.14.1 src/sys/arch/x86/include/db_machdep.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/usb

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:33:34 UTC 2014

Modified Files:
src/sys/dev/usb [netbsd-6]: usb_subr.c

Log Message:
Pull up the following revisions(s) (requested by skrll in ticket #1015):
sys/dev/usb/usb_subr.c: revision 1.190, 1.192

Fix PR/48496. Only set wMaxPacketSize to 64 for HS/FS and set to 8 for LS to be 
within
the USB spec.
Reload the full device descriptor after re-establishing the default pipe
with the new address.


To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.180.8.1 src/sys/dev/usb/usb_subr.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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:33:49 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1015


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.83 -r1.1.2.84 src/doc/CHANGES-6.2

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:15:59 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket #1014


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.82 -r1.1.2.83 src/doc/CHANGES-6.2

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

2014-02-07 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Fri Feb  7 11:15:37 UTC 2014

Modified Files:
src/sys/dev/ic [netbsd-6]: pckbc.c

Log Message:
Pull up the following revisions(s) (requested by skrll in ticket #1014):
sys/dev/ic/pckbc.c: revision 1.56

Do not take data from the keyboard controller in interrupt handler if
we are polling. Fixes PR/47406


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.53.2.1 src/sys/dev/ic/pckbc.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/sandpoint/isa

2014-02-07 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Fri Feb  7 09:22:02 UTC 2014

Modified Files:
src/sys/arch/sandpoint/isa: isaclock.c

Log Message:
Replaced enable/disable_intr by splhigh/splx.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/sandpoint/isa/isaclock.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/sandpoint/sandpoint

2014-02-07 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Fri Feb  7 08:51:34 UTC 2014

Modified Files:
src/sys/arch/sandpoint/sandpoint: locore.S

Log Message:
Remove enable_intr() and disable_intr(), which are unused.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/sandpoint/sandpoint/locore.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.