CVS commit: src/sys/kern

2015-02-10 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Feb 10 15:07:39 UTC 2015

Modified Files:
src/sys/kern: syscalls.master

Log Message:
Mark posix_fallocate as NOERR


To generate a diff of this commit:
cvs rdiff -u -r1.270 -r1.271 src/sys/kern/syscalls.master

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



CVS commit: src/sys

2015-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Feb 10 17:43:44 UTC 2015

Modified Files:
src/sys/kern: init_sysent.c syscalls.c
src/sys/rump/include/rump: rump_syscalls.h
src/sys/sys: syscall.h syscallargs.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.287 -r1.288 src/sys/kern/init_sysent.c
cvs rdiff -u -r1.278 -r1.279 src/sys/kern/syscalls.c
cvs rdiff -u -r1.79 -r1.80 src/sys/rump/include/rump/rump_syscalls.h
cvs rdiff -u -r1.274 -r1.275 src/sys/sys/syscall.h
cvs rdiff -u -r1.257 -r1.258 src/sys/sys/syscallargs.h

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



CVS commit: src

2015-02-10 Thread Robert Swindells
Module Name:src
Committed By:   rjs
Date:   Tue Feb 10 19:11:52 UTC 2015

Modified Files:
src/distrib/sets/lists/comp: mi
src/sys/netinet: Makefile files.netinet in.h in_proto.c portalgo.c
src/sys/netinet6: files.netinet6 in6_proto.c
src/sys/sys: socket.h
Added Files:
src/sys/netinet: dccp.h dccp_cc_sw.c dccp_cc_sw.h dccp_tcplike.c
dccp_tcplike.h dccp_tfrc.c dccp_tfrc.h dccp_tfrc_lookup.h
dccp_usrreq.c dccp_var.h
src/sys/netinet6: dccp6_usrreq.c dccp6_var.h
src/sys/rump/librump/rumpnet/opt: opt_dccp.h

Log Message:
Add DCCP protocol support from KAME.


To generate a diff of this commit:
cvs rdiff -u -r1.1945 -r1.1946 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.25 -r1.26 src/sys/netinet/Makefile \
src/sys/netinet/files.netinet
cvs rdiff -u -r0 -r1.1 src/sys/netinet/dccp.h src/sys/netinet/dccp_cc_sw.c \
src/sys/netinet/dccp_cc_sw.h src/sys/netinet/dccp_tcplike.c \
src/sys/netinet/dccp_tcplike.h src/sys/netinet/dccp_tfrc.c \
src/sys/netinet/dccp_tfrc.h src/sys/netinet/dccp_tfrc_lookup.h \
src/sys/netinet/dccp_usrreq.c src/sys/netinet/dccp_var.h
cvs rdiff -u -r1.95 -r1.96 src/sys/netinet/in.h
cvs rdiff -u -r1.110 -r1.111 src/sys/netinet/in_proto.c
cvs rdiff -u -r1.7 -r1.8 src/sys/netinet/portalgo.c
cvs rdiff -u -r0 -r1.1 src/sys/netinet6/dccp6_usrreq.c \
src/sys/netinet6/dccp6_var.h
cvs rdiff -u -r1.9 -r1.10 src/sys/netinet6/files.netinet6
cvs rdiff -u -r1.103 -r1.104 src/sys/netinet6/in6_proto.c
cvs rdiff -u -r0 -r1.1 src/sys/rump/librump/rumpnet/opt/opt_dccp.h
cvs rdiff -u -r1.115 -r1.116 src/sys/sys/socket.h

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



CVS commit: src/usr.sbin/syslogd

2015-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Feb 10 20:38:15 UTC 2015

Modified Files:
src/usr.sbin/syslogd: extern.h sign.c syslogd.c syslogd.h

Log Message:
- always set *to_buf to a timestamp, even if there was none reported/parseable
  (Frank Kardel).
- merge the timestamp copying code to one place.
- factor out the debugging printf function.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/syslogd/extern.h
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/syslogd/sign.c
cvs rdiff -u -r1.120 -r1.121 src/usr.sbin/syslogd/syslogd.c
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/syslogd/syslogd.h

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

2015-02-10 Thread Radoslaw Kujawa
Module Name:src
Committed By:   rkujawa
Date:   Wed Feb 11 00:11:58 UTC 2015

Modified Files:
src/share/man/man4: tdvfb.4

Log Message:
Don't mention the bug that was fixed by mrg. DAC detection works reliably
since then.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/share/man/man4/tdvfb.4

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



CVS commit: src/sys/dev/pci/hdaudio

2015-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Feb 11 00:37:25 UTC 2015

Modified Files:
src/sys/dev/pci/hdaudio: hdafg.c hdaudio.c hdaudiovar.h

Log Message:
Fix locking against myself problem:
hdaudio_intr() ->
mutex_enter(&sc->sc_corb_mtx);
hdaudio_rirb_dequeue() ->
hdaudio_rirb_unsol() ->
hdafg_unsol() ->
hdafg_assoc_dump_dd() ->
hdaudio_command() ->
mutex_enter(&sc->sc_corb_mtx);

Should that be done differently?


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/pci/hdaudio/hdafg.c
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/pci/hdaudio/hdaudio.c
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pci/hdaudio/hdaudiovar.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/sparc64/sparc64

2015-02-10 Thread Palle Lyckegaard
Module Name:src
Committed By:   palle
Date:   Wed Feb 11 04:44:11 UTC 2015

Modified Files:
src/sys/arch/sparc64/sparc64: cpu.c

Log Message:
sun4v: Ensure that sane values are returned in scenarios where no 
x_cache_associativity info is present, e.g. in a simulated environment like the 
Legion simulator


To generate a diff of this commit:
cvs rdiff -u -r1.122 -r1.123 src/sys/arch/sparc64/sparc64/cpu.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/sparc64/doc

2015-02-10 Thread Palle Lyckegaard
Module Name:src
Committed By:   palle
Date:   Wed Feb 11 04:47:11 UTC 2015

Modified Files:
src/sys/arch/sparc64/doc: TODO

Log Message:
Updated todo list with item about v445 and GENERIC.UP kernel that hangs


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/sparc64/doc/TODO

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



CVS commit: src/sys/arch/evbarm

2015-02-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed Feb 11 07:51:10 UTC 2015

Modified Files:
src/sys/arch/evbarm/conf: VEXPRESS_A15 files.vexpress std.vexpress
src/sys/arch/evbarm/vexpress: if_smsh_axi.c platform.h vexpress_axi.c
vexpress_intr.h vexpress_machdep.c vexpress_plcom.c
vexpress_plmmc.c vexpress_space.c vexpress_start.S vexpress_var.h

Log Message:
Remove unexpected code duplications

I don't know why this happened...


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/VEXPRESS_A15 \
src/sys/arch/evbarm/conf/files.vexpress \
src/sys/arch/evbarm/conf/std.vexpress
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/vexpress/if_smsh_axi.c \
src/sys/arch/evbarm/vexpress/platform.h \
src/sys/arch/evbarm/vexpress/vexpress_axi.c \
src/sys/arch/evbarm/vexpress/vexpress_intr.h \
src/sys/arch/evbarm/vexpress/vexpress_machdep.c \
src/sys/arch/evbarm/vexpress/vexpress_plcom.c \
src/sys/arch/evbarm/vexpress/vexpress_plmmc.c \
src/sys/arch/evbarm/vexpress/vexpress_space.c \
src/sys/arch/evbarm/vexpress/vexpress_start.S \
src/sys/arch/evbarm/vexpress/vexpress_var.h

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