CVS commit: src/external/bsd/elftosb/lib

2013-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 07:01:55 UTC 2013

Modified Files:
src/external/bsd/elftosb/lib: Makefile

Log Message:
Include 
Always include 


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/elftosb/lib/Makefile

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-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 07:17:10 UTC 2013

Modified Files:
src/lib/libutil: Makefile
Added Files:
src/lib/libutil: getbyteorder.3 getbyteorder.c

Log Message:
Add getbyteorder() call.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/lib/libutil/Makefile
cvs rdiff -u -r0 -r1.1 src/lib/libutil/getbyteorder.3 \
src/lib/libutil/getbyteorder.c

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



CVS commit: src/include

2013-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 07:17:36 UTC 2013

Modified Files:
src/include: util.h

Log Message:
Add getbyteorder(void) prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/include/util.h

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



CVS commit: src/lib/librump

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 11:32:44 UTC 2013

Modified Files:
src/lib/librump: rump.3

Log Message:
update and bump date


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/lib/librump/rump.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-05-02 Thread KIYOHARA Takashi
Module Name:src
Committed By:   kiyohara
Date:   Thu May  2 12:09:40 UTC 2013

Modified Files:
src/sys/arch: README

Log Message:
Add description for epoc32.


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/README

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 12:27:08 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.3

Log Message:
expand the intended usage of rumpuser_open()


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/librumpuser/rumpuser.3

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

2013-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 13:30:12 UTC 2013

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

Log Message:
Add getbyteorder manpages.


To generate a diff of this commit:
cvs rdiff -u -r1.1819 -r1.1820 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/sys/miscfs/genfs

2013-05-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Thu May  2 14:49:51 UTC 2013

Modified Files:
src/sys/miscfs/genfs: genfs.h

Log Message:
Fix (harmless) typo in struct genfs_rename_ops::gro_lookup prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/miscfs/genfs/genfs.h

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 15:32:20 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.3

Log Message:
add HISTORY


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/librumpuser/rumpuser.3

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 16:49:08 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser_pth.c

Log Message:
Clear rwlock's "writer" field when releasing the lock.  Otherwise it might
have been possible for "readers" to reach visibility before "writer"
when another CPU took the lock, thus leading the previous owner to
incorrectly think that it still owned the lock in rw_write_held().

Also, remove duplicate clause from assert().


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/librumpuser/rumpuser_pth.c

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



CVS commit: src

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 19:15:02 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.3 rumpuser_pth.c rumpuser_pth_dummy.c
src/sys/rump/include/machine: cpu.h
src/sys/rump/include/rump: rumpuser.h
src/sys/rump/librump/rumpkern: lwproc.c rump.c scheduler.c threads.c
src/sys/rump/librump/rumpkern/arch/i386: rumpcpu.c

Log Message:
Inform the rump kernel hypervisor of valid thread contexts so
that the implementation can allocate and release storage for them
in an optimal fashion, if necessary.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/librumpuser/rumpuser.3
cvs rdiff -u -r1.22 -r1.23 src/lib/librumpuser/rumpuser_pth.c
cvs rdiff -u -r1.12 -r1.13 src/lib/librumpuser/rumpuser_pth_dummy.c
cvs rdiff -u -r1.15 -r1.16 src/sys/rump/include/machine/cpu.h
cvs rdiff -u -r1.100 -r1.101 src/sys/rump/include/rump/rumpuser.h
cvs rdiff -u -r1.21 -r1.22 src/sys/rump/librump/rumpkern/lwproc.c
cvs rdiff -u -r1.266 -r1.267 src/sys/rump/librump/rumpkern/rump.c
cvs rdiff -u -r1.32 -r1.33 src/sys/rump/librump/rumpkern/scheduler.c
cvs rdiff -u -r1.20 -r1.21 src/sys/rump/librump/rumpkern/threads.c
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/librump/rumpkern/arch/i386/rumpcpu.c

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



CVS commit: src

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 20:33:54 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser_pth.c
src/sys/rump/librump/rumpkern: locks.c

Log Message:
Retry enabling spin mutexes.  We should be able to avoid poking the
scheduler by just making wakeup from cv_wait() honor the same locking
order as when a spin mutex is acquired though mutex_enter().
*fingers crossed*


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/lib/librumpuser/rumpuser_pth.c
cvs rdiff -u -r1.60 -r1.61 src/sys/rump/librump/rumpkern/locks.c

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



CVS commit: src/sys/rump/librump/rumpkern

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 20:37:33 UTC 2013

Modified Files:
src/sys/rump/librump/rumpkern: locks.c

Log Message:
g/c stale comment


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/rump/librump/rumpkern/locks.c

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



CVS commit: src/libexec/ld.elf_so

2013-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 21:11:04 UTC 2013

Modified Files:
src/libexec/ld.elf_so: headers.c

Log Message:
Print out PT_DYNAMIC address for objmain.
Print out &_DYNAMIC too.


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/libexec/ld.elf_so/headers.c

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



CVS commit: src/libexec/ld.elf_so

2013-05-02 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu May  2 21:11:18 UTC 2013

Modified Files:
src/libexec/ld.elf_so: rtld.c

Log Message:
Print out &_DYNAMIC too.


To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 src/libexec/ld.elf_so/rtld.c

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



CVS commit: src

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 21:35:19 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.3 rumpuser_pth.c
src/sys/rump/include/rump: rumpuser.h
src/sys/rump/librump/rumpkern: locks.c

Log Message:
Push rwlock upgrade and downgrade into the hypervisor where there's
at least a chance to implement them with minimal fuss.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/librumpuser/rumpuser.3
cvs rdiff -u -r1.24 -r1.25 src/lib/librumpuser/rumpuser_pth.c
cvs rdiff -u -r1.101 -r1.102 src/sys/rump/include/rump/rumpuser.h
cvs rdiff -u -r1.62 -r1.63 src/sys/rump/librump/rumpkern/locks.c

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



CVS commit: src/external/mit/xorg/lib/pixman

2013-05-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Thu May  2 21:40:58 UTC 2013

Modified Files:
src/external/mit/xorg/lib/pixman: Makefile

Log Message:
Comment out iwmmxt. hi jared.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/external/mit/xorg/lib/pixman/Makefile

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



CVS commit: src

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 21:45:29 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.c
src/sys/rump/include/rump: rumpuser.h
src/sys/rump/librump/rumpkern: intr.c rump.c

Log Message:
Ok, maybe using int64 for nanoseconds in the (sec,nsec) tuple was
a bit too future-proof.  I think long is enough there (let's just
hope nobody redefines "nano").  Also, make seconds signed just in
case someone wants their clock to be in 1901.


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/lib/librumpuser/rumpuser.c
cvs rdiff -u -r1.102 -r1.103 src/sys/rump/include/rump/rumpuser.h
cvs rdiff -u -r1.39 -r1.40 src/sys/rump/librump/rumpkern/intr.c
cvs rdiff -u -r1.267 -r1.268 src/sys/rump/librump/rumpkern/rump.c

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 21:47:12 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser.3

Log Message:
update for previous change


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/lib/librumpuser/rumpuser.3

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Thu May  2 22:07:58 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser_pth.c

Log Message:
reorder for better locality.  no functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/lib/librumpuser/rumpuser_pth.c

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



CVS commit: src/bin/ls

2013-05-02 Thread Zafer Aydogan
Module Name:src
Committed By:   zafer
Date:   Thu May  2 22:43:56 UTC 2013

Modified Files:
src/bin/ls: print.c

Log Message:
remove whitespace from end of file.
introduced by erh in 1.49


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/bin/ls/print.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/usb

2013-05-02 Thread Radoslaw Kujawa
Module Name:src
Committed By:   rkujawa
Date:   Thu May  2 23:10:53 UTC 2013

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
Add vendor ID for Mad Catz, Inc.
Add product ID for Mad Catz Cyborg R.A.T. 7.


To generate a diff of this commit:
cvs rdiff -u -r1.645 -r1.646 src/sys/dev/usb/usbdevs

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



CVS commit: src/sys/dev/usb

2013-05-02 Thread Radoslaw Kujawa
Module Name:src
Committed By:   rkujawa
Date:   Thu May  2 23:13:12 UTC 2013

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
Sort Mad Catz.


To generate a diff of this commit:
cvs rdiff -u -r1.646 -r1.647 src/sys/dev/usb/usbdevs

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



CVS commit: src/sbin/ccdconfig

2013-05-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri May  3 00:01:15 UTC 2013

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

Log Message:
Hi broken vax gcc!


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sbin/ccdconfig/ccdconfig.c

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



CVS commit: src/lib/librumpuser

2013-05-02 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Fri May  3 00:23:49 UTC 2013

Modified Files:
src/lib/librumpuser: rumpuser_pth.c

Log Message:
Support proper rw_downgrade() semantics.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/lib/librumpuser/rumpuser_pth.c

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