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

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Mon Jan 25 07:57:05 UTC 2010

Modified Files:
src/distrib/sets/lists/comp: mi

Log Message:
Add CTASSERT(9).


To generate a diff of this commit:
cvs rdiff -u -r1.1374 -r1.1375 src/distrib/sets/lists/comp/mi

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

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Mon Jan 25 07:51:17 UTC 2010

Modified Files:
src/share/man/man9: Makefile
Added Files:
src/share/man/man9: CTASSERT.9

Log Message:
Add CTASSERT(9). From FreeBSD.

ok @wiz


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/share/man/man9/CTASSERT.9
cvs rdiff -u -r1.309 -r1.310 src/share/man/man9/Makefile

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



CVS commit: src/sbin/atactl

2010-01-24 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Mon Jan 25 01:24:11 UTC 2010

Modified Files:
src/sbin/atactl: atactl.c

Log Message:
Add display of Long Physical Sector and Long Logical Sectors feature set
information to atactl identify output.

Also:
- remove caddr_t cast
- warn about invalid IDENTIFY data checksum (when possible)
- humanize capacity in power-of-10 format
- remove semi-pointless ATAPI check
- slightly rework command queue depth output to be less conversational


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sbin/atactl/atactl.c

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



CVS commit: src/share/mk

2010-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan 25 00:43:00 UTC 2010

Modified Files:
src/share/mk: bsd.dep.mk bsd.kernobj.mk bsd.lib.mk bsd.obj.mk
bsd.own.mk

Log Message:
PR/42658: Geoff Wing: Quote directory variables to deal with spaces in the
source pathname.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/share/mk/bsd.dep.mk
cvs rdiff -u -r1.12 -r1.13 src/share/mk/bsd.kernobj.mk
cvs rdiff -u -r1.302 -r1.303 src/share/mk/bsd.lib.mk
cvs rdiff -u -r1.48 -r1.49 src/share/mk/bsd.obj.mk
cvs rdiff -u -r1.614 -r1.615 src/share/mk/bsd.own.mk

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



CVS commit: src/sys/dev/ata

2010-01-24 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Mon Jan 25 00:39:52 UTC 2010

Modified Files:
src/sys/dev/ata: atareg.h

Log Message:
Add some more elements to struct ataparams.

These mostly concern the new Long Physical Sectors
and Long Logical Sectors feature sets.

Information from a draft of ACS-2, with some additional
in-between members and bits being borrowed from OpenBSD.

There's lots more in ACS-2 we could add, but for the most
part it would be superfluous.

XXX: Some elements marked as reserved no longer are,
and some elements we still reference are now obsolete.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/dev/ata/atareg.h

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



CVS commit: src/include/heimdal

2010-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan 25 00:26:04 UTC 2010

Modified Files:
src/include/heimdal: roken.h

Log Message:
vasnprintf and asnprintf were never compiled in our libroken.a and never
used by heimdal programs. Remove the false advertising here that broke
the cygwin build.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/include/heimdal/roken.h

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



Re: CVS commit: src

2010-01-24 Thread Christos Zoulas
On Jan 25,  8:23am, tsut...@ceres.dti.ne.jp (Izumi Tsutsui) wrote:
-- Subject: Re: CVS commit: src

| > | As noted in the PR, the original problem is asnprintf() and
| > | vasnprinf() decls in src/include/heimdal/roken.h because
| > | Cygwin has the same functions with incompatible args
| > | (derived from GNU?) by default.
| > 
| > This is unrelated to what I changed though and was not planning to look
| > into that. Grumble, I guess I will download cygwin 1.7.1
| 
| What I need is a review of my new patch :-)
| http://mail-index.NetBSD.org/netbsd-bugs/2010/01/21/msg015707.html


Well, I'd prefer to avoid including a copy of roken.h for the tools.
I think that vasnprintf and asnprintf are not used by anything in
heimdal and can safely be removed. Combined with the winsize fix,
this fixes the cygwin problems with minimal changes. I am trying a
build now.

christos


CVS commit: src/sys/dev/pci

2010-01-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Jan 24 23:27:40 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c

Log Message:
Do not try to read the EEPROM if we already know we don't have one.


To generate a diff of this commit:
cvs rdiff -u -r1.174 -r1.175 src/sys/dev/pci/if_bge.c

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



Re: CVS commit: src

2010-01-24 Thread Izumi Tsutsui
> | As noted in the PR, the original problem is asnprintf() and
> | vasnprinf() decls in src/include/heimdal/roken.h because
> | Cygwin has the same functions with incompatible args
> | (derived from GNU?) by default.
> 
> This is unrelated to what I changed though and was not planning to look
> into that. Grumble, I guess I will download cygwin 1.7.1

What I need is a review of my new patch :-)
http://mail-index.NetBSD.org/netbsd-bugs/2010/01/21/msg015707.html
---
Izumi Tsutsui


CVS commit: src/sys/dev/pci

2010-01-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Jan 24 23:09:27 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c

Log Message:
Add support for device properties to override the mac address and set
the BGE_NO_EEPROM flag if we have an onboard device w/o SEEPROM.


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 src/sys/dev/pci/if_bge.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/calendar/calendars

2010-01-24 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Sun Jan 24 22:56:12 UTC 2010

Modified Files:
src/usr.bin/calendar/calendars: calendar.computer

Log Message:
first Apple Macintosh, 1984


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/calendar/calendars/calendar.computer

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



CVS commit: src/share/man/man3

2010-01-24 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jan 24 22:54:14 UTC 2010

Modified Files:
src/share/man/man3: dlfcn.3

Log Message:
Remove one unnecessary Ns. (Rest still ugly.)


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/share/man/man3/dlfcn.3

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



CVS commit: src/share/man/man3

2010-01-24 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sun Jan 24 22:21:34 UTC 2010

Modified Files:
src/share/man/man3: Makefile

Log Message:
Do not link timeradd.3 to itself.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/share/man/man3/Makefile

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



CVS commit: src

2010-01-24 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jan 24 21:20:03 UTC 2010

Modified Files:
src/crypto/external/bsd/openssl/dist/doc/apps: genpkey.pod openssl.pod
src/crypto/external/bsd/openssl/dist/doc/ssl:
SSL_CTX_set_client_CA_list.pod SSL_CTX_use_psk_identity_hint.pod
SSL_accept.pod SSL_do_handshake.pod SSL_shutdown.pod
src/crypto/external/bsd/openssl/lib/libcrypto: man.inc
src/crypto/external/bsd/openssl/lib/libcrypto/man: ASN1_OBJECT_new.3
ASN1_STRING_length.3 ASN1_STRING_new.3 ASN1_STRING_print_ex.3
ASN1_generate_nconf.3 BIO_ctrl.3 BIO_f_base64.3 BIO_f_buffer.3
BIO_f_cipher.3 BIO_f_md.3 BIO_f_null.3 BIO_f_ssl.3 BIO_find_type.3
BIO_new.3 BIO_new_CMS.3 BIO_push.3 BIO_read.3 BIO_s_accept.3
BIO_s_bio.3 BIO_s_connect.3 BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3
BIO_s_null.3 BIO_s_socket.3 BIO_set_callback.3 BIO_should_retry.3
BN_BLINDING_new.3 BN_CTX_new.3 BN_CTX_start.3 BN_add.3
BN_add_word.3 BN_bn2bin.3 BN_cmp.3 BN_copy.3 BN_generate_prime.3
BN_mod_inverse.3 BN_mod_mul_montgomery.3 BN_mod_mul_reciprocal.3
BN_new.3 BN_num_bytes.3 BN_rand.3 BN_set_bit.3 BN_swap.3 BN_zero.3
CMS_add0_cert.3 CMS_add1_recipient_cert.3 CMS_compress.3
CMS_decrypt.3 CMS_encrypt.3 CMS_final.3 CMS_get0_RecipientInfos.3
CMS_get0_SignerInfos.3 CMS_get0_type.3 CMS_get1_ReceiptRequest.3
CMS_sign.3 CMS_sign_add1_signer.3 CMS_sign_receipt.3
CMS_uncompress.3 CMS_verify.3 CMS_verify_receipt.3
CONF_modules_free.3 CONF_modules_load_file.3 CRYPTO_set_ex_data.3
DH_generate_key.3 DH_generate_parameters.3 DH_get_ex_new_index.3
DH_new.3 DH_set_method.3 DH_size.3 DSA_SIG_new.3 DSA_do_sign.3
DSA_dup_DH.3 DSA_generate_key.3 DSA_generate_parameters.3
DSA_get_ex_new_index.3 DSA_new.3 DSA_set_method.3 DSA_sign.3
DSA_size.3 ERR_GET_LIB.3 ERR_clear_error.3 ERR_error_string.3
ERR_get_error.3 ERR_load_crypto_strings.3 ERR_load_strings.3
ERR_print_errors.3 ERR_put_error.3 ERR_remove_state.3
ERR_set_mark.3 EVP_BytesToKey.3 EVP_DigestInit.3
EVP_DigestSignInit.3 EVP_DigestVerifyInit.3 EVP_EncryptInit.3
EVP_OpenInit.3 EVP_PKEY_CTX_ctrl.3 EVP_PKEY_CTX_new.3
EVP_PKEY_cmp.3 EVP_PKEY_decrypt.3 EVP_PKEY_derive.3
EVP_PKEY_encrypt.3 EVP_PKEY_get_default_digest.3 EVP_PKEY_keygen.3
EVP_PKEY_new.3 EVP_PKEY_print_private.3 EVP_PKEY_set1_RSA.3
EVP_PKEY_sign.3 EVP_PKEY_verify.3 EVP_PKEY_verifyrecover.3
EVP_SealInit.3 EVP_SignInit.3 EVP_VerifyInit.3 OBJ_nid2obj.3
OPENSSL_Applink.3 OPENSSL_VERSION_NUMBER.3 OPENSSL_config.3
OPENSSL_ia32cap.3 OPENSSL_load_builtin_modules.3
OpenSSL_add_all_algorithms.3 PEM_write_bio_CMS_stream.3
PEM_write_bio_PKCS7_stream.3 PKCS12_create.3 PKCS12_parse.3
PKCS7_decrypt.3 PKCS7_encrypt.3 PKCS7_sign.3
PKCS7_sign_add_signer.3 PKCS7_verify.3 RAND_add.3 RAND_bytes.3
RAND_cleanup.3 RAND_egd.3 RAND_load_file.3 RAND_set_rand_method.3
RSA_blinding_on.3 RSA_check_key.3 RSA_generate_key.3
RSA_get_ex_new_index.3 RSA_new.3 RSA_padding_add_PKCS1_type_1.3
RSA_print.3 RSA_private_encrypt.3 RSA_public_encrypt.3
RSA_set_method.3 RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 RSA_size.3
SMIME_read_CMS.3 SMIME_read_PKCS7.3 SMIME_write_CMS.3
SMIME_write_PKCS7.3 SSL_CIPHER_get_name.3
SSL_COMP_add_compression_method.3 SSL_CTX_add_extra_chain_cert.3
SSL_CTX_add_session.3 SSL_CTX_ctrl.3 SSL_CTX_flush_sessions.3
SSL_CTX_free.3 SSL_CTX_get_ex_new_index.3 SSL_CTX_get_verify_mode.3
SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 SSL_CTX_sess_number.3
SSL_CTX_sess_set_cache_size.3 SSL_CTX_sess_set_get_cb.3
SSL_CTX_sessions.3 SSL_CTX_set_cert_store.3
SSL_CTX_set_cert_verify_callback.3 SSL_CTX_set_cipher_list.3
SSL_CTX_set_client_CA_list.3 SSL_CTX_set_client_cert_cb.3
SSL_CTX_set_default_passwd_cb.3 SSL_CTX_set_generate_session_id.3
SSL_CTX_set_info_callback.3 SSL_CTX_set_max_cert_list.3
SSL_CTX_set_mode.3 SSL_CTX_set_msg_callback.3 SSL_CTX_set_options.3
SSL_CTX_set_psk_client_callback.3 SSL_CTX_set_quiet_shutdown.3
SSL_CTX_set_session_cache_mode.3 SSL_CTX_set_session_id_context.3
SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3
SSL_CTX_set_tmp_dh_callback.3 SSL_CTX_set_tmp_rsa_callback.3
SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3
SSL_CTX_use_psk_identity_hint.3 SSL_SESSION_free.3
SSL_SESSION_get_ex_new_index.3 SSL_SESSION_get_time.3 SSL_accept.3
SSL_alert_type_string.3 SSL_clear

CVS commit: src

2010-01-24 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jan 24 21:12:17 UTC 2010

Modified Files:
src/distrib/sets/lists/tests: mi
src/etc/mtree: NetBSD.dist.base
src/tests/lib/libc: Atffile Makefile
Added Files:
src/tests/lib/libc/hash: Atffile Makefile t_sha2.c

Log Message:
Add a regression test for the SHA2 family that also checks for unaligned
accesses.


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.8 -r1.9 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/Atffile \
src/tests/lib/libc/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/lib/libc/hash/Atffile \
src/tests/lib/libc/hash/Makefile src/tests/lib/libc/hash/t_sha2.c

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



CVS commit: src/common/lib/libc/hash/sha2

2010-01-24 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jan 24 21:11:18 UTC 2010

Modified Files:
src/common/lib/libc/hash/sha2: sha2.c

Log Message:
Fix unaligned access in *_Final for SHA224/SHA256/SHA384.
Remaining part of PR 42273. Tested by snj.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/common/lib/libc/hash/sha2/sha2.c

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

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 21:06:55 UTC 2010

Modified Files:
src/distrib/sets/lists/comp: mi

Log Message:
Add timeradd(3).


To generate a diff of this commit:
cvs rdiff -u -r1.1372 -r1.1373 src/distrib/sets/lists/comp/mi

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



CVS commit: src/share/man/man3

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 21:05:45 UTC 2010

Modified Files:
src/share/man/man3: Makefile

Log Message:
Add timeradd(3).


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/share/man/man3/Makefile

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



Re: CVS commit: src

2010-01-24 Thread Christos Zoulas
On Jan 25,  3:39am, tsut...@ceres.dti.ne.jp (Izumi Tsutsui) wrote:
-- Subject: Re: CVS commit: src

| > | Umm, could you take PR toolchain/41435?
| > 
| > I did, was that the only problem though?
| 
| As noted in the PR, the original problem is asnprintf() and
| vasnprinf() decls in src/include/heimdal/roken.h because
| Cygwin has the same functions with incompatible args
| (derived from GNU?) by default.

This is unrelated to what I changed though and was not planning to look
into that. Grumble, I guess I will download cygwin 1.7.1

christos


CVS commit: src/usr.bin/getopt

2010-01-24 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jan 24 20:13:28 UTC 2010

Modified Files:
src/usr.bin/getopt: getopt.1

Log Message:
punctuation


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/usr.bin/getopt/getopt.1

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



CVS commit: src/share/man/man3

2010-01-24 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jan 24 20:03:24 UTC 2010

Modified Files:
src/share/man/man3: dlfcn.3

Log Message:
Avoid using .Sm on/.Sm off if that results in the latter getting an
additional argument.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/share/man/man3/dlfcn.3

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



CVS commit: src/sys/kern

2010-01-24 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jan 24 19:56:26 UTC 2010

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

Log Message:
Amplify comment about ultrix bits.


To generate a diff of this commit:
cvs rdiff -u -r1.120 -r1.121 src/sys/kern/tty_pty.c

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



Re: CVS commit: src/sys/kern

2010-01-24 Thread David Holland
On Sun, Jan 24, 2010 at 09:34:13PM +0200, Antti Kantee wrote:
 > > Well, that's sort of an explanation, although I might clarify it some
 > > if it were me... but I can't see what purpose these things serve since
 > > they're identical to the standard ones. If there's compat_ultrix logic
 > > that recognizes them and does something special, I can't find it. 
 > > 
 > > Could they be removed, or is there some chewing gum sticking the logic
 > > together somewhere that I've missed? (If so, it should be mentioned
 > > explicitly...)
 > 
 > We can't have two majors mapped to the same devsw (at least that was
 > my assumption?).  Those couldn't be (re)moved easily, so I let them stay.

I can believe that.

The other question I guess is whether it really needs two sets of
majors, since in theory compat_ultrix can/should have its own
[bc]devsw. But that's for someone with historical knowledge of the
pmax port to look into...

-- 
David A. Holland
dholl...@netbsd.org


Re: CVS commit: src/sys/kern

2010-01-24 Thread Antti Kantee
On Sun Jan 24 2010 at 19:23:33 +, David Holland wrote:
> On Sun, Dec 20, 2009 at 07:06:45PM +, Antti Kantee wrote:
>  > Date:  Sun Dec 20 19:06:45 UTC 2009
>  > Modified Files:
>  >src/sys/kern: tty_pty.c
>  > 
>  > Log Message:
>  > Add a pointing to an explanation of why we have #ifdef pmax stuff in here.
> 
> Well, that's sort of an explanation, although I might clarify it some
> if it were me... but I can't see what purpose these things serve since
> they're identical to the standard ones. If there's compat_ultrix logic
> that recognizes them and does something special, I can't find it. 
> 
> Could they be removed, or is there some chewing gum sticking the logic
> together somewhere that I've missed? (If so, it should be mentioned
> explicitly...)

We can't have two majors mapped to the same devsw (at least that was
my assumption?).  Those couldn't be (re)moved easily, so I let them stay.


Re: CVS commit: src/sys/kern

2010-01-24 Thread David Holland
On Sun, Dec 20, 2009 at 07:06:45PM +, Antti Kantee wrote:
 > Date:Sun Dec 20 19:06:45 UTC 2009
 > Modified Files:
 >  src/sys/kern: tty_pty.c
 > 
 > Log Message:
 > Add a pointing to an explanation of why we have #ifdef pmax stuff in here.

Well, that's sort of an explanation, although I might clarify it some
if it were me... but I can't see what purpose these things serve since
they're identical to the standard ones. If there's compat_ultrix logic
that recognizes them and does something special, I can't find it. 

Could they be removed, or is there some chewing gum sticking the logic
together somewhere that I've missed? (If so, it should be mentioned
explicitly...)

-- 
David A. Holland
dholl...@netbsd.org


CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto/man

2010-01-24 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jan 24 19:16:05 UTC 2010

Modified Files:
src/crypto/external/bsd/openssl/lib/libcrypto/man: Makefile

Log Message:
Make VERSION work with newer OpenSSL.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 \
src/crypto/external/bsd/openssl/lib/libcrypto/man/Makefile

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



Re: CVS commit: src/sys/arch/amigappc/conf

2010-01-24 Thread David Holland
On Sun, Jan 24, 2010 at 12:17:05PM +, Frank Wille wrote:
 > No include directive supported in a majors.* file. We have to copy the
 > port-amiga majors.

er, why not? It looks like it ought to work... although possibly I'm
missing something.

-- 
David A. Holland
dholl...@netbsd.org


Re: CVS commit: src

2010-01-24 Thread Izumi Tsutsui
> | Umm, could you take PR toolchain/41435?
> 
> I did, was that the only problem though?

As noted in the PR, the original problem is asnprintf() and
vasnprinf() decls in src/include/heimdal/roken.h because
Cygwin has the same functions with incompatible args
(derived from GNU?) by default.
---
Izumi Tsutsui


Re: CVS commit: src

2010-01-24 Thread Christos Zoulas
On Jan 25,  2:38am, tsut...@ceres.dti.ne.jp (Izumi Tsutsui) wrote:
-- Subject: Re: CVS commit: src

| > Module Name:src
| > Committed By:   christos
| > Date:   Sun Jan 24 16:45:58 UTC 2010
| > 
| > Modified Files:
| > src/crypto/dist/heimdal/lib/roken: get_window_size.c
| > src/include/heimdal: roken.h
| > 
| > Log Message:
| > make the window size function return the lines and columns variables 
separately
| > instead of depending on the existance of struct winsize. Technically I 
should
| > bump the library version or version the symbol, but nothing seems to use 
this
| > outside the library!
| 
| Umm, could you take PR toolchain/41435?

I did, was that the only problem though?

christos


CVS commit: src/sys/dev/pci

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 17:56:54 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c

Log Message:
Fix a printf() message in debug code reported by Bert Kiers.


To generate a diff of this commit:
cvs rdiff -u -r1.172 -r1.173 src/sys/dev/pci/if_bge.c

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



Re: CVS commit: src

2010-01-24 Thread Izumi Tsutsui
> Module Name:  src
> Committed By: christos
> Date: Sun Jan 24 16:45:58 UTC 2010
> 
> Modified Files:
>   src/crypto/dist/heimdal/lib/roken: get_window_size.c
>   src/include/heimdal: roken.h
> 
> Log Message:
> make the window size function return the lines and columns variables 
> separately
> instead of depending on the existance of struct winsize. Technically I should
> bump the library version or version the symbol, but nothing seems to use this
> outside the library!

Umm, could you take PR toolchain/41435?

---
Izumi Tsutsui


CVS commit: src

2010-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan 24 16:45:58 UTC 2010

Modified Files:
src/crypto/dist/heimdal/lib/roken: get_window_size.c
src/include/heimdal: roken.h

Log Message:
make the window size function return the lines and columns variables separately
instead of depending on the existance of struct winsize. Technically I should
bump the library version or version the symbol, but nothing seems to use this
outside the library!


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/crypto/dist/heimdal/lib/roken/get_window_size.c
cvs rdiff -u -r1.12 -r1.13 src/include/heimdal/roken.h

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



CVS commit: src/crypto/dist/heimdal/lib/roken

2010-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan 24 16:42:12 UTC 2010

Modified Files:
src/crypto/dist/heimdal/lib/roken: get_window_size.c getarg.c
roken.h.in

Log Message:
don't expose struct winsize needlessly.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/crypto/dist/heimdal/lib/roken/get_window_size.c \
src/crypto/dist/heimdal/lib/roken/getarg.c \
src/crypto/dist/heimdal/lib/roken/roken.h.in

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



CVS commit: src/sys/dev/mii

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 16:26:09 UTC 2010

Modified Files:
src/sys/dev/mii: brgphy.c

Log Message:
Add support for BCM5461,BCM5784 and BCM5761.
Enable brgphy_jumbo_settings().
Enable the ether...@wirespeed function.


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/mii/brgphy.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/mii

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 16:23:16 UTC 2010

Modified Files:
src/sys/dev/mii: miidevs.h miidevs_data.h

Log Message:
regen.


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/sys/dev/mii/miidevs.h
cvs rdiff -u -r1.83 -r1.84 src/sys/dev/mii/miidevs_data.h

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



CVS commit: src/sys/dev/mii

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 16:22:41 UTC 2010

Modified Files:
src/sys/dev/mii: miidevs

Log Message:
Add BCM5461,BCM5784 and BCM5761.


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/dev/mii/miidevs

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

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 16:21:09 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c if_bgereg.h if_bgevar.h

Log Message:
Many changes from FreeBSD and OpenBSD:
 - Add support for BCM5705F,BCM5714,SBCM5715S,BCM5717,BCM5718,BCM5720,BCM5723,
   BCM5724,BCM5751F,BCM5753F,BCM5756,BCM5761,BCM5761E,BCM5761S,BCM5761SE,
   BCM5764,BCM5781,BCM5784M,BCM5903M,BCM57760,BCM57761,BCM57765,BCM57780,
   BCM57781,BCM57785,BCM57788,BCM57790,BCM57791 and BCM57795. Fixes PR#41694.
 - Fix misunderstanding the capability for TSO4 on some chips.
 - Many other bugfixes.
 - Use proplib for no EEPROM systems (e.g. sparc64 with onboard bge).
 - Add debug function to show some flags.


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 src/sys/dev/pci/if_bge.c
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/pci/if_bgereg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/if_bgevar.h

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

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 15:53:59 UTC 2010

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen.


To generate a diff of this commit:
cvs rdiff -u -r1.1013 -r1.1014 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1012 -r1.1013 src/sys/dev/pci/pcidevs_data.h

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

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 15:53:29 UTC 2010

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add BCM5717,5718,5723,5724,5787F,5761,5761E,5764,5761S,5761SE,5760,57788,
57780,57790,5784M,5785F,5785G,57761,57781,57791,57765,57785 and 57795.


To generate a diff of this commit:
cvs rdiff -u -r1.1016 -r1.1017 src/sys/dev/pci/pcidevs

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



CVS commit: src/sys/arch/amigappc/amigappc

2010-01-24 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Jan 24 15:39:50 UTC 2010

Modified Files:
src/sys/arch/amigappc/amigappc: amiga_init.c

Log Message:
We will always return chip mem instead of z2 mem for amigappc.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/amigappc/amigappc/amiga_init.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/glapi

2010-01-24 Thread Rafal Boni
Module Name:xsrc
Committed By:   rafal
Date:   Sun Jan 24 15:38:47 UTC 2010

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/glapi: glapi.c glapi_getproc.c
glthread.c

Log Message:
Decorate some GL APIs with PUBLIC so they're available to link against;
otherwise e.g. the swrast DRI module can't find _glapi_check_multithread.

>From http://people.freedesktop.org/~krh/glapi.patch with some tweaks.
ok phone@


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/glapi/glapi.c \
xsrc/external/mit/MesaLib/dist/src/mesa/glapi/glthread.c
cvs rdiff -u -r1.1.1.1 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/glapi/glapi_getproc.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/pci

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 15:29:10 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c

Log Message:
Fix the bug that both BGE_PCIE and BGE_PCIX are set on PCI-Express devices.


To generate a diff of this commit:
cvs rdiff -u -r1.170 -r1.171 src/sys/dev/pci/if_bge.c

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



CVS commit: src/sys/uvm

2010-01-24 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sun Jan 24 15:03:02 UTC 2010

Modified Files:
src/sys/uvm: uvm_fault.c

Log Message:
Clean up an internal flag usage.  No functional changes.


To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 src/sys/uvm/uvm_fault.c

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



CVS commit: src/sys

2010-01-24 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Sun Jan 24 14:25:57 UTC 2010

Modified Files:
src/sys/conf: files
src/sys/netinet: files.ipfilter

Log Message:
ipfilter depends on bpf_filter, not bpfilter (since the year 2000).


To generate a diff of this commit:
cvs rdiff -u -r1.970 -r1.971 src/sys/conf/files
cvs rdiff -u -r1.8 -r1.9 src/sys/netinet/files.ipfilter

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

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 14:14:55 UTC 2010

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

Log Message:
Provide a FUNCTIONS section and remove the types from the functions therein.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/firmload.9

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

2010-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Sun Jan 24 14:10:00 UTC 2010

Modified Files:
src/sys/dev/pci: if_bge.c

Log Message:
KNF & fix typo in comment.
No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 src/sys/dev/pci/if_bge.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/man3

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 12:58:37 UTC 2010

Modified Files:
src/share/man/man3: timeradd.3

Log Message:
Add the missing $Id$ tag.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man3/timeradd.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/gpio

2010-01-24 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Sun Jan 24 12:25:20 UTC 2010

Modified Files:
src/sys/dev/gpio: gpio.c

Log Message:
Unfold, bump copyright.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/gpio/gpio.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/amigappc/conf

2010-01-24 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Jan 24 12:17:05 UTC 2010

Modified Files:
src/sys/arch/amigappc/conf: majors.amigappc

Log Message:
No include directive supported in a majors.* file. We have to copy the
port-amiga majors.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/amigappc/conf/majors.amigappc

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



Re: CVS commit: src/share/man/man3

2010-01-24 Thread Joerg Sonnenberger
On Sun, Jan 24, 2010 at 01:48:28PM +0200, Jukka Ruohonen wrote:
> On Sun, Jan 24, 2010 at 11:14:04AM +, Jukka Ruohonen wrote:
> > Log Message:
> > Add timeradd(3) from FreeBSD. Needs proofreading.
> 
> The $Id$ field is not present in this file. How it should be added?

First line of the man page should be
.\" $NetBSD$

Joerg


Re: CVS commit: src/share/man/man3

2010-01-24 Thread Jukka Ruohonen
On Sun, Jan 24, 2010 at 11:14:04AM +, Jukka Ruohonen wrote:
> Log Message:
> Add timeradd(3) from FreeBSD. Needs proofreading.

The $Id$ field is not present in this file. How it should be added?

Actually, it is a little unclear to me should one always include a template
$Id$ for new files, and what kind? I tried to skim through the CVS
introduction, but it did not speak about the $Id$ expansion.

- Jukka.


CVS commit: src/sys/dev/acpi

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 11:32:13 UTC 2010

Modified Files:
src/sys/dev/acpi: acpi_bat.c

Log Message:
  * Reintroduce a state variable. From nj...@.
  * Always mark the charge state sensor as valid.


To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/sys/dev/acpi/acpi_bat.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/man3

2010-01-24 Thread Jukka Ruohonen
Module Name:src
Committed By:   jruoho
Date:   Sun Jan 24 11:14:04 UTC 2010

Added Files:
src/share/man/man3: timeradd.3

Log Message:
Add timeradd(3) from FreeBSD. Needs proofreading.

ok wiz@


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/share/man/man3/timeradd.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/amigappc/include

2010-01-24 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Jan 24 10:36:35 UTC 2010

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

Log Message:
Fixed a typo. Make ./build.sh release work.


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

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