CVS commit: [netbsd-5-0] src/crypto/dist/openssl/crypto/evp

2010-03-06 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Sat Mar  6 23:20:03 UTC 2010

Modified Files:
src/crypto/dist/openssl/crypto/evp [netbsd-5-0]: m_sha1.c

Log Message:
Pull up the following revisions(s) (requested by joerg in ticket #1320):
crypto/dist/openssl/crypto/evp/m_sha1.c:patch

Ensure that SHA384 always calls the SHA384 functions.
Should fix PR#42881.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5.8.1 -r1.1.1.5.8.2 \
src/crypto/dist/openssl/crypto/evp/m_sha1.c

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

Modified files:

Index: src/crypto/dist/openssl/crypto/evp/m_sha1.c
diff -u src/crypto/dist/openssl/crypto/evp/m_sha1.c:1.1.1.5.8.1 src/crypto/dist/openssl/crypto/evp/m_sha1.c:1.1.1.5.8.2
--- src/crypto/dist/openssl/crypto/evp/m_sha1.c:1.1.1.5.8.1	Tue Jul 14 19:35:22 2009
+++ src/crypto/dist/openssl/crypto/evp/m_sha1.c	Sat Mar  6 23:20:02 2010
@@ -158,8 +158,12 @@
 static int init512(EVP_MD_CTX *ctx)
 	{ return SHA512_Init(ctx-md_data); }
 /* See comment in SHA224/256 section */
+static int update384(EVP_MD_CTX *ctx,const void *data,size_t count)
+	{ return SHA384_Update(ctx-md_data,data,count); }
 static int update512(EVP_MD_CTX *ctx,const void *data,size_t count)
 	{ return SHA512_Update(ctx-md_data,data,count); }
+static int final384(EVP_MD_CTX *ctx,unsigned char *md)
+	{ return SHA384_Final(md,ctx-md_data); }
 static int final512(EVP_MD_CTX *ctx,unsigned char *md)
 	{ return SHA512_Final(md,ctx-md_data); }
 
@@ -170,8 +174,8 @@
 	SHA384_DIGEST_LENGTH,
 	EVP_MD_FLAG_PKEY_METHOD_SIGNATURE|EVP_MD_FLAG_DIGALGID_ABSENT,
 	init384,
-	update512,
-	final512,
+	update384,
+	final384,
 	NULL,
 	NULL,
 	EVP_PKEY_RSA_method,



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

2010-03-06 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Sat Mar  6 23:21:18 UTC 2010

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

Log Message:
Ticket 1320


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

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



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

2010-03-06 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Sat Mar  6 23:21:18 UTC 2010

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

Log Message:
Ticket 1320


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

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

Modified files:

Index: src/doc/CHANGES-5.0.3
diff -u src/doc/CHANGES-5.0.3:1.1.2.5 src/doc/CHANGES-5.0.3:1.1.2.6
--- src/doc/CHANGES-5.0.3:1.1.2.5	Mon Feb 22 16:07:24 2010
+++ src/doc/CHANGES-5.0.3	Sat Mar  6 23:21:18 2010
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.0.3,v 1.1.2.5 2010/02/22 16:07:24 snj Exp $
+# $NetBSD: CHANGES-5.0.3,v 1.1.2.6 2010/03/06 23:21:18 sborrill Exp $
 
 A complete list of changes from the NetBSD 5.0.2 release to the NetBSD 5.0.3
 release:
@@ -152,3 +152,9 @@
 	Fix ticket #793: s/setfunc_trampoline/lwp_trampoline/.
 	[skrll, ticket #1312]
 
+crypto/dist/openssl/crypto/evp/m_sha1.c		patch
+
+	Ensure that SHA384 always calls the SHA384 functions.
+	Should fix PR#42881.
+	[joerg, ticket #1320]
+



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

2010-02-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 22 16:07:24 UTC 2010

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

Log Message:
Ticket 1312.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/doc/CHANGES-5.0.3

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



CVS commit: [netbsd-5-0] src/sys/arch/i386/i386

2010-02-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Feb 16 21:24:22 UTC 2010

Modified Files:
src/sys/arch/i386/i386 [netbsd-5-0]: ibcs2_machdep.c svr4_machdep.c

Log Message:
Pull up following revision(s) (requested by drochner in ticket #1307):
sys/arch/i386/i386/svr4_machdep.c: revision 1.96
sys/arch/i386/i386/ibcs2_machdep.c: revision 1.40
fix confused CS selector, fixes the panic reported by Mark Davis
per PR port-i386/42787 (the panic happens due to a GPF when a
privileged descriptor is tried to be loaded with the UPL bit set)
The original bug is very old (pre-2.0, i386/svr4_machdep.c rev. 1.69),
but it was relatively harmless until the order of GDT entries was
shuffled (pre-5.0, i386/segments.h rev. 1.42). Before, it caused
a userlevel data selector to be used for CS which broke the emulation
(likely the reason of PR port-i386/32424). The shuffle made that
a privileged selector was used, causing the GPF.
(recent -current doesn't panic on that GPF which seems to be a
side effect of another change)


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.36.16.1 src/sys/arch/i386/i386/ibcs2_machdep.c
cvs rdiff -u -r1.92 -r1.92.6.1 src/sys/arch/i386/i386/svr4_machdep.c

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



CVS commit: [netbsd-5-0] src/tools/compat

2010-02-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Feb 16 21:26:44 UTC 2010

Modified Files:
src/tools/compat [netbsd-5-0]: getmode.c

Log Message:
Pull up following revision(s) (requested by snj in ticket #1308):
tools/compat/getmode.c: revision 1.8
include unistd.h where getmode is traditionally declared


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.7.8.1 src/tools/compat/getmode.c

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



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

2010-02-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Tue Feb 16 21:27:22 UTC 2010

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

Log Message:
Tickets 1307  1308


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/doc/CHANGES-5.0.3

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



CVS commit: [netbsd-5-0] src/distrib/pmax/instkernel

2010-02-14 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Feb 14 14:04:48 UTC 2010

Modified Files:
src/distrib/pmax/instkernel [netbsd-5-0]: Makefile

Log Message:
Apply patch, requested by snj in ticket 1305:
distrib/pmax/instkernel/Makefile: patch
Bump the size of the pmax instkernel ramdisk to 2200k.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.36.30.1 src/distrib/pmax/instkernel/Makefile

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



CVS commit: [netbsd-5-0] src/external/bsd/fetch/dist/libfetch

2010-02-14 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 15 00:47:56 UTC 2010

Modified Files:
src/external/bsd/fetch/dist/libfetch [netbsd-5-0]: common.c common.h
errlist.sh fetch.3 fetch.c fetch.cat3 fetch.h file.c ftp.c
ftp.errors http.c http.errors

Log Message:
Apply patch (requested by joerg in ticket #1294):
Update libfetch to 2.30.
Changes:
libfetch-2.25:
- address a number of lint warnings
- fix strict-alignment issues for GCC 4.4
- fix a bug in the line reading optimisation
- do not reuse a FTP connection if there is an active transfer on it

libfetch-2.26:
- Add support to aggressively cache directory listenings; useful for
  HTTP
- Avoid leaking memory in error cases. From Xavier from Arch Linux.

libfetch-2.30:
- Revamped connection cache, allowing more than one active session
- HTTP keep-alive support


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2.8.1 -r1.1.1.2.8.2 \
src/external/bsd/fetch/dist/libfetch/common.c \
src/external/bsd/fetch/dist/libfetch/common.h \
src/external/bsd/fetch/dist/libfetch/errlist.sh \
src/external/bsd/fetch/dist/libfetch/fetch.h \
src/external/bsd/fetch/dist/libfetch/file.c \
src/external/bsd/fetch/dist/libfetch/ftp.errors \
src/external/bsd/fetch/dist/libfetch/http.c \
src/external/bsd/fetch/dist/libfetch/http.errors
cvs rdiff -u -r1.1.1.3.6.1 -r1.1.1.3.6.2 \
src/external/bsd/fetch/dist/libfetch/fetch.3 \
src/external/bsd/fetch/dist/libfetch/ftp.c
cvs rdiff -u -r1.1.1.3.4.1 -r1.1.1.3.4.2 \
src/external/bsd/fetch/dist/libfetch/fetch.c
cvs rdiff -u -r1.1.1.2.6.1 -r1.1.1.2.6.2 \
src/external/bsd/fetch/dist/libfetch/fetch.cat3

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



CVS commit: [netbsd-5-0] src/external/bsd/pkg_install/dist

2010-02-14 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 15 01:01:26 UTC 2010

Modified Files:
src/external/bsd/pkg_install/dist/add [netbsd-5-0]: add.h main.c
perform.c pkg_add.1
src/external/bsd/pkg_install/dist/admin [netbsd-5-0]: audit.c check.c
main.c pkg_admin.1
src/external/bsd/pkg_install/dist/bpm [netbsd-5-0]: bpm.1 bpm.sh.in
src/external/bsd/pkg_install/dist/create [netbsd-5-0]: build.c create.h
main.c perform.c pkg_create.1 pl.c
src/external/bsd/pkg_install/dist/delete [netbsd-5-0]: pkg_delete.1
pkg_delete.c
src/external/bsd/pkg_install/dist/info [netbsd-5-0]: info.h main.c
perform.c pkg_info.1 show.c
src/external/bsd/pkg_install/dist/lib [netbsd-5-0]: automatic.c
conflicts.c decompress.c defs.h dewey.c fexec.c file.c global.c
gpgsig.c iterate.c lib.h license.c lpkg.c opattern.c parse-config.c
pkcs7.c pkg_install.conf.5.in pkg_io.c pkg_signature.c
pkg_summary.5 pkgdb.c plist.c remove.c str.c var.c version.c
version.h vulnerabilities-file.c xwrapper.c
src/external/bsd/pkg_install/dist/x509 [netbsd-5-0]: pkgsrc.cnf
pkgsrc.sh
Added Files:
src/external/bsd/pkg_install/dist/delete [netbsd-5-0]: pkg_delete.1.in

Log Message:
Apply patch (requested by joerg in ticket #1298):
Update pkg_install to 20100204.

pkg_install-20091115:
Completely ignore @src in pkg_create. Silently ignore the -L option.
The combination of -I and -p are used by pkgsrc for the same result.

Do not overwrite a string with itself using snprintf. This breaks
setting the pkgdb directory internally on Linux. Explicitly check
if the string is the same and otherwise just use xstrdup.

Add support to query arbitrary variables with pkg_admin config-var.

pkg_install-20100130:
- pkg_add -U to rplace an installed version
- refactored man pages
- PKG_DBDIR / PKG_REFCOUNT_DBDIR as pkg_install.conf options
- synced license list
- use connection cache from libfetch

pkg_install 20100204:
- Restore PKG_PREFIX in pkg_delete (PR 42731)
- Ensure that the current pkg_install version is at least as new
  as the version used to build the package


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/add/add.h \
src/external/bsd/pkg_install/dist/add/main.c \
src/external/bsd/pkg_install/dist/add/perform.c \
src/external/bsd/pkg_install/dist/add/pkg_add.1
cvs rdiff -u -r1.1.1.2.8.2 -r1.1.1.2.8.3 \
src/external/bsd/pkg_install/dist/admin/audit.c
cvs rdiff -u -r1.1.1.1.8.1 -r1.1.1.1.8.2 \
src/external/bsd/pkg_install/dist/admin/check.c
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/admin/main.c
cvs rdiff -u -r1.1.1.1.8.3 -r1.1.1.1.8.4 \
src/external/bsd/pkg_install/dist/admin/pkg_admin.1
cvs rdiff -u -r1.1.1.1.10.1 -r1.1.1.1.10.2 \
src/external/bsd/pkg_install/dist/bpm/bpm.1
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.10.1 \
src/external/bsd/pkg_install/dist/bpm/bpm.sh.in
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/create/build.c \
src/external/bsd/pkg_install/dist/create/main.c \
src/external/bsd/pkg_install/dist/create/perform.c
cvs rdiff -u -r1.1.1.1.10.2 -r1.1.1.1.10.3 \
src/external/bsd/pkg_install/dist/create/create.h
cvs rdiff -u -r1.1.1.1.8.1 -r1.1.1.1.8.2 \
src/external/bsd/pkg_install/dist/create/pkg_create.1 \
src/external/bsd/pkg_install/dist/create/pl.c
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/delete/pkg_delete.1
cvs rdiff -u -r0 -r1.1.1.1.4.2 \
src/external/bsd/pkg_install/dist/delete/pkg_delete.1.in
cvs rdiff -u -r1.1.1.4.4.3 -r1.1.1.4.4.4 \
src/external/bsd/pkg_install/dist/delete/pkg_delete.c
cvs rdiff -u -r1.1.1.1.10.2 -r1.1.1.1.10.3 \
src/external/bsd/pkg_install/dist/info/info.h
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/info/main.c \
src/external/bsd/pkg_install/dist/info/show.c
cvs rdiff -u -r1.1.1.1.8.3 -r1.1.1.1.8.4 \
src/external/bsd/pkg_install/dist/info/perform.c
cvs rdiff -u -r1.1.1.1.10.1 -r1.1.1.1.10.2 \
src/external/bsd/pkg_install/dist/info/pkg_info.1
cvs rdiff -u -r1.1.1.1.8.1 -r1.1.1.1.8.2 \
src/external/bsd/pkg_install/dist/lib/automatic.c \
src/external/bsd/pkg_install/dist/lib/dewey.c \
src/external/bsd/pkg_install/dist/lib/global.c \
src/external/bsd/pkg_install/dist/lib/lpkg.c \
src/external/bsd/pkg_install/dist/lib/opattern.c \
src/external/bsd/pkg_install/dist/lib/pkg_summary.5 \
src/external/bsd/pkg_install/dist/lib/str.c \
src/external/bsd/pkg_install/dist/lib/version.c \
src/external/bsd/pkg_install/dist/lib/vulnerabilities-file.c
cvs rdiff -u -r1.1.1.1.8.2 -r1.1.1.1.8.3 \
src/external/bsd/pkg_install/dist/lib/conflicts.c \
src/external/bsd/pkg_install/dist/lib/decompress.c \

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

2010-02-14 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 15 01:20:27 UTC 2010

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

Log Message:
Tickets 1294 and 1298.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/doc/CHANGES-5.0.3

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



CVS commit: [netbsd-5-0] src

2010-02-13 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb 13 08:15:34 UTC 2010

Modified Files:
src/gnu/usr.bin/groff/tmac [netbsd-5-0]: mdoc.local
src/sys/sys [netbsd-5-0]: param.h

Log Message:
Bump version to 5.0.2_PATCH.


To generate a diff of this commit:
cvs rdiff -u -r1.43.4.8.2.4 -r1.43.4.8.2.5 \
src/gnu/usr.bin/groff/tmac/mdoc.local
cvs rdiff -u -r1.330.4.9.2.4 -r1.330.4.9.2.5 src/sys/sys/param.h

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



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

2010-02-13 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb 13 08:17:17 UTC 2010

Added Files:
src/doc [netbsd-5-0]: CHANGES-5.0.3

Log Message:
Add file for tracking changes leading up to 5.0.3.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1.2.1 src/doc/CHANGES-5.0.3

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



CVS commit: [netbsd-5-0] src/distrib/notes/common

2010-02-06 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb  6 15:44:38 UTC 2010

Modified Files:
src/distrib/notes/common [netbsd-5-0]: main

Log Message:
Improve description of -mno-red-zone entry and use http for a couple
links.


To generate a diff of this commit:
cvs rdiff -u -r1.425.2.5.2.3 -r1.425.2.5.2.4 src/distrib/notes/common/main

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



CVS commit: [netbsd-5-0] src/distrib/notes/common

2010-02-06 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb  6 15:56:01 UTC 2010

Modified Files:
src/distrib/notes/common [netbsd-5-0]: main

Log Message:
Give device node examples.


To generate a diff of this commit:
cvs rdiff -u -r1.425.2.5.2.4 -r1.425.2.5.2.5 src/distrib/notes/common/main

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



CVS commit: [netbsd-5-0] src

2010-02-06 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb  6 16:31:35 UTC 2010

Modified Files:
src/doc [netbsd-5-0]: CHANGES-5.0.2 LAST_MINUTE README.files
src/gnu/usr.bin/groff/tmac [netbsd-5-0]: mdoc.local
src/sys/sys [netbsd-5-0]: param.h

Log Message:
Welcome to 5.0.2!


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.53 -r1.1.2.54 src/doc/CHANGES-5.0.2
cvs rdiff -u -r1.2.30.1 -r1.2.30.1.2.1 src/doc/LAST_MINUTE
cvs rdiff -u -r1.4.10.2 -r1.4.10.2.2.1 src/doc/README.files
cvs rdiff -u -r1.43.4.8.2.3 -r1.43.4.8.2.4 \
src/gnu/usr.bin/groff/tmac/mdoc.local
cvs rdiff -u -r1.330.4.9.2.3 -r1.330.4.9.2.4 src/sys/sys/param.h

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



CVS commit: [netbsd-5-0] src/distrib/notes/common

2010-02-05 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb  6 05:52:39 UTC 2010

Modified Files:
src/distrib/notes/common [netbsd-5-0]: main

Log Message:
Update for 5.0.2


To generate a diff of this commit:
cvs rdiff -u -r1.425.2.5.2.2 -r1.425.2.5.2.3 src/distrib/notes/common/main

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



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

2010-02-05 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Feb  6 05:54:14 UTC 2010

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

Log Message:
Note notes.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.52 -r1.1.2.53 src/doc/CHANGES-5.0.2

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



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

2010-02-04 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Feb  4 19:50:20 UTC 2010

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

Log Message:
Remove duplicate entry for ticket 1257.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.51 -r1.1.2.52 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src/sys/dev

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 19:05:04 UTC 2010

Modified Files:
src/sys/dev [netbsd-5-0]: cgd.c vnd.c
src/sys/dev/dkwedge [netbsd-5-0]: dk.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #1269):
sys/dev/dkwedge/dk.c: revision 1.53
sys/dev/cgd.c: revision 1.69
sys/dev/vnd.c: revision 1.206
struct buf::b_iodone is not called at splbio() any more.
Make sure non-MPsafe iodone callbacks raise the SPL as appropriate.
Fix buffer corruption issue I noticed in dk(4), and probable similar
issues in vnd(4) and cgd(4).


To generate a diff of this commit:
cvs rdiff -u -r1.53.4.2 -r1.53.4.2.2.1 src/sys/dev/cgd.c
cvs rdiff -u -r1.187.4.3 -r1.187.4.3.2.1 src/sys/dev/vnd.c
cvs rdiff -u -r1.42 -r1.42.10.1 src/sys/dev/dkwedge/dk.c

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



CVS commit: [netbsd-5-0] src/sys/dev/ata

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 19:06:26 UTC 2010

Modified Files:
src/sys/dev/ata [netbsd-5-0]: wd.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #1269):
sys/dev/ata/wd.c: revision 1.383 via patch
struct buf::b_iodone is not called at splbio() any more.
Make sure non-MPsafe iodone callbacks raise the SPL as appropriate.


To generate a diff of this commit:
cvs rdiff -u -r1.363.8.1 -r1.363.8.1.2.1 src/sys/dev/ata/wd.c

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



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

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 20:10:24 UTC 2010

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

Log Message:
Tickets 1269 and 1286.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.47 -r1.1.2.48 src/doc/CHANGES-5.0.2

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



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

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 20:39:46 UTC 2010

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

Log Message:
Tickets 1275 and 1276.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.48 -r1.1.2.49 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 20:44:51 UTC 2010

Modified Files:
src/doc [netbsd-5-0]: CHANGES-5.0.2
src/sys/kern [netbsd-5-0]: sys_aio.c

Log Message:
Revert ticket 1286.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.49 -r1.1.2.50 src/doc/CHANGES-5.0.2
cvs rdiff -u -r1.19.10.1 -r1.19.10.2 src/sys/kern/sys_aio.c

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



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

2010-01-30 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan 30 21:25:14 UTC 2010

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

Log Message:
Ticket 1288.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.50 -r1.1.2.51 src/doc/CHANGES-5.0.2

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



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

2010-01-27 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed Jan 27 20:45:27 UTC 2010

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

Log Message:
tickets 1283 and 1284


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.45 -r1.1.2.46 src/doc/CHANGES-5.0.2

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



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

2010-01-27 Thread Stephen Borrill
Module Name:src
Committed By:   sborrill
Date:   Wed Jan 27 21:45:44 UTC 2010

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

Log Message:
Ticket 1257


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.46 -r1.1.2.47 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src/libexec/ld.elf_so

2010-01-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 23 17:34:12 UTC 2010

Modified Files:
src/libexec/ld.elf_so [netbsd-5-0]: rtld.h

Log Message:
Pull up following revision(s) (requested by skrll in ticket #1249):
libexec/ld.elf_so/rtld.h: revisions 1.87, 1.88
libexec/ld.elf_so/reloc.c: revision 1.101
Restore backwards compatibility for binaries referencing the main
Obj_Entry.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.79.8.1 src/libexec/ld.elf_so/rtld.h

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



CVS commit: [netbsd-5-0] src/libexec/ld.elf_so

2010-01-23 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 23 17:39:11 UTC 2010

Modified Files:
src/libexec/ld.elf_so [netbsd-5-0]: rtld.h

Log Message:
Back out ticket 1249 for now, it may not be needed on netbsd-5-0.


To generate a diff of this commit:
cvs rdiff -u -r1.79.8.1 -r1.79.8.2 src/libexec/ld.elf_so/rtld.h

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



CVS commit: [netbsd-5-0] src

2010-01-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Jan 22 22:05:42 UTC 2010

Modified Files:
src/dist/bind [netbsd-5-0]: CHANGES FAQ FAQ.xml version
src/dist/bind/bin/named [netbsd-5-0]: query.c
src/dist/bind/bin/tests/system [netbsd-5-0]: conf.sh.in
src/dist/bind/bin/tests/system/dnssec [netbsd-5-0]: tests.sh
src/dist/bind/bin/tests/system/dnssec/ns1 [netbsd-5-0]: sign.sh
src/dist/bind/bin/tests/system/dnssec/ns2 [netbsd-5-0]: example.db.in
sign.sh
src/dist/bind/doc/arm [netbsd-5-0]: Bv9ARM.pdf
src/dist/bind/doc/rfc [netbsd-5-0]: index
src/dist/bind/lib/dns [netbsd-5-0]: rbtdb.c resolver.c validator.c
src/dist/bind/lib/dns/include/dns [netbsd-5-0]: db.h types.h
src/dist/bind/lib/lwres/man [netbsd-5-0]: lwres.html lwres_buffer.html
lwres_config.html lwres_context.html lwres_gabn.html
lwres_gai_strerror.html lwres_getaddrinfo.html
lwres_gethostent.html lwres_getipnode.html lwres_getnameinfo.html
lwres_getrrsetbyname.html lwres_gnba.html lwres_hstrerror.html
lwres_inetntop.html lwres_noop.html lwres_packet.html
lwres_resutil.html
src/distrib/sets/lists/base [netbsd-5-0]: md.amd64 md.sparc64 shl.mi
src/doc [netbsd-5-0]: 3RDPARTY
src/lib/libdns [netbsd-5-0]: shlib_version
Added Files:
src/dist/bind/bin/tests/system/pending [netbsd-5-0]: clean.sh prereq.sh
setup.sh tests.sh
src/dist/bind/bin/tests/system/pending/ns1 [netbsd-5-0]: named.conf
root.db.in sign.sh
src/dist/bind/bin/tests/system/pending/ns2 [netbsd-5-0]:
example.com.db.in example.db.in forgery.db named.conf sign.sh
src/dist/bind/bin/tests/system/pending/ns3 [netbsd-5-0]: hostile.db
mail.example.db named.conf
src/dist/bind/bin/tests/system/pending/ns4 [netbsd-5-0]: named.conf
src/dist/bind/doc/draft [netbsd-5-0]:
draft-ietf-6man-text-addr-representation-01.txt
draft-ietf-behave-dns64-01.txt
draft-ietf-dnsext-axfr-clarify-12.txt
draft-ietf-dnsext-dns-tcp-requirements-01.txt
draft-ietf-dnsext-dnssec-bis-updates-09.txt
draft-ietf-dnsext-dnssec-gost-05.txt
draft-ietf-dnsext-rfc2671bis-edns0-02.txt
draft-ietf-dnsext-rfc2672bis-dname-18.txt
draft-ietf-dnsext-rfc3597-bis-00.txt
draft-ietf-dnsext-tsig-md5-deprecated-03.txt
draft-ietf-dnsop-default-local-zones-09.txt
draft-ietf-dnsop-name-server-management-reqs-02.txt
src/dist/bind/doc/rfc [netbsd-5-0]: rfc1912.txt rfc3755.txt rfc4294.txt
rfc4339.txt rfc4471.txt rfc4472.txt rfc4697.txt rfc4955.txt
rfc4956.txt rfc5001.txt rfc5011.txt rfc5452.txt rfc5625.txt
rfc5702.txt
Removed Files:
src/dist/bind/doc/draft [netbsd-5-0]:
draft-baba-dnsext-acl-reqts-01.txt draft-daigle-napstr-04.txt
draft-danisch-dns-rr-smtp-03.txt
draft-dnsext-opcode-discover-02.txt
draft-durand-dnsop-dynreverse-00.txt
draft-ietf-dnsext-2929bis-01.txt
draft-ietf-dnsext-axfr-clarify-05.txt
draft-ietf-dnsext-dns-name-p-s-00.txt
draft-ietf-dnsext-dnssec-2535typecode-change-06.txt
draft-ietf-dnsext-dnssec-bis-updates-01.txt
draft-ietf-dnsext-dnssec-experiments-03.txt
draft-ietf-dnsext-dnssec-online-signing-02.txt
draft-ietf-dnsext-dnssec-opt-in-07.txt
draft-ietf-dnsext-dnssec-rsasha256-00.txt
draft-ietf-dnsext-dnssec-trans-02.txt
draft-ietf-dnsext-ds-sha256-05.txt
draft-ietf-dnsext-forgery-resilience-00.txt
draft-ietf-dnsext-keyrr-key-signing-flag-12.txt
draft-ietf-dnsext-mdns-46.txt draft-ietf-dnsext-nsec3-12.txt
draft-ietf-dnsext-nsid-01.txt
draft-ietf-dnsext-rfc2536bis-dsa-07.txt
draft-ietf-dnsext-rfc2539bis-dhk-07.txt
draft-ietf-dnsext-rfc2672bis-dname-06.txt
draft-ietf-dnsext-signed-nonexistence-requirements-01.txt
draft-ietf-dnsext-tkey-renewal-mode-05.txt
draft-ietf-dnsext-trustupdate-threshold-00.txt
draft-ietf-dnsext-trustupdate-timers-05.txt
draft-ietf-dnsext-tsig-sha-06.txt
draft-ietf-dnsext-wcard-clarify-10.txt
draft-ietf-dnsop-default-local-zones-03.txt
draft-ietf-dnsop-ipv6-dns-configuration-06.txt
draft-ietf-dnsop-ipv6-dns-issues-11.txt
draft-ietf-dnsop-ipv6-transport-guidelines-01.txt
draft-ietf-dnsop-key-rollover-requirements-02.txt
draft-ietf-dnsop-serverid-06.txt
draft-ietf-enum-e164-gstn-np-05.txt
draft-ietf-ipv6-node-requirements-08.txt
draft-ietf-secsh-dns-05.txt

CVS commit: [netbsd-5-0] src/crypto/dist/openssl/crypto/comp

2010-01-22 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Fri Jan 22 22:17:02 UTC 2010

Modified Files:
src/crypto/dist/openssl/crypto/comp [netbsd-5-0]: c_zlib.c

Log Message:
Apply patch (requested by taca in ticket #1265):
Fix CVE-2009-4355.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.7 -r1.1.1.7.8.1 \
src/crypto/dist/openssl/crypto/comp/c_zlib.c

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



CVS commit: [netbsd-5-0] src/sys/dev/pci

2010-01-21 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Jan 21 08:41:01 UTC 2010

Modified Files:
src/sys/dev/pci [netbsd-5-0]: azalia.c

Log Message:
Pull up following revision(s) (requested by tonnerre in ticket #1258):
sys/dev/pci/azalia.c: revision 1.72
Signedness bug/crash in azalia. Fixes PR 42604.
By Pierre Pronchery.


To generate a diff of this commit:
cvs rdiff -u -r1.64.6.1 -r1.64.6.1.2.1 src/sys/dev/pci/azalia.c

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



CVS commit: [netbsd-5-0] src/sys/lib/libkern

2010-01-19 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Jan 20 05:36:09 UTC 2010

Modified Files:
src/sys/lib/libkern [netbsd-5-0]: arc4random.c

Log Message:
Pull up following revision(s) (requested by joerg in ticket #1253):
sys/lib/libkern/arc4random.c: revision 1.21
Keep arc4_i and arc4_j synchronised after a rekeying. This prevents
accidentally ending up in a short ARC4 cycle.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.20.16.1 src/sys/lib/libkern/arc4random.c

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



Re: CVS commit: [netbsd-5-0] src/doc

2010-01-18 Thread Geert Hendrickx
On Sat, Jan 16, 2010 at 05:54:33PM +, Manuel Bouyer wrote:
 Module Name:  src
 Committed By: bouyer
 Date: Sat Jan 16 17:54:33 UTC 2010
 
 Modified Files:
   src/doc [netbsd-5-0]: CHANGES-5.0.1
 
 Log Message:
 tickets 1238, 1240,1241
 


This should have been added to CHANGES-5.0.2 instead?


Geert



-- 
Geert Hendrickx  -=-  g...@telenet.be  -=-  PGP: 0xC4BB9E9F
This e-mail was composed using 100% recycled spam messages!


Re: CVS commit: [netbsd-5-0] src/doc

2010-01-18 Thread Manuel Bouyer
On Mon, Jan 18, 2010 at 02:26:31PM +0100, Geert Hendrickx wrote:
 On Sat, Jan 16, 2010 at 05:54:33PM +, Manuel Bouyer wrote:
  Module Name:src
  Committed By:   bouyer
  Date:   Sat Jan 16 17:54:33 UTC 2010
  
  Modified Files:
  src/doc [netbsd-5-0]: CHANGES-5.0.1
  
  Log Message:
  tickets 1238, 1240,1241
  
 
 
 This should have been added to CHANGES-5.0.2 instead?

Ops, right. I'll fix it tonigh, unless someone beats me.

-- 
Manuel Bouyer bou...@antioche.eu.org
 NetBSD: 26 ans d'experience feront toujours la difference
--


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

2010-01-18 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Mon Jan 18 18:52:25 UTC 2010

Modified Files:
src/doc [netbsd-5-0]: CHANGES-5.0.1 CHANGES-5.0.2

Log Message:
Move tickets 1238, 1240,1241 to the correct file.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.45 -r1.1.2.46 src/doc/CHANGES-5.0.1
cvs rdiff -u -r1.1.2.40 -r1.1.2.41 src/doc/CHANGES-5.0.2

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



Re: CVS commit: [netbsd-5-0] src/doc

2010-01-18 Thread Manuel Bouyer
On Mon, Jan 18, 2010 at 03:01:59PM +0100, Manuel Bouyer wrote:
 On Mon, Jan 18, 2010 at 02:26:31PM +0100, Geert Hendrickx wrote:
  On Sat, Jan 16, 2010 at 05:54:33PM +, Manuel Bouyer wrote:
   Module Name:  src
   Committed By: bouyer
   Date: Sat Jan 16 17:54:33 UTC 2010
   
   Modified Files:
 src/doc [netbsd-5-0]: CHANGES-5.0.1
   
   Log Message:
   tickets 1238, 1240,1241
   
  
  
  This should have been added to CHANGES-5.0.2 instead?
 
 Ops, right. I'll fix it tonigh, unless someone beats me.

Done.

-- 
Manuel Bouyer bou...@antioche.eu.org
 NetBSD: 26 ans d'experience feront toujours la difference
--


CVS commit: [netbsd-5-0] src/gnu/usr.bin/xcvs/cvsbug

2010-01-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 16 17:28:11 UTC 2010

Modified Files:
src/gnu/usr.bin/xcvs/cvsbug [netbsd-5-0]: Makefile

Log Message:
Revert previous, wrong branch


To generate a diff of this commit:
cvs rdiff -u -r1.2.6.1 -r1.2.6.2 src/gnu/usr.bin/xcvs/cvsbug/Makefile

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



CVS commit: [netbsd-5-0] src/sys/kern

2010-01-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 16 17:32:46 UTC 2010

Modified Files:
src/sys/kern [netbsd-5-0]: kern_sig.c

Log Message:
Pull up following revision(s) (requested by rmind in ticket #1238):
sys/kern/kern_sig.c: revision 1.302
sigactsunshare(): set reference count in a case of new sigacts allocation.
Bug (e.g. memory leak) can happen when using clone(2) call.


To generate a diff of this commit:
cvs rdiff -u -r1.289.4.5 -r1.289.4.5.2.1 src/sys/kern/kern_sig.c

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



CVS commit: [netbsd-5-0] src/sys/kern

2010-01-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 16 17:39:07 UTC 2010

Modified Files:
src/sys/kern [netbsd-5-0]: kern_runq.c

Log Message:
Pull up following revision(s) (requested by rmind in ticket #1240):
sys/kern/kern_runq.c: revision 1.28
sched_catchlwp: fix the case when other CPU might see curlwp-l_cpu != curcpu()
while LWP is finishing context switch.  Should fix PR/42539, tested by mar...@.


To generate a diff of this commit:
cvs rdiff -u -r1.22.4.3 -r1.22.4.3.2.1 src/sys/kern/kern_runq.c

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



CVS commit: [netbsd-5-0] src/sys/kern

2010-01-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 16 17:41:07 UTC 2010

Modified Files:
src/sys/kern [netbsd-5-0]: kern_softint.c

Log Message:
Pull up following revision(s) (requested by rmind in ticket #1241):
sys/kern/kern_softint.c: revision 1.30
softint_execute: release/re-acquire kernel-lock depending on SOFTINT_MPSAFE
flag.  Keeping it held for MP-safe cases break the lock order assumptions.
Per discussion with martin.


To generate a diff of this commit:
cvs rdiff -u -r1.23.4.2 -r1.23.4.2.2.1 src/sys/kern/kern_softint.c

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



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

2010-01-16 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Jan 16 17:54:33 UTC 2010

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

Log Message:
tickets 1238, 1240,1241


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.44 -r1.1.2.45 src/doc/CHANGES-5.0.1

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



CVS commit: [netbsd-5-0] src/crypto/dist/openssl/ssl

2010-01-12 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Jan 12 09:08:45 UTC 2010

Modified Files:
src/crypto/dist/openssl/ssl [netbsd-5-0]: s3_lib.c s3_pkt.c s3_srvr.c
ssl_locl.h

Log Message:
Apply patch (requested by tonnerre in ticket #1237):
Disable OpenSSL renegotiation, thus avoiding CVE-2009-3555.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.8.1 src/crypto/dist/openssl/ssl/s3_lib.c
cvs rdiff -u -r1.9.8.1 -r1.9.8.2 src/crypto/dist/openssl/ssl/s3_pkt.c
cvs rdiff -u -r1.15.4.1 -r1.15.4.1.2.1 src/crypto/dist/openssl/ssl/s3_srvr.c
cvs rdiff -u -r1.13 -r1.13.8.1 src/crypto/dist/openssl/ssl/ssl_locl.h

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



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

2010-01-12 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Tue Jan 12 09:09:59 UTC 2010

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

Log Message:
Ticket 1237.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.39 -r1.1.2.40 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src/sys/kern

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 01:10:53 UTC 2010

Modified Files:
src/sys/kern [netbsd-5-0]: kern_event.c

Log Message:
Pull up following revision(s) (requested by dsl in ticket #1208):
sys/kern/kern_event.c: revision 1.69
Use sizeof correct type, not pointer to wrong type.
Fixes PR/42498.
This has been wrong since the initial import!


To generate a diff of this commit:
cvs rdiff -u -r1.60.6.1 -r1.60.6.1.2.1 src/sys/kern/kern_event.c

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



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

2010-01-08 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  9 02:04:18 UTC 2010

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

Log Message:
Ticket 1208.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.38 -r1.1.2.39 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src/tools/compat

2010-01-06 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Jan  7 07:45:01 UTC 2010

Modified Files:
src/tools/compat [netbsd-5-0]: compat_defs.h

Log Message:
Apply patch (requested by tron in ticket #1202):
Don't include grp.h  Fixes cross-build under Mac OS X 10.6.


To generate a diff of this commit:
cvs rdiff -u -r1.67.2.1 -r1.67.2.1.2.1 src/tools/compat/compat_defs.h

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



CVS commit: [netbsd-5-0] src/sys/netbt

2010-01-03 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Sun Jan  3 17:52:17 UTC 2010

Modified Files:
src/sys/netbt [netbsd-5-0]: rfcomm_session.c

Log Message:
Pull up revision 1.16 (requested by plunky in ticket #1221).

when receiving a MCC PN response, the max frame size that the remote
party requests must be less than the one we asked for which will not
be greater than the max acceptable value so no need to test for that
but make sure that it is not smaller than minimum acceptable value.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.14.10.1 src/sys/netbt/rfcomm_session.c

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



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

2010-01-03 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Sun Jan  3 17:53:30 UTC 2010

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

Log Message:
Ticket #1221.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.35 -r1.1.2.36 src/doc/CHANGES-5.0.2

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



CVS commit: [netbsd-5-0] src/usr.sbin/makefs/cd9660

2010-01-01 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  2 06:26:11 UTC 2010

Modified Files:
src/usr.sbin/makefs/cd9660 [netbsd-5-0]: iso9660_rrip.c

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1198):
usr.sbin/makefs/cd9660/iso9660_rrip.c: revision 1.5
When splitting a System Use Area between a System Use field and a
Continuation Area, be sure to insert the CE record at the correct
point in the chain of SUSP records.  Without this, makefs emits
an invalid image if any file needs a Continuation Area.  The bug
seems to have been introduced with the conversion to TAILQs.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.20.1 src/usr.sbin/makefs/cd9660/iso9660_rrip.c

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



CVS commit: [netbsd-5-0] src/usr.sbin/makefs/cd9660

2010-01-01 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  2 06:27:27 UTC 2010

Modified Files:
src/usr.sbin/makefs/cd9660 [netbsd-5-0]: iso9660_rrip.c

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1198):
usr.sbin/makefs/cd9660/iso9660_rrip.c: revision 1.6
Fix another bug in SUSP CE handling: when the SUSP records fit into
the System Use field with fewer then 28 bytes to spare, we were
remembering the wrong length for the System Use field and hence
emitting a corrupt directory entry.  This could be triggered by trying
to build a filesystem containing a regular file with a 120-byte name.
Now we're a little more careful.


To generate a diff of this commit:
cvs rdiff -u -r1.4.20.1 -r1.4.20.2 src/usr.sbin/makefs/cd9660/iso9660_rrip.c

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



CVS commit: [netbsd-5-0] src/usr.sbin/makefs/cd9660

2010-01-01 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  2 06:28:27 UTC 2010

Modified Files:
src/usr.sbin/makefs/cd9660 [netbsd-5-0]: iso9660_rrip.c

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1198):
usr.sbin/makefs/cd9660/iso9660_rrip.c: revision 1.7
Initialize a local variable to get rid of a may be used uninitialized
warning (turned into error by -Werror).


To generate a diff of this commit:
cvs rdiff -u -r1.4.20.2 -r1.4.20.3 src/usr.sbin/makefs/cd9660/iso9660_rrip.c

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



CVS commit: [netbsd-5-0] src/usr.sbin/makefs

2010-01-01 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  2 06:34:15 UTC 2010

Modified Files:
src/usr.sbin/makefs [netbsd-5-0]: cd9660.c cd9660.h
src/usr.sbin/makefs/cd9660 [netbsd-5-0]: cd9660_write.c iso9660_rrip.c
iso9660_rrip.h

Log Message:
Pull up following revision(s) (requested by tsutsui in ticket #1198):
usr.sbin/makefs/cd9660.c: revision 1.25 via patch
usr.sbin/makefs/cd9660.h: revision 1.13 via patch
usr.sbin/makefs/cd9660/cd9660_write.c: revision 1.10
usr.sbin/makefs/cd9660/iso9660_rrip.c: revision 1.8
usr.sbin/makefs/cd9660/iso9660_rrip.h: revision 1.5
Add support for encoding RISC OS metadata into ISO 9660 filesystems.
This is done by adding the general ability to stuff non-SUSP data into
the end of the System Use field of a Directory Record, which required
some amount of rewriting of the SUSP support.  I think the result is
at least as good as what came before, and I've fixed at least one bug
along the way.  Tested against RISC OS 3.70 on my Risc PC.
Oh, why do we want it?  It should allow us to make acorn{26,32} CDs that
can be booted directly from RISC OS without mucking around copying the
bootloader to a native filing system.


To generate a diff of this commit:
cvs rdiff -u -r1.22.2.1 -r1.22.2.1.2.1 src/usr.sbin/makefs/cd9660.c
cvs rdiff -u -r1.12 -r1.12.6.1 src/usr.sbin/makefs/cd9660.h
cvs rdiff -u -r1.9 -r1.9.6.1 src/usr.sbin/makefs/cd9660/cd9660_write.c
cvs rdiff -u -r1.4.20.3 -r1.4.20.4 src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cvs rdiff -u -r1.4 -r1.4.28.1 src/usr.sbin/makefs/cd9660/iso9660_rrip.h

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



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

2010-01-01 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sat Jan  2 06:40:03 UTC 2010

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

Log Message:
Ticket 1198.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.34 -r1.1.2.35 src/doc/CHANGES-5.0.2

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



Re: CVS commit: [netbsd-5-0] src/external/mit/xorg/server/drivers/xf86-video-s3

2009-06-09 Thread Andreas Wrede


On Jun 9, 2009, at 13:26 , Soren Jacobsen wrote:


Module Name:src
Committed By:   snj
Date:   Tue Jun  9 17:26:27 UTC 2009

Modified Files:
src/external/mit/xorg/server/drivers/xf86-video-s3 [netbsd-5-0]:
Makefile

Log Message:
Apply patch (requested by ahoka in ticket #795):
Add missing object file to build a properly working s3 module.
Fixes PR xsrc/41206.



Did something go wrong here?

nbmake: /u2/netbsd-5.0/src/external/mit/xorg/server/drivers/xf86- 
video-s3/Makefile line 7: Unassociated shell command s3_Ti.c  
s3_Trio64DAC.c s3_video.c s3_accel.c \ 
nbmake: /u2/netbsd-5.0/src/external/mit/xorg/server/drivers/xf86- 
video-s3/Makefile line 8: Unassociated shell command  
s3_accel_newmmio.c
nbmake: /u2/netbsd-5.0/src/external/mit/xorg/server/drivers/xf86- 
video-s3/Makefile line 16: Unassociated shell command -I$ 
{X11SRCDIR.xf86-video-s3}/src


--
aew