Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > David Schultz wrote: > > On Wed, Mar 05, 2008, Colin Percival wrote: > >> Setting the i387 FPU to 53-bit precision gives standards-compliant > >> behaviour whether people are using "double" or "long double". > > > > Not quite. > > How is it not standa

cvs commit: src/share/man/man4 fwohci.4

2008-03-05 Thread Christian Brueffer
brueffer2008-03-06 07:20:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) share/man/man4 fwohci.4 Log: MFC: rev. 1.17 The Sony i.LINK (CXD1947) is _not_ supported. Revision ChangesPath 1.14.2.2 +1 -3 src/share/man/man4/fwohci.4

cvs commit: src/share/man/man4 fwohci.4

2008-03-05 Thread Christian Brueffer
brueffer2008-03-06 07:19:50 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) share/man/man4 fwohci.4 Log: MFC: rev. 1.17 The Sony i.LINK (CXD1947) is _not_ supported. Revision ChangesPath 1.16.2.1 +1 -3 src/share/man/man4/fwohci.4

Re: cvs commit: ports/net/rsync Makefile distinfo ports/net/rsync/files extra-patches-acls.diff patch-CVE-2007-4091 patch-CVE-2007-6199

2008-03-05 Thread Emanuel Haupt
> Raphael H. Becker píše v út 04. 03. 2008 v 10:52 +0100: > > > Please include the new rsync-patches to net/rsync and make them > > optionally available via the OPTIONS, hopefully the new patches > > will handle hardlinks on immutable files gracefully. > > If someone can submit patches implementi

cvs commit: ports/x11-toolkits/py-Pmw Makefile distinfo pkg-plist ports/x11-toolkits/py-Pmw/files patch-setup.py

2008-03-05 Thread Li-Wen Hsu
lwhsu 2008-03-06 06:57:30 UTC FreeBSD ports repository Modified files: x11-toolkits/py-Pmw Makefile distinfo pkg-plist Added files: x11-toolkits/py-Pmw/files patch-setup.py Log: - Update to 1.3.2 PR: ports/121392 Submitted by: TAOKA Fumiyoshi (main

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
David Schultz wrote: > On Wed, Mar 05, 2008, Colin Percival wrote: >> Setting the i387 FPU to 53-bit precision gives standards-compliant >> behaviour whether people are using "double" or "long double". > > Not quite. How is it not standards-compliant? >> Yes and no. Double rounding isn't allowe

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Thu, Mar 06, 2008, Peter Jeremy wrote: > On Wed, Mar 05, 2008 at 10:32:46PM -0500, David Schultz wrote: > >gcc doesn't get any of this right. FreeBSD/i386 fixes the problem > >for /doubles/ by setting the i387 to use 53-bit precision. > > Note that FreeBSD/amd64 does not do this when running i3

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > Setting the i387 FPU to 53-bit precision gives standards-compliant > behaviour whether people are using "double" or "long double". Not quite. > Yes and no. Double rounding isn't allowed; Yes, it is. > > The downside is that this breaks long doubles

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > David Schultz wrote: > > If gcc actually implemented IEEE 754R / C99 / LIA1 correctly, then > > when compiling something like 'double x = y' would require it to > > store the value to memory and then reload it to force it to 53-bit > > precision. > > E

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Peter Jeremy
On Wed, Mar 05, 2008 at 10:32:46PM -0500, David Schultz wrote: >gcc doesn't get any of this right. FreeBSD/i386 fixes the problem >for /doubles/ by setting the i387 to use 53-bit precision. Note that FreeBSD/amd64 does not do this when running i386 binaries so you can get discrepancies between run

cvs commit: src/sys/kern uipc_syscalls.c

2008-03-05 Thread Colin Percival
cperciva2008-03-06 05:41:45 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/kern uipc_syscalls.c Log: MFC revision 1.269: Fix sending trailers in sendfile(2). Revision ChangesPath 1.259.2.3 +3 -1 src/sys/kern/uipc_syscalls.c

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Steve Kargl
On Wed, Mar 05, 2008 at 11:13:33PM -0600, Mike Silbersack wrote: > > 3) How does this change the operation of various programs in the ports > tree that use floating point, such as mplayer, mpg123, etc. Will this > cause different behavior when these apps are used on FreeBSD vs other > operati

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
Mike Silbersack wrote: > On Wed, 5 Mar 2008, Bruce Evans wrote: >> Change float_t and double_t to long double on i386. All floating point > > 1) Does this really change every double to a long double in anything > compiled? No, it changes double_t (which is not the same as double). > 2) How d

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
David Schultz wrote: > On Wed, Mar 05, 2008, Colin Percival wrote: >> David Schultz wrote: >>> ... if we're going to go down this path, we ought to just bite >>> the bullet and change npx.h and contrib/gcc/config/i386/freebsd.h >>> to use 64-bit precision by default on i386. >> Why would we want to

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
David Schultz wrote: > If gcc actually implemented IEEE 754R / C99 / LIA1 correctly, then > when compiling something like 'double x = y' would require it to > store the value to memory and then reload it to force it to 53-bit > precision. Even this wouldn't work, since it would result in double ro

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Mike Silbersack
On Wed, 5 Mar 2008, Bruce Evans wrote: bde 2008-03-05 11:21:14 UTC FreeBSD src repository Modified files: sys/i386/include _types.h Log: Change float_t and double_t to long double on i386. All floating point For those of us who are not floating point experts, can you exp

cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread Warner Losh
imp 2008-03-06 04:09:06 UTC FreeBSD src repository Modified files: usr.sbin/moused Makefile Log: The breakage from increased warns has been fixed, back out my back out Revision ChangesPath 1.12 +1 -1 src/usr.sbin/moused/Makefile

Re: cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Jung-uk Kim <[EMAIL PROTECTED]> writes: : On Wednesday 05 March 2008 09:12 pm, M. Warner Losh wrote: : > In message: <[EMAIL PROTECTED]> : > : > Jung-uk Kim <[EMAIL PROTECTED]> writes: : > : jkim2008-03-06 00:25:16 UTC : > : : > : Fr

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > Bruce Evans wrote: > > On Wed, 5 Mar 2008, Colin Percival wrote: > >> Bruce Evans wrote: > >>> Change float_t and double_t to long double on i386. > >> > >> Doesn't this have a rather severe performance impact on any code which > >> uses double_t? > >

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > David Schultz wrote: > > ... if we're going to go down this path, we ought to just bite > > the bullet and change npx.h and contrib/gcc/config/i386/freebsd.h > > to use 64-bit precision by default on i386. > > Why would we want to randomly and pointles

cvs commit: src/lib/libthr/thread thr_attr.c

2008-03-05 Thread David Xu
davidxu 2008-03-06 03:24:03 UTC FreeBSD src repository Modified files: lib/libthr/threadthr_attr.c Log: Fix a bug when calculating remnant size. Revision ChangesPath 1.11 +1 -1 src/lib/libthr/thread/thr_attr.c

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Bruce Evans
On Wed, 5 Mar 2008, Colin Percival wrote: Bruce Evans wrote: Modified files: sys/i386/include _types.h Log: Change float_t and double_t to long double on i386. Doesn't this have a rather severe performance impact on any code which uses double_t? No. As mentioned in the commit

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
David Schultz wrote: > ... if we're going to go down this path, we ought to just bite > the bullet and change npx.h and contrib/gcc/config/i386/freebsd.h > to use 64-bit precision by default on i386. Why would we want to randomly and pointlessly break things? To quote Kahan, "if a programmer asks

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Colin Percival
Bruce Evans wrote: > On Wed, 5 Mar 2008, Colin Percival wrote: >> Bruce Evans wrote: >>> Change float_t and double_t to long double on i386. >> >> Doesn't this have a rather severe performance impact on any code which >> uses double_t? > > No. As mentioned in the commit message, this has no per

Re: cvs commit: src/usr.sbin/moused moused.c

2008-03-05 Thread Jung-uk Kim
On Wednesday 05 March 2008 09:31 pm, Max Laier wrote: > Am Do, 6.03.2008, 03:14, schrieb Jung-uk Kim: > > jkim2008-03-06 02:14:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/moused moused.c > > Log: > > Cast time_t to long to mute tinderbox build

Re: cvs commit: src/usr.sbin/moused moused.c

2008-03-05 Thread Max Laier
Am Do, 6.03.2008, 03:14, schrieb Jung-uk Kim: > jkim2008-03-06 02:14:45 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/moused moused.c > Log: > Cast time_t to long to mute tinderbox build failure. doesn't this defeat the purpose of having time_t in the firs

Re: cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread Jung-uk Kim
On Wednesday 05 March 2008 09:12 pm, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > > Jung-uk Kim <[EMAIL PROTECTED]> writes: > : jkim2008-03-06 00:25:16 UTC > : > : FreeBSD src repository > : > : Modified files: > : usr.sbin/moused Makefile > : Log: >

cvs commit: src/usr.sbin/moused moused.c

2008-03-05 Thread Jung-uk Kim
jkim2008-03-06 02:14:45 UTC FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: Cast time_t to long to mute tinderbox build failure. Revision ChangesPath 1.82 +2 -2 src/usr.sbin/moused/moused.c __

cvs commit: ports/graphics/gscan2pdf Makefile distinfo pkg-plist

2008-03-05 Thread Andrew Pantyukhin
sat 2008-03-06 02:14:40 UTC FreeBSD ports repository Modified files: graphics/gscan2pdf Makefile distinfo pkg-plist Log: - Update to 0.9.23 Revision ChangesPath 1.32 +1 -1 ports/graphics/gscan2pdf/Makefile 1.25 +3 -3 ports/graphics/gscan2pd

cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread Warner Losh
imp 2008-03-06 02:13:53 UTC FreeBSD src repository Modified files: usr.sbin/moused Makefile Log: This breaks the arm build, back it out until that's fixed Revision ChangesPath 1.11 +1 -1 src/usr.sbin/moused/Makefile _

Re: cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Jung-uk Kim <[EMAIL PROTECTED]> writes: : jkim2008-03-06 00:25:16 UTC : : FreeBSD src repository : : Modified files: : usr.sbin/moused Makefile : Log: : Mark moused(8) WARNS=6 clean. NEVER SET WARNS to a higher level unless yo

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread David Schultz
On Wed, Mar 05, 2008, Colin Percival wrote: > Bruce Evans wrote: > > Modified files: > > sys/i386/include _types.h > > Log: > > Change float_t and double_t to long double on i386. > > Doesn't this have a rather severe performance impact on any code which > uses double_t? Yes, if the

cvs commit: src/lib/libthr/thread thr_exit.c

2008-03-05 Thread David Xu
davidxu 2008-03-06 02:07:18 UTC FreeBSD src repository Modified files: lib/libthr/threadthr_exit.c Log: Don't report death event to debugger if it is a forced exit. Revision ChangesPath 1.25 +1 -1 src/lib/libthr/thread/thr_exit.c

cvs commit: src/lib/libthr/thread thr_create.c

2008-03-05 Thread David Xu
davidxu 2008-03-06 01:59:08 UTC FreeBSD src repository Modified files: lib/libthr/threadthr_create.c Log: Restore code setting new thread's scheduler parameters, I was thinking that there might be starvations, but because we have already locked the thread, the cpuset sett

cvs commit: src/sys/dev/nfe if_nfe.c if_nfereg.h if_nfevar.h

2008-03-05 Thread Pyun YongHyeon
yongari 2008-03-06 01:47:53 UTC FreeBSD src repository Modified files: sys/dev/nfe if_nfe.c if_nfereg.h if_nfevar.h Log: Nuke local jumbo allocator and switch to use of UMA backed page allocator for jumbo frame. Also remove unneeded jlist lock which is no longer requ

cvs commit: src/lib/libc/resolv res_comp.c

2008-03-05 Thread Xin LI
delphij 2008-03-06 01:05:30 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) lib/libc/resolv res_comp.c Log: MFC revision 1.5 date: 2008/02/16 00:16:49; author: delphij; state: Exp; lines: +2 -1 Allow underscore in domain names while resolving. Wh

cvs commit: src/lib/libc/resolv res_comp.c

2008-03-05 Thread Xin LI
delphij 2008-03-06 01:05:10 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) lib/libc/resolv res_comp.c Log: MFC revision 1.5 date: 2008/02/16 00:16:49; author: delphij; state: Exp; lines: +2 -1 Allow underscore in domain names while resolving. Wh

cvs commit: ports/x11-servers/xorg-server Makefile ports/x11-servers/xorg-server/files patch-configure patch-os-utils.c

2008-03-05 Thread Jung-uk Kim
jkim2008-03-06 00:48:43 UTC FreeBSD ports repository Modified files: x11-servers/xorg-server Makefile Added files: x11-servers/xorg-server/files patch-configure patch-os-utils.c Log: - Check correct POSIX spec. date for clock_gettime(2) whether CLOCK_MONOTONIC is ava

cvs commit: src/usr.sbin/bluetooth/rfcomm_pppd rfcomm_pppd.8 rfcomm_pppd.c

2008-03-05 Thread Maksim Yevmenkin
emax2008-03-06 00:37:29 UTC FreeBSD src repository Modified files: usr.sbin/bluetooth/rfcomm_pppd rfcomm_pppd.8 rfcomm_pppd.c Log: Add an option to register DUN (Dial-Up Networking) service on the same RFCOMM channel if needed. There is really no good reason to not to suppo

cvs commit: ports/ports-mgmt/bpm Makefile ports/ports-mgmt/bpm/files patch-src::refresh.c

2008-03-05 Thread Cy Schubert
cy 2008-03-06 00:32:25 UTC FreeBSD ports repository Modified files: ports-mgmt/bpm Makefile ports-mgmt/bpm/files patch-src::refresh.c Log: Add support for FreeBSD 7.0-STABLE and 8.0-CURRENT. Approved by:Maintainer: Seth Kingsley <[EMAIL PROTECTED]> R

cvs commit: src/usr.sbin/moused Makefile

2008-03-05 Thread Jung-uk Kim
jkim2008-03-06 00:25:16 UTC FreeBSD src repository Modified files: usr.sbin/moused Makefile Log: Mark moused(8) WARNS=6 clean. Revision ChangesPath 1.10 +2 -0 src/usr.sbin/moused/Makefile ___ cvs-all@freeb

cvs commit: src/usr.sbin/moused moused.c

2008-03-05 Thread Jung-uk Kim
jkim2008-03-06 00:24:11 UTC FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: Fix compiler warnings and style(9) bugs. Revision ChangesPath 1.81 +202 -193 src/usr.sbin/moused/moused.c ___ cv

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Bruce Evans
On Thu, 6 Mar 2008, Peter Jeremy wrote: On Wed, Mar 05, 2008 at 11:21:14AM +, Bruce Evans wrote: Log: Change float_t and double_t to long double on i386. All floating point expressions on i386 are evaluated in the range of the long double type, npx.h currently defines __INITIAL_NPXCW_

cvs commit: src/usr.sbin/moused moused.c

2008-03-05 Thread Jung-uk Kim
jkim2008-03-06 00:22:17 UTC FreeBSD src repository Modified files: usr.sbin/moused moused.c Log: Prefer clock_gettime(2) over gettimeofday(2) and use CLOCK_MONOTONIC_FAST. It is only used to track elapsed time and it does not have to be precise. Revision Changes

Re: cvs commit: src/sys/conf options.powerpc src/sys/dev/uart uart.h uart_bus_ocp.c uart_cpu_powerpc.c src/sys/kern subr_witness.c src/sys/powerpc/booke clock.c copyinout.c interrupt.c locore.S machde

2008-03-05 Thread Stanislav Sedov
On Mon, Mar 03, 2008 at 05:17:01PM + Rafal Jaworowski mentioned: > pci_ocp.c > Log: > Initial support for Freescale PowerQUICC III MPC85xx system-on-chip family. > > The PQ3 is a high performance integrated communications processing system > based on the e50

cvs commit: ports UPDATING

2008-03-05 Thread Emanuel Haupt
ehaupt 2008-03-05 23:59:00 UTC FreeBSD ports repository Modified files: .UPDATING Log: Add an entry about the mail/dovecot update. Revision ChangesPath 1.593 +12 -1 ports/UPDATING ___ cvs-all@fre

cvs commit: ports/mail/dovecot Makefile distinfo ports/mail/dovecot/files dovecot.sh.in patch-dovecot-example.conf

2008-03-05 Thread Emanuel Haupt
ehaupt 2008-03-05 23:58:09 UTC FreeBSD ports repository Modified files: mail/dovecot Makefile distinfo mail/dovecot/files dovecot.sh.in patch-dovecot-example.conf Log: - Update to 1.0.12 - Fixes a common insecure mail_extra_groups setting usage, this will requir

cvs commit: src/rescue/rescue Makefile

2008-03-05 Thread Xin LI
delphij 2008-03-05 23:32:12 UTC FreeBSD src repository Modified files: rescue/rescueMakefile Log: Add an alias for glabel(8). Revision ChangesPath 1.59 +1 -0 src/rescue/rescue/Makefile ___ cvs-all@freebsd.o

cvs commit: src/sbin/geom Makefile src/sbin/geom/class/label geom_label.c src/sbin/geom/core geom.c

2008-03-05 Thread Xin LI
delphij 2008-03-05 23:31:49 UTC FreeBSD src repository Modified files: sbin/geomMakefile sbin/geom/class/label geom_label.c sbin/geom/core geom.c Log: Make it possible to build glabel into rescue geom(8) utility. Ok'ed by: marcel No object

cvs commit: src/sbin/newfs mkfs.c

2008-03-05 Thread Xin LI
delphij 2008-03-05 23:17:19 UTC FreeBSD src repository Modified files: sbin/newfs mkfs.c Log: Use calloc(). Revision ChangesPath 1.95 +1 -2 src/sbin/newfs/mkfs.c ___ cvs-all@freebsd.org mailing list http:

cvs commit: ports/net-mgmt/net-snmp4 Makefile pkg-plist ports/net-mgmt/net-snmp4/files patch-scapi.c

2008-03-05 Thread Emanuel Haupt
ehaupt 2008-03-05 23:16:10 UTC FreeBSD ports repository Modified files: net-mgmt/net-snmp4 Makefile pkg-plist Added files: net-mgmt/net-snmp4/files patch-scapi.c Log: Unbreak on 7.0 PR: 121375 (based on) Submitted by: Christopher Cowart <[EMAIL PROT

cvs commit: ports/mail/libvmime/files patch-src__net__tls__TLSSession.cpp

2008-03-05 Thread Xin LI
delphij 2008-03-05 23:09:46 UTC FreeBSD ports repository Added files: mail/libvmime/files patch-src__net__tls__TLSSession.cpp Log: Remove GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED after GNUTLS upgrad in order to fix build. Reporteed by: pointyhat via pav Revisio

cvs commit: ports/print/lilypond Makefile

2008-03-05 Thread Joe Marcus Clarke
marcus 2008-03-05 23:02:50 UTC FreeBSD ports repository Modified files: print/lilypond Makefile Log: Mark BROKEN with guile-1.8. There is a substantially new version out which looks like it should work on FreeBSD, but I am not a lilypond user, so I leave that to an in

cvs commit: src/sys/dev/mii brgphy.c miidevs

2008-03-05 Thread David Christensen
davidch 2008-03-05 22:58:02 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c miidevs Log: - Add PHY ID for BCM5709C 1000Base-T controllers. MFC after: 1 week Revision ChangesPath 1.72 +4 -2 src/sys/dev/mii/brgphy.c 1.50

Re: cvs commit: src/sbin/fsck_ffs main.c

2008-03-05 Thread Craig Rodrigues
On Wed, Mar 05, 2008 at 03:20:29PM +0300, Yar Tikhiy wrote: > Your analysis of the problem sounds not quite correct to me. You make some interesting points in your e-mail. I suggest that you summarize the points and post them to arch@ for further review and discussion. There is how nmount() shoul

cvs commit: src/sys/netgraph ng_base.c

2008-03-05 Thread Alexander Motin
mav 2008-03-05 22:12:34 UTC FreeBSD src repository Modified files: sys/netgraph ng_base.c Log: Increase default queue items allocation limit from 512 to 4096 items to avoid terrible unpredicted effects for netgraph operation of their exhaustion while allocating co

cvs commit: src/usr.bin/netstat route.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 21:19:25 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) usr.bin/netstat route.c Log: MFC: Make netstat -rn more resilient to having the routing table change out from under it while running. Revision ChangesPath 1.76.2.6

cvs commit: src/usr.bin/netstat route.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 21:17:59 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) usr.bin/netstat route.c Log: MFC: Make netstat -rn more resilient to having the routing table change out from under it while running. Revision ChangesPath 1.82.2.3

cvs commit: src/sys/dev/syscons syscons.h

2008-03-05 Thread John Baldwin
jhb 2008-03-05 21:14:06 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/syscons syscons.h Log: MFC: Mark the syscons video spin mutex as recursable. Revision ChangesPath 1.88.2.1 +2 -1 src/sys/dev/syscons/syscons.h _

cvs commit: src/sys/kern subr_sleepqueue.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 21:12:49 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/kern subr_sleepqueue.c Log: MFC: Mark sleepqueue chain spin mutexes as recursable. Revision ChangesPath 1.39.2.2 +1 -1 src/sys/kern/subr_sleepqueue.c

cvs commit: src/sys/kern kern_mutex.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 21:11:54 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/kern kern_mutex.c Log: MFC: Add a couple of assertions and KTR logging to thread_lock_flags(). Revision ChangesPath 1.198.2.2 +7 -1 src/sys/kern/ker

cvs commit: src/secure/usr.bin/ssh Makefile src/secure/usr.sbin/sshd Makefile

2008-03-05 Thread Kris Kennaway
kris2008-03-05 20:58:15 UTC FreeBSD src repository Modified files: secure/usr.bin/ssh Makefile secure/usr.sbin/sshd Makefile Log: For users of FreeBSD <= 6.2 we recommend during the x.org 7.x upgrade that they add X11BASE=${LOCALBASE} to /etc/make.conf since X11BASE

cvs commit: ports/devel/p5-Curses-UI Makefile distinfo

2008-03-05 Thread Erwin Lansing
erwin 2008-03-05 20:54:12 UTC FreeBSD ports repository Modified files: devel/p5-Curses-UI Makefile distinfo Log: Update to 0.9602 Revision ChangesPath 1.7 +1 -1 ports/devel/p5-Curses-UI/Makefile 1.7 +3 -3 ports/devel/p5-Curses-UI/distinfo _

cvs commit: ports/security/vpnc Makefile ports/security/vpnc/files vpnc.in

2008-03-05 Thread Emanuel Haupt
ehaupt 2008-03-05 20:50:30 UTC FreeBSD ports repository Modified files: security/vpncMakefile security/vpnc/files vpnc.in Log: - Update RC script - Bump PORTREVISION Submitted by: [EMAIL PROTECTED] (author of rc script) Revision ChangesPath 1.3

cvs commit: CVSROOT modules

2008-03-05 Thread Thierry Thomas
thierry 2008-03-05 20:49:03 UTC FreeBSD ports repository Modified files: .modules Log: tk-aspell --> ports/textproc/tk-aspell Revision ChangesPath 1.19463 +1 -0 CVSROOT/modules ___ cvs-all@freebs

cvs commit: ports/textproc Makefile ports/textproc/tk-aspell Makefile distinfo pkg-descr pkg-plist

2008-03-05 Thread Thierry Thomas
thierry 2008-03-05 20:48:55 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/tk-aspell Makefile distinfo pkg-descr pkg-plist Log: Adding Aspell Turkmen dictionary. Revision ChangesPath 1.1222+1 -0 ports

cvs commit: ports/portuguese/aspell-pt_BR Makefile distinfo

2008-03-05 Thread Thierry Thomas
thierry 2008-03-05 20:48:53 UTC FreeBSD ports repository Modified files: portuguese/aspell-pt_BR Makefile distinfo Log: Upgrade to 20080221-0. Revision ChangesPath 1.3 +1 -1 ports/portuguese/aspell-pt_BR/Makefile 1.3 +3 -3 ports/portuguese/aspe

cvs commit: ports/textproc/bg-aspell Makefile distinfo pkg-descr pkg-plist

2008-03-05 Thread Thierry Thomas
thierry 2008-03-05 20:48:51 UTC FreeBSD ports repository Modified files: textproc/bg-aspell Makefile distinfo pkg-descr pkg-plist Log: Upgrade to 4.1-0. Revision ChangesPath 1.5 +1 -1 ports/textproc/bg-aspell/Makefile 1.2 +3 -3 ports/textproc

cvs commit: src/sys/net route.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 20:33:46 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/net route.c Log: MFC: Use RTFREE_LOCKED() instead of rtfree() when releasing a reference on the 'rt' route in rtredirect(). Revision ChangesPath 1.120.

cvs commit: src/usr.bin/make main.c

2008-03-05 Thread Yar Tikhiy
yar 2008-03-05 20:24:38 UTC FreeBSD src repository Modified files: usr.bin/make main.c Log: The non-POSIX environment variable MAKE was superseded by MAKEFLAGS ages ago, so don't mention it in comments. Tested with:cmp(1) Revision ChangesPath 1.

cvs commit: src/sys/nfs nfs_srvcache.c

2008-03-05 Thread John Baldwin
jhb 2008-03-05 20:19:00 UTC FreeBSD src repository Modified files:(Branch: RELENG_4) sys/nfs nfs_srvcache.c Log: Bah, extra hunk slipped in. Revision ChangesPath 1.21.2.2 +0 -2 src/sys/nfs/nfs_srvcache.c _

cvs commit: src/sys/nfs nfs_nqlease.c nfs_socket.c nfs_srvcache.c nfs_subs.c nfsm_subs.h

2008-03-05 Thread John Baldwin
jhb 2008-03-05 20:17:12 UTC FreeBSD src repository Modified files:(Branch: RELENG_4) sys/nfs nfs_nqlease.c nfs_socket.c nfs_srvcache.c nfs_subs.c nfsm_subs.h Log: MFC: Fix a problem with XID re-use when a server returns NFSERR_JU

cvs commit: www/en/releng index.sgml

2008-03-05 Thread Bruce A. Mah
bmah2008-03-05 20:11:53 UTC FreeBSD doc repository Modified files: en/relengindex.sgml Log: Reflect handoff of RELENG_7_0 to [EMAIL PROTECTED] Revision ChangesPath 1.229 +3 -3 www/en/releng/index.sgml __

cvs commit: src/usr.bin/make main.c make.1

2008-03-05 Thread Yar Tikhiy
yar 2008-03-05 20:11:05 UTC FreeBSD src repository Modified files: usr.bin/make main.c make.1 Log: Don't forget to set MAKEFLAGS in the childs' environment from the .MAKEFLAGS global variable even if it's empty or unset. This means setting MAKEFLAGS to just an em

cvs commit: www/en/releases/7.0R schedule.sgml

2008-03-05 Thread Bruce A. Mah
bmah2008-03-05 20:10:50 UTC FreeBSD doc repository Modified files: en/releases/7.0R schedule.sgml Log: Tick off the last item on the 7.0 schedule...hand off the branch to [EMAIL PROTECTED] Revision ChangesPath 1.17 +2 -2 www/en/releases/7.0R/schedu

cvs commit: src/sys/nfsclient nfs_socket.c nfs_subs.c nfsm_subs.h

2008-03-05 Thread John Baldwin
jhb 2008-03-05 20:04:16 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/nfsclientnfs_socket.c nfs_subs.c nfsm_subs.h Log: MFC: Consolidate the code to generate a new XID for a NFS request. RevisionChangesPath 1.125.2.19 +1 -5

cvs commit: src/sys/nfsclient nfs_socket.c nfs_subs.c nfsm_subs.h

2008-03-05 Thread John Baldwin
jhb 2008-03-05 19:58:08 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/nfsclientnfs_socket.c nfs_subs.c nfsm_subs.h Log: MFC: Consolidate the code to generate a new XID for a NFS request. Revision ChangesPath 1.154.2.3 +1 -8

cvs commit: ports/graphics/py-pyproj Makefile distinfo pkg-plist

2008-03-05 Thread Li-Wen Hsu
lwhsu 2008-03-05 18:52:55 UTC FreeBSD ports repository Modified files: graphics/py-pyproj Makefile distinfo pkg-plist Log: - Update to to 1.8.4 PR: ports/121393 Submitted by: TAOKA Fumiyoshi (maintainer) Revision ChangesPath 1.5 +12 -8

cvs commit: src/sys/powerpc/mpc85xx ocpbus.c

2008-03-05 Thread Marcel Moolenaar
marcel 2008-03-05 18:39:01 UTC FreeBSD src repository Modified files: sys/powerpc/mpc85xx ocpbus.c Log: o We don't have to keep track of the PIC, nor do we have to make sure it's probed first. The PowerPC platform code deals with everything. As such, probe devices in

cvs commit: src/share/man/man5 rc.conf.5 src/etc Makefile ddb.conf src/etc/defaults rc.conf src/etc/rc.d Makefile ddb

2008-03-05 Thread Brooks Davis
brooks 2008-03-05 18:32:58 UTC FreeBSD src repository Modified files: share/man/man5 rc.conf.5 etc Makefile etc/defaults rc.conf etc/rc.d Makefile Added files: etc ddb.conf etc/rc.d ddb

Re: cvs commit: src/sys/i386/include _types.h

2008-03-05 Thread Peter Jeremy
On Wed, Mar 05, 2008 at 11:21:14AM +, Bruce Evans wrote: > Log: > Change float_t and double_t to long double on i386. All floating point > expressions on i386 are evaluated in the range of the long double type, npx.h currently defines __INITIAL_NPXCW__ as 0x127f which makes the x87 emulate

cvs commit: ports/games/libggz Makefile

2008-03-05 Thread Jeremy Messenger
mezz2008-03-05 18:22:04 UTC FreeBSD ports repository Modified files: games/libggz Makefile Log: Add a dependency, libgcrypt, it has autocheck in its configure and will enabling by default if libgcrypt exists in system. Bump the PORTREVISION. Approved by:Yin

cvs commit: CVSROOT approvers

2008-03-05 Thread Ken Smith
kensmith2008-03-05 18:15:05 UTC FreeBSD src repository Modified files: .approvers Log: Turn RELENG_7_0 over to the Security Team. Approved by:core (implicit) Revision ChangesPath 1.48 +1 -1 CVSROOT/approvers _

cvs commit: src/share/man/man4 uslcom.4

2008-03-05 Thread Christian Brueffer
brueffer2008-03-05 18:04:21 UTC FreeBSD src repository Modified files: share/man/man4 uslcom.4 Log: mdoc changes to make this manpage consistent with our other section 4 manpages. Revision ChangesPath 1.3 +19 -8 src/share/man/man4/uslcom.4 ___

cvs commit: src/sbin/ddb ddb.8 ddb.c

2008-03-05 Thread Brooks Davis
brooks 2008-03-05 17:51:06 UTC FreeBSD src repository Modified files: sbin/ddb ddb.8 ddb.c Log: Add the ability to read a file of commands to ddb(8) modeled after the feature in ipfw(8). Revision ChangesPath 1.3 +14 -0 src/sbin/ddb/ddb.8 1.2

cvs commit: ports/comms/qsstv Makefile pkg-descr ports/comms/qsstv/files patch-configdialog.cpp

2008-03-05 Thread Diane Bruce
db 2008-03-05 17:33:49 UTC FreeBSD ports repository Modified files: comms/qsstv Makefile pkg-descr Added files: comms/qsstv/filespatch-configdialog.cpp Log: - Chase web site change. - Add backup download site. - Fix defaults. Revision Changes

cvs commit: ports/games/xphotohunter Makefile

2008-03-05 Thread Clive Lin
clive 2008-03-05 17:31:37 UTC FreeBSD ports repository Modified files: games/xphotohunter Makefile Log: Make distfile fetchable. Revision ChangesPath 1.18 +2 -2 ports/games/xphotohunter/Makefile ___ cvs-all@fre

cvs commit: src/sys/powerpc/mpc85xx pci_ocp.c

2008-03-05 Thread Marcel Moolenaar
marcel 2008-03-05 16:46:38 UTC FreeBSD src repository Modified files: sys/powerpc/mpc85xx pci_ocp.c Log: o Various fixes related to PCI Express: - Even for the PCI Express host controller we need to use bus 0 for configuration space accesses to devices directly on

cvs commit: src/sys/ufs/ffs ffs_vfsops.c

2008-03-05 Thread Konstantin Belousov
kib 2008-03-05 16:34:03 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_vfsops.c Log: Initialize mnt_stat.f_iosize before autostarting UFS1 extattrs. It is normally initialized by ffs_statfs() after ffs_mount finished. The extattr autostart code cal

cvs commit: ports/print/lyx15 Makefile

2008-03-05 Thread Thomas Abthorpe
tabthorpe2008-03-05 16:18:29 UTC FreeBSD ports repository Modified files: print/lyx15 Makefile Log: - Maintainer is short on time, reassign to pool. - Thank you for your service, we hope to see you back. PR: ports/121354 Submitted by: Ullrich Frank

cvs commit: CVSROOT access

2008-03-05 Thread Erwin Lansing
erwin 2008-03-05 16:02:43 UTC FreeBSD ports repository Modified files: .access Log: Take alfreds bit in for safe keeping. Submitted by: The Grim Reaper Approved by:portmgr Revision ChangesPath 1.827 +0 -1 CVSROOT/access

cvs commit: ports/www/drood Makefile distinfo

2008-03-05 Thread Thomas Abthorpe
tabthorpe2008-03-05 15:49:01 UTC FreeBSD ports repository Modified files: www/droodMakefile distinfo Log: - Update to 1.27 - Corrects bug where drood would not die on receipt of keyboard-intiated signals when the -x option was specified. PR: por

cvs commit: ports/audio/scmpc Makefile

2008-03-05 Thread Alexey Dokuchaev
danfe 2008-03-05 14:59:23 UTC FreeBSD ports repository Modified files: audio/scmpc Makefile Log: Revert previous commit: pkg-config dependency is satisfied in libconfuse since Jan 30. Revision ChangesPath 1.4 +0 -1 ports/audio/scmpc/Makefile __

cvs commit: ports/audio/scmpc Makefile pkg-descr

2008-03-05 Thread Alexey Dokuchaev
danfe 2008-03-05 14:26:47 UTC FreeBSD ports repository Modified files: audio/scmpc Makefile pkg-descr Log: - Fix the build (missing pkg-config at configure stage) [1] - Correct minor typo in pkg-descr while here Reported by:pointyhat (via erwin, pav) [1] A

cvs commit: src/share/man/man4 uslcom.4 src/sys/dev/usb uslcom.c

2008-03-05 Thread Rink Springer
rink2008-03-05 14:18:29 UTC FreeBSD src repository Modified files: share/man/man4 uslcom.4 sys/dev/usb uslcom.c Log: Oops, I accidently concatenated uslcom.[c4] multiple times before the commit :-/ Quickly fix before things get broken... Pointyhat t

cvs commit: src/share/man/man4 Makefile uslcom.4 src/sys/amd64/conf GENERIC src/sys/conf NOTES files src/sys/dev/usb usbdevs uslcom.c src/sys/i386/conf GENERIC src/sys/modules Makefile src/sys/modules

2008-03-05 Thread Rink Springer
rink2008-03-05 14:13:30 UTC FreeBSD src repository Modified files: share/man/man4 Makefile sys/amd64/conf GENERIC sys/conf NOTES files sys/dev/usb usbdevs sys/i386/confGENERIC sys/modules Makefile Added

cvs commit: ports/www/roundup Makefile distinfo

2008-03-05 Thread Dryice Dong Liu
dryice 2008-03-05 14:04:45 UTC FreeBSD ports repository Modified files: www/roundup Makefile distinfo Log: update to 1.4.4 Revision ChangesPath 1.27 +2 -2 ports/www/roundup/Makefile 1.21 +3 -3 ports/www/roundup/distinfo

cvs commit: ports/databases/py-sqlobject Makefile distinfo

2008-03-05 Thread Dryice Dong Liu
dryice 2008-03-05 13:59:15 UTC FreeBSD ports repository Modified files: databases/py-sqlobject Makefile distinfo Log: update to 0.9.4 Revision ChangesPath 1.21 +2 -2 ports/databases/py-sqlobject/Makefile 1.16 +3 -3 ports/databases/py-sqlobject/d

cvs commit: ports/devel/py-setuptools Makefile distinfo

2008-03-05 Thread Dryice Dong Liu
dryice 2008-03-05 13:51:53 UTC FreeBSD ports repository Modified files: devel/py-setuptools Makefile distinfo Log: update to 0.6c8 PR: ports/120866 Submitted by: Piet Delport <[EMAIL PROTECTED]> Revision ChangesPath 1.17 +1 -2 ports/de

cvs commit: doc/hu_HU.ISO8859-2/articles/linux-comparison article.sgml

2008-03-05 Thread Gabor Kovesdan
gabor 2008-03-05 13:07:53 UTC FreeBSD doc repository Modified files: hu_HU.ISO8859-2/articles/linux-comparison article.sgml Log: - Fix typo - Style fixes Submitted by: Miklos Quartus <[EMAIL PROTECTED]> (via private mail) Revision ChangesPath 1.4 +4 -

  1   2   >