CVS: cvs.openbsd.org: src

2011-06-01 Thread Philip Guenther
CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2011/06/01 00:18:07 Modified files: sys/kern : syscalls.master Log message: sys_getpid() isn't really NOLOCK safe, as the compat bits inside it require the p_pptr member to stay valid ok

CVS: cvs.openbsd.org: src

2011-06-01 Thread Philip Guenther
CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2011/06/01 00:20:41 Modified files: sys/kern : syscalls.master Log message: Mark some system calls that don't require big lock with NOLOCK ok matthew@, deraadt@

CVS: cvs.openbsd.org: src

2011-06-01 Thread Philip Guenther
CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2011/06/01 00:22:39 Modified files: sys/sys: syscall.h syscallargs.h sys/kern : init_sysent.c syscalls.c Log message: regenerate

CVS: cvs.openbsd.org: src

2011-06-01 Thread Otto Moerbeek
CVSROOT:/cvs Module name:src Changes by: o...@cvs.openbsd.org2011/06/01 01:18:23 Modified files: usr.bin/bc : bc.y scan.l Log message: - avoid YY_FLUSH_BUFFER: it is not signal safe and it does not work as intended after the introduction of editline - honour

CVS: cvs.openbsd.org: www

2011-06-01 Thread Stuart Henderson
CVSROOT:/cvs Module name:www Changes by: st...@cvs.openbsd.org 2011/06/01 02:53:59 Modified files: faq: current.html Log message: - add -current config required to the index - tidy whitespace while there

CVS: cvs.openbsd.org: src

2011-06-01 Thread Marc Espie
CVSROOT:/cvs Module name:src Changes by: es...@cvs.openbsd.org 2011/06/01 05:20:04 Modified files: usr.sbin/pkg_add/OpenBSD: PackingList.pm Log message: repaire pkg_info -P in the simplest possible way, pending revisit. (problem noticed by Nigel Taylor)

CVS: cvs.openbsd.org: src

2011-06-01 Thread Marc Espie
CVSROOT:/cvs Module name:src Changes by: es...@cvs.openbsd.org 2011/06/01 06:05:13 Modified files: share/man/man5 : bsd.port.mk.5 Log message: document xz support, explain why it's generally a bad idea

CVS: cvs.openbsd.org: src

2011-06-01 Thread Todd C. Miller
CVSROOT:/cvs Module name:src Changes by: mill...@cvs.openbsd.org 2011/06/01 10:39:08 Modified files: include: wchar.h Log message: Use __POSIX_VISIBLE not __POSIX_C_SOURCE to bracket the definitions of wcscasecmp() and wcsncasecmp(). Noticed by naddy@ OK espie@

CVS: cvs.openbsd.org: src

2011-06-01 Thread Matthew Dempsky
CVSROOT:/cvs Module name:src Changes by: matt...@cvs.openbsd.org 2011/06/01 11:47:31 Modified files: sys/scsi : uk.c Log message: Make uk(4) look more like sd(4) and cd(4) by adding a uklookup() wrapper for device_lookup(), and renaming the uk local variables to

CVS: cvs.openbsd.org: src

2011-06-01 Thread Matthew Dempsky
CVSROOT:/cvs Module name:src Changes by: matt...@cvs.openbsd.org 2011/06/01 11:57:51 Modified files: sys/kern : subr_disk.c Log message: Add device_ref/device_unref calls to prevent a possible use-after-free issue in disk_attach_callback. Assumes that the struct

CVS: cvs.openbsd.org: xenocara

2011-06-01 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs Module name:xenocara Changes by: jas...@cvs.openbsd.org 2011/06/01 12:58:31 Modified files: . : 3RDPARTY Log message: bump xkeyboard-config, ill deal with it early next week..

CVS: cvs.openbsd.org: src

2011-06-01 Thread Christian Weisgerber
CVSROOT:/cvs Module name:src Changes by: na...@cvs.openbsd.org 2011/06/01 13:29:49 Modified files: lib/libc/string: wcscasecmp.c Log message: fix wcscasecmp() parameters; wchar.h was correct

CVS: cvs.openbsd.org: src

2011-06-01 Thread Ariane van der Steldt
CVSROOT:/cvs Module name:src Changes by: ari...@cvs.openbsd.org 2011/06/01 16:29:25 Modified files: sys/uvm: uvm_map.c Log message: Oops, I broke randomness. (Please upgrade, this is _bad_.) sel_addr = ~(pmap_align - 1); with pmap_align allowed to be 0 (no

CVS: cvs.openbsd.org: src

2011-06-01 Thread Matthew Dempsky
CVSROOT:/cvs Module name:src Changes by: matt...@cvs.openbsd.org 2011/06/01 18:07:30 Modified files: sys/dev/ata: atascsi.c Log message: Small refactoring of atascsi and fix non-data ATA commands to not set ATA_F_PIO or ATA_F_READ. ok dlg@