CVS commit: src/tests/kernel

2016-12-06 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Tue Dec  6 08:03:09 UTC 2016

Modified Files:
src/tests/kernel: t_ptrace_wait.c

Log Message:
Clean up after fixes and refactoring by Christos Zoulas

No functional change, remove dead and unneeded code.

Sponsored by 


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/tests/kernel/t_ptrace_wait.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/ic

2016-12-06 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Tue Dec  6 08:21:47 UTC 2016

Modified Files:
src/sys/dev/ic: lemac.c

Log Message:
Don't check if the frame is for us in the driver

It's done normally by ether_input now. And also if drop packets here,
bridge(4) doesn't work with the driver.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/dev/ic/lemac.c

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



CVS commit: src/sys/netinet6

2016-12-06 Thread Kengo NAKAHARA
Module Name:src
Committed By:   knakahara
Date:   Tue Dec  6 08:58:16 UTC 2016

Modified Files:
src/sys/netinet6: sctp6_usrreq.c

Log Message:
remove unnecessary extern declaration.

inetsw has been declared since r1.1, however sctp6_usrreq.c can be built
without the declaration. It must be removed.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/netinet6/sctp6_usrreq.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

2016-12-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue Dec  6 15:05:07 UTC 2016

Modified Files:
src/sys/arch/amd64/amd64: locore.S
src/sys/arch/i386/i386: locore.S

Log Message:
Use __kernel_end instead. Does not change anything, but will be meaningful
soon.


To generate a diff of this commit:
cvs rdiff -u -r1.114 -r1.115 src/sys/arch/amd64/amd64/locore.S
cvs rdiff -u -r1.141 -r1.142 src/sys/arch/i386/i386/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/x86/x86

2016-12-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue Dec  6 15:09:04 UTC 2016

Modified Files:
src/sys/arch/x86/x86: intr.c

Log Message:
Memory leak, found by Mootja


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/sys/arch/x86/x86/intr.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/net

2016-12-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Dec  6 18:41:03 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.c

Log Message:
Fix buffer copy without checking the size of input:
https://www.kb.cert.org/vuls/id/548487


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/lib/libc/net/linkaddr.c

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



CVS commit: src/tests/kernel

2016-12-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Dec  6 18:59:00 UTC 2016

Modified Files:
src/tests/kernel: t_ptrace_wait.c

Log Message:
switch to using fork so we can see the child output.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/tests/kernel/t_ptrace_wait.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/net

2016-12-06 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Wed Dec  7 02:36:41 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.c

Log Message:
Leave room for the null terminator. Spotted by DuClare on freenode.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/lib/libc/net/linkaddr.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/net

2016-12-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Dec  7 02:48:54 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.c

Log Message:
Add the terminating NUL as a regular character addition.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/lib/libc/net/linkaddr.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/net

2016-12-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Dec  7 03:16:45 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.c

Log Message:
make it always return a NUL terminated string instead of NULL when the address
is truncated for compatibility with others.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/lib/libc/net/linkaddr.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/net

2016-12-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Wed Dec  7 03:22:14 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.3

Log Message:
Update BUGS section to note the possibility of a truncated return value.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/lib/libc/net/linkaddr.3

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



CVS commit: src/sys/netisdn

2016-12-06 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed Dec  7 03:23:09 UTC 2016

Modified Files:
src/sys/netisdn: i4b_isppp.c

Log Message:
Use percpuq if_input

It prevents sppp_input from running in hardware interrupt context.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/netisdn/i4b_isppp.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/net

2016-12-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Wed Dec  7 03:48:05 UTC 2016

Modified Files:
src/lib/libc/net: linkaddr.3

Log Message:
More tweaking...


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/lib/libc/net/linkaddr.3

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



CVS commit: src/sys/dev/i2c

2016-12-06 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Wed Dec  7 04:58:39 UTC 2016

Modified Files:
src/sys/dev/i2c: sdtemp_reg.h

Log Message:
Device ID 0xa01 also matches Catalyst CAT34TS02C.

Found on SMD-N8G28CTP-18ML-BK.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/i2c/sdtemp_reg.h

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