CVS commit: src/usr.sbin/ldpd

2013-06-23 Thread Mihai Chelaru
Module Name:src
Committed By:   kefren
Date:   Sun Jun 23 06:40:26 UTC 2013

Modified Files:
src/usr.sbin/ldpd: mpls_interface.c

Log Message:
allow INET6 gateways, split some long lines


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/ldpd/mpls_interface.c

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



CVS commit: src

2013-06-23 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jun 23 07:28:37 UTC 2013

Modified Files:
src/sbin/fsck_ext2fs: dir.c inode.c
src/sbin/fsck_ffs: dir.c inode.c pass1.c pass5.c setup.c
src/sbin/newfs: mkfs.c
src/sbin/resize_ffs: resize_ffs.c
src/sbin/scan_ffs: scan_ffs.c
src/sys/fs/cd9660: cd9660_extern.h cd9660_lookup.c cd9660_vfsops.c
cd9660_vnops.c
src/sys/fs/filecorefs: filecore_extern.h filecore_vnops.c
src/sys/lib/libsa: ext2fs.c lfsv1.c lfsv2.c minixfs3.c minixfs3.h ufs.c
src/sys/ufs/chfs: chfs_vnops.c
src/sys/ufs/ext2fs: ext2fs.h ext2fs_balloc.c ext2fs_inode.c
ext2fs_readwrite.c ext2fs_subr.c
src/sys/ufs/ffs: ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_snapshot.c
ffs_vnops.c ffs_wapbl.c fs.h
src/sys/ufs/ufs: ufs_readwrite.c
src/usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c mkfs.c
src/usr.sbin/quot: quot.c
src/usr.sbin/quotacheck: quotacheck.c

Log Message:
Stick ffs_, ext2_, chfs_, filecore_, cd9660_, or mfs_ in front of
the following symbols so as to disambiguate fully. (Christos already
did the lfs ones.)

   lblkno
   lblktosize
   lfragtosize
   numfrags
   blkroundup
   fragroundup


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sbin/fsck_ext2fs/dir.c
cvs rdiff -u -r1.35 -r1.36 src/sbin/fsck_ext2fs/inode.c
cvs rdiff -u -r1.56 -r1.57 src/sbin/fsck_ffs/dir.c
cvs rdiff -u -r1.67 -r1.68 src/sbin/fsck_ffs/inode.c
cvs rdiff -u -r1.54 -r1.55 src/sbin/fsck_ffs/pass1.c
cvs rdiff -u -r1.52 -r1.53 src/sbin/fsck_ffs/pass5.c
cvs rdiff -u -r1.99 -r1.100 src/sbin/fsck_ffs/setup.c
cvs rdiff -u -r1.118 -r1.119 src/sbin/newfs/mkfs.c
cvs rdiff -u -r1.36 -r1.37 src/sbin/resize_ffs/resize_ffs.c
cvs rdiff -u -r1.23 -r1.24 src/sbin/scan_ffs/scan_ffs.c
cvs rdiff -u -r1.25 -r1.26 src/sys/fs/cd9660/cd9660_extern.h
cvs rdiff -u -r1.24 -r1.25 src/sys/fs/cd9660/cd9660_lookup.c
cvs rdiff -u -r1.77 -r1.78 src/sys/fs/cd9660/cd9660_vfsops.c
cvs rdiff -u -r1.44 -r1.45 src/sys/fs/cd9660/cd9660_vnops.c
cvs rdiff -u -r1.21 -r1.22 src/sys/fs/filecorefs/filecore_extern.h
cvs rdiff -u -r1.37 -r1.38 src/sys/fs/filecorefs/filecore_vnops.c
cvs rdiff -u -r1.17 -r1.18 src/sys/lib/libsa/ext2fs.c
cvs rdiff -u -r1.8 -r1.9 src/sys/lib/libsa/lfsv1.c src/sys/lib/libsa/lfsv2.c
cvs rdiff -u -r1.4 -r1.5 src/sys/lib/libsa/minixfs3.c \
src/sys/lib/libsa/minixfs3.h
cvs rdiff -u -r1.62 -r1.63 src/sys/lib/libsa/ufs.c
cvs rdiff -u -r1.16 -r1.17 src/sys/ufs/chfs/chfs_vnops.c
cvs rdiff -u -r1.35 -r1.36 src/sys/ufs/ext2fs/ext2fs.h
cvs rdiff -u -r1.38 -r1.39 src/sys/ufs/ext2fs/ext2fs_balloc.c
cvs rdiff -u -r1.80 -r1.81 src/sys/ufs/ext2fs/ext2fs_inode.c
cvs rdiff -u -r1.63 -r1.64 src/sys/ufs/ext2fs/ext2fs_readwrite.c
cvs rdiff -u -r1.29 -r1.30 src/sys/ufs/ext2fs/ext2fs_subr.c
cvs rdiff -u -r1.136 -r1.137 src/sys/ufs/ffs/ffs_alloc.c
cvs rdiff -u -r1.58 -r1.59 src/sys/ufs/ffs/ffs_balloc.c
cvs rdiff -u -r1.114 -r1.115 src/sys/ufs/ffs/ffs_inode.c
cvs rdiff -u -r1.125 -r1.126 src/sys/ufs/ffs/ffs_snapshot.c
cvs rdiff -u -r1.122 -r1.123 src/sys/ufs/ffs/ffs_vnops.c
cvs rdiff -u -r1.20 -r1.21 src/sys/ufs/ffs/ffs_wapbl.c
cvs rdiff -u -r1.62 -r1.63 src/sys/ufs/ffs/fs.h
cvs rdiff -u -r1.106 -r1.107 src/sys/ufs/ufs/ufs_readwrite.c
cvs rdiff -u -r1.25 -r1.26 src/usr.sbin/makefs/ffs/ffs_alloc.c
cvs rdiff -u -r1.19 -r1.20 src/usr.sbin/makefs/ffs/ffs_balloc.c
cvs rdiff -u -r1.29 -r1.30 src/usr.sbin/makefs/ffs/mkfs.c
cvs rdiff -u -r1.31 -r1.32 src/usr.sbin/quot/quot.c
cvs rdiff -u -r1.47 -r1.48 src/usr.sbin/quotacheck/quotacheck.c

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



CVS commit: src/lib/libutil

2013-06-23 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jun 23 08:38:41 UTC 2013

Modified Files:
src/lib/libutil: login_cap.3

Log Message:
Put code example on its own line, using Dl.
Ok christos


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/lib/libutil/login_cap.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

2013-06-23 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sun Jun 23 09:00:37 UTC 2013

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

Log Message:
Whitespace, comment, NBPG -> PAGE_SIZE.


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/arch/amd64/amd64/locore.S
cvs rdiff -u -r1.105 -r1.106 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: [netbsd-5] src

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:09:54 UTC 2013

Modified Files:
src/distrib/sets/lists/man [netbsd-5]: mi
src/share/man/man4 [netbsd-5]: Makefile gpio.4
src/sys/arch/i386/conf [netbsd-5]: ALL files.i386
Added Files:
src/share/man/man4 [netbsd-5]: ptcd.4
src/sys/dev/isa [netbsd-5]: ptcd.c

Log Message:
Pull up following revision(s) (requested by mbalmer in ticket #1863):
distrib/sets/lists/man/mi: revision 1.1411
share/man/man4/gpio.4: revision 1.24
sys/arch/i386/conf/ALL: revision 1.348
sys/arch/i386/conf/files.i386: revision 1.369
sys/dev/isa/ptcd.c: revision 1.1
share/man/man4/Makefile: revision 1.593
share/man/man4/ptcd.4: revision 1.1, 1.3, 1.4
ptcd(4) is a device driver for the cash drawer port found on Protech PS3100
point of sale terminals.  It controls the cash drawer using a gpio(4) device
that attaches at ptcd0:  Pin 0 controls the drawer, pin 1 reports the current
state.  For details read the manual page.
Mention ptcd(4) in the synopsis.


To generate a diff of this commit:
cvs rdiff -u -r1.1109.2.22 -r1.1109.2.23 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.482.2.12 -r1.482.2.13 src/share/man/man4/Makefile
cvs rdiff -u -r1.7 -r1.7.4.1 src/share/man/man4/gpio.4
cvs rdiff -u -r0 -r1.4.4.2 src/share/man/man4/ptcd.4
cvs rdiff -u -r1.183.4.10 -r1.183.4.11 src/sys/arch/i386/conf/ALL
cvs rdiff -u -r1.338.6.4 -r1.338.6.5 src/sys/arch/i386/conf/files.i386
cvs rdiff -u -r0 -r1.3.4.2 src/sys/dev/isa/ptcd.c

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



CVS commit: [netbsd-5] src/doc

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:11:11 UTC 2013

Modified Files:
src/doc [netbsd-5]: CHANGES-5.3

Log Message:
ticket 1863


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.19 -r1.1.2.20 src/doc/CHANGES-5.3

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



CVS commit: [netbsd-6] src/tests/lib/libm

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:16:50 UTC 2013

Modified Files:
src/tests/lib/libm [netbsd-6]: t_atan.c

Log Message:
Pull up following revision(s) (requested by isaki in ticket #903):
tests/lib/libm/t_atan.c: revisions 1.4 - 1.7, 1.9 via patch
Fix and revive test of atan_inf_neg, atan_inf_pos and atan_tan on i386.
PR port-i386/46108.
The machine epsilon 1.0e-40 is too severe and nonsense for double
because DBL_EPSILON is about 2.2e-16 .  I think that 1.0e-15 is
enough good, in this case.
XXX However, test of atan_tan should be replaced for other reasons.
Remove header files which became unnecessary in 1.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.1.4.1 src/tests/lib/libm/t_atan.c

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



CVS commit: [netbsd-6-1] src/tests/lib/libm

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:17:00 UTC 2013

Modified Files:
src/tests/lib/libm [netbsd-6-1]: t_atan.c

Log Message:
Pull up following revision(s) (requested by isaki in ticket #903):
tests/lib/libm/t_atan.c: revisions 1.4 - 1.7, 1.9 via patch
Fix and revive test of atan_inf_neg, atan_inf_pos and atan_tan on i386.
PR port-i386/46108.
The machine epsilon 1.0e-40 is too severe and nonsense for double
because DBL_EPSILON is about 2.2e-16 .  I think that 1.0e-15 is
enough good, in this case.
XXX However, test of atan_tan should be replaced for other reasons.
Remove header files which became unnecessary in 1.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.1.10.1 src/tests/lib/libm/t_atan.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

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:17:29 UTC 2013

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

Log Message:
ticket 903


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 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-0] src/tests/lib/libm

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:17:04 UTC 2013

Modified Files:
src/tests/lib/libm [netbsd-6-0]: t_atan.c

Log Message:
Pull up following revision(s) (requested by isaki in ticket #903):
tests/lib/libm/t_atan.c: revisions 1.4 - 1.7, 1.9 via patch
Fix and revive test of atan_inf_neg, atan_inf_pos and atan_tan on i386.
PR port-i386/46108.
The machine epsilon 1.0e-40 is too severe and nonsense for double
because DBL_EPSILON is about 2.2e-16 .  I think that 1.0e-15 is
enough good, in this case.
XXX However, test of atan_tan should be replaced for other reasons.
Remove header files which became unnecessary in 1.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.1.8.1 src/tests/lib/libm/t_atan.c

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



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

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:17:42 UTC 2013

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

Log Message:
ticket 903


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-6.1.1

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



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

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:17:53 UTC 2013

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

Log Message:
ticket 903


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.6 -r1.1.2.7 src/doc/CHANGES-6.0.3

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/i386/eisa

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:22:01 UTC 2013

Modified Files:
src/sys/arch/i386/eisa [netbsd-6]: eisa_machdep.c

Log Message:
Pull up following revision(s) (requested by uebayasi in ticket #904):
sys/arch/i386/eisa/eisa_machdep.c: revision 1.38
port-i386/47907: kernel trap when using EISA with I/O APIC on i386
Patch from Felix Deichmann.
XXX pullup netbsd-6


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.37.8.1 src/sys/arch/i386/eisa/eisa_machdep.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

2013-06-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jun 23 11:22:29 UTC 2013

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

Log Message:
ticket 904


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 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: src/sys/arch/evbarm/stand/gzboot

2013-06-23 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Jun 23 13:56:01 UTC 2013

Modified Files:
src/sys/arch/evbarm/stand/gzboot: Makefile.gzboot

Log Message:
Add -fno-unwind-tables


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/evbarm/stand/gzboot/Makefile.gzboot

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/stand/boot2440

2013-06-23 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Jun 23 13:56:40 UTC 2013

Modified Files:
src/sys/arch/evbarm/stand/boot2440: Makefile

Log Message:
Add -fno-unwind-tables


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/evbarm/stand/boot2440/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/evbarm/stand/bootimx23

2013-06-23 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Jun 23 13:57:27 UTC 2013

Modified Files:
src/sys/arch/evbarm/stand/bootimx23: Makefile

Log Message:
Add -fno-unwind-tables


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/evbarm/stand/bootimx23/Makefile

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



CVS commit: src/lib/libc/string

2013-06-23 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Jun 23 16:44:06 UTC 2013

Modified Files:
src/lib/libc/string: memcmp.3 memset.3
Added Files:
src/lib/libc/string: consttime_bcmp.3 explicit_bzero.3

Log Message:
Add man pages and xrefs for consttime_bcmp and explicit_bzero.

ok wiz


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/lib/libc/string/consttime_bcmp.3 \
src/lib/libc/string/explicit_bzero.3
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/string/memcmp.3 \
src/lib/libc/string/memset.3

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



CVS commit: src/sys/rump/net/lib/libsockin

2013-06-23 Thread Arnaud Ysmal
Module Name:src
Committed By:   stacktic
Date:   Sun Jun 23 19:24:08 UTC 2013

Modified Files:
src/sys/rump/net/lib/libsockin: sockin.c

Log Message:
Make sure sockin module is initialized only once


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/rump/net/lib/libsockin/sockin.c

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



CVS commit: src/libexec/httpd

2013-06-23 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Jun 23 20:32:55 UTC 2013

Modified Files:
src/libexec/httpd: bozohttpd.c

Log Message:
Do not keep pointers into a readdir result (which will become invalid
when closing the directory) - strdup() it instead.
Fixes the "bogus redirects" part of PR bin/47925 (atf test case
forthcoming)


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/libexec/httpd/bozohttpd.c

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



CVS commit: src

2013-06-23 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jun 23 22:03:34 UTC 2013

Modified Files:
src/sbin/fsck_ffs: inode.c pass4.c pass5.c utilities.c
src/sbin/newfs: mkfs.c
src/sbin/resize_ffs: resize_ffs.c
src/sbin/scan_ffs: scan_ffs.c
src/sys/ufs/ffs: ffs_alloc.c ffs_snapshot.c ffs_vfsops.c ffs_wapbl.c
fs.h
src/usr.sbin/makefs/ffs: ffs_alloc.c mkfs.c

Log Message:
Stick ffs_ in front of the following macros:
   fragstoblks()
   blkstofrags()
   fragnum()
   blknum()

to finish the job of distinguishing them from the lfs versions, which
Christos renamed the other day.

I believe this is the last of the overtly ambiguous exported symbols
from ffs... or at least, the last of the ones that conflicted with lfs.
ffs still pollutes the C namespace very broadly (as does ufs) and this
needs quite a bit more cleanup.

XXX: boo on macros with lowercase names. But I'm not tackling that just yet.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/sbin/fsck_ffs/inode.c
cvs rdiff -u -r1.27 -r1.28 src/sbin/fsck_ffs/pass4.c
cvs rdiff -u -r1.53 -r1.54 src/sbin/fsck_ffs/pass5.c
cvs rdiff -u -r1.62 -r1.63 src/sbin/fsck_ffs/utilities.c
cvs rdiff -u -r1.119 -r1.120 src/sbin/newfs/mkfs.c
cvs rdiff -u -r1.37 -r1.38 src/sbin/resize_ffs/resize_ffs.c
cvs rdiff -u -r1.24 -r1.25 src/sbin/scan_ffs/scan_ffs.c
cvs rdiff -u -r1.137 -r1.138 src/sys/ufs/ffs/ffs_alloc.c
cvs rdiff -u -r1.126 -r1.127 src/sys/ufs/ffs/ffs_snapshot.c
cvs rdiff -u -r1.285 -r1.286 src/sys/ufs/ffs/ffs_vfsops.c
cvs rdiff -u -r1.21 -r1.22 src/sys/ufs/ffs/ffs_wapbl.c
cvs rdiff -u -r1.63 -r1.64 src/sys/ufs/ffs/fs.h
cvs rdiff -u -r1.26 -r1.27 src/usr.sbin/makefs/ffs/ffs_alloc.c
cvs rdiff -u -r1.30 -r1.31 src/usr.sbin/makefs/ffs/mkfs.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

2013-06-23 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sun Jun 23 23:49:28 UTC 2013

Modified Files:
src/sys/arch/x86/include: pmap.h

Log Message:
Remove obsolete comment.  OK'ed by rmind@.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/x86/include/pmap.h

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



CVS commit: src/sys/kern

2013-06-23 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jun 24 00:56:21 UTC 2013

Modified Files:
src/sys/kern: subr_cprng.c

Log Message:
Include  for curlwp.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/kern/subr_cprng.c

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



CVS commit: src

2013-06-23 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jun 24 01:12:08 UTC 2013

Modified Files:
src/distrib/sets/lists/comp: mi
src/lib/libc/string: Makefile.inc

Log Message:
Add consttime_bcmp(3) and explicit_bzero(3) to makefile and set lists.


To generate a diff of this commit:
cvs rdiff -u -r1.1825 -r1.1826 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.76 -r1.77 src/lib/libc/string/Makefile.inc

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

2013-06-23 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jun 24 03:57:36 UTC 2013

Modified Files:
src/sys/dev/ic: bt463.c bt485.c

Log Message:
Use static inline.  Fixes i386/ALL and something else I've forgetten.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/ic/bt463.c src/sys/dev/ic/bt485.c

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



CVS commit: src

2013-06-23 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jun 24 04:21:20 UTC 2013

Modified Files:
src/crypto/external/bsd/libsaslc/dist/src: dict.c
src/crypto/external/bsd/openssh/dist: dns.c
src/distrib/sets/lists/comp: mi
src/include: string.h
src/lib/libc/string: Makefile.inc memcmp.3 memset.3
src/lib/libcrypt: bcrypt.c crypt-sha1.c md5crypt.c
src/share/man/man9: rndsink.9
src/sys/dev: cgd_crypto.c
src/sys/kern: kern_rndsink.c subr_cprng.c
src/sys/lib/libkern: Makefile.libkern arc4random.c libkern.h
src/sys/netipsec: key.c xform_ah.c xform_esp.c
src/sys/opencrypto: cryptosoft.c
Added Files:
src/common/lib/libc/string: consttime_memequal.c explicit_memset.c
src/lib/libc/string: consttime_memequal.3 explicit_memset.3
Removed Files:
src/common/lib/libc/string: consttime_bcmp.c explicit_bzero.c
src/lib/libc/string: consttime_bcmp.3 explicit_bzero.3

Log Message:
Replace consttime_bcmp/explicit_bzero by consttime_memequal/explicit_memset.

consttime_memequal is the same as the old consttime_bcmp.
explicit_memset is to memset as explicit_bzero was to bcmp.

Passes amd64 release and i386/ALL, but I'm sure I missed some spots,
so please let me know.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r0 src/common/lib/libc/string/consttime_bcmp.c \
src/common/lib/libc/string/explicit_bzero.c
cvs rdiff -u -r0 -r1.1 src/common/lib/libc/string/consttime_memequal.c \
src/common/lib/libc/string/explicit_memset.c
cvs rdiff -u -r1.7 -r1.8 src/crypto/external/bsd/libsaslc/dist/src/dict.c
cvs rdiff -u -r1.5 -r1.6 src/crypto/external/bsd/openssh/dist/dns.c
cvs rdiff -u -r1.1826 -r1.1827 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.43 -r1.44 src/include/string.h
cvs rdiff -u -r1.77 -r1.78 src/lib/libc/string/Makefile.inc
cvs rdiff -u -r1.1 -r0 src/lib/libc/string/consttime_bcmp.3 \
src/lib/libc/string/explicit_bzero.3
cvs rdiff -u -r0 -r1.1 src/lib/libc/string/consttime_memequal.3 \
src/lib/libc/string/explicit_memset.3
cvs rdiff -u -r1.10 -r1.11 src/lib/libc/string/memcmp.3 \
src/lib/libc/string/memset.3
cvs rdiff -u -r1.17 -r1.18 src/lib/libcrypt/bcrypt.c
cvs rdiff -u -r1.5 -r1.6 src/lib/libcrypt/crypt-sha1.c
cvs rdiff -u -r1.12 -r1.13 src/lib/libcrypt/md5crypt.c
cvs rdiff -u -r1.1 -r1.2 src/share/man/man9/rndsink.9
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/cgd_crypto.c
cvs rdiff -u -r1.1 -r1.2 src/sys/kern/kern_rndsink.c
cvs rdiff -u -r1.19 -r1.20 src/sys/kern/subr_cprng.c
cvs rdiff -u -r1.23 -r1.24 src/sys/lib/libkern/Makefile.libkern
cvs rdiff -u -r1.34 -r1.35 src/sys/lib/libkern/arc4random.c
cvs rdiff -u -r1.106 -r1.107 src/sys/lib/libkern/libkern.h
cvs rdiff -u -r1.81 -r1.82 src/sys/netipsec/key.c
cvs rdiff -u -r1.39 -r1.40 src/sys/netipsec/xform_ah.c
cvs rdiff -u -r1.42 -r1.43 src/sys/netipsec/xform_esp.c
cvs rdiff -u -r1.41 -r1.42 src/sys/opencrypto/cryptosoft.c

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