From owner-cvs-all@FreeBSD.ORG Sun May 25 00:39:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD6237B401; Sun, 25 May 2003 00:39:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB0E143FAF; Sun, 25 May 2003 00:39:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P7d60U047589; Sun, 25 May 2003 00:39:06 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P7d64e047588; Sun, 25 May 2003 00:39:06 -0700 (PDT) Message-Id: <200305250739.h4P7d64e047588@repoman.freebsd.org> From: Peter Wemm Date: Sun, 25 May 2003 00:39:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin Makefile src/usr.sbin/ppp ncpaddr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 07:39:07 -0000 peter 2003/05/25 00:39:06 PDT FreeBSD src repository Modified files: usr.sbin Makefile usr.sbin/ppp ncpaddr.c Log: Add a pretty cheesy hack to avoid a gcc-3.2.2 ICE (internal compiler error) on amd64 when doing pointer subtraction. This bug is already fixed in gcc-3.3 (waiting for after the branch), and the hack will be backed out at the first opportunity. This is in the ipv6 code path. Approved by: re (scottl) Revision Changes Path 1.254 +1 -4 src/usr.sbin/Makefile 1.13 +3 -3 src/usr.sbin/ppp/ncpaddr.c From owner-cvs-all@FreeBSD.ORG Sun May 25 00:58:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58F3837B401; Sun, 25 May 2003 00:58:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B13043F85; Sun, 25 May 2003 00:58:23 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P7wM0U053530; Sun, 25 May 2003 00:58:22 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P7wMlf053529; Sun, 25 May 2003 00:58:22 -0700 (PDT) Message-Id: <200305250758.h4P7wMlf053529@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 00:58:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_kern.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 07:58:23 -0000 mtm 2003/05/25 00:58:22 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_kern.c thr_private.h Log: The libthr code makes use of higher-level primitives (pthread_mutex_t and pthread_cond_t) internaly in addition to the low-level spinlock_t. The garbage collector mutex and condition variable are two such examples. This might lead to critical sections nested within critical sections. Implement a reference counting mechanism so that signals are masked only on the first entry and unmasked on the last exit. I'm not sure I like the idea of nested critical sections, but if the library is going to use the pthread primitives it might be necessary. Approved by: re/blanket libthr Revision Changes Path 1.8 +13 -0 src/lib/libthr/thread/thr_kern.c 1.10 +1 -0 src/lib/libthr/thread/thr_private.h From owner-cvs-all@FreeBSD.ORG Sun May 25 01:05:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1DD337B401; Sun, 25 May 2003 01:05:17 -0700 (PDT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FC7043F85; Sun, 25 May 2003 01:05:16 -0700 (PDT) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.9/8.12.9) with ESMTP id h4P85ELp020221; Sun, 25 May 2003 10:05:15 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: "Greg 'groggy' Lehey" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 25 May 2003 09:33:44 +0930." <20030525000344.GT80220@wantadilla.lemis.com> Date: Sun, 25 May 2003 10:05:14 +0200 Message-ID: <20220.1053849914@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ruslan Ermilov cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/bsdlabel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 08:05:18 -0000 In message <20030525000344.GT80220@wantadilla.lemis.com>, "Greg 'groggy' Lehey" writes: > >--lzfPtAjrR1KYNfg0 >Content-Type: text/plain; charset=us-ascii >Content-Disposition: inline > >On Friday, 23 May 2003 at 9:52:59 +0200, Poul-Henning Kamp wrote: >> In message <20030523062216.GE17107@sunbay.com>, Ruslan Ermilov writes: >> >>> Poul-Henning, when do you plan to initiate the de-orbit >>> burn sequence for /sbin/disklabel, something like this? >> >> When the freeze lifts > >Why is the name disklabel going away? It will confuse a lot of >people. What's wrong with the current link? Pleace refer to the discussions on current about this topic. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-all@FreeBSD.ORG Sun May 25 01:31:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B371837B404; Sun, 25 May 2003 01:31:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A7C943F85; Sun, 25 May 2003 01:31:34 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P8VY0U055710; Sun, 25 May 2003 01:31:34 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P8VYgv055709; Sun, 25 May 2003 01:31:34 -0700 (PDT) Message-Id: <200305250831.h4P8VYgv055709@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 01:31:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_exit.c thr_gc.c thr_info.c thr_init.c thr_join.c thr_private.h thr_stack.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 08:31:35 -0000 mtm 2003/05/25 01:31:33 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_exit.c thr_gc.c thr_info.c thr_init.c thr_join.c thr_private.h thr_stack.c Log: Start locking up the active and dead threads lists. The active threads list is protected by a spinlock_t, but the dead list uses a pthread_mutex because it is necessary to synchronize other threads with the garbage collector thread. Lock/Unlock macros are used so it's easier to make changes to the locks in the future. The 'dead thread list' lock is intended to replace the gc mutex. This doesn't have any practical ramifications. It simply makes it clearer what the purpose of the lock is. The gc will use this lock, instead of the gc mutex, to synchronize access to the dead list with other threads. Modify _pthread_exit() to use these two new locks instead of GIANT_LOCK, and also to properly lock and protect thread state changes, especially with respect to a joining thread. The gc thread was also re-arranged to be more organized and less nested. _pthread_join() was also modified to use the thread list locks. However, locking and unlocking here needs special care because a thread could find itself in a position where it's joining an exiting thread that is waiting on the dead list lock, which this thread (joiner) holds. If the joiner doesn't take care to lock *and* unlock in the same order they (the joiner and the joinee) could deadlock against each other. Approved by: re/blanket libthr Revision Changes Path 1.6 +26 -30 src/lib/libthr/thread/thr_exit.c 1.4 +38 -54 src/lib/libthr/thread/thr_gc.c 1.3 +2 -0 src/lib/libthr/thread/thr_info.c 1.6 +1 -1 src/lib/libthr/thread/thr_init.c 1.5 +34 -27 src/lib/libthr/thread/thr_join.c 1.11 +29 -6 src/lib/libthr/thread/thr_private.h 1.2 +5 -9 src/lib/libthr/thread/thr_stack.c From owner-cvs-all@FreeBSD.ORG Sun May 25 01:35:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1922037B401; Sun, 25 May 2003 01:35:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA36343FB1; Sun, 25 May 2003 01:35:38 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P8Zc0U055866; Sun, 25 May 2003 01:35:38 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P8Zco2055865; Sun, 25 May 2003 01:35:38 -0700 (PDT) Message-Id: <200305250835.h4P8Zco2055865@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 01:35:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_create.c thr_find_thread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 08:35:39 -0000 mtm 2003/05/25 01:35:38 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_create.c thr_find_thread.c Log: Part of the last patch. Modify the thread creation and thread searching routine to lock the thread lists with the new locks instead of GIANT_LOCK. Approved by: re/blanket libthr Revision Changes Path 1.7 +7 -7 src/lib/libthr/thread/thr_create.c 1.3 +2 -2 src/lib/libthr/thread/thr_find_thread.c From owner-cvs-all@FreeBSD.ORG Sun May 25 01:48:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA1EC37B401; Sun, 25 May 2003 01:48:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D6C43F3F; Sun, 25 May 2003 01:48:11 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P8mB0U056333; Sun, 25 May 2003 01:48:11 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P8mBpD056332; Sun, 25 May 2003 01:48:11 -0700 (PDT) Message-Id: <200305250848.h4P8mBpD056332@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 01:48:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cancel.c thr_private.h thr_spinlock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 08:48:12 -0000 mtm 2003/05/25 01:48:11 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_cancel.c thr_private.h thr_spinlock.c Log: _pthread_cancel() breaks the normal lock order of first locking the joined and then the joiner thread. There isn't an easy (sane?) way to make it use the correct order without introducing races involving the target thread and finding which (active or dead) list it is on. So, after locking the canceled thread it will try to lock the joined thread and if it fails release the first lock and try again from the top. Introduce a new function, _spintrylock, which is simply a wrapper arround umtx_trylock(), to help accomplish this. Approved by: re/blanket libthr Revision Changes Path 1.5 +17 -4 src/lib/libthr/thread/thr_cancel.c 1.12 +1 -0 src/lib/libthr/thread/thr_private.h 1.4 +10 -0 src/lib/libthr/thread/thr_spinlock.c From owner-cvs-all@FreeBSD.ORG Sun May 25 01:48:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7AF837B401; Sun, 25 May 2003 01:48:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8778143F3F; Sun, 25 May 2003 01:48:42 -0700 (PDT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4P8mg0U056364; Sun, 25 May 2003 01:48:42 -0700 (PDT) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4P8mgq4056363; Sun, 25 May 2003 01:48:42 -0700 (PDT) Message-Id: <200305250848.h4P8mgq4056363@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 25 May 2003 01:48:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_alq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 08:48:43 -0000 jeff 2003/05/25 01:48:42 PDT FreeBSD src repository Modified files: sys/kern kern_alq.c Log: - Reset the free ent to NULL if we have consumed the last free entry. This fixes a problem where we would overwrite old data if we ran out of free entries. Submitted by: sam Approved by: re (scottl) Revision Changes Path 1.6 +2 -0 src/sys/kern/kern_alq.c From owner-cvs-all@FreeBSD.ORG Sun May 25 03:08:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8291837B401; Sun, 25 May 2003 03:08:04 -0700 (PDT) Received: from yello.shallow.net (yello.shallow.net [203.18.243.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id B93C143F93; Sun, 25 May 2003 03:08:03 -0700 (PDT) (envelope-from joshua@shallow.net) Received: by yello.shallow.net (Postfix, from userid 1001) id E9A1A29BA; Sun, 25 May 2003 20:08:02 +1000 (EST) Date: Sun, 25 May 2003 20:08:02 +1000 From: Joshua Goodall To: Mark Murray Message-ID: <20030525100802.GB505@roughtrade.net> References: <200301282234.h0SMYLh3071640@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200301282234.h0SMYLh3071640@repoman.freebsd.org> User-Agent: Mutt/1.5.3i cc: cvs-all@FreeBSD.org cc: cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssl/apps openssl.cnf speed.c src/crypto/openssl/crypto/des des.h src/crypto/openssl/crypto/err err_all.c src/crypto/openssl/crypto/evp evp.h src/crypto/openssl/crypto/idea Makefile.ssl i_cbc.c i_cfb64.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 10:08:04 -0000 On Tue, Jan 28, 2003 at 02:34:21PM -0800, Mark Murray wrote: > markm 2003/01/28 14:34:21 PST > > Modified files: > crypto/openssl/apps openssl.cnf speed.c [snip] Any change that openssl.cnf could gain a $FreeBSD$ to silence mergemaster? J From owner-cvs-all@FreeBSD.ORG Sun May 25 06:53:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B84AA37B401; Sun, 25 May 2003 06:53:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63F8843FE1; Sun, 25 May 2003 06:53:14 -0700 (PDT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PDrD0U076999; Sun, 25 May 2003 06:53:14 -0700 (PDT) (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PDrDjQ076998; Sun, 25 May 2003 06:53:13 -0700 (PDT) Message-Id: <200305251353.h4PDrDjQ076998@repoman.freebsd.org> From: Stephane Legrand Date: Sun, 25 May 2003 06:53:13 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/java/dists 10.sgml 11.sgml 12.sgml 13.sgml 14.sgml Makefile index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 13:53:15 -0000 stephane 2003/05/25 06:53:13 PDT FreeBSD doc repository Added files: fr/java/dists 10.sgml 11.sgml 12.sgml 13.sgml 14.sgml Makefile index.sgml Log: New translations. fr/java/dists/10.sgml: MFen 1.4 fr/java/dists/11.sgml: MFen 1.7 fr/java/dists/12.sgml: MFen 1.16 fr/java/dists/13.sgml: MFen 1.12 fr/java/dists/14.sgml: MFen 1.4 fr/java/dists/index.sgml: MFen 1.6 fr/java/dists/Makefile: MFen 1.5 Revision Changes Path 1.1 +66 -0 www/fr/java/dists/10.sgml (new) 1.1 +125 -0 www/fr/java/dists/11.sgml (new) 1.1 +94 -0 www/fr/java/dists/12.sgml (new) 1.1 +230 -0 www/fr/java/dists/13.sgml (new) 1.1 +57 -0 www/fr/java/dists/14.sgml (new) 1.1 +20 -0 www/fr/java/dists/Makefile (new) 1.1 +54 -0 www/fr/java/dists/index.sgml (new) From owner-cvs-all@FreeBSD.ORG Sun May 25 07:36:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511EF37B401; Sun, 25 May 2003 07:36:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E240843FA3; Sun, 25 May 2003 07:36:53 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PEar0U079428; Sun, 25 May 2003 07:36:53 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PEarr9079427; Sun, 25 May 2003 07:36:53 -0700 (PDT) Message-Id: <200305251436.h4PEarr9079427@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 25 May 2003 07:36:53 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:36:54 -0000 blackend 2003/05/25 07:36:53 PDT FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/install chapter.sgml Log: MFen 1.242 --> 1.246 Revision Changes Path 1.13 +32 -9 doc/fr_FR.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 07:37:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4340C37B401; Sun, 25 May 2003 07:37:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F11843F75; Sun, 25 May 2003 07:37:41 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PEbf0U079492; Sun, 25 May 2003 07:37:41 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PEbeGS079491; Sun, 25 May 2003 07:37:40 -0700 (PDT) Message-Id: <200305251437.h4PEbeGS079491@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 25 May 2003 07:37:40 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/basics chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:37:42 -0000 blackend 2003/05/25 07:37:40 PDT FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/basics chapter.sgml fr_FR.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Update some id attributes to allow the build. Revision Changes Path 1.4 +5 -5 doc/fr_FR.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.8 +2 -2 doc/fr_FR.ISO8859-1/books/handbook/basics/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 07:39:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 303B737B401; Sun, 25 May 2003 07:39:52 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8051743FA3; Sun, 25 May 2003 07:39:51 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4PEZLZ00578; Sun, 25 May 2003 07:35:21 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id HAA02816; Sun, 25 May 2003 07:39:43 -0700 (PDT) Message-ID: <3ED0D5CC.6030609@btc.adaptec.com> Date: Sun, 25 May 2003 08:40:12 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.3.1) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hiten Pandya References: <200305241819.h4OIJC85090502@repoman.freebsd.org> In-Reply-To: <200305241819.h4OIJC85090502@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 vnode.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:39:52 -0000 Hiten Pandya wrote: > hmp 2003/05/24 11:19:12 PDT > > FreeBSD src repository (doc committer) > > Modified files: > share/man/man9 vnode.9 > Log: > Bring vnode(9) man page to its senses: > > - remove '-*- nroff -*-' I've got say that when Bruce and I reviewed this request that both of us missed this particular change. I apologize for overlooking this, and I ask that you explain why this change is neccessary for 5.1. Scott From owner-cvs-all@FreeBSD.ORG Sun May 25 07:45:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D6A37B401; Sun, 25 May 2003 07:45:42 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id F360D43FB1; Sun, 25 May 2003 07:45:41 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 746F4530E; Sun, 25 May 2003 16:45:38 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Scott Long References: <200305241819.h4OIJC85090502@repoman.freebsd.org> <3ED0D5CC.6030609@btc.adaptec.com> From: Dag-Erling Smorgrav Date: Sun, 25 May 2003 16:45:38 +0200 In-Reply-To: <3ED0D5CC.6030609@btc.adaptec.com> (Scott Long's message of "Sun, 25 May 2003 08:40:12 -0600") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: Hiten Pandya cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 vnode.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:45:43 -0000 Scott Long writes: > I've got say that when Bruce and I reviewed this request that > both of us missed this particular change. I apologize for > overlooking this, and I ask that you explain why this change > is neccessary for 5.1. It was in the patch because I asked Hiten to do it. It has nothing to do with 5.1; it's just one of those "while I'm here" things. Now please, I'm sure you have better things to do than participate in this kind of witch hunt. DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Sun May 25 07:54:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30B8637B401; Sun, 25 May 2003 07:54:56 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4518E43F93; Sun, 25 May 2003 07:54:54 -0700 (PDT) (envelope-from hmp@nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1072) id 92E1520F00; Sun, 25 May 2003 07:54:53 -0700 (PDT) Date: Sun, 25 May 2003 07:54:53 -0700 From: Hiten Pandya To: Scott Long Message-ID: <20030525145453.GA9367@perrin.int.nxad.com> References: <200305241819.h4OIJC85090502@repoman.freebsd.org> <3ED0D5CC.6030609@btc.adaptec.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3ED0D5CC.6030609@btc.adaptec.com> X-Operating-System: FreeBSD FreeBSD 4.7-STABLE User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: des@FreeBSD.ORG cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 vnode.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:54:56 -0000 On Sun, May 25, 2003 at 08:40:12AM -0600, Scott Long wrote: > Hiten Pandya wrote: > >hmp 2003/05/24 11:19:12 PDT > > > > FreeBSD src repository (doc committer) > > > > Modified files: > > share/man/man9 vnode.9 > > Log: > > Bring vnode(9) man page to its senses: > > > > - remove '-*- nroff -*-' > > I've got say that when Bruce and I reviewed this request that > both of us missed this particular change. I apologize for > overlooking this, and I ask that you explain why this change > is neccessary for 5.1. Sigh, this is pointless. Repeating the same thing over, and over, and over again. We should from now onwards start putting markup indicators for other editors (sarcasm). I don't see a point in making a seperate commit for just removing this line. Also, the patch was sent to arch@, and no one complained then. If it upsets everyone SO MUCH over a markup indicator line, then I will back out the commit. -- Hiten (hmp@FreeBSD.ORG) From owner-cvs-all@FreeBSD.ORG Sun May 25 07:56:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33BC437B401; Sun, 25 May 2003 07:56:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 870C943FB1; Sun, 25 May 2003 07:56:04 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PEu40U080194; Sun, 25 May 2003 07:56:04 -0700 (PDT) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PEu4K3080193; Sun, 25 May 2003 07:56:04 -0700 (PDT) Message-Id: <200305251456.h4PEu4K3080193@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 25 May 2003 07:56:04 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man8 Makefile bsdlabel.8 disklabel.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 14:56:05 -0000 horikawa 2003/05/25 07:56:04 PDT FreeBSD doc repository Modified files: ja_JP.eucJP/man/man8 Makefile Added files: ja_JP.eucJP/man/man8 bsdlabel.8 Removed files: ja_JP.eucJP/man/man8 disklabel.8 Log: New Japanese translation based on disklabel.8 Submitted by: Yoshiteru Kageyama Revision Changes Path 1.55 +1 -1 doc/ja_JP.eucJP/man/man8/Makefile 1.1 +480 -0 doc/ja_JP.eucJP/man/man8/bsdlabel.8 (new) 1.36 +0 -987 doc/ja_JP.eucJP/man/man8/disklabel.8 (dead) From owner-cvs-all@FreeBSD.ORG Sun May 25 08:11:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B4C037B401; Sun, 25 May 2003 08:11:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 394C643F75; Sun, 25 May 2003 08:11:49 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PFBn0U081729; Sun, 25 May 2003 08:11:49 -0700 (PDT) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PFBmnc081728; Sun, 25 May 2003 08:11:48 -0700 (PDT) Message-Id: <200305251511.h4PFBmnc081728@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 25 May 2003 08:11:48 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man8 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 15:11:50 -0000 horikawa 2003/05/25 08:11:48 PDT FreeBSD doc repository Modified files: ja_JP.eucJP/man/man8 Makefile Log: MLINK entry: disklabel.8 -> bsdlabel.8 Revision Changes Path 1.56 +1 -0 doc/ja_JP.eucJP/man/man8/Makefile From owner-cvs-all@FreeBSD.ORG Sun May 25 08:27:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B823A37B401; Sun, 25 May 2003 08:27:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53E2643F85; Sun, 25 May 2003 08:27:11 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PFRB0U082230; Sun, 25 May 2003 08:27:11 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PFRBTH082229; Sun, 25 May 2003 08:27:11 -0700 (PDT) Message-Id: <200305251527.h4PFRBTH082229@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 25 May 2003 08:27:11 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/desktop chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 15:27:12 -0000 blackend 2003/05/25 08:27:11 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/desktop chapter.sgml Log: Add missing bits from previous commit. Revision Changes Path 1.24 +3 -2 doc/en_US.ISO8859-1/books/handbook/desktop/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 09:04:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F11F37B404; Sun, 25 May 2003 09:04:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68E8C43F93; Sun, 25 May 2003 09:04:43 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PG4h0U089624; Sun, 25 May 2003 09:04:43 -0700 (PDT) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PG4gUu089623; Sun, 25 May 2003 09:04:42 -0700 (PDT) Message-Id: <200305251604.h4PG4gUu089623@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 25 May 2003 09:04:42 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man5 groff_tmac.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 16:04:44 -0000 horikawa 2003/05/25 09:04:42 PDT FreeBSD doc repository Modified files: ja_JP.eucJP/man/man5 groff_tmac.5 Log: Update to the version based on Groff Version 1.19 Submitted by: SUZUKI Koichi Revision Changes Path 1.6 +1163 -360 doc/ja_JP.eucJP/man/man5/groff_tmac.5 From owner-cvs-all@FreeBSD.ORG Sun May 25 09:26:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0400837B401; Sun, 25 May 2003 09:26:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 952F443F75; Sun, 25 May 2003 09:26:51 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PGQp0U090434; Sun, 25 May 2003 09:26:51 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PGQpKT090433; Sun, 25 May 2003 09:26:51 -0700 (PDT) Message-Id: <200305251626.h4PGQpKT090433@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 25 May 2003 09:26:51 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/desktop chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 16:26:52 -0000 blackend 2003/05/25 09:26:51 PDT FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/desktop chapter.sgml Log: MFen 1.18 --> 1.24 Revision Changes Path 1.7 +22 -18 doc/fr_FR.ISO8859-1/books/handbook/desktop/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 09:57:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DE3637B401; Sun, 25 May 2003 09:57:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1FB543F3F; Sun, 25 May 2003 09:57:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PGvA0U091538; Sun, 25 May 2003 09:57:10 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PGvAZV091537; Sun, 25 May 2003 09:57:10 -0700 (PDT) Message-Id: <200305251657.h4PGvAZV091537@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 25 May 2003 09:57:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 16:57:11 -0000 phk 2003/05/25 09:57:10 PDT FreeBSD src repository Modified files: sys/geom geom_disk.c Log: Don't do silly thing if the disk_create() event gets canceled. Approved by: re/scottl Revision Changes Path 1.72 +3 -1 src/sys/geom/geom_disk.c From owner-cvs-all@FreeBSD.ORG Sun May 25 11:18:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B80637B401; Sun, 25 May 2003 11:18:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF83343FBD; Sun, 25 May 2003 11:18:32 -0700 (PDT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PIIW0U096156; Sun, 25 May 2003 11:18:32 -0700 (PDT) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PIIW5j096155; Sun, 25 May 2003 11:18:32 -0700 (PDT) Message-Id: <200305251818.h4PIIW5j096155@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 25 May 2003 11:18:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_umtx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 18:18:33 -0000 jeff 2003/05/25 11:18:32 PDT FreeBSD src repository Modified files: sys/kern kern_umtx.c Log: - Create a new lock, umtx_lock, for use instead of the proc lock for protecting the umtx queues. We can't use the proc lock because we need to hold the lock across calls to casuptr, which can fault. Approved by: re Revision Changes Path 1.3 +13 -6 src/sys/kern/kern_umtx.c From owner-cvs-all@FreeBSD.ORG Sun May 25 12:03:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 952F837B401; Sun, 25 May 2003 12:03:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D0D43F93; Sun, 25 May 2003 12:03:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PJ390U098643; Sun, 25 May 2003 12:03:09 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PJ38uc098642; Sun, 25 May 2003 12:03:08 -0700 (PDT) Message-Id: <200305251903.h4PJ38uc098642@repoman.freebsd.org> From: Peter Wemm Date: Sun, 25 May 2003 12:03:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_sbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 19:03:10 -0000 peter 2003/05/25 12:03:08 PDT FreeBSD src repository Modified files: sys/kern subr_sbuf.c Log: Copy the va_list in sbuf_vprintf() before passing it to vsnprintf(), because we could fail due to a small buffer and loop and rerun. If this happens, then the vsnprintf() will have already taken the arguments off the va_list. For i386 and others, this doesn't matter because the va_list type is a passed as a copy. But on powerpc and amd64, this is fatal because the va_list is a reference to an external structure that keeps the vararg state due to the more complicated argument passing system. On amd64, arguments can be passed as follows: First 6 int/pointer type arguments go in registers, the rest go on the memory stack. Float and double are similar, except using SSE registers. long double (80 bit precision) are similar except using the x87 stack. Where the 'next argument' comes from depends on how many have been processed so far and what type it is. For amd64, gcc keeps this state somewhere that is referenced by the va_list. I found a description that showed the va_copy was required here: http://mirrors.ccs.neu.edu/cgi-bin/unixhelp/man-cgi?va_end+9 The single unix spec doesn't mention va_copy() at all. Anyway, the problem was that the sysctl kern.geom.conf* nodes would panic due to walking off the end of the va_arg lists in vsnprintf. A better fix would be to have sbuf_vprintf() use a single pass and call kvprintf() with a callback function that stored the results and grew the buffer as needed. Approved by: re (scottl) Revision Changes Path 1.24 +4 -1 src/sys/kern/subr_sbuf.c From owner-cvs-all@FreeBSD.ORG Sun May 25 12:23:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEF5937B401; Sun, 25 May 2003 12:23:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 617A043FAF; Sun, 25 May 2003 12:23:22 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PJNM0U099406; Sun, 25 May 2003 12:23:22 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PJNM0X099405; Sun, 25 May 2003 12:23:22 -0700 (PDT) Message-Id: <200305251923.h4PJNM0X099405@repoman.freebsd.org> From: Ceri Davies Date: Sun, 25 May 2003 12:23:22 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook book.sgml doc/en_US.ISO8859-1/books/handbook/multimediachapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 19:23:23 -0000 ceri 2003/05/25 12:23:22 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook book.sgml en_US.ISO8859-1/books/handbook/multimedia chapter.sgml en_US.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml Log: Correct some spelling errors; translators may ignore this commit. Obtained from: "make spellcheck" Revision Changes Path 1.133 +1 -1 doc/en_US.ISO8859-1/books/handbook/book.sgml 1.50 +1 -1 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml 1.108 +2 -2 doc/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 12:24:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 470B437B401; Sun, 25 May 2003 12:24:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D97C043F3F; Sun, 25 May 2003 12:24:06 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PJO60U099449; Sun, 25 May 2003 12:24:06 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PJO6Cb099448; Sun, 25 May 2003 12:24:06 -0700 (PDT) Message-Id: <200305251924.h4PJO6Cb099448@repoman.freebsd.org> From: Ceri Davies Date: Sun, 25 May 2003 12:24:06 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mail chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 19:24:07 -0000 ceri 2003/05/25 12:24:06 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Remove an asterix that uglifies the output. Revision Changes Path 1.77 +1 -1 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 13:04:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E227037B401; Sun, 25 May 2003 13:04:43 -0700 (PDT) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1DB443F75; Sun, 25 May 2003 13:04:42 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by haakonia.hitnet.rwth-aachen.de (Postfix) with ESMTP id 9B67AC1DC; Sun, 25 May 2003 22:04:38 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id E6903470B; Sun, 25 May 2003 22:04:37 +0200 (CEST) Date: Sun, 25 May 2003 22:04:37 +0200 From: Christian Brueffer To: Marc Fonvieille Message-ID: <20030525200437.GB600@unixpages.org> References: <200305212033.h4LKXb2M057968@repoman.freebsd.org> <20030523190458.GF3794@nosferatu.blackend.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BwCQnh7xodEAoBMC" Content-Disposition: inline In-Reply-To: <20030523190458.GF3794@nosferatu.blackend.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-BETA X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/backups chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 20:04:44 -0000 --BwCQnh7xodEAoBMC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 23, 2003 at 09:04:58PM +0200, Marc Fonvieille wrote: > On Wed, May 21, 2003 at 01:33:37PM -0700, Christian Brueffer wrote: > > brueffer 2003/05/21 13:33:37 PDT > >=20 > > FreeBSD doc repository > >=20 > > Modified files: > > en_US.ISO8859-1/books/handbook/backups chapter.sgml=20 >=20 > heh this file is not used anymore :) it was merged in > disks/chapter.sgml > Someone just forgot to do a cvs rm >=20 Uh, and I wondered why the changes didn't show up on the website :-) Thanks for the notice. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --BwCQnh7xodEAoBMC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+0SHVbHYXjKDtmC0RAq8zAJ4s+Nl1GfDq4R8NGsYwxn/yYL8bxQCgwGyt VmlKATyILDWOpqDbLFmNfNw= =pzh2 -----END PGP SIGNATURE----- --BwCQnh7xodEAoBMC-- From owner-cvs-all@FreeBSD.ORG Sun May 25 13:06:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CACDC37B401; Sun, 25 May 2003 13:06:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09FAB43F75; Sun, 25 May 2003 13:06:58 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PK6v0U007199; Sun, 25 May 2003 13:06:57 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PK6vMU007198; Sun, 25 May 2003 13:06:57 -0700 (PDT) Message-Id: <200305252006.h4PK6vMU007198@repoman.freebsd.org> From: Christian Brueffer Date: Sun, 25 May 2003 13:06:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.bin/logger logger.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 20:06:59 -0000 brueffer 2003/05/25 13:06:57 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) usr.bin/logger logger.1 Log: MFC 1.14 Clarify the describtion of the -A switch PR: 51187 Submitted by: Jeff Ito Revision Changes Path 1.4.2.8 +3 -1 src/usr.bin/logger/logger.1 From owner-cvs-all@FreeBSD.ORG Sun May 25 13:18:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 581EF37B401; Sun, 25 May 2003 13:18:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8C7643F93; Sun, 25 May 2003 13:18:53 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PKIr0U007603; Sun, 25 May 2003 13:18:53 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PKIr1P007602; Sun, 25 May 2003 13:18:53 -0700 (PDT) Message-Id: <200305252018.h4PKIr1P007602@repoman.freebsd.org> From: Christian Brueffer Date: Sun, 25 May 2003 13:18:53 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 20:18:54 -0000 brueffer 2003/05/25 13:18:53 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: Replace a broken link PR: 52500 Submitted by: Julien Gabel Revision Changes Path 1.169 +1 -1 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 14:16:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AB8837B401; Sun, 25 May 2003 14:16:44 -0700 (PDT) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4757243F3F; Sun, 25 May 2003 14:16:43 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from master.dougb.net (12-234-22-23.client.attbi.com[12.234.22.23]) by attbi.com (sccrmhc02) with SMTP id <20030525211642002002mrf0e>; Sun, 25 May 2003 21:16:42 +0000 Date: Sun, 25 May 2003 14:16:41 -0700 (PDT) From: Doug Barton To: Joshua Goodall In-Reply-To: <20030525100802.GB505@roughtrade.net> Message-ID: <20030525141604.J748@znfgre.qbhto.arg> References: <200301282234.h0SMYLh3071640@repoman.freebsd.org> <20030525100802.GB505@roughtrade.net> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Mark Murray cc: cvs-all@FreeBSD.org cc: cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssl/apps openssl.cnf speed.cerr_all.c src/crypto/openssl/crypto/evp evp.h src/crypto/openssl/crypto/id X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:16:44 -0000 On Sun, 25 May 2003, Joshua Goodall wrote: > On Tue, Jan 28, 2003 at 02:34:21PM -0800, Mark Murray wrote: > > markm 2003/01/28 14:34:21 PST > > > > Modified files: > > crypto/openssl/apps openssl.cnf speed.c > [snip] > > Any change that openssl.cnf could gain a $FreeBSD$ to silence mergemaster? I got approval from Mark to do this a while back, and didn't get it in before the freeze. It's on my list to do after 5.1-Release is cut. -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Sun May 25 14:19:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74F1937B404 for ; Sun, 25 May 2003 14:19:31 -0700 (PDT) Received: from mail26d.sbc-webhosting.com (mail26d.sbc-webhosting.com [216.173.237.167]) by mx1.FreeBSD.org (Postfix) with SMTP id B289043F93 for ; Sun, 25 May 2003 14:19:29 -0700 (PDT) (envelope-from alc@imimic.com) Received: from www.imimic.com (64.143.12.21)0445967557; Sun, 25 May 2003 17:19:17 -0400 (EDT) Sender: alc@FreeBSD.ORG Message-ID: <3ED13356.652D9C44@imimic.com> Date: Sun, 25 May 2003 16:19:18 -0500 From: "Alan L. Cox" Organization: iMimic Networking, Inc. X-Mailer: Mozilla 4.8 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: Jeff Roberson References: <200305251818.h4PIIW5j096155@repoman.freebsd.org> Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit X-Loop-Detect: 1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_umtx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:19:32 -0000 Jeff Roberson wrote: > > jeff 2003/05/25 11:18:32 PDT > > FreeBSD src repository > > Modified files: > sys/kern kern_umtx.c > Log: > - Create a new lock, umtx_lock, for use instead of the proc lock for > protecting the umtx queues. We can't use the proc lock because we need > to hold the lock across calls to casuptr, which can fault. > > Approved by: re > > Revision Changes Path > 1.3 +13 -6 src/sys/kern/kern_umtx.c In general, we can sleep on a fault. Thus, you could be holding this mutex at the time of a sleep. Alan From owner-cvs-all@FreeBSD.ORG Sun May 25 14:23:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C00D37B401; Sun, 25 May 2003 14:23:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 191AD43F75; Sun, 25 May 2003 14:23:09 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PLN80U011084; Sun, 25 May 2003 14:23:08 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PLN8vF011083; Sun, 25 May 2003 14:23:08 -0700 (PDT) Message-Id: <200305252123.h4PLN8vF011083@repoman.freebsd.org> From: Ceri Davies Date: Sun, 25 May 2003 14:23:08 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/pr-guidelines article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:23:09 -0000 ceri 2003/05/25 14:23:08 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pr-guidelines article.sgml Log: Various grammatical improvements. Revision Changes Path 1.11 +16 -16 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 14:23:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CD2937B401; Sun, 25 May 2003 14:23:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF2B743F93; Sun, 25 May 2003 14:23:57 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PLNv0U011122; Sun, 25 May 2003 14:23:57 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PLNvZC011121; Sun, 25 May 2003 14:23:57 -0700 (PDT) Message-Id: <200305252123.h4PLNvZC011121@repoman.freebsd.org> From: Ceri Davies Date: Sun, 25 May 2003 14:23:57 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/pr-guidelines article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:23:58 -0000 ceri 2003/05/25 14:23:57 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pr-guidelines article.sgml Log: Use the -x option to query-pr rather than ungrepping for "closed". Revision Changes Path 1.12 +1 -1 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml From owner-cvs-all@FreeBSD.ORG Sun May 25 14:46:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9115637B401; Sun, 25 May 2003 14:46:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 310B743F3F; Sun, 25 May 2003 14:46:23 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PLkN0U011940; Sun, 25 May 2003 14:46:23 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PLkMeS011939; Sun, 25 May 2003 14:46:22 -0700 (PDT) Message-Id: <200305252146.h4PLkMeS011939@repoman.freebsd.org> From: Wilko Bulte Date: Sun, 25 May 2003 14:46:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access.doc_src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:46:23 -0000 wilko 2003/05/25 14:46:22 PDT FreeBSD src repository Modified files: . access.doc_src Log: Take keramida's commit bit for safe keeping in the core vault. He requested this due to his 1 year military service in the Greek army, due to start May 27. With hat: core-secretary Revision Changes Path 1.27 +0 -1 CVSROOT/access.doc_src From owner-cvs-all@FreeBSD.ORG Sun May 25 14:59:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D4B037B401; Sun, 25 May 2003 14:59:30 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8D3143F3F; Sun, 25 May 2003 14:59:28 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 889AE530E; Sun, 25 May 2003 23:59:25 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm References: <200305251903.h4PJ38uc098642@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 25 May 2003 23:59:25 +0200 In-Reply-To: <200305251903.h4PJ38uc098642@repoman.freebsd.org> (Peter Wemm's message of "Sun, 25 May 2003 12:03:08 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_sbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 21:59:30 -0000 Peter Wemm writes: > I found a description that showed the va_copy was required here: > http://mirrors.ccs.neu.edu/cgi-bin/unixhelp/man-cgi?va_end+9 > The single unix spec doesn't mention va_copy() at all. Does too! http://www.opengroup.org/onlinepubs/007904975/functions/va_arg.html DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Sun May 25 15:40:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0AD037B401; Sun, 25 May 2003 15:40:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B5943F85; Sun, 25 May 2003 15:40:58 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PMew0U014956; Sun, 25 May 2003 15:40:58 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PMewYX014955; Sun, 25 May 2003 15:40:58 -0700 (PDT) Message-Id: <200305252240.h4PMewYX014955@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 15:40:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c src/lib/libthr/arch/ia64/ia64 _curthread.c src/lib/libthr/arch/sparc64/sparc64 _setcurthread.c src/lib/libthr/thread thr_create.c thr_init.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 22:40:59 -0000 mtm 2003/05/25 15:40:57 PDT FreeBSD src repository Modified files: lib/libthr/arch/i386/i386 _setcurthread.c lib/libthr/arch/ia64/ia64 _curthread.c lib/libthr/arch/sparc64/sparc64 _setcurthread.c lib/libthr/thread thr_create.c thr_init.c thr_private.h Log: Return gracefully, rather than aborting, when the maximum concurrent threads per process has been reached. Return EAGAIN, as per spec. Approved by: re/blanket libthr Revision Changes Path 1.8 +8 -3 src/lib/libthr/arch/i386/i386/_setcurthread.c 1.3 +2 -2 src/lib/libthr/arch/ia64/ia64/_curthread.c 1.3 +2 -2 src/lib/libthr/arch/sparc64/sparc64/_setcurthread.c 1.8 +12 -1 src/lib/libthr/thread/thr_create.c 1.7 +2 -1 src/lib/libthr/thread/thr_init.c 1.13 +1 -1 src/lib/libthr/thread/thr_private.h From owner-cvs-all@FreeBSD.ORG Sun May 25 16:34:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D8C337B401; Sun, 25 May 2003 16:34:36 -0700 (PDT) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6642443F3F; Sun, 25 May 2003 16:34:35 -0700 (PDT) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h4PNYYc53810; Sun, 25 May 2003 19:34:34 -0400 (EDT) (envelope-from jroberson@chesapeake.net) Date: Sun, 25 May 2003 19:34:34 -0400 (EDT) From: Jeff Roberson To: "Alan L. Cox" In-Reply-To: <3ED13356.652D9C44@imimic.com> Message-ID: <20030525193333.Q69975-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_umtx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 23:34:37 -0000 On Sun, 25 May 2003, Alan L. Cox wrote: > Jeff Roberson wrote: > > > > jeff 2003/05/25 11:18:32 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_umtx.c > > Log: > > - Create a new lock, umtx_lock, for use instead of the proc lock for > > protecting the umtx queues. We can't use the proc lock because we need > > to hold the lock across calls to casuptr, which can fault. > > > > Approved by: re > > > > Revision Changes Path > > 1.3 +13 -6 src/sys/kern/kern_umtx.c > > In general, we can sleep on a fault. Thus, you could be holding this > mutex at the time of a sleep. > That was just pointed out to me. This patch at least makes things slightly more correct. I'm going to have to look at the problem a little closer to see if I can implement this code without holding a lock across the casuptr. otherwise I'll have to use sx. Cheers, Jeff From owner-cvs-all@FreeBSD.ORG Sun May 25 16:36:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0BF437B401; Sun, 25 May 2003 16:35:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B2C343F75; Sun, 25 May 2003 16:35:58 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4PNZv0U018288; Sun, 25 May 2003 16:35:57 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4PNZvfn018287; Sun, 25 May 2003 16:35:57 -0700 (PDT) Message-Id: <200305252335.h4PNZvfn018287@repoman.freebsd.org> From: Martin Heinen Date: Sun, 25 May 2003 16:35:57 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/advanced-networking chapter.sgml doc/de_DE.ISO8859-1/books/handbook/bootchapter.sgml doc/de_DE.ISO8859-1/books/handbook Makefile book.sgml doc/de_DE.ISO8859-1/share/sgml catalog freebsd.dsl ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 23:36:01 -0000 mheinen 2003/05/25 16:35:57 PDT FreeBSD doc repository Modified files: de_DE.ISO8859-1/books/handbook/advanced-networking chapter.sgml de_DE.ISO8859-1/books/handbook/boot chapter.sgml de_DE.ISO8859-1/books/handbook/basics chapter.sgml de_DE.ISO8859-1/books/handbook book.sgml Makefile de_DE.ISO8859-1/share/sgml freebsd.dsl catalog mailing-lists.ent de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml de_DE.ISO8859-1/books/handbook/ports chapter.sgml de_DE.ISO8859-1/books/handbook/desktop chapter.sgml de_DE.ISO8859-1/books/handbook/bibliography chapter.sgml de_DE.ISO8859-1/books/handbook/disks chapter.sgml de_DE.ISO8859-1/books/handbook/cutting-edge chapter.sgml de_DE.ISO8859-1/books/handbook/introduction chapter.sgml de_DE.ISO8859-1/books/faq book.sgml de_DE.ISO8859-1/books/handbook/mirrors chapter.sgml de_DE.ISO8859-1/books/handbook/linuxemu chapter.sgml de_DE.ISO8859-1/books/handbook/security chapter.sgml de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml de_DE.ISO8859-1/books/handbook/mail chapter.sgml de_DE.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml de_DE.ISO8859-1/books/handbook/l10n chapter.sgml de_DE.ISO8859-1/books/handbook/printing chapter.sgml de_DE.ISO8859-1/books/handbook/config chapter.sgml de_DE.ISO8859-1/books/handbook/x11 chapter.sgml de_DE.ISO8859-1/books/handbook/eresources chapter.sgml de_DE.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: MFbed: Content update and various fixes. books/handbook/advanced-networking/chapter.sgml 1.206 -> 1.216 books/handbook/boot/chapter.sgml fixes only books/handbook/basics/chapter.sgml fixes only books/handbook/book.sgml 1.131 -> 1.132 share/sgml/freebsd.dsl header update books/handbook/kernelconfig/chapter.sgml 1.106 -> 1.111 books/handbook/ports/chapter.sgml 1.185 -> 1.186 books/handbook/desktop/chapter.sgml fixes only books/handbook/bibliography/chapter.sgml 1.49 -> 1.50 books/handbook/disks/chapter.sgml 1.145 -> 1.149 books/handbook/cutting-edge/chapter.sgml fixes only share/sgml/catalog header update books/faq/book.sgml 1.532 -> 1.538 books/handbook/Makefile add images books/handbook/mirrors/chapter.sgml 1.291 -> 1.294 books/handbook/linuxemu/chapter.sgml 1.86 -> 1.87 books/handbook/security/chapter.sgml 1.143 -> 1.148 books/handbook/serialcomms/chapter.sgml 1.73 -> 1.76 books/handbook/mail/chapter.sgml fixes only books/handbook/ppp-and-slip/chapter.sgml 1.102 -> 1.104 books/handbook/l10n/chapter.sgml 1.88 -> 1.89 books/handbook/printing/chapter.sgml 1.67 -> 1.68 books/handbook/config/chapter.sgml 1.88 -> 1.90 books/handbook/x11/chapter.sgml 1.108 -> 1.110 share/sgml/mailing-lists.ent 1.20 -> 1.24 books/handbook/eresources/chapter.sgml 1.119 -> 1.122 books/handbook/pgpkeys/chapter.sgml 1.190 -> 1.192 New translations: books/handbook/introduction/chapter.sgml Submitted by: Sascha Edelburg books/handbook/advanced-networking/chapter.sgml New sections "ISDN" and "diskless". Submitted by: Johann Kois Revision Changes Path 1.41 +161 -3 doc/de_DE.ISO8859-1/books/faq/book.sgml 1.19 +5 -1 doc/de_DE.ISO8859-1/books/handbook/Makefile 1.11 +996 -33 doc/de_DE.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.22 +3 -3 doc/de_DE.ISO8859-1/books/handbook/basics/chapter.sgml 1.17 +4 -4 doc/de_DE.ISO8859-1/books/handbook/bibliography/chapter.sgml 1.31 +2 -2 doc/de_DE.ISO8859-1/books/handbook/book.sgml 1.17 +3 -3 doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml 1.21 +12 -6 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml 1.19 +8 -6 doc/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 1.11 +3 -3 doc/de_DE.ISO8859-1/books/handbook/desktop/chapter.sgml 1.27 +352 -7 doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml 1.13 +3 -8 doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml 1.3 +1189 -8 doc/de_DE.ISO8859-1/books/handbook/introduction/chapter.sgml 1.20 +79 -23 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.15 +4 -3 doc/de_DE.ISO8859-1/books/handbook/l10n/chapter.sgml 1.11 +4 -3 doc/de_DE.ISO8859-1/books/handbook/linuxemu/chapter.sgml 1.14 +3 -3 doc/de_DE.ISO8859-1/books/handbook/mail/chapter.sgml 1.22 +26 -27 doc/de_DE.ISO8859-1/books/handbook/mirrors/chapter.sgml 1.8 +12 -2 doc/de_DE.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.20 +3 -8 doc/de_DE.ISO8859-1/books/handbook/ports/chapter.sgml 1.13 +36 -3 doc/de_DE.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml 1.4 +6 -7 doc/de_DE.ISO8859-1/books/handbook/printing/chapter.sgml 1.23 +73 -34 doc/de_DE.ISO8859-1/books/handbook/security/chapter.sgml 1.16 +9 -5 doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.7 +32 -11 doc/de_DE.ISO8859-1/books/handbook/x11/chapter.sgml 1.7 +1 -1 doc/de_DE.ISO8859-1/share/sgml/catalog 1.15 +4 -4 doc/de_DE.ISO8859-1/share/sgml/freebsd.dsl 1.11 +25 -2 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Sun May 25 17:28:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F3DD37B401; Sun, 25 May 2003 17:28:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2C1843F3F; Sun, 25 May 2003 17:28:49 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q0Sn0U026294; Sun, 25 May 2003 17:28:49 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q0Snff026293; Sun, 25 May 2003 17:28:49 -0700 (PDT) Message-Id: <200305260028.h4Q0Snff026293@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 17:28:49 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 00:28:50 -0000 mtm 2003/05/25 17:28:49 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_join.c Log: Revise the unlock order in _pthread_join(). Also, if the joined thread is not dead, the join loop is guaranteed to execute at least once, so there is no need to pick up the thread list lock after we return from suspenstion only to release it after the loop. Approved by: re/blanket libthr Revision Changes Path 1.6 +6 -12 src/lib/libthr/thread/thr_join.c From owner-cvs-all@FreeBSD.ORG Sun May 25 17:37:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6B7337B401; Sun, 25 May 2003 17:37:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81D3943F85; Sun, 25 May 2003 17:37:08 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q0b80U026596; Sun, 25 May 2003 17:37:08 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q0b7XH026595; Sun, 25 May 2003 17:37:07 -0700 (PDT) Message-Id: <200305260037.h4Q0b7XH026595@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 17:37:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_create.c thr_gc.c thr_private.h thr_stack.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 00:37:09 -0000 mtm 2003/05/25 17:37:07 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_create.c thr_gc.c thr_private.h thr_stack.c Log: Decouple the thread stack [de]allocating functions from the 'dead threads list' lock. It's not really necessary and we don't need the added complexity or potential for deadlocks. Approved by: re/blanket libthr Revision Changes Path 1.9 +2 -3 src/lib/libthr/thread/thr_create.c 1.5 +2 -0 src/lib/libthr/thread/thr_gc.c 1.14 +8 -0 src/lib/libthr/thread/thr_private.h 1.3 +4 -4 src/lib/libthr/thread/thr_stack.c From owner-cvs-all@FreeBSD.ORG Sun May 25 21:00:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B061237B401; Sun, 25 May 2003 21:00:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F8BA43F3F; Sun, 25 May 2003 21:00:53 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q40r0U041678; Sun, 25 May 2003 21:00:53 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q40qxI041677; Sun, 25 May 2003 21:00:52 -0700 (PDT) Message-Id: <200305260400.h4Q40qxI041677@repoman.freebsd.org> From: Scott Long Date: Sun, 25 May 2003 21:00:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep.c src/sys/i386/include bus_dma.h src/sys/sparc64/include bus.h iommuvar.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 04:00:54 -0000 scottl 2003/05/25 21:00:52 PDT FreeBSD src repository Modified files: sys/alpha/alpha busdma_machdep.c sys/alpha/include bus.h sys/amd64/amd64 busdma_machdep.c sys/amd64/include bus_dma.h sys/i386/i386 busdma_machdep.c sys/i386/include bus_dma.h sys/sparc64/include bus.h iommuvar.h sys/sparc64/pci psycho.c sys/sparc64/sbus sbus.c sys/sparc64/sparc64 iommu.c Log: De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. No need for it to pollute the 5.x API any further. Approved by: re (bmah) Revision Changes Path 1.36 +8 -26 src/sys/alpha/alpha/busdma_machdep.c 1.19 +0 -6 src/sys/alpha/include/bus.h 1.44 +9 -26 src/sys/amd64/amd64/busdma_machdep.c 1.20 +0 -6 src/sys/amd64/include/bus_dma.h 1.44 +9 -26 src/sys/i386/i386/busdma_machdep.c 1.19 +0 -6 src/sys/i386/include/bus_dma.h 1.24 +0 -30 src/sys/sparc64/include/bus.h 1.11 +0 -4 src/sys/sparc64/include/iommuvar.h 1.33 +0 -27 src/sys/sparc64/pci/psycho.c 1.18 +0 -25 src/sys/sparc64/sbus/sbus.c 1.26 +6 -25 src/sys/sparc64/sparc64/iommu.c From owner-cvs-all@FreeBSD.ORG Sun May 25 21:58:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34D8A37B401; Sun, 25 May 2003 21:58:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C860F43F85; Sun, 25 May 2003 21:58:26 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q4wQ0U044507; Sun, 25 May 2003 21:58:26 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q4wQtq044503; Sun, 25 May 2003 21:58:26 -0700 (PDT) Message-Id: <200305260458.h4Q4wQtq044503@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sun, 25 May 2003 21:58:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/usbhidctl usbhid.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 04:58:27 -0000 mdodd 2003/05/25 21:58:26 PDT FreeBSD src repository Modified files: usr.bin/usbhidctl usbhid.c Log: Remove uninitialized local variable in favor of global. PR: bin/52685 Submitted by: Alexander Nedotsukov Approved by: re (scottl) Revision Changes Path 1.9 +1 -2 src/usr.bin/usbhidctl/usbhid.c From owner-cvs-all@FreeBSD.ORG Sun May 25 23:54:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D664F37B401; Sun, 25 May 2003 23:54:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74EB243F85; Sun, 25 May 2003 23:54:03 -0700 (PDT) (envelope-from horikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q6s30U050408; Sun, 25 May 2003 23:54:03 -0700 (PDT) (envelope-from horikawa@repoman.freebsd.org) Received: (from horikawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q6s3AC050407; Sun, 25 May 2003 23:54:03 -0700 (PDT) Message-Id: <200305260654.h4Q6s3AC050407@repoman.freebsd.org> From: Kazuo Horikawa Date: Sun, 25 May 2003 23:54:03 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man7 groff_char.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 06:54:04 -0000 horikawa 2003/05/25 23:54:02 PDT FreeBSD doc repository Modified files: ja_JP.eucJP/man/man7 groff_char.7 Log: Fix a typo Revision Changes Path 1.11 +1 -1 doc/ja_JP.eucJP/man/man7/groff_char.7 From owner-cvs-all@FreeBSD.ORG Mon May 26 02:14:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57BC037B401; Mon, 26 May 2003 02:14:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED35443F3F; Mon, 26 May 2003 02:14:27 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q9ER0U063365; Mon, 26 May 2003 02:14:27 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q9ER3x063364; Mon, 26 May 2003 02:14:27 -0700 (PDT) Message-Id: <200305260914.h4Q9ER3x063364@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 26 May 2003 02:14:27 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 09:14:28 -0000 wilko 2003/05/26 02:14:27 PDT FreeBSD doc repository Modified files: . access Log: Take keramida's commit bit for safe keeping in the core vault. He requested this due to his 1 year military service in the Greek army, due to start May 27. With hat: core-secretary Reminded by: ceri Revision Changes Path 1.478 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon May 26 05:12:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3CF137B401; Mon, 26 May 2003 05:12:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 832B343F85; Mon, 26 May 2003 05:12:45 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QCCj0U077963; Mon, 26 May 2003 05:12:45 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QCCjXK077962; Mon, 26 May 2003 05:12:45 -0700 (PDT) Message-Id: <200305261212.h4QCCjXK077962@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 26 May 2003 05:12:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 12:12:46 -0000 des 2003/05/26 05:12:45 PDT FreeBSD src repository Modified files: tools/tools/tinderbox tbmaster.pl Log: Remember to close the read end of the pipe. Revision Changes Path 1.26 +1 -0 src/tools/tools/tinderbox/tbmaster.pl From owner-cvs-all@FreeBSD.ORG Mon May 26 05:15:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 702DE37B401; Mon, 26 May 2003 05:15:49 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E7E43FAF; Mon, 26 May 2003 05:15:46 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 28730530E; Mon, 26 May 2003 14:15:44 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Scott Long References: <200305260400.h4Q40qxI041677@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 26 May 2003 14:15:44 +0200 In-Reply-To: <200305260400.h4Q40qxI041677@repoman.freebsd.org> (Scott Long's message of "Sun, 25 May 2003 21:00:52 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.c src/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep.c src/sys/i386/include bus_dma.h src/sys/sparc64/include bus.h iommuvar.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 12:15:49 -0000 Scott Long writes: > Log: > De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. > No need for it to pollute the 5.x API any further. Thanks a bunch for breaking sparc64... DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Mon May 26 05:35:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA03937B401; Mon, 26 May 2003 05:35:22 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 697E843FAF; Mon, 26 May 2003 05:35:21 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 13441530E; Mon, 26 May 2003 14:35:20 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Scott Long References: <200305260400.h4Q40qxI041677@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 26 May 2003 14:35:19 +0200 In-Reply-To: (Dag-Erling Smorgrav's message of "Mon, 26 May 2003 14:15:44 +0200") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.c src/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep.c src/sys/i386/include bus_dma.h src/sys/sparc64/include bus.h iommuvar.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 12:35:23 -0000 --=-=-= Dag-Erling Smorgrav writes: > Scott Long writes: > > Log: > > De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. > > No need for it to pollute the 5.x API any further. > Thanks a bunch for breaking sparc64... You'll need (at least) the attached (untested) patch to fix it. DES -- Dag-Erling Smorgrav - des@ofug.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=sparc64.diff Index: sparc64/bus_machdep.c =================================================================== RCS file: /home/ncvs/src/sys/sparc64/sparc64/bus_machdep.c,v retrieving revision 1.27 diff -u -r1.27 bus_machdep.c --- sparc64/bus_machdep.c 10 Apr 2003 23:03:33 -0000 1.27 +++ sparc64/bus_machdep.c 26 May 2003 12:31:23 -0000 @@ -170,12 +170,8 @@ struct uio *, bus_dmamap_callback2_t *, void *, int); static void nexus_dmamap_unload(bus_dma_tag_t, bus_dma_tag_t, bus_dmamap_t); static void nexus_dmamap_sync(bus_dma_tag_t, bus_dma_tag_t, bus_dmamap_t, int); -static int nexus_dmamem_alloc_size(bus_dma_tag_t, bus_dma_tag_t, void **, int, - bus_dmamap_t *, u_long size); static int nexus_dmamem_alloc(bus_dma_tag_t, bus_dma_tag_t, void **, int, bus_dmamap_t *); -static void nexus_dmamem_free_size(bus_dma_tag_t, bus_dma_tag_t, void *, - bus_dmamap_t, u_long size); static void nexus_dmamem_free(bus_dma_tag_t, bus_dma_tag_t, void *, bus_dmamap_t); @@ -228,9 +224,7 @@ newtag->dt_dmamap_load_uio = NULL; newtag->dt_dmamap_unload = NULL; newtag->dt_dmamap_sync = NULL; - newtag->dt_dmamem_alloc_size = NULL; newtag->dt_dmamem_alloc = NULL; - newtag->dt_dmamem_free_size = NULL; newtag->dt_dmamem_free = NULL; /* Take into account any restrictions imposed by our parent tag */ @@ -610,74 +604,18 @@ dmat->dt_map_count--; } -/* - * Common function for DMA-safe memory allocation. May be called - * by bus-specific DMA memory allocation functions. - */ -static int -nexus_dmamem_alloc_size(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void **vaddr, - int flags, bus_dmamap_t *mapp, bus_size_t size) -{ - - if (size > ddmat->dt_maxsize) - return (ENOMEM); - - if ((size <= PAGE_SIZE)) { - *vaddr = malloc(size, M_DEVBUF, - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK); - } else { - /* - * XXX: Use contigmalloc until it is merged into this facility - * and handles multi-seg allocations. Nobody is doing multi-seg - * allocations yet though. - */ - mtx_lock(&Giant); - *vaddr = contigmalloc(size, M_DEVBUF, - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK, - 0ul, ddmat->dt_lowaddr, - ddmat->dt_alignment ? ddmat->dt_alignment : 1UL, - ddmat->dt_boundary); - mtx_unlock(&Giant); - } - if (*vaddr == NULL) { - free(*mapp, M_DEVBUF); - return (ENOMEM); - } - return (0); -} - static int nexus_dmamem_alloc(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void **vaddr, int flags, bus_dmamap_t *mapp) { - return (sparc64_dmamem_alloc_size(pdmat, ddmat, vaddr, flags, mapp, - ddmat->dt_maxsize)); -} - -/* - * Common function for freeing DMA-safe memory. May be called by - * bus-specific DMA memory free functions. - */ -static void -nexus_dmamem_free_size(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void *vaddr, - bus_dmamap_t map, bus_size_t size) -{ - - sparc64_dmamem_free_map(ddmat, map); - if ((size <= PAGE_SIZE)) - free(vaddr, M_DEVBUF); - else { - mtx_lock(&Giant); - contigfree(vaddr, size, M_DEVBUF); - mtx_unlock(&Giant); - } + return (sparc64_dmamem_alloc_size(pdmat, ddmat, vaddr, flags, mapp)); } static void nexus_dmamem_free(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void *vaddr, bus_dmamap_t map) { - sparc64_dmamem_free_size(pdmat, ddmat, vaddr, map, ddmat->dt_maxsize); + sparc64_dmamem_free(pdmat, ddmat, vaddr, map); } struct bus_dma_tag nexus_dmatag = { @@ -703,9 +641,7 @@ nexus_dmamap_unload, nexus_dmamap_sync, - nexus_dmamem_alloc_size, nexus_dmamem_alloc, - nexus_dmamem_free_size, nexus_dmamem_free, }; --=-=-=-- From owner-cvs-all@FreeBSD.ORG Mon May 26 05:35:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8D6037B41D; Mon, 26 May 2003 05:35:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8573043FBF; Mon, 26 May 2003 05:35:35 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QCZZ0U078773; Mon, 26 May 2003 05:35:35 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QCZZVi078772; Mon, 26 May 2003 05:35:35 -0700 (PDT) Message-Id: <200305261235.h4QCZZVi078772@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 26 May 2003 05:35:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.bin/cut cut.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 12:35:36 -0000 hmp 2003/05/26 05:35:35 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) usr.bin/cut cut.1 Log: MFC rev. 1.23: Duplication "from" PR: docs/51724 Submitted by: Christopher Nehren Approved by: des (mentor) Revision Changes Path 1.9.2.5 +1 -1 src/usr.bin/cut/cut.1 From owner-cvs-all@FreeBSD.ORG Mon May 26 05:41:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0172537B401; Mon, 26 May 2003 05:41:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9533E43F3F; Mon, 26 May 2003 05:41:05 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QCf50U079012; Mon, 26 May 2003 05:41:05 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QCf5CW079011; Mon, 26 May 2003 05:41:05 -0700 (PDT) Message-Id: <200305261241.h4QCf5CW079011@repoman.freebsd.org> From: Hiten Pandya Date: Mon, 26 May 2003 05:41:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 amr.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 12:41:06 -0000 hmp 2003/05/26 05:41:05 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man4 amr.4 Log: MFC rev. 1.16: Update amr(4) to note that LSILogic MegaRAID 320-[1/2] cards work with this driver. PR: docs/50139 Submitted by: Jeroen Ruigrok van der Werven (asmodai) Approved by: des (mentor) Revision Changes Path 1.3.2.10 +4 -0 src/share/man/man4/amr.4 From owner-cvs-all@FreeBSD.ORG Mon May 26 06:32:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6459C37B401; Mon, 26 May 2003 06:32:09 -0700 (PDT) Received: from mail.tcoip.com.br (erato.tco.net.br [200.220.254.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id A86C343F93; Mon, 26 May 2003 06:32:06 -0700 (PDT) (envelope-from dcs@tcoip.com.br) Received: from tcoip.com.br ([10.0.2.6]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id h4QDVMl32173; Mon, 26 May 2003 10:31:25 -0300 Message-ID: <3ED21729.20109@tcoip.com.br> Date: Mon, 26 May 2003 10:31:21 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4a) Gecko/20030416 X-Accept-Language: en-us, en, pt-br, ja MIME-Version: 1.0 To: Julian Elischer References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mike Makonnen Subject: Re: cvs commit: src/lib/libthr/thread thr_kern.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 13:32:09 -0000 Julian Elischer wrote: > > On Fri, 23 May 2003, Daniel C. Sobral wrote: > > >>Mike Makonnen wrote: >> >>>On Fri, 23 May 2003 10:45:16 -0300 >>>"Daniel C. Sobral" wrote: >>> >>> >>> >>>>I have had serious troubles between konsole and libthr since ever. Could >>>>this have been the cause? >>>> >>> >>> >>>No, that's unlikely. However, have you tried libthr recently? I've done some >>>locking and fixed a few bugs. I'd also like to know if you've seen any >>>improvements. >> >>Yes, yesterday, and the bug was exactly the same. Something with wait4, >>wait4pid or similar named function. > interesting... we have a similar (but hard to reporduce) > problem with libkse.. maybe its the same one.. FWIW, my problem is trivial to reproduce: I start kde. :-) Whenever I login (xdm login, if that's of any relevance), having replaced libc_r* with libthr*, most of my konsole (of which I have some 30 or 40, as tabs on two different desktops) result in some kind of crash, which is caught by the KDE Crash Handler. I'm updating world to get the backtrace for thr. If you want, I can get the backtrace for kse too. But, really, I'd but amazed if this wasn't trivial to reproduce, since it is so consistent for me. -- Daniel C. Sobral (8-DCS) Gerencia de Operacoes Divisao de Comunicacao de Dados Coordenacao de Seguranca VIVO Centro Oeste Norte Fones: 55-61-313-7654/Cel: 55-61-9618-0904 E-mail: Daniel.Capo@tco.net.br Daniel.Sobral@tcoip.com.br dcs@tcoip.com.br Outros: dcs@newsguy.com dcs@freebsd.org capo@notorious.bsdconspiracy.net Learn from other people's mistakes, you don't have time to make your own. From owner-cvs-all@FreeBSD.ORG Mon May 26 07:07:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93A7A37B404; Mon, 26 May 2003 07:07:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29A0C43F3F; Mon, 26 May 2003 07:07:00 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QE6x0U084043; Mon, 26 May 2003 07:06:59 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QE6xDN084042; Mon, 26 May 2003 07:06:59 -0700 (PDT) Message-Id: <200305261406.h4QE6xDN084042@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 26 May 2003 07:06:59 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/pam article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 14:07:01 -0000 des 2003/05/26 07:06:59 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pam article.sgml Log: Whitespace cleanup, translators can ignore this. Revision Changes Path 1.24 +5 -5 doc/en_US.ISO8859-1/articles/pam/article.sgml From owner-cvs-all@FreeBSD.ORG Mon May 26 07:28:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3074637B401; Mon, 26 May 2003 07:28:31 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BCE643FAF; Mon, 26 May 2003 07:28:30 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4QENvZ15183; Mon, 26 May 2003 07:23:57 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id HAA14611; Mon, 26 May 2003 07:28:13 -0700 (PDT) Message-ID: <3ED22499.10805@btc.adaptec.com> Date: Mon, 26 May 2003 08:28:41 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.3.1) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200305260400.h4Q40qxI041677@repoman.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/includebus_dma.h src/sys/sparc64/include bus.h iommuvar.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 14:28:31 -0000 Dag-Erling Smorgrav wrote: > Dag-Erling Smorgrav writes: > >>Scott Long writes: >> >>> Log: >>> De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. >>> No need for it to pollute the 5.x API any further. >> >>Thanks a bunch for breaking sparc64... > > > You'll need (at least) the attached (untested) patch to fix it. > > DES > I did indeed forget to commit bus_machdep.c. Thanks for reminding me with the patch. It looks to be identical to what I missed. Scott > > ------------------------------------------------------------------------ > > Index: sparc64/bus_machdep.c > =================================================================== > RCS file: /home/ncvs/src/sys/sparc64/sparc64/bus_machdep.c,v > retrieving revision 1.27 > diff -u -r1.27 bus_machdep.c > --- sparc64/bus_machdep.c 10 Apr 2003 23:03:33 -0000 1.27 > +++ sparc64/bus_machdep.c 26 May 2003 12:31:23 -0000 > @@ -170,12 +170,8 @@ > struct uio *, bus_dmamap_callback2_t *, void *, int); > static void nexus_dmamap_unload(bus_dma_tag_t, bus_dma_tag_t, bus_dmamap_t); > static void nexus_dmamap_sync(bus_dma_tag_t, bus_dma_tag_t, bus_dmamap_t, int); > -static int nexus_dmamem_alloc_size(bus_dma_tag_t, bus_dma_tag_t, void **, int, > - bus_dmamap_t *, u_long size); > static int nexus_dmamem_alloc(bus_dma_tag_t, bus_dma_tag_t, void **, int, > bus_dmamap_t *); > -static void nexus_dmamem_free_size(bus_dma_tag_t, bus_dma_tag_t, void *, > - bus_dmamap_t, u_long size); > static void nexus_dmamem_free(bus_dma_tag_t, bus_dma_tag_t, void *, > bus_dmamap_t); > > @@ -228,9 +224,7 @@ > newtag->dt_dmamap_load_uio = NULL; > newtag->dt_dmamap_unload = NULL; > newtag->dt_dmamap_sync = NULL; > - newtag->dt_dmamem_alloc_size = NULL; > newtag->dt_dmamem_alloc = NULL; > - newtag->dt_dmamem_free_size = NULL; > newtag->dt_dmamem_free = NULL; > > /* Take into account any restrictions imposed by our parent tag */ > @@ -610,74 +604,18 @@ > dmat->dt_map_count--; > } > > -/* > - * Common function for DMA-safe memory allocation. May be called > - * by bus-specific DMA memory allocation functions. > - */ > -static int > -nexus_dmamem_alloc_size(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void **vaddr, > - int flags, bus_dmamap_t *mapp, bus_size_t size) > -{ > - > - if (size > ddmat->dt_maxsize) > - return (ENOMEM); > - > - if ((size <= PAGE_SIZE)) { > - *vaddr = malloc(size, M_DEVBUF, > - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK); > - } else { > - /* > - * XXX: Use contigmalloc until it is merged into this facility > - * and handles multi-seg allocations. Nobody is doing multi-seg > - * allocations yet though. > - */ > - mtx_lock(&Giant); > - *vaddr = contigmalloc(size, M_DEVBUF, > - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK, > - 0ul, ddmat->dt_lowaddr, > - ddmat->dt_alignment ? ddmat->dt_alignment : 1UL, > - ddmat->dt_boundary); > - mtx_unlock(&Giant); > - } > - if (*vaddr == NULL) { > - free(*mapp, M_DEVBUF); > - return (ENOMEM); > - } > - return (0); > -} > - > static int > nexus_dmamem_alloc(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void **vaddr, > int flags, bus_dmamap_t *mapp) > { > - return (sparc64_dmamem_alloc_size(pdmat, ddmat, vaddr, flags, mapp, > - ddmat->dt_maxsize)); > -} > - > -/* > - * Common function for freeing DMA-safe memory. May be called by > - * bus-specific DMA memory free functions. > - */ > -static void > -nexus_dmamem_free_size(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void *vaddr, > - bus_dmamap_t map, bus_size_t size) > -{ > - > - sparc64_dmamem_free_map(ddmat, map); > - if ((size <= PAGE_SIZE)) > - free(vaddr, M_DEVBUF); > - else { > - mtx_lock(&Giant); > - contigfree(vaddr, size, M_DEVBUF); > - mtx_unlock(&Giant); > - } > + return (sparc64_dmamem_alloc_size(pdmat, ddmat, vaddr, flags, mapp)); > } > > static void > nexus_dmamem_free(bus_dma_tag_t pdmat, bus_dma_tag_t ddmat, void *vaddr, > bus_dmamap_t map) > { > - sparc64_dmamem_free_size(pdmat, ddmat, vaddr, map, ddmat->dt_maxsize); > + sparc64_dmamem_free(pdmat, ddmat, vaddr, map); > } > > struct bus_dma_tag nexus_dmatag = { > @@ -703,9 +641,7 @@ > nexus_dmamap_unload, > nexus_dmamap_sync, > > - nexus_dmamem_alloc_size, > nexus_dmamem_alloc, > - nexus_dmamem_free_size, > nexus_dmamem_free, > }; > From owner-cvs-all@FreeBSD.ORG Mon May 26 07:38:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A09237B401; Mon, 26 May 2003 07:38:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCAFD43F93; Mon, 26 May 2003 07:38:48 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QEcm0U085081; Mon, 26 May 2003 07:38:48 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QEcmFg085080; Mon, 26 May 2003 07:38:48 -0700 (PDT) Message-Id: <200305261438.h4QEcmFg085080@repoman.freebsd.org> From: Scott Long Date: Mon, 26 May 2003 07:38:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 bus_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 14:38:49 -0000 scottl 2003/05/26 07:38:48 PDT FreeBSD src repository Modified files: sys/sparc64/sparc64 bus_machdep.c Log: De-orbit bus_dmamem_alloc_size from here too. Pointed out by: des Pointy hat to: me Revision Changes Path 1.28 +8 -34 src/sys/sparc64/sparc64/bus_machdep.c From owner-cvs-all@FreeBSD.ORG Mon May 26 08:12:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A62BA37B401; Mon, 26 May 2003 08:12:30 -0700 (PDT) Received: from espresso.bsdmike.org (espresso.bsdmike.org [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E7043F3F; Mon, 26 May 2003 08:12:29 -0700 (PDT) (envelope-from mike@espresso.bsdmike.org) Received: by espresso.bsdmike.org (Postfix, from userid 1002) id 2F1A19C8E; Mon, 26 May 2003 10:56:32 -0400 (EDT) Date: Mon, 26 May 2003 10:56:32 -0400 From: Mike Barcroft To: Peter Wemm Message-ID: <20030526105632.A41778@espresso.bsdmike.org> References: <200305251903.h4PJ38uc098642@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305251903.h4PJ38uc098642@repoman.freebsd.org>; from peter@FreeBSD.org on Sun, May 25, 2003 at 12:03:08PM -0700 Organization: The FreeBSD Project cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_sbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 15:12:31 -0000 Peter Wemm writes: > I found a description that showed the va_copy was required here: > http://mirrors.ccs.neu.edu/cgi-bin/unixhelp/man-cgi?va_end+9 > The single unix spec doesn't mention va_copy() at all. It's a C99 macro, as DES mentioned it's in the newest SUS/POSIX. Best regards, Mike Barcroft From owner-cvs-all@FreeBSD.ORG Mon May 26 08:32:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3625137B401; Mon, 26 May 2003 08:32:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C190243F75; Mon, 26 May 2003 08:32:34 -0700 (PDT) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QFWY0U088043; Mon, 26 May 2003 08:32:34 -0700 (PDT) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QFWY9G088042; Mon, 26 May 2003 08:32:34 -0700 (PDT) Message-Id: <200305261532.h4QFWY9G088042@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Mon, 26 May 2003 08:32:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ja_JP.eucJP/early-adopter article.sgml src/release/doc/ja_JP.eucJP/hardware/common dev.sgml intro.sgml src/release/doc/ja_JP.eucJP/hardware/i386article.sgml proc-ia64.sgml src/release/doc/ja_JP.eucJP/share/sgml release.dsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 15:32:35 -0000 rushani 2003/05/26 08:32:34 PDT FreeBSD src repository (doc committer) Modified files: release/doc/ja_JP.eucJP/early-adopter article.sgml release/doc/ja_JP.eucJP/hardware/common dev.sgml intro.sgml release/doc/ja_JP.eucJP/hardware/i386 proc-i386.sgml release/doc/ja_JP.eucJP/hardware/ia64 article.sgml proc-ia64.sgml release/doc/ja_JP.eucJP/share/sgml release.dsl Log: Merge the following from the English version: 1.12 -> 1.15 early-adopter/article.sgml 1.143 -> 1.155 hardware/common/dev.sgml 1.5 -> 1.6 hardware/common/intro.sgml 1.9 -> 1.11 hardware/i386/proc-i386.sgml 1.2 -> 1.3 hardware/ia64/article.sgml 1.3 -> 1.7 hardware/ia64/proc-ia64.sgml 1.6 -> 1.7 share/sgml/release.dsl Approved by: re (blanket) Revision Changes Path 1.7 +130 -62 src/release/doc/ja_JP.eucJP/early-adopter/article.sgml 1.13 +224 -55 src/release/doc/ja_JP.eucJP/hardware/common/dev.sgml 1.3 +6 -1 src/release/doc/ja_JP.eucJP/hardware/common/intro.sgml 1.5 +32 -1 src/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.sgml 1.3 +6 -3 src/release/doc/ja_JP.eucJP/hardware/ia64/article.sgml 1.3 +82 -2 src/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.sgml 1.11 +1 -1 src/release/doc/ja_JP.eucJP/share/sgml/release.dsl From owner-cvs-all@FreeBSD.ORG Mon May 26 09:59:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5E5B37B401; Mon, 26 May 2003 09:59:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B5043F3F; Mon, 26 May 2003 09:59:01 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QGx10U097096; Mon, 26 May 2003 09:59:01 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QGx1fu097095; Mon, 26 May 2003 09:59:01 -0700 (PDT) Message-Id: <200305261659.h4QGx1fu097095@repoman.freebsd.org> From: Scott Long Date: Mon, 26 May 2003 09:59:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 bus_machdep.c iommu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 16:59:02 -0000 scottl 2003/05/26 09:59:01 PDT FreeBSD src repository Modified files: sys/sparc64/sparc64 bus_machdep.c iommu.c Log: Fix two typos from the last commit Revision Changes Path 1.29 +1 -1 src/sys/sparc64/sparc64/bus_machdep.c 1.27 +1 -1 src/sys/sparc64/sparc64/iommu.c From owner-cvs-all@FreeBSD.ORG Mon May 26 10:06:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1A3A37B404; Mon, 26 May 2003 10:06:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D37A43F75; Mon, 26 May 2003 10:06:06 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QH660U098374; Mon, 26 May 2003 10:06:06 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QH66MY098373; Mon, 26 May 2003 10:06:06 -0700 (PDT) Message-Id: <200305261706.h4QH66MY098373@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 26 May 2003 10:06:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/info show.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 17:06:07 -0000 lioux 2003/05/26 10:06:05 PDT FreeBSD src repository (doc,ports committer) Modified files: usr.sbin/pkg_install/info show.c Log: Add a trailing '\n' character if none is found in the information obtained from a package. Patch show_file() [1] and show_index() [2] functions. PR: 52097 Reviewed by: bento, kris, portmgr, re, Michael Nottebrock , Martin Horcicka Approved by: re (scottl) Obtained from: NetBSD [1], OpenBSD [2] MFC after: 1 week Revision Changes Path 1.37 +19 -10 src/usr.sbin/pkg_install/info/show.c From owner-cvs-all@FreeBSD.ORG Mon May 26 10:12:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4321137B401; Mon, 26 May 2003 10:12:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 944A743FA3; Mon, 26 May 2003 10:12:22 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QHCM0U098576; Mon, 26 May 2003 10:12:22 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QHCMZq098575; Mon, 26 May 2003 10:12:22 -0700 (PDT) Message-Id: <200305261712.h4QHCMZq098575@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 26 May 2003 10:12:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/lib lib.h str.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 17:12:24 -0000 lioux 2003/05/26 10:12:22 PDT FreeBSD src repository (doc,ports committer) Modified files: usr.sbin/pkg_install/lib lib.h str.c Log: pkg_create incorrectly does not add trailing '\n' when it receives either COMMENT or DESCR from the command line. When a port is installed, one gets both +COMMENT and +DESCR files with a trailing '\n' character. However, +COMMENT does not contain a trailing '\n' when it is installed from a package due to this behavior of pkg_create. Therefore, make sure it behaves exactly the same regardless of where got its information; either command line or files. The modified functions are used by pkg_create. PR: 52097 Reviewed by: bento, kris, portmgr, re, Michael Nottebrock , Martin Horcicka Approved by: re (scottl) MFC after: 1 week Revision Changes Path 1.49 +1 -0 src/usr.sbin/pkg_install/lib/lib.h 1.15 +22 -1 src/usr.sbin/pkg_install/lib/str.c From owner-cvs-all@FreeBSD.ORG Mon May 26 11:52:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 080D337B401; Mon, 26 May 2003 11:52:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B03343F75; Mon, 26 May 2003 11:52:14 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QIqE0U003089; Mon, 26 May 2003 11:52:14 -0700 (PDT) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QIqEhA003088; Mon, 26 May 2003 11:52:14 -0700 (PDT) Message-Id: <200305261852.h4QIqEhA003088@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 26 May 2003 11:52:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/termcap termcap.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 18:52:15 -0000 ache 2003/05/26 11:52:13 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: cons25w: remove ve,vi,vs mistakenly merged in 1.89.2.25 Revision Changes Path 1.89.2.26 +1 -2 src/share/termcap/termcap.src From owner-cvs-all@FreeBSD.ORG Mon May 26 12:17:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 856A037B401; Mon, 26 May 2003 12:17:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 224CF43F85; Mon, 26 May 2003 12:17:57 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QJHu0U005060; Mon, 26 May 2003 12:17:56 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QJHuDl005059; Mon, 26 May 2003 12:17:56 -0700 (PDT) Message-Id: <200305261917.h4QJHuDl005059@repoman.freebsd.org> From: Alan Cox Date: Mon, 26 May 2003 12:17:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/vm vm_map.c vm_object.c vm_object.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 19:17:58 -0000 alc 2003/05/26 12:17:56 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/vm vm_map.c vm_object.c vm_object.h Log: MFC Reduce the size of a vm object by converting its shadow list from a TAILQ to a LIST. Revision Changes Path 1.187.2.18 +5 -5 src/sys/vm/vm_map.c 1.171.2.8 +9 -21 src/sys/vm/vm_object.c 1.63.2.3 +2 -2 src/sys/vm/vm_object.h From owner-cvs-all@FreeBSD.ORG Mon May 26 13:59:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5D1837B401; Mon, 26 May 2003 13:59:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 562CC43FAF; Mon, 26 May 2003 13:59:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QKxD0U014665; Mon, 26 May 2003 13:59:13 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QKxCFM014664; Mon, 26 May 2003 13:59:12 -0700 (PDT) Message-Id: <200305262059.h4QKxCFM014664@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 26 May 2003 13:59:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 20:59:14 -0000 kris 2003/05/26 13:59:12 PDT FreeBSD ports repository Modified files: Mk bsd.port.mk Log: Remove excessive quoting of comment strings in created packages. Submitted by: lioux Revision Changes Path 1.451 +2 -2 ports/Mk/bsd.port.mk From owner-cvs-all@FreeBSD.ORG Mon May 26 14:09:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE54037B401; Mon, 26 May 2003 14:09:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EA9E43F85; Mon, 26 May 2003 14:09:15 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QL9F0U015975; Mon, 26 May 2003 14:09:15 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QL9F7R015974; Mon, 26 May 2003 14:09:15 -0700 (PDT) Message-Id: <200305262109.h4QL9F7R015974@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:09:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:09:16 -0000 gibbs 2003/05/26 14:09:15 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx_pci.c Log: Remove stray K&R style function definition. Approved by: RE Revision Changes Path 1.24 +2 -3 src/sys/dev/aic7xxx/aic7xxx_pci.c From owner-cvs-all@FreeBSD.ORG Mon May 26 14:10:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F4E937B401; Mon, 26 May 2003 14:10:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B31D43F85; Mon, 26 May 2003 14:10:59 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLAw0U016142; Mon, 26 May 2003 14:10:58 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLAwqM016141; Mon, 26 May 2003 14:10:58 -0700 (PDT) Message-Id: <200305262110.h4QLAwqM016141@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:10:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx.h aic79xx.reg aic79xx.seq X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:10:59 -0000 gibbs 2003/05/26 14:10:58 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.c aic79xx.h aic79xx.reg aic79xx.seq Log: Fixup spelling of "coalesce" and derivatives. Approved by: RE Revision Changes Path 1.13 +36 -36 src/sys/dev/aic7xxx/aic79xx.c 1.11 +17 -17 src/sys/dev/aic7xxx/aic79xx.h 1.12 +10 -10 src/sys/dev/aic7xxx/aic79xx.reg 1.9 +14 -14 src/sys/dev/aic7xxx/aic79xx.seq From owner-cvs-all@FreeBSD.ORG Mon May 26 14:15:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C73D37B401; Mon, 26 May 2003 14:15:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0804243F3F; Mon, 26 May 2003 14:15:53 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLFq0U016410; Mon, 26 May 2003 14:15:52 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLFq6C016409; Mon, 26 May 2003 14:15:52 -0700 (PDT) Message-Id: <200305262115.h4QLFq6C016409@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:15:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:15:53 -0000 gibbs 2003/05/26 14:15:52 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx_pci.c Log: Add 7901B support. Sort IDs based on chip type. Remove IROC IDs. We'll switch to using the IROC masks if/when we want to start attaching to IROC controllers. Approved by: RE Revision Changes Path 1.11 +57 -12 src/sys/dev/aic7xxx/aic79xx_pci.c From owner-cvs-all@FreeBSD.ORG Mon May 26 14:18:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 626D637B401; Mon, 26 May 2003 14:18:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10EB743F3F; Mon, 26 May 2003 14:18:49 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLIm0U016505; Mon, 26 May 2003 14:18:48 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLImke016504; Mon, 26 May 2003 14:18:48 -0700 (PDT) Message-Id: <200305262118.h4QLImke016504@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:18:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx.seq aic79xx_inline.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:18:49 -0000 gibbs 2003/05/26 14:18:48 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.c aic79xx.seq aic79xx_inline.h Log: Change hadling of the Rev. A packetized lun output bug to be more efficient by having the sequencer copy the single byte of valid lun data into the long lun field. aic79xx.c: Memset our hardware SCB to 0 so that untouched fields don't confuse diagnostic output. With the old method for handling the Rev A bug, if the long lun field was not 0, this could result in bogus lun information being sent to drives. Use the same SCB transfer size for all chip types now that the long lun is not DMA'ed to the chip. aic79xx.seq: Add code to copy lun information for Rev.A hardware. aic79xx_inline.h: Remove host update of the long_lun field on every packetized command. Revision Changes Path 1.14 +2 -3 src/sys/dev/aic7xxx/aic79xx.c 1.10 +10 -1 src/sys/dev/aic7xxx/aic79xx.seq 1.10 +1 -5 src/sys/dev/aic7xxx/aic79xx_inline.h From owner-cvs-all@FreeBSD.ORG Mon May 26 14:20:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4032937B401; Mon, 26 May 2003 14:20:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E9C43F3F; Mon, 26 May 2003 14:20:47 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLKl0U016668; Mon, 26 May 2003 14:20:47 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLKlrk016667; Mon, 26 May 2003 14:20:47 -0700 (PDT) Message-Id: <200305262120.h4QLKlrk016667@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:20:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:20:48 -0000 gibbs 2003/05/26 14:20:47 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx_pci.c Log: Fix disabling of PCI parity error interrupts. We need to set FAILDIS in the SEQCTL register, not the HCNTRL register. aic7xxx.c: Remeber SEQCTL settings in the "seqctl" field of our softc. seqctl defaults to just having FASTMODE set, but the bus attachments can override this. aic7xxx.h: Add the seqctl softc field. aic7xxx_pci.c: Update the seqctl softc field and manually update SEQCTL when to many PCI errors occur Approved by: RE Revision Changes Path 1.90 +10 -4 src/sys/dev/aic7xxx/aic7xxx.c 1.46 +6 -1 src/sys/dev/aic7xxx/aic7xxx.h 1.25 +5 -7 src/sys/dev/aic7xxx/aic7xxx_pci.c From owner-cvs-all@FreeBSD.ORG Mon May 26 14:24:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8482F37B401; Mon, 26 May 2003 14:24:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1121743F3F; Mon, 26 May 2003 14:24:02 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLO10U016770; Mon, 26 May 2003 14:24:01 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLO1sL016769; Mon, 26 May 2003 14:24:01 -0700 (PDT) Message-Id: <200305262124.h4QLO1sL016769@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:24:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.reg aic7xxx.seq aic7xxx_inline.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:24:03 -0000 gibbs 2003/05/26 14:24:01 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx.reg aic7xxx.seq aic7xxx_inline.h Log: Correct/Simplify ignore wide residue message handling aic7xxx.c: In ahc_handle_ign_wide_residue(): o Use SCB_XFERLEN_ODD SCB field to determine transfer "oddness" rather than the DATA_COUNT_ODD logic. SCB_XFERLEN_ODD is toggled on every ignore wide residue message so that multiple ignore wide residue messages for the same transaction are properly supported. o If the sg list has been exausted, the sequencer doesn't bother to update the residual data count since it is known to be zero. Perform the zeroing manually before calculating the remaining data count. o Ensure that SG_LIST_NULL is cleared in the residual sg pointer for "mid-transfer" ignore wide residue cases. o Use multibyte in/out macros instead of shifting/masking by hand. aic7xxx.h: Modify the SCB_GET_LUN() macro to mask the lun hardware SCB field with LID. This leaves two bits in the LUN field that can be used for other purposes. aic7xxx.reg: Change LID to be 0x3F. This is the maximum supported lun size for non-packetized SCSI. Map the top bit of the lun to SCB_XFERLEN_ODD. The host must set this bit whenever a transfer is an odd length. Remove the ODD_SEG bit field that was used to carry the odd transfer length information through the SG cache. This is obviated by SCB_XFERLEN_ODD field. Remove the DATA_COUNT_ODD scratch ram byte that was used dynamicaly compute data transfer oddness. This is obviated by SCB_XFERLEN_ODD field. aic7xxx.seq: Be more careful in our handling of the SCB_LUN field. It must be masked with LID if only lun information is desired. Remove all updates to the DATA_COUNT_ODD scratch ram field. Remove all uses of ODD_SEG. These two save quite a few sequencer instructions. Use SCB_XFERLEN_ODD to validate the end of transfer ignore wide residue message case. aic7xxx_inline.h: In ahc_queue_scb(), setup the SCB_XFERLEN_ODD field. Approved by: RE Revision Changes Path 1.91 +28 -28 src/sys/dev/aic7xxx/aic7xxx.c 1.47 +2 -2 src/sys/dev/aic7xxx/aic7xxx.h 1.45 +3 -12 src/sys/dev/aic7xxx/aic7xxx.reg 1.124 +11 -23 src/sys/dev/aic7xxx/aic7xxx.seq 1.22 +8 -1 src/sys/dev/aic7xxx/aic7xxx_inline.h From owner-cvs-all@FreeBSD.ORG Mon May 26 14:24:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3356337B401; Mon, 26 May 2003 14:24:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C69E943F85; Mon, 26 May 2003 14:24:55 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLOt0U016812; Mon, 26 May 2003 14:24:55 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLOtx8016811; Mon, 26 May 2003 14:24:55 -0700 (PDT) Message-Id: <200305262124.h4QLOtx8016811@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:24:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.seq X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:24:56 -0000 gibbs 2003/05/26 14:24:55 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.seq Log: FIFOEMP can lag LAST_SEG_DONE in the Ultra2 and U160 hardware. Wait a few extra clocks for FIFOEMP to assert before calling an overrun. Approved by: RE Revision Changes Path 1.125 +10 -2 src/sys/dev/aic7xxx/aic7xxx.seq From owner-cvs-all@FreeBSD.ORG Mon May 26 14:26:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06F5937B401; Mon, 26 May 2003 14:26:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4B243FA3; Mon, 26 May 2003 14:26:52 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLQq0U016968; Mon, 26 May 2003 14:26:52 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLQqCI016967; Mon, 26 May 2003 14:26:52 -0700 (PDT) Message-Id: <200305262126.h4QLQqCI016967@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:26:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx.reg aic79xx.seq aic79xx_inline.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:26:53 -0000 gibbs 2003/05/26 14:26:52 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.c aic79xx.reg aic79xx.seq aic79xx_inline.h Log: Correct/Simplify ignore wide residue message handling aic79xx.c: In ahd_handle_ign_wide_residue(): o Use SCB_XFERLEN_ODD SCB field to determine transfer "oddness" rather than the DATA_COUNT_ODD logic. SCB_XFERLEN_ODD is toggled on every ignore wide residue message so that multiple ignore wide residue messages for the same transaction are properly supported. o If the sg list has been exausted, the sequencer doesn't bother to update the residual data count since it is known to be zero. Perform the zeroing manually before calculating the remaining data count. o Use multibyte in/out macros instead of shifting/masking by hand. aic79xx_inline.h: In ahd_setup_scb_common(), setup the SCB_XFERLEN_ODD field. aic79xx.reg: Use the SCB_TASK_ATTRIBUTE field as a bit field in the non-packetized case. We currently only define one bit, SCB_XFERLEN_ODD. Remove the ODD_SEG bit field that was used to carry the odd transfer length information through the SG cache. This is obviated by SCB_XFERLEN_ODD field. Remove the DATA_COUNT_ODD scratch ram byte that was used dynamicaly compute data transfer oddness. This is obviated by SCB_XFERLEN_ODD field. aic79xx.seq: Remove all updates to the DATA_COUNT_ODD scratch ram field. Remove all uses of ODD_SEG. These two save quite a few sequencer instructions. Use SCB_XFERLEN_ODD to validate the end of transfer ignore wide residue message case. Revision Changes Path 1.15 +24 -32 src/sys/dev/aic7xxx/aic79xx.c 1.13 +7 -2 src/sys/dev/aic7xxx/aic79xx.reg 1.11 +4 -13 src/sys/dev/aic7xxx/aic79xx.seq 1.11 +7 -2 src/sys/dev/aic7xxx/aic79xx_inline.h From owner-cvs-all@FreeBSD.ORG Mon May 26 14:43:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB4A137B401; Mon, 26 May 2003 14:43:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5607243FA3; Mon, 26 May 2003 14:43:30 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLhU0U017637; Mon, 26 May 2003 14:43:30 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLhUht017636; Mon, 26 May 2003 14:43:30 -0700 (PDT) Message-Id: <200305262143.h4QLhUht017636@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:43:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c aic79xx_osm.h aic7xxx_osm.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:43:31 -0000 gibbs 2003/05/26 14:43:30 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.c aic79xx_osm.h aic7xxx_osm.h Log: aic79xx.c: aic79xx_osm.h: aic7xxx_osm.h: Explicitly define functions that take no arguments with "(void)" Approved by: RE Revision Changes Path 1.16 +1 -1 src/sys/dev/aic7xxx/aic79xx.c 1.9 +1 -1 src/sys/dev/aic7xxx/aic79xx_osm.h 1.21 +1 -1 src/sys/dev/aic7xxx/aic7xxx_osm.h From owner-cvs-all@FreeBSD.ORG Mon May 26 14:44:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAD0137B405; Mon, 26 May 2003 14:44:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2824443FBD; Mon, 26 May 2003 14:44:04 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLi30U017671; Mon, 26 May 2003 14:44:03 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLi3S3017670; Mon, 26 May 2003 14:44:03 -0700 (PDT) Message-Id: <200305262144.h4QLi3S3017670@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:44:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:44:05 -0000 gibbs 2003/05/26 14:44:03 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c Log: Consistently use #ifdef for testing AHC_TARGET_MODE. Approved by: RE Revision Changes Path 1.92 +9 -9 src/sys/dev/aic7xxx/aic7xxx.c From owner-cvs-all@FreeBSD.ORG Mon May 26 14:45:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01FE437B40B; Mon, 26 May 2003 14:45:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9511843F3F; Mon, 26 May 2003 14:45:09 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLj90U017748; Mon, 26 May 2003 14:45:09 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLj9FQ017747; Mon, 26 May 2003 14:45:09 -0700 (PDT) Message-Id: <200305262145.h4QLj9FQ017747@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:45:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:45:10 -0000 gibbs 2003/05/26 14:45:09 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx_pci.c Log: This driver supports the 2920C not the 2920. Make this clear in our card identification string. PR: kern/50428 Approved by: RE Revision Changes Path 1.26 +3 -3 src/sys/dev/aic7xxx/aic7xxx_pci.c From owner-cvs-all@FreeBSD.ORG Mon May 26 15:54:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A78937B401; Mon, 26 May 2003 15:54:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC66643F75; Mon, 26 May 2003 15:54:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QMsJ0U021054; Mon, 26 May 2003 15:54:19 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QMsJ5H021053; Mon, 26 May 2003 15:54:19 -0700 (PDT) Message-Id: <200305262254.h4QMsJ5H021053@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 26 May 2003 15:54:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 22:54:20 -0000 marcel 2003/05/26 15:54:18 PDT FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c Log: Revision 1.99 of this file changed the allocation request from VM_ALLOC_INTERRUPT to VM_ALLOC_SYSTEM. There was no mention of this in commit log as it was considered harmless. Guess what: it does harm. WITNESS showed that we can not safely grab the page queue lock in vm_page_alloc() in all cases as we may have to sleep on it. Revert the request to VM_ALLOC_INTERRUPT to circumvent this. We panic if vm_page_alloc returns 0. I'm not entirely happy about this, but we have bigger fish to fry. Approved by: re@ (blanket) Revision Changes Path 1.107 +1 -1 src/sys/ia64/ia64/pmap.c From owner-cvs-all@FreeBSD.ORG Mon May 26 17:47:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27BD837B401; Mon, 26 May 2003 17:47:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68EC843F85; Mon, 26 May 2003 17:47:03 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R0l30U031969; Mon, 26 May 2003 17:47:03 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R0l3mx031968; Mon, 26 May 2003 17:47:03 -0700 (PDT) Message-Id: <200305270047.h4R0l3mx031968@repoman.freebsd.org> From: Alan Cox Date: Mon, 26 May 2003 17:47:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 00:47:14 -0000 alc 2003/05/26 17:47:02 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/vm vm_map.c Log: MFC Make the reservation of KVA space for kernel map entries a function of the KVA space's size in addition to the amount of physical memory and reduce it by a factor of two. Revision Changes Path 1.187.2.19 +2 -1 src/sys/vm/vm_map.c From owner-cvs-all@FreeBSD.ORG Mon May 26 18:00:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E29137B401; Mon, 26 May 2003 18:00:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B261A43F75; Mon, 26 May 2003 18:00:13 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R10D0U032443; Mon, 26 May 2003 18:00:13 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R10DOj032442; Mon, 26 May 2003 18:00:13 -0700 (PDT) Message-Id: <200305270100.h4R10DOj032442@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 26 May 2003 18:00:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c support.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 01:00:14 -0000 marcel 2003/05/26 18:00:13 PDT FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c support.s Log: Fix fu{byte|word*} and su{byte|word*}: o If the address was not within user space we jumped to fusufault where we would clear pcb_onfault and return 0. There are two bugs here: 1. We never got to the point where we assigned the address of pcb_onfault to r15, which means that we would clobber some random memory location, including I/O space or ROM. 2. We're supposed to return -1 on error. o Make sure we have proper memory ordering for setting pcb_onfault, doing the memory access to user space and clearing pcb_onfault. For the fu* family of functions this means that we need a mf instruction, because we don't have acquire semantics on stores and release semantics on loads (hence st;ld cannot be ordered without intermediate mf). While here, implement casuptr() so that we are a (small) step closer to supporting libthr and deobfuscate the non-implementation of {f|s}uswintr. Approved by: re@ (blanket) Revision Changes Path 1.135 +0 -6 src/sys/ia64/ia64/machdep.c 1.18 +455 -150 src/sys/ia64/ia64/support.s From owner-cvs-all@FreeBSD.ORG Mon May 26 18:15:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C2B37B401; Mon, 26 May 2003 18:15:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74FE843FBD; Mon, 26 May 2003 18:15:16 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R1FG0U034533; Mon, 26 May 2003 18:15:16 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R1FGBC034532; Mon, 26 May 2003 18:15:16 -0700 (PDT) Message-Id: <200305270115.h4R1FGBC034532@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 26 May 2003 18:15:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 unwind.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 01:15:17 -0000 marcel 2003/05/26 18:15:16 PDT FreeBSD src repository Modified files: sys/ia64/ia64 unwind.c Log: Have the unwinder allocate memory with M_NOWAIT. The unwinder is used by DDB and we cannot know in advance whether it's save to sleep. It often enough isn't. We may want to pre-allocate space to cover the most common cases without having to use malloc at all, but that requires some analysis. We leave that for later. Approved by: re@ (blanket) Revision Changes Path 1.7 +1 -1 src/sys/ia64/ia64/unwind.c From owner-cvs-all@FreeBSD.ORG Mon May 26 20:16:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7755237B405 for ; Mon, 26 May 2003 20:16:49 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 089BC43F3F for ; Mon, 26 May 2003 20:16:48 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 5019 invoked by uid 1000); 27 May 2003 03:16:49 -0000 Date: Mon, 26 May 2003 20:16:49 -0700 (PDT) From: Nate Lawson To: Scott Long In-Reply-To: <20030526040103.EF60537B401@hub.freebsd.org> Message-ID: <20030526201453.V5016@root.org> References: <20030526040103.EF60537B401@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 03:16:49 -0000 On Sun, 25 May 2003, Scott Long wrote: > Modified files: > sys/alpha/alpha busdma_machdep.c > sys/alpha/include bus.h > sys/amd64/amd64 busdma_machdep.c > sys/amd64/include bus_dma.h > sys/i386/i386 busdma_machdep.c > sys/i386/include bus_dma.h > sys/sparc64/include bus.h iommuvar.h > sys/sparc64/pci psycho.c > sys/sparc64/sbus sbus.c > sys/sparc64/sparc64 iommu.c > Log: > De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. > No need for it to pollute the 5.x API any further. > > Approved by: re (bmah) Do you plan to address this in the future? I believe it was useful for a few drivers. I seem to recall you mentioning a more general approach for the future. -Nate From owner-cvs-all@FreeBSD.ORG Mon May 26 21:01:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE0E237B401; Mon, 26 May 2003 21:01:22 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08C0443F75; Mon, 26 May 2003 21:01:22 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4R3ukZ09284; Mon, 26 May 2003 20:56:46 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id VAA02770; Mon, 26 May 2003 21:01:14 -0700 (PDT) Message-ID: <3ED2E303.7070304@btc.adaptec.com> Date: Mon, 26 May 2003 22:01:07 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nate Lawson References: <20030526040103.EF60537B401@hub.freebsd.org> <20030526201453.V5016@root.org> In-Reply-To: <20030526201453.V5016@root.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 04:01:23 -0000 Nate Lawson wrote: > On Sun, 25 May 2003, Scott Long wrote: > >> Modified files: >> sys/alpha/alpha busdma_machdep.c >> sys/alpha/include bus.h >> sys/amd64/amd64 busdma_machdep.c >> sys/amd64/include bus_dma.h >> sys/i386/i386 busdma_machdep.c >> sys/i386/include bus_dma.h >> sys/sparc64/include bus.h iommuvar.h >> sys/sparc64/pci psycho.c >> sys/sparc64/sbus sbus.c >> sys/sparc64/sparc64 iommu.c >> Log: >> De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. >> No need for it to pollute the 5.x API any further. >> >> Approved by: re (bmah) > > > Do you plan to address this in the future? I believe it was useful for a > few drivers. I seem to recall you mentioning a more general approach for > the future. > > -Nate The better approach is to have bus_dmamap_load() respect the maxsegs field of the tag and coelesce the segments by whatever means it has available to it (bcopy, GART, etc). Note the the bus_dmamem_alloc_size stuff went into the tree in Jan but was never once used. Scott From owner-cvs-all@FreeBSD.ORG Mon May 26 22:00:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E5FE37B404; Mon, 26 May 2003 22:00:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14F5E43F85; Mon, 26 May 2003 22:00:00 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R4xx0U050531; Mon, 26 May 2003 21:59:59 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R4xxVi050530; Mon, 26 May 2003 21:59:59 -0700 (PDT) Message-Id: <200305270459.h4R4xxVi050530@repoman.freebsd.org> From: Scott Long Date: Mon, 26 May 2003 21:59:59 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/dev/advansys advansys.c adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c src/sys/dev/aic7xxx aic79xx_osm.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 05:00:01 -0000 scottl 2003/05/26 21:59:59 PDT FreeBSD src repository Modified files: sys/alpha/alpha busdma_machdep.c sys/alpha/include bus.h sys/amd64/amd64 busdma_machdep.c sys/amd64/include bus_dma.h sys/dev/advansys advansys.c adwcam.c sys/dev/aha aha.c sys/dev/ahb ahb.c sys/dev/aic7xxx aic79xx_osm.c aic7xxx_osm.c sys/dev/amd amd.c sys/dev/buslogic bt.c sys/dev/dpt dpt_scsi.c sys/dev/ida ida.c sys/dev/mpt mpt_freebsd.c sys/dev/trm trm.c sys/i386/i386 busdma_machdep.c sys/i386/include bus_dma.h sys/ia64/ia64 busdma_machdep.c sys/ia64/include bus.h sys/powerpc/include bus.h sys/powerpc/powerpc busdma_machdep.c sys/sparc64/include bus.h sys/sparc64/pci psycho.c sys/sparc64/sbus sbus.c sys/sparc64/sparc64 bus_machdep.c iommu.c Log: Bring back bus_dmasync_op_t. It is now a typedef to an int, though the BUS_DMASYNC_ definitions remain as before. The does not change the ABI, and reverts the API to be a bit more compatible and flexible. This has survived a full 'make universe'. Approved by: re (bmah) Revision Changes Path 1.37 +1 -1 src/sys/alpha/alpha/busdma_machdep.c 1.20 +2 -1 src/sys/alpha/include/bus.h 1.45 +1 -1 src/sys/amd64/amd64/busdma_machdep.c 1.21 +2 -1 src/sys/amd64/include/bus_dma.h 1.24 +2 -2 src/sys/dev/advansys/advansys.c 1.15 +2 -2 src/sys/dev/advansys/adwcam.c 1.47 +2 -2 src/sys/dev/aha/aha.c 1.28 +2 -2 src/sys/dev/ahb/ahb.c 1.12 +2 -2 src/sys/dev/aic7xxx/aic79xx_osm.c 1.35 +2 -2 src/sys/dev/aic7xxx/aic7xxx_osm.c 1.18 +2 -2 src/sys/dev/amd/amd.c 1.38 +2 -2 src/sys/dev/buslogic/bt.c 1.42 +2 -2 src/sys/dev/dpt/dpt_scsi.c 1.27 +3 -3 src/sys/dev/ida/ida.c 1.10 +3 -3 src/sys/dev/mpt/mpt_freebsd.c 1.8 +1 -1 src/sys/dev/trm/trm.c 1.45 +1 -1 src/sys/i386/i386/busdma_machdep.c 1.20 +2 -1 src/sys/i386/include/bus_dma.h 1.24 +1 -1 src/sys/ia64/ia64/busdma_machdep.c 1.11 +2 -1 src/sys/ia64/include/bus.h 1.10 +2 -1 src/sys/powerpc/include/bus.h 1.15 +1 -1 src/sys/powerpc/powerpc/busdma_machdep.c 1.25 +4 -2 src/sys/sparc64/include/bus.h 1.34 +3 -2 src/sys/sparc64/pci/psycho.c 1.19 +3 -2 src/sys/sparc64/sbus/sbus.c 1.30 +3 -2 src/sys/sparc64/sparc64/bus_machdep.c 1.28 +1 -1 src/sys/sparc64/sparc64/iommu.c From owner-cvs-all@FreeBSD.ORG Mon May 26 22:23:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E87E037B401; Mon, 26 May 2003 22:23:57 -0700 (PDT) Received: from bell.ee.t.u-tokyo.ac.jp (bell.k.u-tokyo.ac.jp [133.11.65.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3D443F85; Mon, 26 May 2003 22:23:54 -0700 (PDT) (envelope-from mita@ee.t.u-tokyo.ac.jp) Received: from micro.if.t.u-tokyo.ac.jp (micro.if.t.u-tokyo.ac.jp [133.11.94.147]) by bell.ee.t.u-tokyo.ac.jp (Postfix) with ESMTP id A9C40458D; Tue, 27 May 2003 14:23:51 +0900 (JST) Date: Tue, 27 May 2003 14:23:50 +0900 Message-ID: <7vvfvx2c9l.wl@smtp.ee.t.u-tokyo.ac.jp> From: MITA Yoshio To: Kris Kennaway , lioux@freebsd.org In-Reply-To: <200305262059.h4QKxCFM014664@repoman.freebsd.org> References: <200305262059.h4QKxCFM014664@repoman.freebsd.org> User-Agent: Wanderlust/2.10.0 (Venus) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 05:23:58 -0000 Hello, >kris 2003/05/26 13:59:12 PDT > FreeBSD ports repository > Modified files: > Mk bsd.port.mk > Log: > Remove excessive quoting of comment strings in created packages. > Submitted by: lioux > Revision Changes Path > 1.451 +2 -2 ports/Mk/bsd.port.mk Still, this does not solve the real problem in +COMMENT file. The most important problem was not having backslash character, but is the lack of character code "LF" at the end of +COMMENT file. Because pkg_info expects charater code "LF", all installed packages are displayed in chain such as: oneko-2.0b_2 A cat chasing a mouse all over the screenopen-motif-2.2.2_1 Motif X11 Toolkit (industry standard GUI (IEEE 1295))openquicktime-1.0 Portable library for handling Apple's QuickTime(TM) files This is abnormal, and all operations concerning package dependency must fail. Regards, --- MITA Yoshio From owner-cvs-all@FreeBSD.ORG Mon May 26 22:31:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B755237B401; Mon, 26 May 2003 22:31:37 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BAC843F75; Mon, 26 May 2003 22:31:36 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 5328766BE5; Mon, 26 May 2003 22:31:36 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 3BDCF5D6; Mon, 26 May 2003 22:31:36 -0700 (PDT) Date: Mon, 26 May 2003 22:31:36 -0700 From: Kris Kennaway To: MITA Yoshio Message-ID: <20030527053136.GA84508@rot13.obsecurity.org> References: <200305262059.h4QKxCFM014664@repoman.freebsd.org> <7vvfvx2c9l.wl@smtp.ee.t.u-tokyo.ac.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline In-Reply-To: <7vvfvx2c9l.wl@smtp.ee.t.u-tokyo.ac.jp> User-Agent: Mutt/1.4.1i cc: cvs-ports@FreeBSD.org cc: Kris Kennaway cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 05:31:38 -0000 --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 27, 2003 at 02:23:50PM +0900, MITA Yoshio wrote: > Hello,=20 >=20 > >kris 2003/05/26 13:59:12 PDT > > FreeBSD ports repository > > Modified files: > > Mk bsd.port.mk=20 > > Log: > > Remove excessive quoting of comment strings in created packages. > > Submitted by: lioux > > Revision Changes Path > > 1.451 +2 -2 ports/Mk/bsd.port.mk >=20 > Still, this does not solve the real problem in +COMMENT file. The > most important problem was not having backslash character, but is > the lack of character code "LF" at the end of +COMMENT file. The patches committed to pkg_tools fix this. Kris --3MwIy2ne0vdjdPXF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+0vg3Wry0BWjoQKURAlXpAJ0V5yi1lYCSEetizRFxlMRebTUv7QCg199e RL3Pfo/Yv5KfRzO2twopv5s= =Y5w6 -----END PGP SIGNATURE----- --3MwIy2ne0vdjdPXF-- From owner-cvs-all@FreeBSD.ORG Mon May 26 22:51:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3FC337B401; Mon, 26 May 2003 22:51:10 -0700 (PDT) Received: from bell.ee.t.u-tokyo.ac.jp (bell.k.u-tokyo.ac.jp [133.11.65.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A13D43F85; Mon, 26 May 2003 22:51:09 -0700 (PDT) (envelope-from mita@ee.t.u-tokyo.ac.jp) Received: from micro.if.t.u-tokyo.ac.jp (micro.if.t.u-tokyo.ac.jp [133.11.94.147]) by bell.ee.t.u-tokyo.ac.jp (Postfix) with ESMTP id F3A274594; Tue, 27 May 2003 14:51:07 +0900 (JST) Date: Tue, 27 May 2003 14:51:07 +0900 Message-ID: <7vr86l2b04.wl@smtp.ee.t.u-tokyo.ac.jp> From: MITA Yoshio To: Kris Kennaway In-Reply-To: <20030527053136.GA84508@rot13.obsecurity.org> References: <200305262059.h4QKxCFM014664@repoman.freebsd.org> <7vvfvx2c9l.wl@smtp.ee.t.u-tokyo.ac.jp> <20030527053136.GA84508@rot13.obsecurity.org> User-Agent: Wanderlust/2.10.0 (Venus) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: MITA Yoshio cc: cvs-ports@FreeBSD.org cc: Kris Kennaway cc: lioux@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 05:51:11 -0000 >The patches committed to pkg_tools fix this. However, it loses backward compatibility for those who use all older versions of FreeBSD. I feel the infulence is very severe because majority of FreeBSD users do not necessarily know how to solve this problem with their actual version of FreeBSD. And I myself feel that one can (and tends to) expect a backward compatibility for slight minor version change such as 5.0-RELEASE and 5.1-RELEASE. A RELEASE version becoming incompatible with current ports before the next RELEASE, that is a bit too much for me. Instead, could you please investigate a very, very simple alternative that I proposed? It's just using the /var/db/${PKGNAME}/+COMMENT file, which is ALWAYS correct. Backward compatibility is assured in that case, and until now no I find no negative effect. --- MITA Yoshio From owner-cvs-all@FreeBSD.ORG Tue May 27 00:11:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 033FF37B401; Tue, 27 May 2003 00:11:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9699643F3F; Tue, 27 May 2003 00:10:59 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4R7Ax0U058148; Tue, 27 May 2003 00:10:59 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4R7AwwV058147; Tue, 27 May 2003 00:10:58 -0700 (PDT) Message-Id: <200305270710.h4R7AwwV058147@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 27 May 2003 00:10:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 exception.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 07:11:00 -0000 marcel 2003/05/27 00:10:58 PDT FreeBSD src repository Modified files: sys/ia64/ia64 exception.s Log: A flushrs must be the first in an instruction group. Approved by: re@ (blanket) Revision Changes Path 1.46 +1 -0 src/sys/ia64/ia64/exception.s From owner-cvs-all@FreeBSD.ORG Tue May 27 03:03:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0885137B401; Tue, 27 May 2003 03:03:20 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 459A343F93; Tue, 27 May 2003 03:03:19 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id AC5FD530E; Tue, 27 May 2003 12:03:17 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Scott Long References: <200305270459.h4R4xxVi050530@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 27 May 2003 12:03:17 +0200 In-Reply-To: <200305270459.h4R4xxVi050530@repoman.freebsd.org> (Scott Long's message of "Mon, 26 May 2003 21:59:59 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.c src/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/dev/advansys advansys.c adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c src/sys/dev/aic7xxx aic79xx_osm.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 10:03:20 -0000 Scott Long writes: > Log: > Bring back bus_dmasync_op_t. It is now a typedef to an int, though the > BUS_DMASYNC_ definitions remain as before. The does not change the ABI, > and reverts the API to be a bit more compatible and flexible. This has > survived a full 'make universe'. This breaks the pc98 GENERIC build. http://www.rtp.freebsd.org/~des/tinderbox-CURRENT-i386-pc98.brief DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Tue May 27 08:31:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0A6237B401; Tue, 27 May 2003 08:31:15 -0700 (PDT) Received: from tara.freenix.org (keltia.freenix.org [62.4.20.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 762DD43F85; Tue, 27 May 2003 08:31:14 -0700 (PDT) (envelope-from roberto@tara.freenix.org) Received: by tara.freenix.org (Postfix/TLS, from userid 101) id 7E2312A96; Tue, 27 May 2003 17:31:13 +0200 (CEST) Date: Tue, 27 May 2003 17:31:13 +0200 From: Ollivier Robert To: Doug Barton Message-ID: <20030527153113.GB22682@tara.freenix.org> Mail-Followup-To: Doug Barton , Andrea Campi , Nate Lawson , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20030522183930.564EF37B49D@hub.freebsd.org> <20030522161035.X95941@root.org> <20030522235524.GB6396@webcom.it> <20030522165905.R2984@znfgre.qbhto.arg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030522165905.R2984@znfgre.qbhto.arg> X-Operating-System: MacOS X / PowerBook G4 - FreeBSD 5.0 / 2x PIII/800 SMP User-Agent: Mutt/1.5.3i cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/newfs mkfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 15:31:16 -0000 According to Doug Barton: > I think that's a very valid second step, and I hope someone takes it on. I > felt that this step was much more important to accomplish prior to the > release however. Untested -- because don't have any UFS2 FS yet -- follows: Index: sys/ufs/ffs/fs.h =================================================================== RCS file: /home/ncvs/src/sys/ufs/ffs/fs.h,v retrieving revision 1.14.2.3 diff -u -2 -I.*$Id:.* -r1.14.2.3 fs.h --- sys/ufs/ffs/fs.h 21 Sep 2001 19:15:22 -0000 1.14.2.3 +++ sys/ufs/ffs/fs.h 27 May 2003 15:29:40 -0000 @@ -285,5 +285,8 @@ * Filesystem identification */ -#define FS_MAGIC 0x011954 /* the fast filesystem magic number */ +#define FS_UFS1_MAGIC 0x011954 /* UFS1 fast filesystem magic number */ +#define FS_UFS2_MAGIC 0x19540119 /* UFS2 fast filesystem magic number */ + +#define FS_MAGIC FS_UFS1_MAGIC /* the fast filesystem magic number */ #define FS_OKAY 0x7c269d38 /* superblock checksum */ #define FS_42INODEFMT -1 /* 4.2BSD inode format */ Index: sbin/fsck/setup.c =================================================================== RCS file: /home/ncvs/src/sbin/fsck/Attic/setup.c,v retrieving revision 1.17.2.4 diff -u -2 -I.*$Id:.* -r1.17.2.4 setup.c --- sbin/fsck/setup.c 24 Jun 2002 05:10:41 -0000 1.17.2.4 +++ sbin/fsck/setup.c 27 May 2003 15:24:58 -0000 @@ -333,4 +333,6 @@ * run a few consistency checks of the super block */ + if (sblock.fs_magic == FS_UFS2_MAGIC) + { badsb(listerr, "UFS2 FS DETECTED, IGNORING"); return (0); } if (sblock.fs_magic != FS_MAGIC) { badsb(listerr, "MAGIC NUMBER WRONG"); return (0); } -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr Darwin snuadh.freenix.org Kernel Version 6.6: Thu May 1 21:48:54 PDT 2003 From owner-cvs-all@FreeBSD.ORG Tue May 27 08:44:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 352EF37B401; Tue, 27 May 2003 08:44:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C557E43FBD; Tue, 27 May 2003 08:44:00 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RFi00U022361; Tue, 27 May 2003 08:44:00 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RFi0j4022360; Tue, 27 May 2003 08:44:00 -0700 (PDT) Message-Id: <200305271544.h4RFi0j4022360@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 27 May 2003 08:44:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 15:44:01 -0000 bmah 2003/05/27 08:44:00 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Modified release note: Add missing word in rue(4) item. Submitted by: murray Approved by: re (implicitly) Revision Changes Path 1.572 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 09:11:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B73837B401; Tue, 27 May 2003 09:11:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723FF43F3F; Tue, 27 May 2003 09:11:10 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RGBA0U029620; Tue, 27 May 2003 09:11:10 -0700 (PDT) (envelope-from alex@repoman.freebsd.org) Received: (from alex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RGBAOZ029619; Tue, 27 May 2003 09:11:10 -0700 (PDT) Message-Id: <200305271611.h4RGBAOZ029619@repoman.freebsd.org> From: Alexander Langer Date: Tue, 27 May 2003 09:11:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/early-adopter article.sgml src/release/doc/de_DE.ISO8859-1/errataproc-alpha.sgml intro.sgmlsrc/release/doc/de_DE.ISO8859-1/hardware/ia64 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 16:11:11 -0000 alex 2003/05/27 09:11:10 PDT FreeBSD src repository (doc,ports committer) Modified files: release/doc/de_DE.ISO8859-1/early-adopter article.sgml release/doc/de_DE.ISO8859-1/errata article.sgml release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml release/doc/de_DE.ISO8859-1/hardware/common dev.sgml intro.sgml release/doc/de_DE.ISO8859-1/hardware/i386 proc-i386.sgml release/doc/de_DE.ISO8859-1/hardware/ia64 article.sgml proc-ia64.sgml release/doc/de_DE.ISO8859-1/hardware/sparc64 proc-sparc64.sgml release/doc/de_DE.ISO8859-1/installation/common install.sgml trouble.sgml upgrade.sgml release/doc/de_DE.ISO8859-1/readme article.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml release/doc/de_DE.ISO8859-1/share/sgml release.dsl Log: MFbed: Translation updates: Sync with the English 5.1 relnotes. Approved by: re (bmah) Revision Changes Path 1.11 +204 -141 src/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml 1.11 +157 -15 src/release/doc/de_DE.ISO8859-1/errata/article.sgml 1.15 +2743 -2604 src/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml 1.20 +3169 -2849 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml 1.3 +7 -3 src/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml 1.5 +69 -6 src/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml 1.5 +7 -5 src/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml 1.3 +101 -4 src/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.sgml 1.8 +16 -13 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml 1.11 +8 -8 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml 1.9 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml 1.6 +3 -3 src/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml 1.11 +52 -52 src/release/doc/de_DE.ISO8859-1/readme/article.sgml 1.31 +1006 -94 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml 1.7 +4 -4 src/release/doc/de_DE.ISO8859-1/share/sgml/release.dsl From owner-cvs-all@FreeBSD.ORG Tue May 27 09:23:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A9DE37B401; Tue, 27 May 2003 09:23:42 -0700 (PDT) Received: from bragi.housing.ufl.edu (bragi.housing.ufl.edu [128.227.47.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A26043F93; Tue, 27 May 2003 09:23:41 -0700 (PDT) (envelope-from WillS@housing.ufl.edu) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 Date: Tue, 27 May 2003 12:23:40 -0400 Message-ID: <0E972CEE334BFE4291CD07E056C76ED8CBBC6B@bragi.housing.ufl.edu> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/dev/advansys advansys.c adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c src/sys/dev/aic7xxx aic79xx_osm.c ... Thread-Index: AcMkDQYZQdRcG3GUQE63Q1Kl7UYztQAXnKCw From: "Will Saxon" To: "Scott Long" , , , Subject: RE: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/dev/advansys advansys.c adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c src/sys/dev/aic7xxx a X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 16:23:42 -0000 > -----Original Message----- > From: Scott Long [mailto:scottl@FreeBSD.org] > Sent: Tuesday, May 27, 2003 1:00 AM > To: src-committers@FreeBSD.org; cvs-src@FreeBSD.org;=20 > cvs-all@FreeBSD.org > Subject: cvs commit: src/sys/alpha/alpha > busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 > busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/dev/advansys > advansys.c adwcam.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c > src/sys/dev/aic7xxx aic79 >=20 >=20 > scottl 2003/05/26 21:59:59 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/i386/include bus_dma.h=20 > Log: > Bring back bus_dmasync_op_t. It is now a typedef to an=20 > int, though the > BUS_DMASYNC_ definitions remain as before. The does not=20 > change the ABI, > and reverts the API to be a bit more compatible and=20 > flexible. This has > survived a full 'make universe'. Note: This is causing a conflict with /usr/src/sys/dev/firewire/fwdma.h, = which also defines bus_dmasync_op_t. This causes an error when building = that module. -will From owner-cvs-all@FreeBSD.ORG Tue May 27 09:30:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AFF637B401; Tue, 27 May 2003 09:30:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC9DD43F93; Tue, 27 May 2003 09:30:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RGUO0U030352; Tue, 27 May 2003 09:30:24 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RGUOid030351; Tue, 27 May 2003 09:30:24 -0700 (PDT) Message-Id: <200305271630.h4RGUOid030351@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 27 May 2003 09:30:24 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 16:30:25 -0000 obrien 2003/05/27 09:30:24 PDT FreeBSD doc repository Modified files: en/releng index.sgml Log: Resign from re-alpha. Revision Changes Path 1.54 +2 -2 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 09:34:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E32637B401; Tue, 27 May 2003 09:34:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFD9143F85; Tue, 27 May 2003 09:34:52 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RGYq0U030433; Tue, 27 May 2003 09:34:52 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RGYq6N030432; Tue, 27 May 2003 09:34:52 -0700 (PDT) Message-Id: <200305271634.h4RGYq6N030432@repoman.freebsd.org> From: Scott Long Date: Tue, 27 May 2003 09:34:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire fwdma.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 16:34:53 -0000 scottl 2003/05/27 09:34:52 PDT FreeBSD src repository Modified files: sys/dev/firewire fwdma.h Log: Remove the redundant declaration of bus_dmasync_op_t. Revision Changes Path 1.2 +0 -4 src/sys/dev/firewire/fwdma.h From owner-cvs-all@FreeBSD.ORG Tue May 27 09:38:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5329937B401; Tue, 27 May 2003 09:38:27 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8224B43F93; Tue, 27 May 2003 09:38:26 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4RGXnZ16561; Tue, 27 May 2003 09:33:49 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id JAA13255; Tue, 27 May 2003 09:38:19 -0700 (PDT) Message-ID: <3ED39473.7080908@btc.adaptec.com> Date: Tue, 27 May 2003 10:38:11 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Long References: <200305271634.h4RGYq6N030432@repoman.freebsd.org> In-Reply-To: <200305271634.h4RGYq6N030432@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/firewire fwdma.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 16:38:27 -0000 Scott Long wrote: > scottl 2003/05/27 09:34:52 PDT > > FreeBSD src repository > > Modified files: > sys/dev/firewire fwdma.h > Log: > Remove the redundant declaration of bus_dmasync_op_t. > > Revision Changes Path > 1.2 +0 -4 src/sys/dev/firewire/fwdma.h I'm really not sure why 'make universe' didn't catch this. Sorry for the breakage. Scott From owner-cvs-all@FreeBSD.ORG Tue May 27 10:35:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C977F37B401 for ; Tue, 27 May 2003 10:35:51 -0700 (PDT) Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF99343FB1 for ; Tue, 27 May 2003 10:35:49 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 25691 invoked from network); 27 May 2003 17:35:49 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 27 May 2003 17:35:49 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h4RHZlp0078683; Tue, 27 May 2003 13:35:47 -0400 (EDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3ED39473.7080908@btc.adaptec.com> Date: Tue, 27 May 2003 13:35:58 -0400 (EDT) From: John Baldwin To: Scott Long cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/firewire fwdma.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 17:35:52 -0000 On 27-May-2003 Scott Long wrote: > Scott Long wrote: >> scottl 2003/05/27 09:34:52 PDT >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/firewire fwdma.h >> Log: >> Remove the redundant declaration of bus_dmasync_op_t. >> >> Revision Changes Path >> 1.2 +0 -4 src/sys/dev/firewire/fwdma.h > > I'm really not sure why 'make universe' didn't catch this. Sorry for > the breakage. make universe ignores errors in buildworld and buildkernel. You have to check the individual log files for errors. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Tue May 27 11:18:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 571BE37B401; Tue, 27 May 2003 11:18:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F7A43F75; Tue, 27 May 2003 11:18:01 -0700 (PDT) (envelope-from jdp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RII10U035979; Tue, 27 May 2003 11:18:01 -0700 (PDT) (envelope-from jdp@repoman.freebsd.org) Received: (from jdp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RII13s035978; Tue, 27 May 2003 11:18:01 -0700 (PDT) Message-Id: <200305271818.h4RII13s035978@repoman.freebsd.org> From: John Polstra Date: Tue, 27 May 2003 11:18:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/include pthread.h src/lib/libc_r/man Makefile.inc pthread_getconcurrency.3 src/lib/libc_r/uthread Makefile.inc uthread_concurrency.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 18:18:02 -0000 jdp 2003/05/27 11:18:01 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) include pthread.h lib/libc_r/man Makefile.inc lib/libc_r/uthread Makefile.inc Added files: (Branch: RELENG_4) lib/libc_r/man pthread_getconcurrency.3 lib/libc_r/uthread uthread_concurrency.c Log: MFC: Add stub implementations of pthread_[gs]etconcurrency to libc_r. This merges the following revisions from the trunk: 1.28 src/include/pthread.h 1.20 src/lib/libc_r/man/Makefile.inc 1.1, 1.2 src/lib/libc_r/man/pthread_getconcurrency.3 1.36 src/lib/libc_r/uthread/Makefile.inc 1.1 src/lib/libc_r/uthread/uthread_concurrency.c PR: standards/50848 Revision Changes Path 1.20.2.4 +2 -0 src/include/pthread.h 1.11.2.5 +2 -0 src/lib/libc_r/man/Makefile.inc 1.2.2.1 +115 -0 src/lib/libc_r/man/pthread_getconcurrency.3 (new) 1.23.2.8 +1 -0 src/lib/libc_r/uthread/Makefile.inc 1.1.2.1 +60 -0 src/lib/libc_r/uthread/uthread_concurrency.c (new) From owner-cvs-all@FreeBSD.ORG Tue May 27 11:23:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6C3E37B401; Tue, 27 May 2003 11:23:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 469A343FAF; Tue, 27 May 2003 11:23:57 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RINv0U036195; Tue, 27 May 2003 11:23:57 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RINu5o036194; Tue, 27 May 2003 11:23:57 -0700 (PDT) Message-Id: <200305271823.h4RINu5o036194@repoman.freebsd.org> From: John Baldwin Date: Tue, 27 May 2003 11:23:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp_intel.c agpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 18:23:58 -0000 jhb 2003/05/27 11:23:56 PDT FreeBSD src repository Modified files: sys/pci agp_intel.c agpreg.h Log: Add support for the Intel 865 chipset. MFC after: 3 days Sponsored by: The Weather Channel Approved by: re (murray) Revision Changes Path 1.13 +9 -2 src/sys/pci/agp_intel.c 1.8 +1 -1 src/sys/pci/agpreg.h From owner-cvs-all@FreeBSD.ORG Tue May 27 11:31:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535B137B401 for ; Tue, 27 May 2003 11:31:25 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 1D01A43F93 for ; Tue, 27 May 2003 11:31:24 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 6285 invoked by uid 1000); 27 May 2003 18:31:24 -0000 Date: Tue, 27 May 2003 11:31:24 -0700 (PDT) From: Nate Lawson To: Scott Long In-Reply-To: <3ED2E303.7070304@btc.adaptec.com> Message-ID: <20030527112937.K6264@root.org> References: <20030526040103.EF60537B401@hub.freebsd.org> <20030526201453.V5016@root.org> <3ED2E303.7070304@btc.adaptec.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha busdma_machdep.csrc/sys/alpha/include bus.h src/sys/amd64/amd64 busdma_machdep.c src/sys/amd64/include bus_dma.h src/sys/i386/i386 busdma_machdep X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 18:31:25 -0000 On Mon, 26 May 2003, Scott Long wrote: > Nate Lawson wrote: > >> De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways. > >> No need for it to pollute the 5.x API any further. > > > > Do you plan to address this in the future? I believe it was useful for a > > few drivers. I seem to recall you mentioning a more general approach for > > the future. > > The better approach is to have bus_dmamap_load() respect the maxsegs > field of the tag and coelesce the segments by whatever means it has > available to it (bcopy, GART, etc). Yes, that was it. Do you have any plans to implement this? > Note the the bus_dmamem_alloc_size stuff went into the tree in Jan but > was never once used. I thought it would be useful for some existing uses of contigmalloc() but didn't get around to converting them since you said it was temporary anyway. This would help with the busdma conversion effort. -Nate From owner-cvs-all@FreeBSD.ORG Tue May 27 11:32:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02EEC37B404; Tue, 27 May 2003 11:32:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93E2243FA3; Tue, 27 May 2003 11:32:24 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RIWO0U036577; Tue, 27 May 2003 11:32:24 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RIWOL5036576; Tue, 27 May 2003 11:32:24 -0700 (PDT) Message-Id: <200305271832.h4RIWOL5036576@repoman.freebsd.org> From: John Baldwin Date: Tue, 27 May 2003 11:32:24 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mpt mpt_freebsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 18:32:25 -0000 jhb 2003/05/27 11:32:24 PDT FreeBSD src repository Modified files: sys/dev/mpt mpt_freebsd.c Log: Fix compile: the type is spelled bus_dmasync_op_t rather than bus_dmamap_sync_t. With hat: re Revision Changes Path 1.11 +3 -3 src/sys/dev/mpt/mpt_freebsd.c From owner-cvs-all@FreeBSD.ORG Tue May 27 12:19:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08E6037B401; Tue, 27 May 2003 12:19:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABD1B43F75; Tue, 27 May 2003 12:19:05 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RJJ50U039146; Tue, 27 May 2003 12:19:05 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RJJ5kd039145; Tue, 27 May 2003 12:19:05 -0700 (PDT) Message-Id: <200305271919.h4RJJ5kd039145@repoman.freebsd.org> From: Nate Lawson Date: Tue, 27 May 2003 12:19:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Subject: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 19:19:06 -0000 njl 2003/05/27 12:19:05 PDT FreeBSD src repository src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory repoman.freebsd.org:/tmp/cvs-serv39102 Log Message: Fix false AE_NOT_FOUND messages, reported in NetBSD port-i386/20897. NetBSD dsmethod.c rev 1.7 Fix parent-child loop problem Fix a reference count problem that may cause unexpected memory free Intel 20030512 ACPICA drop (nsalloc.c) Approved by: re (jhb) Obtained from: NetBSD, Intel Reported by: mbr, kochi AT netbsd.org Status: Vendor Tag: INTEL Release Tags: r20030228a U src/sys/contrib/dev/acpica/nsalloc.c U src/sys/contrib/dev/acpica/dsmethod.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Tue May 27 12:42:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE79937B401; Tue, 27 May 2003 12:42:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FD7E43FB1; Tue, 27 May 2003 12:42:18 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RJgI0U039997; Tue, 27 May 2003 12:42:18 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RJgIdU039996; Tue, 27 May 2003 12:42:18 -0700 (PDT) Message-Id: <200305271942.h4RJgIdU039996@repoman.freebsd.org> From: John Baldwin Date: Tue, 27 May 2003 12:42:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp_intel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 19:42:19 -0000 jhb 2003/05/27 12:42:18 PDT FreeBSD src repository Modified files: sys/pci agp_intel.c Log: Grr, fix compile. The bane of trying to split out patches into two commits. Reported by: Lukas Ertl With hat: re Pointy hat to: jhb Revision Changes Path 1.14 +1 -0 src/sys/pci/agp_intel.c From owner-cvs-all@FreeBSD.ORG Tue May 27 12:55:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23D5637B401; Tue, 27 May 2003 12:55:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF4FF43F3F; Tue, 27 May 2003 12:55:17 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RJtH0U045707; Tue, 27 May 2003 12:55:17 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RJtHxK045706; Tue, 27 May 2003 12:55:17 -0700 (PDT) Message-Id: <200305271955.h4RJtHxK045706@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 27 May 2003 12:55:17 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations wantlist.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 19:55:18 -0000 obrien 2003/05/27 12:55:17 PDT FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: Add request for a 3CR990 family Typhoon/Sidewinde (txp(4)) NIC. Revision Changes Path 1.127 +8 -1 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 12:58:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BF2A37B401; Tue, 27 May 2003 12:58:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 189D743FA3; Tue, 27 May 2003 12:58:05 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RJw40U045811; Tue, 27 May 2003 12:58:04 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RJw4hk045810; Tue, 27 May 2003 12:58:04 -0700 (PDT) Message-Id: <200305271958.h4RJw4hk045810@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 27 May 2003 12:58:04 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 19:58:06 -0000 trhodes 2003/05/27 12:58:04 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Add callouts to the cron(8) section. Add some better descriptions. Add more information where readers might be 'left in the dark.' Revision Changes Path 1.102 +69 -38 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:03:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0823E37B401; Tue, 27 May 2003 13:03:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 984CD43F85; Tue, 27 May 2003 13:03:55 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RK3t0U046999; Tue, 27 May 2003 13:03:55 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RK3tIe046998; Tue, 27 May 2003 13:03:55 -0700 (PDT) Message-Id: <200305272003.h4RK3tIe046998@repoman.freebsd.org> From: Scott Long Date: Tue, 27 May 2003 13:03:55 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml www/en/releases/5.2R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:03:56 -0000 scottl 2003/05/27 13:03:55 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml en/releases/5.2R todo.sgml Log: Move several items from the 5.1 list to the 5.2 list, update status on others Revision Changes Path 1.54 +4 -51 www/en/releases/5.1R/todo.sgml 1.22 +40 -1 www/en/releases/5.2R/todo.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:08:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 024E637B401; Tue, 27 May 2003 13:08:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F6F243FBD; Tue, 27 May 2003 13:08:55 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RK8t0U047207; Tue, 27 May 2003 13:08:55 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RK8sLs047206; Tue, 27 May 2003 13:08:54 -0700 (PDT) Message-Id: <200305272008.h4RK8sLs047206@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 27 May 2003 13:08:54 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:08:56 -0000 trhodes 2003/05/27 13:08:54 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Use a better . Suggested by: murray Revision Changes Path 1.103 +1 -1 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:11:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D161B37B401; Tue, 27 May 2003 13:11:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B8543FDD; Tue, 27 May 2003 13:11:39 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RKBd0U047365; Tue, 27 May 2003 13:11:39 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RKBddt047364; Tue, 27 May 2003 13:11:39 -0700 (PDT) Message-Id: <200305272011.h4RKBddt047364@repoman.freebsd.org> From: Scott Long Date: Tue, 27 May 2003 13:11:39 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:11:40 -0000 scottl 2003/05/27 13:11:39 PDT FreeBSD doc repository Modified files: en/releases/5.1R schedule.sgml Log: Update the schedule to reflect slipping the branch by three days. We are almost there, just need a clean up a few things. Revision Changes Path 1.10 +14 -14 www/en/releases/5.1R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:13:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25A1737B405; Tue, 27 May 2003 13:13:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF0EE43F85; Tue, 27 May 2003 13:13:44 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RKDi0U047474; Tue, 27 May 2003 13:13:44 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RKDix4047473; Tue, 27 May 2003 13:13:44 -0700 (PDT) Message-Id: <200305272013.h4RKDix4047473@repoman.freebsd.org> From: John Baldwin Date: Tue, 27 May 2003 13:13:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp_intel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:13:45 -0000 jhb 2003/05/27 13:13:44 PDT FreeBSD src repository Modified files: sys/pci agp_intel.c Log: Fix support for 256 MB aperture sizes on chipsets such as the 845 and 865. The APSIZE register has a variable-sized field of enabled bits. To figure out how many bits a specific host bridge supports, write the maximum width and see how many bits are set in the hardware. We then use this mask for setting and getting the aperture size. Prior to this, the agp(4) driver would treat an aperture size of 256 MB as 128 MB and would not allocate enough physical memory for the GART as a result. MFC after: 3 days Sponsored by: The Weather Channel Approved by: re (rwatson) Revision Changes Path 1.15 +16 -5 src/sys/pci/agp_intel.c From owner-cvs-all@FreeBSD.ORG Tue May 27 13:19:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08C6737B401; Tue, 27 May 2003 13:19:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4AA43FB1; Tue, 27 May 2003 13:19:32 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RKJW0U047664; Tue, 27 May 2003 13:19:32 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RKJWv8047663; Tue, 27 May 2003 13:19:32 -0700 (PDT) Message-Id: <200305272019.h4RKJWv8047663@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 27 May 2003 13:19:32 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:19:34 -0000 trhodes 2003/05/27 13:19:32 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Remove some redundant information from the rcNG section. Suggested by: murray Revision Changes Path 1.104 +2 -29 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:27:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F19B37B401; Tue, 27 May 2003 13:27:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D21C643F75; Tue, 27 May 2003 13:27:26 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RKRQ0U047956; Tue, 27 May 2003 13:27:26 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RKRQCc047955; Tue, 27 May 2003 13:27:26 -0700 (PDT) Message-Id: <200305272027.h4RKRQCc047955@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 27 May 2003 13:27:26 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:27:27 -0000 trhodes 2003/05/27 13:27:26 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Remove an invalid option. Revision Changes Path 1.105 +1 -1 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 13:51:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17C6E37B405; Tue, 27 May 2003 13:51:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADB2B43F75; Tue, 27 May 2003 13:51:40 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RKpe0U048914; Tue, 27 May 2003 13:51:40 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RKpeds048913; Tue, 27 May 2003 13:51:40 -0700 (PDT) Message-Id: <200305272051.h4RKpeds048913@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 27 May 2003 13:51:40 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 20:51:42 -0000 bmah 2003/05/27 13:51:40 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml Log: trhodes has committed his new RCng section to the Handbook, so cross off this task as completed. Revision Changes Path 1.55 +1 -10 www/en/releases/5.1R/todo.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 14:43:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F308B37B412; Tue, 27 May 2003 14:43:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F7543F3F; Tue, 27 May 2003 14:43:49 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RLhn0U051941; Tue, 27 May 2003 14:43:49 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RLhnxU051940; Tue, 27 May 2003 14:43:49 -0700 (PDT) Message-Id: <200305272143.h4RLhnxU051940@repoman.freebsd.org> From: Mike Makonnen Date: Tue, 27 May 2003 14:43:49 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 21:43:51 -0000 mtm 2003/05/27 14:43:49 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_join.c Log: Revert part of the last commit. I don't know what I was smoking. Approved by: re/rwatson Revision Changes Path 1.7 +13 -2 src/lib/libthr/thread/thr_join.c From owner-cvs-all@FreeBSD.ORG Tue May 27 14:48:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D935A37B401; Tue, 27 May 2003 14:48:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7876B43F85; Tue, 27 May 2003 14:48:42 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RLmg0U052115; Tue, 27 May 2003 14:48:42 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RLmgkl052114; Tue, 27 May 2003 14:48:42 -0700 (PDT) Message-Id: <200305272148.h4RLmgkl052114@repoman.freebsd.org> From: Mike Makonnen Date: Tue, 27 May 2003 14:48:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_exit.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 21:48:43 -0000 mtm 2003/05/27 14:48:42 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_exit.c Log: Minimize the potential for deadlocks between an exiting thread and it's joiner by making sure all locks and unlocks occur in the same order. For the record the lock order is: DEAD_LIST, THREAD_LIST, exiting thread, joiner thread. Approved by: re/rwatson Revision Changes Path 1.7 +18 -2 src/lib/libthr/thread/thr_exit.c From owner-cvs-all@FreeBSD.ORG Tue May 27 14:59:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6A5D37B401; Tue, 27 May 2003 14:59:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C6D43FD7; Tue, 27 May 2003 14:59:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RLxv0U052626; Tue, 27 May 2003 14:59:57 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RLxumq052625; Tue, 27 May 2003 14:59:56 -0700 (PDT) Message-Id: <200305272159.h4RLxumq052625@repoman.freebsd.org> From: Peter Wemm Date: Tue, 27 May 2003 14:59:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 identcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 21:59:58 -0000 peter 2003/05/27 14:59:56 PDT FreeBSD src repository Modified files: sys/amd64/amd64 identcpu.c Log: Update AMD Features vector to include NX (page table entry no-execute bit) and LM (long mode) etc. Revision Changes Path 1.125 +5 -5 src/sys/amd64/amd64/identcpu.c From owner-cvs-all@FreeBSD.ORG Tue May 27 15:10:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1824D37B405 for ; Tue, 27 May 2003 15:10:16 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 7E3C443FBD for ; Tue, 27 May 2003 15:10:14 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 6689 invoked by uid 1000); 27 May 2003 22:10:15 -0000 Date: Tue, 27 May 2003 15:10:15 -0700 (PDT) From: Nate Lawson To: Mike Makonnen In-Reply-To: <20030527214357.CE12C37B48F@hub.freebsd.org> Message-ID: <20030527150907.A6683@root.org> References: <20030527214357.CE12C37B48F@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 22:10:16 -0000 On Tue, 27 May 2003, Mike Makonnen wrote: > Modified files: > lib/libthr/thread thr_join.c > Log: > Revert part of the last commit. I don't know what I was smoking. > > Approved by: re/rwatson At what date/goal do you plan to stop making changes to libthr for 5.1? -Nate From owner-cvs-all@FreeBSD.ORG Tue May 27 15:21:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC9CA37B401; Tue, 27 May 2003 15:21:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BFDA43F3F; Tue, 27 May 2003 15:21:11 -0700 (PDT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4RMLB0U054449; Tue, 27 May 2003 15:21:11 -0700 (PDT) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4RMLBSB054448; Tue, 27 May 2003 15:21:11 -0700 (PDT) Message-Id: <200305272221.h4RMLBSB054448@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 27 May 2003 15:21:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sbin/ipfw ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 22:21:12 -0000 gshapiro 2003/05/27 15:21:11 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sbin/ipfw ipfw2.c Log: Complete the MFC started in revision 1.4.2.10. The dyn_keepalive keyword was missing even though it was in the man page and the sysctl exists. Revision Changes Path 1.4.2.13 +4 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-all@FreeBSD.ORG Tue May 27 15:33:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C6EC37B401; Tue, 27 May 2003 15:33:27 -0700 (PDT) Received: from out004.verizon.net (out004pub.verizon.net [206.46.170.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB1543FA3; Tue, 27 May 2003 15:33:26 -0700 (PDT) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([151.200.236.15]) by out004.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net>; Tue, 27 May 2003 17:33:25 -0500 Date: Tue, 27 May 2003 18:33:24 -0400 From: Mike Makonnen To: Nate Lawson In-Reply-To: <20030527150907.A6683@root.org> References: <20030527214357.CE12C37B48F@hub.freebsd.org> <20030527150907.A6683@root.org> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out004.verizon.net from [151.200.236.15] at Tue, 27 May 2003 17:33:24 -0500 Message-Id: <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 22:33:30 -0000 > > At what date/goal do you plan to stop making changes to libthr for 5.1? Those were the last two changes as part of the 'major overhaul.' There are still a few possible issue involving signals and Konsole (I'm investigating). But it's all downhill from now on :-) Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 mtm@FreeBSD.Org| FreeBSD - The Power To Serve From owner-cvs-all@FreeBSD.ORG Tue May 27 15:55:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EA3037B401; Tue, 27 May 2003 15:55:55 -0700 (PDT) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E22A43FA3; Tue, 27 May 2003 15:55:54 -0700 (PDT) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (ak03@localhost [127.0.0.1]) h4RMtr3D012882; Tue, 27 May 2003 18:55:53 -0400 (EDT) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.9/8.12.9/Submit) id h4RMtrJe012881; Tue, 27 May 2003 18:55:53 -0400 (EDT) Date: Tue, 27 May 2003 18:55:52 -0400 From: Alexander Kabaev To: Mike Makonnen Message-Id: <20030527185552.258336eb.ak03@gte.com> In-Reply-To: <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> References: <20030527214357.CE12C37B48F@hub.freebsd.org> <20030527150907.A6683@root.org> <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> Organization: Verizon Data Services X-Mailer: Sylpheed version 0.8.11claws156 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 22:55:55 -0000 On Tue, 27 May 2003 18:33:24 -0400 Mike Makonnen wrote: > > > > At what date/goal do you plan to stop making changes to libthr for > > 5.1? > > Those were the last two changes as part of the 'major overhaul.' There > are still a few possible issue involving signals and Konsole (I'm > investigating). But it's all downhill from now on :-) > > Cheers. konsole has similar problems when run with libkse. The ktrace + source code inspection convinced me that it simply abort()'a itself, because ttyname() function returns NULL in makePty() function. I do not think either threading library has anything to do with the failure. -- Alexander Kabaev From owner-cvs-all@FreeBSD.ORG Tue May 27 16:01:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6637B37B401; Tue, 27 May 2003 16:01:42 -0700 (PDT) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60B5943FAF; Tue, 27 May 2003 16:01:41 -0700 (PDT) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by attbi.com (rwcrmhc53) with ESMTP id <2003052723014005300gqas6e>; Tue, 27 May 2003 23:01:41 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id QAA29589; Tue, 27 May 2003 16:01:39 -0700 (PDT) Date: Tue, 27 May 2003 16:01:37 -0700 (PDT) From: Julian Elischer To: Mike Makonnen In-Reply-To: <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 23:01:42 -0000 On Tue, 27 May 2003, Mike Makonnen wrote: > > > > At what date/goal do you plan to stop making changes to libthr for 5.1? > > Those were the last two changes as part of the 'major overhaul.' There are still > a few possible issue involving signals and Konsole (I'm investigating). > But it's all downhill from now on :-) Interstingly "signals and konsole" is the main last problem with libkse at this stage too.. > > Cheers. > -- > Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc > mtm@identd.net | D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 > mtm@FreeBSD.Org| FreeBSD - The Power To Serve > From owner-cvs-all@FreeBSD.ORG Tue May 27 19:04:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D0E237B401; Tue, 27 May 2003 19:04:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2320843FAF; Tue, 27 May 2003 19:04:34 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S24X0U070814; Tue, 27 May 2003 19:04:33 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S24X8K070813; Tue, 27 May 2003 19:04:33 -0700 (PDT) Message-Id: <200305280204.h4S24X8K070813@repoman.freebsd.org> From: Mike Silbersack Date: Tue, 27 May 2003 19:04:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 02:04:34 -0000 silby 2003/05/27 19:04:33 PDT FreeBSD src repository Modified files: sys/net if_loop.c Log: Replace a handrolled defrag function with m_defrag. The handrolled function couldn't handle chains of > MCLBYTES, and it had a bug which caused corruption and panics in certain low mbuf situations. Additionally, change the failure case so that looutput returns ENOBUFS rather than attempting to pass on non-defragmented mbuf chains. Finally, remove the printf which would happen every time the low memory situation occured. It served no useful purpose other than to clue me in as to what was causing the panic in question. :) MFC after: 4 days Revision Changes Path 1.83 +14 -21 src/sys/net/if_loop.c From owner-cvs-all@FreeBSD.ORG Tue May 27 20:08:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3C8837B401; Tue, 27 May 2003 20:08:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451AC43F85; Tue, 27 May 2003 20:08:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S38B0U074008; Tue, 27 May 2003 20:08:11 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S38AhP074007; Tue, 27 May 2003 20:08:10 -0700 (PDT) Message-Id: <200305280308.h4S38AhP074007@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 27 May 2003 20:08:10 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en developers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 03:08:12 -0000 obrien 2003/05/27 20:08:10 PDT FreeBSD doc repository Modified files: en developers.sgml Log: Resign from re-alpha. Reminded by: trhodes Revision Changes Path 1.58 +2 -2 www/en/developers.sgml From owner-cvs-all@FreeBSD.ORG Tue May 27 20:18:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8F8837B401; Tue, 27 May 2003 20:18:39 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2781D43FAF; Tue, 27 May 2003 20:18:39 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4S3E0Z06446; Tue, 27 May 2003 20:14:00 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id UAA29263; Tue, 27 May 2003 20:18:33 -0700 (PDT) Message-ID: <3ED429E8.2080205@btc.adaptec.com> Date: Tue, 27 May 2003 21:15:52 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Silbersack References: <200305280204.h4S24X8K070813@repoman.freebsd.org> In-Reply-To: <200305280204.h4S24X8K070813@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 03:18:40 -0000 Mike Silbersack wrote: > silby 2003/05/27 19:04:33 PDT > > FreeBSD src repository > > Modified files: > sys/net if_loop.c > Log: > Replace a handrolled defrag function with m_defrag. The handrolled > function couldn't handle chains of > MCLBYTES, and it had a bug which > caused corruption and panics in certain low mbuf situations. > > Additionally, change the failure case so that looutput returns ENOBUFS > rather than attempting to pass on non-defragmented mbuf chains. > > Finally, remove the printf which would happen every time the low memory > situation occured. It served no useful purpose other than to clue me > in as to what was causing the panic in question. :) > > MFC after: 4 days > > Revision Changes Path > 1.83 +14 -21 src/sys/net/if_loop.c Don't forget that this was approved by re@ =-) From owner-cvs-all@FreeBSD.ORG Tue May 27 20:32:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F45337B401; Tue, 27 May 2003 20:32:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1E9543F3F; Tue, 27 May 2003 20:32:33 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S3WX0U074959; Tue, 27 May 2003 20:32:33 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S3WXni074958; Tue, 27 May 2003 20:32:33 -0700 (PDT) Message-Id: <200305280332.h4S3WXni074958@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 27 May 2003 20:32:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/binutils/bfd elf64-alpha.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 03:32:34 -0000 obrien 2003/05/27 20:32:33 PDT FreeBSD src repository Modified files: contrib/binutils/bfd elf64-alpha.c Log: From FSF Binutils CVS repo: 2003-04-09 Richard Henderson * elf64-alpha.c (elf64_alpha_relocate_section) : Ignore relocations against r_symndx == 0. Requested by: kris,re(scottl) Revision Changes Path 1.18 +15 -1 src/contrib/binutils/bfd/elf64-alpha.c From owner-cvs-all@FreeBSD.ORG Tue May 27 22:28:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0770037B401; Tue, 27 May 2003 22:28:16 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id D19F943F3F; Tue, 27 May 2003 22:28:14 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 63E9A66B9B; Tue, 27 May 2003 22:28:14 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 419355EF; Tue, 27 May 2003 22:28:14 -0700 (PDT) Date: Tue, 27 May 2003 22:28:14 -0700 From: Kris Kennaway To: "David E. O'Brien" Message-ID: <20030528052814.GA90975@rot13.obsecurity.org> References: <200305280332.h4S3WXni074958@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nFreZHaLTZJo0R7j" Content-Disposition: inline In-Reply-To: <200305280332.h4S3WXni074958@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils/bfd elf64-alpha.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 05:28:16 -0000 --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 27, 2003 at 08:32:33PM -0700, David E. O'Brien wrote: > obrien 2003/05/27 20:32:33 PDT >=20 > FreeBSD src repository >=20 > Modified files: > contrib/binutils/bfd elf64-alpha.c=20 > Log: > From FSF Binutils CVS repo: > 2003-04-09 Richard Henderson > * elf64-alpha.c (elf64_alpha_relocate_section) : > Ignore relocations against r_symndx =3D=3D 0. > =20 > Requested by: kris,re(scottl) Thanks. In case anyone else is interested, this fixes the failures on alpha when trying to link large object files (most commonly in C++ code in KDE). Kris --nFreZHaLTZJo0R7j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1EjuWry0BWjoQKURApcIAJ497qOnqFJHQBHDaLHmmT8ghnwpIgCgip34 vJkr8EZXIYwtEDPIbUEcmXs= =+7SO -----END PGP SIGNATURE----- --nFreZHaLTZJo0R7j-- From owner-cvs-all@FreeBSD.ORG Tue May 27 22:53:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 549F037B401; Tue, 27 May 2003 22:53:14 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id C08F043F85; Tue, 27 May 2003 22:53:13 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: (from root@localhost) by builder.freebsdmall.com (8.12.9/8.11.6) id h4S5rDLM090665; Tue, 27 May 2003 22:53:13 -0700 (PDT) (envelope-from murray) Date: Tue, 27 May 2003 22:53:11 -0700 From: Murray Stokely To: "David E. O'Brien" Message-ID: <20030527225311.C8403@freebsdmall.com> References: <200305271630.h4RGUOid030351@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="HWvPVVuAAfuRc6SZ" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200305271630.h4RGUOid030351@repoman.freebsd.org>; from obrien@freebsd.org on Tue, May 27, 2003 at 09:30:24AM -0700 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: doc-committers@freebsd.org cc: cvs-doc@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 05:53:14 -0000 --HWvPVVuAAfuRc6SZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, May 27, 2003 at 09:30:24AM -0700, David E. O'Brien wrote: > Resign from re-alpha. I think I can speak for everyone else on re@ and core@ when I thank you for all of your hard work behind the scenes for the last several years. You've been the driving force behind FreeBSD/alpha releases on many occassions. Thanks again! - Murray --HWvPVVuAAfuRc6SZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE+1E7GtNcQog5FH30RAk0WAJ9shQ461WNIBFtYXGywA1S5I56NdgCgxZv2 mc45+q4gMeqfQ+WiWBfvfks= =zPcV -----END PGP SIGNATURE----- --HWvPVVuAAfuRc6SZ-- From owner-cvs-all@FreeBSD.ORG Tue May 27 23:12:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D6BC37B401; Tue, 27 May 2003 23:12:27 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E973943F75; Tue, 27 May 2003 23:12:26 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: (from root@localhost) by builder.freebsdmall.com (8.12.9/8.11.6) id h4S6CQ9x090826; Tue, 27 May 2003 23:12:26 -0700 (PDT) (envelope-from murray) Date: Tue, 27 May 2003 23:12:26 -0700 From: Murray Stokely To: Tom Rhodes Message-ID: <20030527231226.G8403@freebsdmall.com> References: <200305271958.h4RJw4hk045810@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200305271958.h4RJw4hk045810@repoman.freebsd.org>; from trhodes@FreeBSD.org on Tue, May 27, 2003 at 12:58:04PM -0700 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 06:12:28 -0000 On Tue, May 27, 2003 at 12:58:04PM -0700, Tom Rhodes wrote: > Modified files: > en_US.ISO8859-1/books/handbook/config chapter.sgml > Log: > Add callouts to the cron(8) section. > Add some better descriptions. > Add more information where readers might be 'left in the dark.' Hey Tom, thanks for adding the callouts. Can you send this sort of thing to doc@ or to jim@ first, please? There are a lot of basic grammar errors. - Murray From owner-cvs-all@FreeBSD.ORG Wed May 28 00:46:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AEFC37B401; Wed, 28 May 2003 00:46:09 -0700 (PDT) Received: from out003.verizon.net (out003pub.verizon.net [206.46.170.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EAB743F85; Wed, 28 May 2003 00:46:08 -0700 (PDT) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([151.200.236.15]) by out003.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030528074607.PASI4805.out003.verizon.net@kokeb.ambesa.net>; Wed, 28 May 2003 02:46:07 -0500 Date: Wed, 28 May 2003 03:46:06 -0400 From: Mike Makonnen To: Alexander Kabaev In-Reply-To: <20030527185552.258336eb.ak03@gte.com> References: <20030527214357.CE12C37B48F@hub.freebsd.org> <20030527150907.A6683@root.org> <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> <20030527185552.258336eb.ak03@gte.com> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out003.verizon.net from [151.200.236.15] at Wed, 28 May 2003 02:46:06 -0500 Message-Id: <20030528074607.PASI4805.out003.verizon.net@kokeb.ambesa.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: "Daniel C.Sobral" cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 07:46:10 -0000 On Tue, 27 May 2003 18:55:52 -0400 Alexander Kabaev wrote: > > konsole has similar problems when run with libkse. The ktrace + source > code inspection convinced me that it simply abort()'a itself, because > ttyname() function returns NULL in makePty() function. Yes, seems like it. More comments below. > > I do not think either threading library has anything to do with the > failure. It doesn't look like it's a threading issue, but since libc_r doesn't bring out this behaviour in Konsole, they must be doing (or not doing) something (directly or indirectly) that triggers it. I have finally taken the plunge and installed KDE, and I can reproduce the bug. However, it is unclear to me exactly what the problem is. To complicate things even further it doesn't even look look Konsole uses threads, and instead plays games with fork(2). I think we need someone who is familiar with the code to help out because I am having a hard time following it. Just to add a couple of data points: It crashes because tcgetattr(3) called from libc/ttyname_unthreaded() returns ENOTTY to TEPty::makePty(). When it does crash it is also usually preceded by: konsole: cannot chown /dev/ttypc. Reason: Operation not permitted which is as a result of this code snippet from TEPty.cpp:openPty() if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) == 0) { m_MasterFd = master_fd; m_SlaveFd = slave_fd; #ifdef HAVE_PTSNAME strncpy(ptynam, ptsname(master_fd), 50); ... [snip] ... if (fchown(slave_fd, (uid_t) -1, gid) < 0) { m_bNeedGrantPty = true; fprintf(stderr,"konsole: cannot chown %s.\n",ttynam); perror("Reason"); } The fact that it works sometimes and abort()s at others suggests that there may be a race somewhere, but where... Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 mtm@FreeBSD.Org| FreeBSD - The Power To Serve From owner-cvs-all@FreeBSD.ORG Wed May 28 01:12:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15D1437B401; Wed, 28 May 2003 01:12:46 -0700 (PDT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21C0A43F3F; Wed, 28 May 2003 01:12:45 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9/8.12.9) with ESMTP id h4S8CWM7091020; Wed, 28 May 2003 01:12:36 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200305280812.h4S8CWM7091020@gw.catspoiler.org> Date: Wed, 28 May 2003 01:12:32 -0700 (PDT) From: Don Lewis To: mtm@identd.net In-Reply-To: <20030528074607.PASI4805.out003.verizon.net@kokeb.ambesa.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: src-committers@FreeBSD.org cc: dcs@tcoip.com.br cc: julian@elischer.org cc: cvs-src@FreeBSD.org cc: ak03@gte.com cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 08:12:46 -0000 On 28 May, Mike Makonnen wrote: > On Tue, 27 May 2003 18:55:52 -0400 > Alexander Kabaev wrote: > >> >> konsole has similar problems when run with libkse. The ktrace + source >> code inspection convinced me that it simply abort()'a itself, because >> ttyname() function returns NULL in makePty() function. > > Yes, seems like it. More comments below. > >> >> I do not think either threading library has anything to do with the >> failure. > > It doesn't look like it's a threading issue, but since libc_r doesn't bring out > this behaviour in Konsole, they must be doing (or not doing) something (directly > or indirectly) that triggers it. > > I have finally taken the plunge and installed KDE, and I can reproduce the bug. > However, it is unclear to me exactly what the problem is. To complicate things > even further it doesn't even look look Konsole uses threads, and instead plays > games with fork(2). I think we need someone who is familiar with the code to > help out because I am having a hard time following it. Just to add a couple of > data points: > > It crashes because tcgetattr(3) called from libc/ttyname_unthreaded() returns > ENOTTY to TEPty::makePty(). > > When it does crash it is also usually preceded by: > konsole: cannot chown /dev/ttypc. > Reason: Operation not permitted > which is as a result of this code snippet from TEPty.cpp:openPty() > > if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) == 0) { > m_MasterFd = master_fd; > m_SlaveFd = slave_fd; > #ifdef HAVE_PTSNAME > strncpy(ptynam, ptsname(master_fd), 50); > ... > [snip] > ... > if (fchown(slave_fd, (uid_t) -1, gid) < 0) > { > m_bNeedGrantPty = true; > fprintf(stderr,"konsole: cannot chown %s.\n",ttynam); > perror("Reason"); > } > > > The fact that it works sometimes and abort()s at others suggests that there may > be a race somewhere, but where... According to the openpty() and fchown() man pages, the fchown() call will fail with that error if konsole isn't running with an effective UID of super-user at that point. AND The slave device either isn't owned by the user or gid isn't a member of the user's group. From owner-cvs-all@FreeBSD.ORG Wed May 28 01:23:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44FEF37B401; Wed, 28 May 2003 01:23:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA19E43F3F; Wed, 28 May 2003 01:23:01 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S8N10U001036; Wed, 28 May 2003 01:23:01 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S8N1ix001035; Wed, 28 May 2003 01:23:01 -0700 (PDT) Message-Id: <200305280823.h4S8N1ix001035@repoman.freebsd.org> From: Max Khon Date: Wed, 28 May 2003 01:23:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib realpath.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 08:23:04 -0000 fjoe 2003/05/28 01:23:01 PDT FreeBSD src repository Modified files: lib/libc/stdlib realpath.c Log: Fix stripping last path component when only one path component left. PR: 52686 MFC after: 1 day Revision Changes Path 1.20 +2 -2 src/lib/libc/stdlib/realpath.c From owner-cvs-all@FreeBSD.ORG Wed May 28 01:25:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 904) id 09C4137B401; Wed, 28 May 2003 01:25:32 -0700 (PDT) Date: Wed, 28 May 2003 01:25:32 -0700 From: Max Khon To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030528012531.A40603@FreeBSD.org> References: <200305280823.h4S8N1ix001035@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200305280823.h4S8N1ix001035@repoman.freebsd.org>; from fjoe@FreeBSD.org on Wed, May 28, 2003 at 01:23:01AM -0700 Subject: Re: cvs commit: src/lib/libc/stdlib realpath.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 08:25:32 -0000 hi, there! On Wed, May 28, 2003 at 01:23:01AM -0700, Max Khon wrote: > fjoe 2003/05/28 01:23:01 PDT > > FreeBSD src repository > > Modified files: > lib/libc/stdlib realpath.c > Log: > Fix stripping last path component when only one path component left. > > PR: 52686 > MFC after: 1 day forgot to mention: Approved by: re/rwatson /fjoe From owner-cvs-all@FreeBSD.ORG Wed May 28 02:13:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F0B537B404; Wed, 28 May 2003 02:13:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FE3F43FAF; Wed, 28 May 2003 02:13:10 -0700 (PDT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S9D90U003808; Wed, 28 May 2003 02:13:09 -0700 (PDT) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S9D9Fk003807; Wed, 28 May 2003 02:13:09 -0700 (PDT) Message-Id: <200305280913.h4S9D9Fk003807@repoman.freebsd.org> From: Martin Blapp Date: Wed, 28 May 2003 02:13:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/xdr xdr_rec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 09:13:10 -0000 mbr 2003/05/28 02:13:09 PDT FreeBSD src repository Modified files: lib/libc/xdr xdr_rec.c Log: Fix amd(8) clients, if a FreeBSD mountd(8) server is used. Remove the special treatment of non-blocking mode in the "look ahead function" xdrrec_eof(). It currently assumes that the last read() in a row of several reads does not have zero lenght. If this is the case, svc_vc_stat() does return XPRT_MOREREQS, and the RPC-request aborts because there is no data to read anymore. To fix this, go back to the original version of the code for non-blocking mode until NetBSD comes up with another possible fix like this one in xdrrec_eof() if (rstrm->last_frag && rstrm->in_finger == rstrm->in_boundry) { return TRUE; } Return always FALSE in set_input_fragment() for non-blocking mode. Since this was not used in FreeBSD, I omitted it at the first time. Now we use this function and we should always return FALSE for it. Reviewed by: rwatson Approved by: re Revision Changes Path 1.20 +2 -9 src/lib/libc/xdr/xdr_rec.c From owner-cvs-all@FreeBSD.ORG Wed May 28 02:16:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6592337B401; Wed, 28 May 2003 02:16:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0367643FA3; Wed, 28 May 2003 02:16:36 -0700 (PDT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4S9GZ0U003972; Wed, 28 May 2003 02:16:35 -0700 (PDT) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4S9GZjN003971; Wed, 28 May 2003 02:16:35 -0700 (PDT) Message-Id: <200305280916.h4S9GZjN003971@repoman.freebsd.org> From: Martin Blapp Date: Wed, 28 May 2003 02:16:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 09:16:36 -0000 mbr 2003/05/28 02:16:35 PDT FreeBSD src repository Modified files: lib/libc/rpc svc_vc.c Log: If AF_LOCAL is used, we need to use __msgread_withcred() instead of just read() in non-blocking mode too. The reason is obvious. NetBSD uses a complete different way to get the credentials so this patch only applies to FreeBSD. Reviewed by: rwatson Approved by: re Revision Changes Path 1.18 +6 -1 src/lib/libc/rpc/svc_vc.c From owner-cvs-all@FreeBSD.ORG Wed May 28 04:24:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B35537B401; Wed, 28 May 2003 04:24:01 -0700 (PDT) Received: from mail.tcoip.com.br (erato.tco.net.br [200.220.254.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6857143F85; Wed, 28 May 2003 04:23:58 -0700 (PDT) (envelope-from dcs@tcoip.com.br) Received: from tcoip.com.br ([10.0.2.6]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id h4SBNnl17212; Wed, 28 May 2003 08:23:49 -0300 Message-ID: <3ED49C48.1090205@tcoip.com.br> Date: Wed, 28 May 2003 08:23:52 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en, pt-br, ja MIME-Version: 1.0 To: Mike Makonnen References: <20030527214357.CE12C37B48F@hub.freebsd.org> <20030527150907.A6683@root.org> <20030527223325.PAUX28930.out004.verizon.net@kokeb.ambesa.net> <20030527185552.258336eb.ak03@gte.com> <20030528074607.PASI4805.out003.verizon.net@kokeb.ambesa.net> In-Reply-To: <20030528074607.PASI4805.out003.verizon.net@kokeb.ambesa.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Alexander Kabaev cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 11:24:01 -0000 Mike Makonnen wrote: >=20 > It crashes because tcgetattr(3) called from libc/ttyname_unthreaded() r= eturns > ENOTTY to TEPty::makePty(). >=20 > When it does crash it is also usually preceded by: > konsole: cannot chown /dev/ttypc. > Reason: Operation not permitted Alas, using libc_r it displays both lines and more lines still after=20 that. Not sure if before or after makePty, though. --=20 Daniel C. Sobral Ger=EAncia de Opera=E7=F5es Divis=E3o de Comunica=E7=E3o de Dados Coordena=E7=E3o de Seguran=E7a VIVO Centro Oeste Norte Fones: 55-61-313-7654/Cel: 55-61-9618-0904 E-mail: Daniel.Capo@tco.net.br Daniel.Sobral@tcoip.com.br dcs@tcoip.com.br From owner-cvs-all@FreeBSD.ORG Wed May 28 06:22:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9009237B401; Wed, 28 May 2003 06:22:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43A4A43F93; Wed, 28 May 2003 06:22:11 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SDMA0U021386; Wed, 28 May 2003 06:22:10 -0700 (PDT) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SDMA8Q021385; Wed, 28 May 2003 06:22:10 -0700 (PDT) Message-Id: <200305281322.h4SDMA8Q021385@repoman.freebsd.org> From: Ian Dowse Date: Wed, 28 May 2003 06:22:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_cluster.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 13:22:12 -0000 iedowse 2003/05/28 06:22:10 PDT FreeBSD src repository Modified files: sys/kern vfs_cluster.c Log: In cluster_wbuild(), initialise b_iocmd to BIO_WRITE before calling buf_start() to avoid triggering a panic in softdep_disk_io_initiation() if b_iocmd happened to be BIO_READ. The later initialisation of b_iocmd in cluster_wbuild() could probably be moved to before the buf_start() call, but this patch keeps the change as simple as possible. This is reported to fix occasional "softdep_disk_io_initiation: read" panics, especially on NFS servers. Reported by: Nick Hilliard Tested by: Nick Hilliard Approved by: re (rwatson) Revision Changes Path 1.138 +3 -1 src/sys/kern/vfs_cluster.c From owner-cvs-all@FreeBSD.ORG Wed May 28 06:53:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 333D337B404; Wed, 28 May 2003 06:53:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3D334400F; Wed, 28 May 2003 06:53:22 -0700 (PDT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SDrI0U022474; Wed, 28 May 2003 06:53:18 -0700 (PDT) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SDrInC022473; Wed, 28 May 2003 06:53:18 -0700 (PDT) Message-Id: <200305281353.h4SDrInC022473@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 28 May 2003 06:53:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man9 Makefile mbuf.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 13:53:25 -0000 yar 2003/05/28 06:53:18 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man9 Makefile Added files: (Branch: RELENG_4) share/man/man9 mbuf.9 Log: Merge mbuf(9) page from CURRENT. This is particularly important since there already exist references to mbuf(9) from other manpages in STABLE. PR: docs/44337 docs/50463 Revision Changes Path 1.60.2.24 +1 -1 src/share/man/man9/Makefile 1.27.2.1 +476 -0 src/share/man/man9/mbuf.9 (new) From owner-cvs-all@FreeBSD.ORG Wed May 28 07:46:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD3D937B401; Wed, 28 May 2003 07:46:12 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60FAE43F75; Wed, 28 May 2003 07:46:12 -0700 (PDT) (envelope-from hmp@nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1072) id B12372105C; Wed, 28 May 2003 07:46:11 -0700 (PDT) Date: Wed, 28 May 2003 07:46:11 -0700 From: Hiten Pandya To: Yar Tikhiy Message-ID: <20030528144611.GC78275@perrin.int.nxad.com> References: <200305281353.h4SDrInC022473@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305281353.h4SDrInC022473@repoman.freebsd.org> X-Operating-System: FreeBSD FreeBSD 4.7-STABLE User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 Makefile mbuf.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 14:46:13 -0000 On Wed, May 28, 2003 at 06:53:18AM -0700, Yar Tikhiy wrote: > yar 2003/05/28 06:53:18 PDT > > FreeBSD src repository > > Modified files: (Branch: RELENG_4) > share/man/man9 Makefile > Added files: (Branch: RELENG_4) > share/man/man9 mbuf.9 > Log: > Merge mbuf(9) page from CURRENT. This is particularly > important since there already exist references to mbuf(9) > from other manpages in STABLE. > > PR: docs/44337 docs/50463 Thanks Yar! I will not this in the Problem Report(s). -- Hiten (hmp@FreeBSD.ORG) From owner-cvs-all@FreeBSD.ORG Wed May 28 08:22:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A472437B434; Wed, 28 May 2003 08:22:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40BCA43F75; Wed, 28 May 2003 08:22:04 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SFM40U027451; Wed, 28 May 2003 08:22:04 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SFM3Pw027450; Wed, 28 May 2003 08:22:03 -0700 (PDT) Message-Id: <200305281522.h4SFM3Pw027450@repoman.freebsd.org> From: Tom Rhodes Date: Wed, 28 May 2003 08:22:03 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 15:22:05 -0000 trhodes 2003/05/28 08:22:03 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Quick s/started/controlled/ for correctness. Remove an extra space: s/command :/command:/ Use a complete sentence in the last paragraph. Revision Changes Path 1.106 +5 -5 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed May 28 10:10:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C87C37B401; Wed, 28 May 2003 10:10:48 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13CA643FAF; Wed, 28 May 2003 10:10:45 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 95DD4530E; Wed, 28 May 2003 19:10:42 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Nate Lawson References: <200305271919.h4RJJ5kd039145@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 28 May 2003 19:10:42 +0200 In-Reply-To: <200305271919.h4RJJ5kd039145@repoman.freebsd.org> (Nate Lawson's message of "Tue, 27 May 2003 12:19:05 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 17:10:49 -0000 Nate Lawson writes: > Log Message: > Fix false AE_NOT_FOUND messages, reported in NetBSD port-i386/20897. > NetBSD dsmethod.c rev 1.7 > > Fix parent-child loop problem > Fix a reference count problem that may cause unexpected memory free > Intel 20030512 ACPICA drop (nsalloc.c) > > Approved by: re (jhb) > Obtained from: NetBSD, Intel > Reported by: mbr, kochi AT netbsd.org Tested by: nobody This broke buildkernel on ACPI systems (i386, ia64) and still hasn't been fixed 24 hours later. DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Wed May 28 10:29:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBA9237B401 for ; Wed, 28 May 2003 10:29:17 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id E0BC843F85 for ; Wed, 28 May 2003 10:29:16 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 8199 invoked by uid 1000); 28 May 2003 17:29:17 -0000 Date: Wed, 28 May 2003 10:29:17 -0700 (PDT) From: Nate Lawson To: Dag-Erling Smorgrav In-Reply-To: Message-ID: <20030528102708.J8183@root.org> References: <200305271919.h4RJJ5kd039145@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 17:29:18 -0000 On Wed, 28 May 2003, Dag-Erling Smorgrav wrote: > Nate Lawson writes: > > Log Message: > > Fix false AE_NOT_FOUND messages, reported in NetBSD port-i386/20897. > > NetBSD dsmethod.c rev 1.7 > > > > Fix parent-child loop problem > > Fix a reference count problem that may cause unexpected memory free > > Intel 20030512 ACPICA drop (nsalloc.c) > > Tested by: nobody Wrong. It turns out the WARNS settings for the module differ than for buildkernel. It was built as a module and run-time tested on my laptop. I'll do more compile testing in the future but it is painful since my system takes so long to build. > This broke buildkernel on ACPI systems (i386, ia64) and still hasn't > been fixed 24 hours later. A patch has been submitted to re@. I was waiting on user testing of a part that fixes functionality. -Nate From owner-cvs-all@FreeBSD.ORG Wed May 28 10:32:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AEBF37B404; Wed, 28 May 2003 10:32:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB06B43F75; Wed, 28 May 2003 10:32:31 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SHWV0U039043; Wed, 28 May 2003 10:32:31 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SHWVr3039042; Wed, 28 May 2003 10:32:31 -0700 (PDT) Message-Id: <200305281732.h4SHWVr3039042@repoman.freebsd.org> From: Nate Lawson Date: Wed, 28 May 2003 10:32:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Subject: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 17:32:32 -0000 njl 2003/05/28 10:32:31 PDT FreeBSD src repository src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory repoman.freebsd.org:/tmp/cvs-serv39005 Log Message: Revert to using TABLE_ID_DSDT as the default. It looks like the dynamic ID allocation is not there yet. This fixes a few warnings about \_OS_ not being found and an S3 freeze for one user. Re-staticize AcpiNsRemoveReference() since it is not needed elsewhere. Approved by: re (scottl) Status: Vendor Tag: INTEL Release Tags: r20030228b U src/sys/contrib/dev/acpica/nsalloc.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Wed May 28 11:38:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D03C337B401; Wed, 28 May 2003 11:38:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70E4743F3F; Wed, 28 May 2003 11:38:11 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SIcB0U042238; Wed, 28 May 2003 11:38:11 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SIcBVh042237; Wed, 28 May 2003 11:38:11 -0700 (PDT) Message-Id: <200305281838.h4SIcBVh042237@repoman.freebsd.org> From: Alan Cox Date: Wed, 28 May 2003 11:38:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 18:38:12 -0000 alc 2003/05/28 11:38:10 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern vfs_bio.c Log: MFC changes to vmapbuf() o Check the b_bufsize passed to vmapbuf() returning an error if it is invalid. o Remove an unnecessary trunc_page(). o Remove a debugging printf(). Revision Changes Path 1.242.2.20 +3 -3 src/sys/kern/vfs_bio.c From owner-cvs-all@FreeBSD.ORG Wed May 28 11:54:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E277437B401; Wed, 28 May 2003 11:54:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8134A43F85; Wed, 28 May 2003 11:54:45 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SIsj0U042850; Wed, 28 May 2003 11:54:45 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SIsjJP042849; Wed, 28 May 2003 11:54:45 -0700 (PDT) Message-Id: <200305281854.h4SIsjJP042849@repoman.freebsd.org> From: Hiten Pandya Date: Wed, 28 May 2003 11:54:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man9 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 18:54:46 -0000 hmp 2003/05/28 11:54:45 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) share/man/man9 Makefile Log: Add MLINK for suser_xxx(9) function, which is documented in suser(9) PR: docs/50390 Submitted by: Dmitry Sivachenko Approved by: des (mentor) Revision Changes Path 1.60.2.25 +1 -0 src/share/man/man9/Makefile From owner-cvs-all@FreeBSD.ORG Wed May 28 12:39:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 637C337B401; Wed, 28 May 2003 12:39:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02DCA43F75; Wed, 28 May 2003 12:39:34 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SJdX0U045289; Wed, 28 May 2003 12:39:33 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SJdXj7045288; Wed, 28 May 2003 12:39:33 -0700 (PDT) Message-Id: <200305281939.h4SJdXj7045288@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 28 May 2003 12:39:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/crypto/openssh sshd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 19:39:34 -0000 des 2003/05/28 12:39:33 PDT FreeBSD src repository Modified files: crypto/openssh sshd.c Log: Fix off-by-one and initialization errors which prevented sshd from restarting when sent a SIGHUP. Submitted by: tegge Approved by: re (jhb) Revision Changes Path 1.34 +3 -2 src/crypto/openssh/sshd.c From owner-cvs-all@FreeBSD.ORG Wed May 28 14:01:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60AFD37B401; Wed, 28 May 2003 14:01:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC03143F3F; Wed, 28 May 2003 14:01:22 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SL1M0U054839; Wed, 28 May 2003 14:01:22 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SL1M14054838; Wed, 28 May 2003 14:01:22 -0700 (PDT) Message-Id: <200305282101.h4SL1M14054838@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 28 May 2003 14:01:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 21:01:23 -0000 hrs 2003/05/28 14:01:22 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: - Fix to use the official vendor name (s/Melco/MELCO/). hardware/common/dev.sgml Pointed out by: rushani Approved by: re (bmah) - Fix a typo. relnotes/common/new.sgml Approved by: re (bmah) Revision Changes Path 1.156 +12 -12 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.573 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Wed May 28 14:01:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B9A37B414; Wed, 28 May 2003 14:01:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5DF443FA3; Wed, 28 May 2003 14:01:34 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4SL1Y0U054887; Wed, 28 May 2003 14:01:34 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4SL1YN3054886; Wed, 28 May 2003 14:01:34 -0700 (PDT) Message-Id: <200305282101.h4SL1YN3054886@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 28 May 2003 14:01:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ja_JP.eucJP/errata article.sgml src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 May 2003 21:01:35 -0000 hrs 2003/05/28 14:01:34 PDT FreeBSD src repository Modified files: release/doc/ja_JP.eucJP/errata article.sgml release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Merge the following from the English version: 1.36 -> 1.38 errata/article.sgml 1.553 -> 1.572 relnotes/common/new.sgml Approved by: re (bmah) Revision Changes Path 1.18 +9 -1 src/release/doc/ja_JP.eucJP/errata/article.sgml 1.85 +288 -48 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Wed May 28 17:10:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B02437B401; Wed, 28 May 2003 17:10:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B601843F93; Wed, 28 May 2003 17:10:12 -0700 (PDT) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T0AC0U070077; Wed, 28 May 2003 17:10:12 -0700 (PDT) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T0ACwU070076; Wed, 28 May 2003 17:10:12 -0700 (PDT) Message-Id: <200305290010.h4T0ACwU070076@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Wed, 28 May 2003 17:10:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ja_JP.eucJP/hardware/common dev.sgml src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 00:10:13 -0000 rushani 2003/05/28 17:10:12 PDT FreeBSD src repository (doc committer) Modified files: release/doc/ja_JP.eucJP/hardware/common dev.sgml release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Merge the following from the English version: 1.155 -> 1.156 hardware/common/dev.sgml 1.572 -> 1.573 relnotes/common/new.sgml Approved by: re (bmah) Revision Changes Path 1.14 +13 -13 src/release/doc/ja_JP.eucJP/hardware/common/dev.sgml 1.86 +1 -1 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Wed May 28 20:17:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4FD237B401; Wed, 28 May 2003 20:17:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6457343F85; Wed, 28 May 2003 20:17:49 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T3Hn0U079362; Wed, 28 May 2003 20:17:49 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T3Hnpq079361; Wed, 28 May 2003 20:17:49 -0700 (PDT) Message-Id: <200305290317.h4T3Hnpq079361@repoman.freebsd.org> From: Robert Watson Date: Wed, 28 May 2003 20:17:49 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 03:17:50 -0000 rwatson 2003/05/28 20:17:49 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml Log: AMD and mountd problems be fixed, so remove from the TODO list for 5.1-RELEASE. Thanks Martin! Submitted by: mbr Revision Changes Path 1.56 +1 -14 www/en/releases/5.1R/todo.sgml From owner-cvs-all@FreeBSD.ORG Wed May 28 22:09:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A29E037B401; Wed, 28 May 2003 22:09:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4071443FA3; Wed, 28 May 2003 22:09:16 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T59G0U090122; Wed, 28 May 2003 22:09:16 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T59Ffx090121; Wed, 28 May 2003 22:09:15 -0700 (PDT) Message-Id: <200305290509.h4T59Ffx090121@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 28 May 2003 22:09:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 05:09:17 -0000 marcel 2003/05/28 22:09:15 PDT FreeBSD src repository Modified files: sys/ia64/ia64 trap.c Log: Fix what I think is a cut-n-paste bug: use OID_AUTO for the print_usertrap sysctl instead of CPU_UNALIGNED_PRINT. The latter is used already. Approved by: re@ (blanket) Revision Changes Path 1.79 +1 -1 src/sys/ia64/ia64/trap.c From owner-cvs-all@FreeBSD.ORG Wed May 28 23:15:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DF3937B401; Wed, 28 May 2003 23:15:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E0CF43F85; Wed, 28 May 2003 23:15:36 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T6Fa0U093878; Wed, 28 May 2003 23:15:36 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T6FZ6L093877; Wed, 28 May 2003 23:15:35 -0700 (PDT) Message-Id: <200305290615.h4T6FZ6L093877@repoman.freebsd.org> From: Alan Cox Date: Wed, 28 May 2003 23:15:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern kern_physio.c vfs_aio.c src/sys/ufs/ffs ffs_rawread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 06:15:37 -0000 alc 2003/05/28 23:15:35 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern kern_physio.c vfs_aio.c sys/ufs/ffs ffs_rawread.c Log: MFC o Don't reinitialize fields that are already initialized by getpbuf(). o Sufficient access checks are performed by vmapbuf() that calling useracc() is pointless (and costly). Remove the call to useracc(). Revision Changes Path 1.46.2.3 +2 -9 src/sys/kern/kern_physio.c 1.70.2.28 +3 -16 src/sys/kern/vfs_aio.c 1.3.2.2 +0 -5 src/sys/ufs/ffs/ffs_rawread.c From owner-cvs-all@FreeBSD.ORG Wed May 28 23:30:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9AAC37B401; Wed, 28 May 2003 23:30:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E7443F93; Wed, 28 May 2003 23:30:37 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T6Ub0U094413; Wed, 28 May 2003 23:30:37 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T6Uakw094412; Wed, 28 May 2003 23:30:36 -0700 (PDT) Message-Id: <200305290630.h4T6Uakw094412@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 28 May 2003 23:30:36 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c unaligned.c src/sys/ia64/include cpu.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 06:30:38 -0000 marcel 2003/05/28 23:30:36 PDT FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c unaligned.c sys/ia64/include cpu.h Log: Move the sysctls of the misalignment handler to where they belong and use OID_AUTO instead of fixed IDs. Approved by: re@ (blanket) Revision Changes Path 1.136 +0 -13 src/sys/ia64/ia64/machdep.c 1.4 +13 -2 src/sys/ia64/ia64/unaligned.c 1.32 +5 -11 src/sys/ia64/include/cpu.h From owner-cvs-all@FreeBSD.ORG Thu May 29 02:18:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF4637B401; Thu, 29 May 2003 02:18:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE58D43F75; Thu, 29 May 2003 02:18:23 -0700 (PDT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4T9IN0U008585; Thu, 29 May 2003 02:18:23 -0700 (PDT) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4T9IM9q008584; Thu, 29 May 2003 02:18:22 -0700 (PDT) Message-Id: <200305290918.h4T9IM9q008584@repoman.freebsd.org> From: Martin Blapp Date: Thu, 29 May 2003 02:18:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: COLUMBIA Subject: cvs commit: src/contrib/amd/conf/transp transp_sockets.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 09:18:24 -0000 mbr 2003/05/29 02:18:22 PDT FreeBSD src repository Modified files: (Branch: COLUMBIA) contrib/amd/conf/transp transp_sockets.c Log: Use non-blocking mode for amd(8) too. The fix will be part of the next amd(8) snap. Reviewed by: rwatson Approved by: re Obtained from: NetBSD Revision Changes Path 1.1.1.5 +8 -0 src/contrib/amd/conf/transp/transp_sockets.c From owner-cvs-all@FreeBSD.ORG Thu May 29 08:43:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC11437B401; Thu, 29 May 2003 08:43:35 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDE4943F93; Thu, 29 May 2003 08:43:34 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h4TFhWNQ091941; Thu, 29 May 2003 17:43:32 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.9/8.12.9/Submit) id h4TFhR4e091940; Thu, 29 May 2003 17:43:27 +0200 (CEST) (envelope-from marius) Date: Thu, 29 May 2003 17:43:27 +0200 From: Marius Strobl To: Martin Blapp Message-ID: <20030529174327.A47874@newtrinity.zeist.de> References: <200305280916.h4S9GZjN003971@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200305280916.h4S9GZjN003971@repoman.freebsd.org>; from mbr@freebsd.org on Wed, May 28, 2003 at 02:16:35AM -0700 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: rwatson@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 15:43:36 -0000 On Wed, May 28, 2003 at 02:16:35AM -0700, Martin Blapp wrote: > mbr 2003/05/28 02:16:35 PDT > > FreeBSD src repository > > Modified files: > lib/libc/rpc svc_vc.c > Log: > If AF_LOCAL is used, we need to use __msgread_withcred() instead of > just read() in non-blocking mode too. The reason is obvious. NetBSD > uses a complete different way to get the credentials so this patch > only applies to FreeBSD. > static int read_vc(xprtp, buf, len) void *xprtp; void *buf; int len; { SVCXPRT *xprt; int sock; int milliseconds = 35 * 1000; struct pollfd pollfd; struct sockaddr *sa; struct cmessage *cm; struct cf_conn *cfp; xprt = (SVCXPRT *)xprtp; assert(xprt != NULL); sock = xprt->xp_fd; cfp = (struct cf_conn *)xprt->xp_p1; if (cfp->nonblock) { if (sa->sa_family == AF_LOCAL) { This is bogus, it uses an uninitialized sa which causes problems on at least sparc64: Starting rpcbind. May 29 15:03:01 alchemy rpcbind: cannot create socket for udp6 May 29 15:03:01 alchemy rpcbind: cannot create socket for tcp6 NFS access cache time=2 ELF ldconfig path: /usr/lib /usr/lib/compat /usr/local/lib Starting mountd. Starting nfsd. Starting statd. rpc.statd: svc_tli_create: could not open connection for udp6 May 29 15:03:03 alchemy kernel: pid 259 (rpcbind), uid 0: exited on signal 11 () rpc.statd: svc_tp_create: Could not register prog 100024 vers 1 on udp rpc.statd: cannot create udp service Starting lockd. May 29 15:03:03 alchemy mountd[321]: could not create any services rpc.lockd: unable to register (NLM_PROG, NLM_SM, udp) Starting local daemons: alchemy# gdb53 -c /rpcbind.core /usr/sbin/rpcbind GNU gdb 5.3 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "sparc64-portbld-freebsd5.1"... Core was generated by `rpcbind'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/lib/libwrap.so.3...done. Loaded symbols for /usr/lib/libwrap.so.3 Reading symbols from /usr/lib/libutil.so.3...done. Loaded symbols for /usr/lib/libutil.so.3 Reading symbols from /usr/lib/libc.so.5...done. Loaded symbols for /usr/lib/libc.so.5 Reading symbols from /usr/libexec/ld-elf.so.1...done. Loaded symbols for /usr/libexec/ld-elf.so.1 #0 read_vc (xprtp=0x21a300, buf=0x21a47c, len=4) at /usr/src/lib/libc/rpc/svc_vc.c:491 491 if (sa->sa_family == AF_LOCAL) { (gdb) where #0 read_vc (xprtp=0x21a300, buf=0x21a47c, len=4) at /usr/src/lib/libc/rpc/svc_vc.c:491 #1 0x00000000405e5658 in __xdrrec_getrec (xdrs=0x21a400, statp=0x220400, expectdata=1) at /usr/src/lib/libc/xdr/xdr_rec.c:548 #2 0x00000000405d63d8 in svc_vc_recv (xprt=0x220400, msg=0x7fdffffd880) at /usr/src/lib/libc/rpc/svc_vc.c:633 #3 0x00000000405d9d30 in svc_getreq_common (fd=32) at /usr/src/lib/libc/rpc/svc.c:635 #4 0x00000000405d9fd8 in svc_getreq_poll (pfdp=0x7fdffffdb10, pollretval=1) at /usr/src/lib/libc/rpc/svc.c:728 #5 0x00000000001070a8 in my_svc_run () at rpcb_svc_com.c:1142 #6 0x0000000000103f20 in main (argc=0, argv=0x7fdfffffd88) at rpcbind.c:223 #7 0x0000000000102ca4 in _start () But even if sa is initialized before the check for sa->sa_family == AF_LOCAL the added code causes still problems when the kernel is compiled without IPv6-support: Starting rpcbind. May 29 17:29:55 alchemy rpcbind: cannot create socket for udp6 May 29 17:29:55 alchemy rpcbind: cannot create socket for tcp6 NFS access cache time=2 ELF ldconfig path: /usr/lib /usr/lib/compat /usr/local/lib Starting mountd. Starting nfsd. May 29 17:29:56 alchemy mountd[319]: could not create any services Starting statd. rpc.statd: svc_tli_create: could not open connection for udp6 rpc.statd: svc_tp_create: Could not register prog 100024 vers 1 on udp rpc.statd: cannot create udp service Starting lockd. rpc.lockd: unable to register (NLM_PROG, NLM_SM, udp) Starting local daemons:. Reverting to revision 1.17 of src/lib/libc/rpc/svc_vc.c fixes it: Starting rpcbind. May 29 17:17:47 alchemy rpcbind: cannot create socket for udp6 May 29 17:17:47 alchemy rpcbind: cannot create socket for tcp6 NFS access cache time=2 ELF ldconfig path: /usr/lib /usr/lib/compat /usr/local/lib Starting mountd. Starting nfsd. Starting statd. rpc.statd: svc_tli_create: could not open connection for udp6 rpc.statd: svc_tli_create: could not open connection for tcp6 Starting lockd. Starting local daemons:. From owner-cvs-all@FreeBSD.ORG Thu May 29 10:10:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDEC137B407; Thu, 29 May 2003 10:10:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A0C943F85; Thu, 29 May 2003 10:10:46 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4THAk0U043754; Thu, 29 May 2003 10:10:46 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4THAjJB043753; Thu, 29 May 2003 10:10:45 -0700 (PDT) Message-Id: <200305291710.h4THAjJB043753@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 29 May 2003 10:10:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_init.c thr_private.h thr_sig.c thr_spinlock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 17:10:47 -0000 deischen 2003/05/29 10:10:45 PDT FreeBSD src repository Modified files: lib/libpthread/thread thr_init.c thr_private.h thr_sig.c thr_spinlock.c Log: Don't really spin on a spinlock; silently convert it to the same low-level lock used by the libpthread implementation. In the future, we'll eliminate spinlocks from libc but that will wait until after 5.1-release. Don't call an application signal handler if the handler is the same as the library-installed handler. This seems to be possible after a fork and is the cause of konsole hangs. Approved by: re@ (jhb) Revision Changes Path 1.53 +1 -0 src/lib/libpthread/thread/thr_init.c 1.88 +2 -1 src/lib/libpthread/thread/thr_private.h 1.52 +3 -2 src/lib/libpthread/thread/thr_sig.c 1.16 +65 -13 src/lib/libpthread/thread/thr_spinlock.c From owner-cvs-all@FreeBSD.ORG Thu May 29 10:49:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18C9A37B401; Thu, 29 May 2003 10:49:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE3C843F75; Thu, 29 May 2003 10:49:21 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4THnL0U045207; Thu, 29 May 2003 10:49:21 -0700 (PDT) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4THnLXu045206; Thu, 29 May 2003 10:49:21 -0700 (PDT) Message-Id: <200305291749.h4THnLXu045206@repoman.freebsd.org> From: Thomas Moestl Date: Thu, 29 May 2003 10:49:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 tick.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 17:49:22 -0000 tmm 2003/05/29 10:49:21 PDT FreeBSD src repository Modified files: sys/sparc64/sparc64 tick.c Log: Completely disable interrupts (not just raise %pil) when calculating the value to be written into tick_compare in tick_hardclock(). While we were taking care that the value to be written was at least TICK_GRACE ticks in the future, a vector interrupt could happen between calculating the value and writing it. If it took longer than TICK_GRACE to complete (which is doubtful for a single device-triggered vector interrupt, but quite likely for some IPIs), the value written would be in the past and tick interrupts (which drive hardclock and statclock) would stop until %tick wraps around, which takes a long time. Also, increase TICK_GRACE from 1000 to 10000 for good measure. Reported by: kris Reviewed by: jake Approved by: re (scottl) Revision Changes Path 1.13 +5 -4 src/sys/sparc64/sparc64/tick.c From owner-cvs-all@FreeBSD.ORG Thu May 29 11:18:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCC8837B401 for ; Thu, 29 May 2003 11:18:02 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC6643FB1 for ; Thu, 29 May 2003 11:18:01 -0700 (PDT) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6p2/8.12.3) with ESMTP id h4TIHw4o087816; Thu, 29 May 2003 20:17:58 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Date: Thu, 29 May 2003 20:17:58 +0200 (CEST) From: Martin Blapp To: Marius Strobl Message-ID: <20030529201655.S94836@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:18:03 -0000 Hi, I already sent a patch to re@ to fix the problem ... --- src/lib/libc/rpc/svc_vc.c.orig Thu May 29 20:12:57 2003 +++ src/lib/libc/rpc/svc_vc.c Thu May 29 20:13:25 2003 @@ -487,6 +487,8 @@ cfp = (struct cf_conn *)xprt->xp_p1; + cm = NULL; + sa = (struct sockaddr *)xprt->xp_rtaddr.buf; if (cfp->nonblock) { if (sa->sa_family == AF_LOCAL) { cm = (struct cmessage *)xprt->xp_verf.oa_base; @@ -522,8 +524,6 @@ } } while ((pollfd.revents & POLLIN) == 0); - cm = NULL; - sa = (struct sockaddr *)xprt->xp_rtaddr.buf; if (sa->sa_family == AF_LOCAL) { cm = (struct cmessage *)xprt->xp_verf.oa_base; if ((len = __msgread_withcred(sock, buf, len, cm)) > 0) { Martin From owner-cvs-all@FreeBSD.ORG Thu May 29 11:34:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16A4F37B401 for ; Thu, 29 May 2003 11:34:21 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21D5943F93 for ; Thu, 29 May 2003 11:34:20 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h4TIYJNQ093474; Thu, 29 May 2003 20:34:19 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.9/8.12.9/Submit) id h4TIYEtw093473; Thu, 29 May 2003 20:34:14 +0200 (CEST) (envelope-from marius) Date: Thu, 29 May 2003 20:34:13 +0200 From: Marius Strobl To: Martin Blapp Message-ID: <20030529203413.E90547@newtrinity.zeist.de> References: <20030529201655.S94836@cvs.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030529201655.S94836@cvs.imp.ch>; from mb@imp.ch on Thu, May 29, 2003 at 08:17:58PM +0200 cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:34:21 -0000 On Thu, May 29, 2003 at 08:17:58PM +0200, Martin Blapp wrote: > > Hi, > > I already sent a patch to re@ to fix the problem ... > > --- src/lib/libc/rpc/svc_vc.c.orig Thu May 29 20:12:57 2003 > +++ src/lib/libc/rpc/svc_vc.c Thu May 29 20:13:25 2003 > @@ -487,6 +487,8 @@ > > cfp = (struct cf_conn *)xprt->xp_p1; > > + cm = NULL; > + sa = (struct sockaddr *)xprt->xp_rtaddr.buf; > if (cfp->nonblock) { > if (sa->sa_family == AF_LOCAL) { > cm = (struct cmessage *)xprt->xp_verf.oa_base; > @@ -522,8 +524,6 @@ > } > } while ((pollfd.revents & POLLIN) == 0); > > - cm = NULL; > - sa = (struct sockaddr *)xprt->xp_rtaddr.buf; > if (sa->sa_family == AF_LOCAL) { > cm = (struct cmessage *)xprt->xp_verf.oa_base; > if ((len = __msgread_withcred(sock, buf, len, cm)) > 0) { > I already tried exactly the same and like I wrote it keeps rpcbind from dumping core but doesn't fix the problem when there's no IPv6-support in the kernel. From owner-cvs-all@FreeBSD.ORG Thu May 29 11:36:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFD5D37B401; Thu, 29 May 2003 11:36:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E1AB43FA3; Thu, 29 May 2003 11:36:27 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TIaR0U048015; Thu, 29 May 2003 11:36:27 -0700 (PDT) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TIaQJx048014; Thu, 29 May 2003 11:36:26 -0700 (PDT) Message-Id: <200305291836.h4TIaQJx048014@repoman.freebsd.org> From: David Malone Date: Thu, 29 May 2003 11:36:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:36:28 -0000 dwmalone 2003/05/29 11:36:26 PDT FreeBSD src repository Modified files: sys/kern uipc_syscalls.c Log: Grab giant in sendit rather than kern_sendit because sockargs may allocate mbufs with M_TRYWAIT, which may require Giant. Reviewed by: bmilekic Approved by: re (scottl) Revision Changes Path 1.147 +6 -4 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Thu May 29 11:38:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B5FD37B404; Thu, 29 May 2003 11:38:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65A5343F75; Thu, 29 May 2003 11:38:25 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TIcP0U048119; Thu, 29 May 2003 11:38:25 -0700 (PDT) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TIcPqP048117; Thu, 29 May 2003 11:38:25 -0700 (PDT) Message-Id: <200305291838.h4TIcPqP048117@repoman.freebsd.org> From: David Malone Date: Thu, 29 May 2003 11:38:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:38:26 -0000 dwmalone 2003/05/29 11:38:25 PDT FreeBSD src repository Modified files: sys/kern subr_mbuf.c Log: Add an INVARIENTS only check to make sure Giant is held if mbuf allocation is attempted with M_TRYWAIT. Reviewed by: bmilekic Approved by: re (scottl) Revision Changes Path 1.50 +2 -0 src/sys/kern/subr_mbuf.c From owner-cvs-all@FreeBSD.ORG Thu May 29 11:51:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09A2B37B401; Thu, 29 May 2003 11:51:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 737DB43F75; Thu, 29 May 2003 11:51:33 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TIpX0U048806; Thu, 29 May 2003 11:51:33 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TIpWf6048805; Thu, 29 May 2003 11:51:32 -0700 (PDT) Message-Id: <200305291851.h4TIpWf6048805@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 29 May 2003 11:51:32 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml doc/en_US.ISO8859-1/books/handbook/install chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:51:34 -0000 trhodes 2003/05/29 11:51:32 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml en_US.ISO8859-1/books/handbook/install chapter.sgml Log: Replace the MS-DOS users miniFAQ with a more formal section. Revision Changes Path 1.107 +53 -0 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml 1.247 +56 -102 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu May 29 11:59:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0290C37B401; Thu, 29 May 2003 11:59:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9296D43F93; Thu, 29 May 2003 11:59:02 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TIx20U049106; Thu, 29 May 2003 11:59:02 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TIx2pd049105; Thu, 29 May 2003 11:59:02 -0700 (PDT) Message-Id: <200305291859.h4TIx2pd049105@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 29 May 2003 11:59:02 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 18:59:03 -0000 trhodes 2003/05/29 11:59:02 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Back out rev 1.107 of this file, those changes should have never been committed. Pointy hat: trhodes Revision Changes Path 1.108 +0 -53 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu May 29 12:43:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C6E937B401; Thu, 29 May 2003 12:43:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF0CF43F3F; Thu, 29 May 2003 12:43:22 -0700 (PDT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TJhM0U051733; Thu, 29 May 2003 12:43:22 -0700 (PDT) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TJhMnf051732; Thu, 29 May 2003 12:43:22 -0700 (PDT) Message-Id: <200305291943.h4TJhMnf051732@repoman.freebsd.org> From: Martin Blapp Date: Thu, 29 May 2003 12:43:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 19:43:23 -0000 mbr 2003/05/29 12:43:22 PDT FreeBSD src repository Modified files: lib/libc/rpc svc_vc.c Log: Fix a problem introduced in the last commit. sa and cm are not initialized at this place. Move the initializing before the non-blocking check. Submitted by: Marius Strobl Reviewed by: jhb Approved by: re Revision Changes Path 1.19 +2 -2 src/lib/libc/rpc/svc_vc.c From owner-cvs-all@FreeBSD.ORG Thu May 29 13:09:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E5D237B401; Thu, 29 May 2003 13:09:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE9A343F75; Thu, 29 May 2003 13:09:50 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TK9o0U058876; Thu, 29 May 2003 13:09:50 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TK9olv058875; Thu, 29 May 2003 13:09:50 -0700 (PDT) Message-Id: <200305292009.h4TK9olv058875@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 29 May 2003 13:09:50 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mail chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:09:51 -0000 trhodes 2003/05/29 13:09:50 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Update the SMTP_AUTH section just a tad. Revision Changes Path 1.78 +9 -0 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu May 29 13:40:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B36BC37B401; Thu, 29 May 2003 13:40:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53DC643FA3; Thu, 29 May 2003 13:40:51 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TKep0U060299; Thu, 29 May 2003 13:40:51 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TKepR7060298; Thu, 29 May 2003 13:40:51 -0700 (PDT) Message-Id: <200305292040.h4TKepR7060298@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 29 May 2003 13:40:51 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_create.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:40:52 -0000 mtm 2003/05/29 13:40:51 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_create.c Log: It's unnecessary to lock the thread during creation. Simply extend the scope of the active thread list lock. Approved by: re/jhb Revision Changes Path 1.10 +2 -5 src/lib/libthr/thread/thr_create.c From owner-cvs-all@FreeBSD.ORG Thu May 29 13:46:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C3E537B401; Thu, 29 May 2003 13:46:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 182CC43F85; Thu, 29 May 2003 13:46:54 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TKkr0U060625; Thu, 29 May 2003 13:46:53 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TKkrxi060624; Thu, 29 May 2003 13:46:53 -0700 (PDT) Message-Id: <200305292046.h4TKkrxi060624@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 29 May 2003 13:46:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_exit.c thr_gc.c thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:46:54 -0000 mtm 2003/05/29 13:46:53 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_exit.c thr_gc.c thr_join.c Log: Don't hold the active thread list lock when signaling the gc thread. The dead list thread is sufficient for synchronization. Retire the arch_id (ldt array slot) in the gc thread instead of the doing it in the thread itself. Approved by: re/jhb Revision Changes Path 1.8 +13 -11 src/lib/libthr/thread/thr_exit.c 1.6 +7 -0 src/lib/libthr/thread/thr_gc.c 1.8 +1 -1 src/lib/libthr/thread/thr_join.c From owner-cvs-all@FreeBSD.ORG Thu May 29 13:49:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4A3437B401; Thu, 29 May 2003 13:49:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71E9943F93; Thu, 29 May 2003 13:49:17 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TKnH0U060690; Thu, 29 May 2003 13:49:17 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TKnHSu060689; Thu, 29 May 2003 13:49:17 -0700 (PDT) Message-Id: <200305292049.h4TKnHSu060689@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 29 May 2003 13:49:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:49:18 -0000 mtm 2003/05/29 13:49:17 PDT FreeBSD src repository Modified files: lib/libthr/arch/i386/i386 _setcurthread.c Log: Missing unlock. Approved by: re/jhb Revision Changes Path 1.9 +2 -0 src/lib/libthr/arch/i386/i386/_setcurthread.c From owner-cvs-all@FreeBSD.ORG Thu May 29 13:54:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC94337B401; Thu, 29 May 2003 13:54:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A6FF43F85; Thu, 29 May 2003 13:54:01 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TKs10U060924; Thu, 29 May 2003 13:54:01 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TKs1ic060923; Thu, 29 May 2003 13:54:01 -0700 (PDT) Message-Id: <200305292054.h4TKs1ic060923@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 29 May 2003 13:54:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cond.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:54:02 -0000 mtm 2003/05/29 13:54:01 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_cond.c Log: Use a static lock to ake sure pthread_cond_* functions called from multiple threads don't initialze the same condition variable more than once. Explicitly compare cond pointers with PTHREAD_COND_INITIALIZER instead of NULL. Just because it happens to be defined as NULL is no reason to encourage the idea that people can call those functions with NULL pointers to a condition variable. Approved by: re/jhb Revision Changes Path 1.7 +20 -2 src/lib/libthr/thread/thr_cond.c From owner-cvs-all@FreeBSD.ORG Thu May 29 13:58:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F7BB37B401; Thu, 29 May 2003 13:58:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D2543F85; Thu, 29 May 2003 13:58:31 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TKwV0U061153; Thu, 29 May 2003 13:58:31 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TKwV4V061152; Thu, 29 May 2003 13:58:31 -0700 (PDT) Message-Id: <200305292058.h4TKwV4V061152@repoman.freebsd.org> From: Mike Makonnen Date: Thu, 29 May 2003 13:58:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 20:58:32 -0000 mtm 2003/05/29 13:58:31 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_mutex.c Log: Make the mutex static initializers look more like the one for condition variables. Cosmetic. Explicitly compare against PTHREAD_MUTEX_INITIALIZER. We shouldn't encourage calls to the mutex functions with null pointers to mutexes. Approved by: re/jhb Revision Changes Path 1.9 +19 -25 src/lib/libthr/thread/thr_mutex.c From owner-cvs-all@FreeBSD.ORG Thu May 29 14:19:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6404337B401; Thu, 29 May 2003 14:19:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00E4943F75; Thu, 29 May 2003 14:19:19 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TLJI0U063015; Thu, 29 May 2003 14:19:18 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TLJIPk063014; Thu, 29 May 2003 14:19:18 -0700 (PDT) Message-Id: <200305292119.h4TLJIPk063014@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 29 May 2003 14:19:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 21:19:19 -0000 mux 2003/05/29 14:19:18 PDT FreeBSD src repository Modified files: sys/kern kern_sysctl.c Log: When loading a module that contains a sysctl which is already compiled in the kernel, the sysctl_register() call would fail, as expected. However, when unloading this module again, the kernel would then panic in sysctl_unregister(). Print a message error instead. Submitted by: Nicolai Petri Reviewed by: imp Approved by: re@ (jhb) Revision Changes Path 1.143 +24 -1 src/sys/kern/kern_sysctl.c From owner-cvs-all@FreeBSD.ORG Thu May 29 14:28:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C66F337B401; Thu, 29 May 2003 14:28:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 719B743FAF; Thu, 29 May 2003 14:28:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TLSa0U063412; Thu, 29 May 2003 14:28:36 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TLSaYp063411; Thu, 29 May 2003 14:28:36 -0700 (PDT) Message-Id: <200305292128.h4TLSaYp063411@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 29 May 2003 14:28:36 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 axe.4 mac_portacl.4 my.4 rndtest.4 rue.4 sbsh.4 src/share/man/man4/man4.i386 pae.4 sbni.4 vpd.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 21:28:37 -0000 ru 2003/05/29 14:28:36 PDT FreeBSD src repository Modified files: share/man/man4 axe.4 mac_portacl.4 my.4 rndtest.4 rue.4 sbsh.4 share/man/man4/man4.i386 pae.4 sbni.4 vpd.4 Log: Assorted mdoc(7) fixes. Approved by: re (blanket) Revision Changes Path 1.3 +19 -20 src/share/man/man4/axe.4 1.2 +42 -27 src/share/man/man4/mac_portacl.4 1.4 +17 -16 src/share/man/man4/man4.i386/pae.4 1.2 +70 -38 src/share/man/man4/man4.i386/sbni.4 1.2 +22 -18 src/share/man/man4/man4.i386/vpd.4 1.2 +5 -4 src/share/man/man4/my.4 1.2 +9 -5 src/share/man/man4/rndtest.4 1.2 +24 -26 src/share/man/man4/rue.4 1.2 +19 -13 src/share/man/man4/sbsh.4 From owner-cvs-all@FreeBSD.ORG Thu May 29 14:41:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3672A37B401; Thu, 29 May 2003 14:41:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA41643F75; Thu, 29 May 2003 14:41:11 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TLfB0U064006; Thu, 29 May 2003 14:41:11 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TLfB9Y064005; Thu, 29 May 2003 14:41:11 -0700 (PDT) Message-Id: <200305292141.h4TLfB9Y064005@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 29 May 2003 14:41:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 libmap.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 21:41:12 -0000 ru 2003/05/29 14:41:11 PDT FreeBSD src repository Modified files: share/man/man5 libmap.conf.5 Log: Assorted mdoc(7) fixes. Revision Changes Path 1.2 +25 -23 src/share/man/man5/libmap.conf.5 From owner-cvs-all@FreeBSD.ORG Thu May 29 14:48:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D69C37B408 for ; Thu, 29 May 2003 14:48:18 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id ABE1A43FB1 for ; Thu, 29 May 2003 14:48:16 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 10424 invoked by uid 1000); 29 May 2003 21:48:17 -0000 Date: Thu, 29 May 2003 14:48:17 -0700 (PDT) From: Nate Lawson To: Maxime Henrion In-Reply-To: <20030529211927.3EF8237B4C4@hub.freebsd.org> Message-ID: <20030529144231.A10415@root.org> References: <20030529211927.3EF8237B4C4@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 21:48:18 -0000 On Thu, 29 May 2003, Maxime Henrion wrote: > Modified files: > sys/kern kern_sysctl.c > Log: > When loading a module that contains a sysctl which is already compiled > in the kernel, the sysctl_register() call would fail, as expected. > However, when unloading this module again, the kernel would then panic > in sysctl_unregister(). Print a message error instead. > > + /* > + * This can happen when a module fails to register and is > + * being unloaded afterwards. It should not be a panic() > + * for normal use. > + */ > + if (error) > + printf("%s: failed to unregister sysctl\n", __func__); Thank you, this is helpful. However, we have quite a few error messages that appear when an attach fails. Is this one necessary in practice or should the eventual plan be to change the API to return an errno? (Note, not talking about 5.1 here). -Nate From owner-cvs-all@FreeBSD.ORG Thu May 29 14:52:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0910A37B401; Thu, 29 May 2003 14:52:53 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E15543FD7; Thu, 29 May 2003 14:52:52 -0700 (PDT) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 584872ED52E; Thu, 29 May 2003 14:52:52 -0700 (PDT) Date: Thu, 29 May 2003 23:52:52 +0200 From: Maxime Henrion To: Nate Lawson Message-ID: <20030529215252.GF21011@elvis.mu.org> References: <20030529211927.3EF8237B4C4@hub.freebsd.org> <20030529144231.A10415@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030529144231.A10415@root.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 21:52:53 -0000 Nate Lawson wrote: > On Thu, 29 May 2003, Maxime Henrion wrote: > > Modified files: > > sys/kern kern_sysctl.c > > Log: > > When loading a module that contains a sysctl which is already compiled > > in the kernel, the sysctl_register() call would fail, as expected. > > However, when unloading this module again, the kernel would then panic > > in sysctl_unregister(). Print a message error instead. > > > > + /* > > + * This can happen when a module fails to register and is > > + * being unloaded afterwards. It should not be a panic() > > + * for normal use. > > + */ > > + if (error) > > + printf("%s: failed to unregister sysctl\n", __func__); > > Thank you, this is helpful. However, we have quite a few error messages > that appear when an attach fails. Is this one necessary in practice or > should the eventual plan be to change the API to return an errno? (Note, > not talking about 5.1 here). I agree with you that we should think about this issue a bit more once 5.1 is out, as I'm not comfortable with this error message. However, if I remember right, changing the API is not an option after 5.1 since we promised to not break APIs and ABIs past this release. If the message turns out to be annoying, it can be removed a bit later and we can have sysctl_unregister() silently fail. Changing the API would probably be better, but I bet we'll have to do this for 6.0. Cheers, Maxime From owner-cvs-all@FreeBSD.ORG Thu May 29 15:00:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C4AE37B401 for ; Thu, 29 May 2003 15:00:12 -0700 (PDT) Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4926B43F3F for ; Thu, 29 May 2003 15:00:10 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 4347 invoked from network); 29 May 2003 22:00:07 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 29 May 2003 22:00:07 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h4TM03p0085672; Thu, 29 May 2003 18:00:04 -0400 (EDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20030529215252.GF21011@elvis.mu.org> Date: Thu, 29 May 2003 18:00:15 -0400 (EDT) From: John Baldwin To: Maxime Henrion cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:00:12 -0000 On 29-May-2003 Maxime Henrion wrote: > Nate Lawson wrote: >> On Thu, 29 May 2003, Maxime Henrion wrote: >> > Modified files: >> > sys/kern kern_sysctl.c >> > Log: >> > When loading a module that contains a sysctl which is already compiled >> > in the kernel, the sysctl_register() call would fail, as expected. >> > However, when unloading this module again, the kernel would then panic >> > in sysctl_unregister(). Print a message error instead. >> > >> > + /* >> > + * This can happen when a module fails to register and is >> > + * being unloaded afterwards. It should not be a panic() >> > + * for normal use. >> > + */ >> > + if (error) >> > + printf("%s: failed to unregister sysctl\n", __func__); >> >> Thank you, this is helpful. However, we have quite a few error messages >> that appear when an attach fails. Is this one necessary in practice or >> should the eventual plan be to change the API to return an errno? (Note, >> not talking about 5.1 here). > > I agree with you that we should think about this issue a bit more once > 5.1 is out, as I'm not comfortable with this error message. However, if > I remember right, changing the API is not an option after 5.1 since we > promised to not break APIs and ABIs past this release. If the message > turns out to be annoying, it can be removed a bit later and we can have > sysctl_unregister() silently fail. Changing the API would probably be > better, but I bet we'll have to do this for 6.0. AFAIK, the API and ABI is not frozen until RELENG_5 is branched. That isn't happening at 5.1 release, so there is still some time to fix the API/ABI if need be. We really should start avoiding making API/ABI changes though after 5.1 is out. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Thu May 29 15:01:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C9DF37B401; Thu, 29 May 2003 15:01:48 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7495843F3F; Thu, 29 May 2003 15:01:47 -0700 (PDT) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 600082ED57F; Thu, 29 May 2003 15:01:47 -0700 (PDT) Date: Fri, 30 May 2003 00:01:47 +0200 From: Maxime Henrion To: John Baldwin Message-ID: <20030529220147.GG21011@elvis.mu.org> References: <20030529215252.GF21011@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:01:48 -0000 John Baldwin wrote: > > On 29-May-2003 Maxime Henrion wrote: > > Nate Lawson wrote: > >> On Thu, 29 May 2003, Maxime Henrion wrote: > >> > Modified files: > >> > sys/kern kern_sysctl.c > >> > Log: > >> > When loading a module that contains a sysctl which is already compiled > >> > in the kernel, the sysctl_register() call would fail, as expected. > >> > However, when unloading this module again, the kernel would then panic > >> > in sysctl_unregister(). Print a message error instead. > >> > > >> > + /* > >> > + * This can happen when a module fails to register and is > >> > + * being unloaded afterwards. It should not be a panic() > >> > + * for normal use. > >> > + */ > >> > + if (error) > >> > + printf("%s: failed to unregister sysctl\n", __func__); > >> > >> Thank you, this is helpful. However, we have quite a few error messages > >> that appear when an attach fails. Is this one necessary in practice or > >> should the eventual plan be to change the API to return an errno? (Note, > >> not talking about 5.1 here). > > > > I agree with you that we should think about this issue a bit more once > > 5.1 is out, as I'm not comfortable with this error message. However, if > > I remember right, changing the API is not an option after 5.1 since we > > promised to not break APIs and ABIs past this release. If the message > > turns out to be annoying, it can be removed a bit later and we can have > > sysctl_unregister() silently fail. Changing the API would probably be > > better, but I bet we'll have to do this for 6.0. > > AFAIK, the API and ABI is not frozen until RELENG_5 is branched. > That isn't happening at 5.1 release, so there is still some time to > fix the API/ABI if need be. We really should start avoiding making > API/ABI changes though after 5.1 is out. Ok, thanks for the clarification! Maxime From owner-cvs-all@FreeBSD.ORG Thu May 29 15:06:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4338737B401; Thu, 29 May 2003 15:06:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0C7A43F93; Thu, 29 May 2003 15:06:06 -0700 (PDT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TM660U066736; Thu, 29 May 2003 15:06:06 -0700 (PDT) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TM668N066735; Thu, 29 May 2003 15:06:06 -0700 (PDT) Message-Id: <200305292206.h4TM668N066735@repoman.freebsd.org> From: Martin Blapp Date: Thu, 29 May 2003 15:06:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:06:07 -0000 mbr 2003/05/29 15:06:06 PDT FreeBSD src repository Modified files: lib/libc/rpc svc_vc.c Log: Don't return -1 and abort if msg.msg_controllen is 0. For some strange reason recvmsg() never sets errno to EAGAIN on a non-blocking socket and just returns 0. Reviewed by: jhb Approved by: re Revision Changes Path 1.20 +1 -2 src/lib/libc/rpc/svc_vc.c From owner-cvs-all@FreeBSD.ORG Thu May 29 15:48:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3760837B401; Thu, 29 May 2003 15:48:08 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DC3743F93; Thu, 29 May 2003 15:48:07 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 8CBCC2ED411; Thu, 29 May 2003 15:48:07 -0700 (PDT) Date: Thu, 29 May 2003 15:48:07 -0700 From: Alfred Perlstein To: Martin Blapp Message-ID: <20030529224807.GW59739@elvis.mu.org> References: <200305292206.h4TM668N066735@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305292206.h4TM668N066735@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:48:08 -0000 * Martin Blapp [030529 15:06] wrote: > mbr 2003/05/29 15:06:06 PDT > > FreeBSD src repository > > Modified files: > lib/libc/rpc svc_vc.c > Log: > Don't return -1 and abort if msg.msg_controllen is 0. For > some strange reason recvmsg() never sets errno to EAGAIN > on a non-blocking socket and just returns 0. "for some strange reason?" heh -Alfred From owner-cvs-all@FreeBSD.ORG Thu May 29 15:51:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 105B037B401; Thu, 29 May 2003 15:51:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D9C543FA3; Thu, 29 May 2003 15:51:53 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TMpr0U068852; Thu, 29 May 2003 15:51:53 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TMprW5068851; Thu, 29 May 2003 15:51:53 -0700 (PDT) Message-Id: <200305292251.h4TMprW5068851@repoman.freebsd.org> From: Robert Watson Date: Thu, 29 May 2003 15:51:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_biba mac_biba.csrc/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:51:54 -0000 rwatson 2003/05/29 15:51:53 PDT FreeBSD src repository Modified files: sys/security/mac_biba mac_biba.c sys/security/mac_mls mac_mls.c Log: Use strsep() in preference to manual string parsing for Biba and MLS label internalization. Use sensible variable names. Include comments. Doesn't fix any known bugs, but may fix unknown ones. Approved by: re (scottl) Revision Changes Path 1.59 +42 -50 src/sys/security/mac_biba/mac_biba.c 1.46 +40 -49 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Thu May 29 15:58:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A03937B401; Thu, 29 May 2003 15:58:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE9B243FA3; Thu, 29 May 2003 15:58:27 -0700 (PDT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TMwR0U069412; Thu, 29 May 2003 15:58:27 -0700 (PDT) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TMwRaE069411; Thu, 29 May 2003 15:58:27 -0700 (PDT) Message-Id: <200305292258.h4TMwRaE069411@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 29 May 2003 15:58:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf Makefile libmap.c rtld.c rtld.h rtld_lock.c rtld_lock.h src/libexec/rtld-elf/alpha rtld_machdep.h rtld_start.S src/libexec/rtld-elf/amd64 rtld_machdep.h src/libexec/rtld-elf/i386 lockdflt.c rtld_machdep.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 22:58:29 -0000 kan 2003/05/29 15:58:27 PDT FreeBSD src repository Modified files: libexec/rtld-elf Makefile libmap.c rtld.c rtld.h libexec/rtld-elf/alpha rtld_machdep.h rtld_start.S libexec/rtld-elf/amd64 rtld_machdep.h libexec/rtld-elf/i386 lockdflt.c rtld_machdep.h libexec/rtld-elf/ia64 reloc.c rtld_machdep.h rtld_start.S libexec/rtld-elf/powerpc reloc.c rtld_machdep.h rtld_start.S libexec/rtld-elf/sparc64 reloc.c rtld_machdep.h rtld_start.S Added files: libexec/rtld-elf rtld_lock.c rtld_lock.h Log: Allow threading libraries to register their own locking implementation in case default one provided by rtld is not suitable. Consolidate various identical MD lock implementation into a single file using appropriate machine/atomic.h. Approved by: re (scottl) Revision Changes Path 1.19 +3 -2 src/libexec/rtld-elf/Makefile 1.9 +12 -6 src/libexec/rtld-elf/alpha/rtld_machdep.h 1.6 +0 -49 src/libexec/rtld-elf/alpha/rtld_start.S 1.9 +5 -21 src/libexec/rtld-elf/amd64/rtld_machdep.h 1.9 +0 -132 src/libexec/rtld-elf/i386/lockdflt.c 1.9 +5 -21 src/libexec/rtld-elf/i386/rtld_machdep.h 1.13 +7 -7 src/libexec/rtld-elf/ia64/reloc.c 1.4 +5 -6 src/libexec/rtld-elf/ia64/rtld_machdep.h 1.3 +21 -75 src/libexec/rtld-elf/ia64/rtld_start.S 1.5 +3 -6 src/libexec/rtld-elf/libmap.c 1.3 +26 -26 src/libexec/rtld-elf/powerpc/reloc.c 1.2 +2 -4 src/libexec/rtld-elf/powerpc/rtld_machdep.h 1.2 +6 -6 src/libexec/rtld-elf/powerpc/rtld_start.S 1.80 +39 -85 src/libexec/rtld-elf/rtld.c 1.27 +2 -1 src/libexec/rtld-elf/rtld.h 1.1 +336 -0 src/libexec/rtld-elf/rtld_lock.c (new) 1.1 +63 -0 src/libexec/rtld-elf/rtld_lock.h (new) 1.8 +17 -17 src/libexec/rtld-elf/sparc64/reloc.c 1.4 +0 -10 src/libexec/rtld-elf/sparc64/rtld_machdep.h 1.4 +6 -6 src/libexec/rtld-elf/sparc64/rtld_start.S From owner-cvs-all@FreeBSD.ORG Thu May 29 16:47:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5867D37B401; Thu, 29 May 2003 16:47:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB18F43F3F; Thu, 29 May 2003 16:47:12 -0700 (PDT) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4TNlC0U076445; Thu, 29 May 2003 16:47:12 -0700 (PDT) (envelope-from ticso@repoman.freebsd.org) Received: (from ticso@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4TNlCxc076408; Thu, 29 May 2003 16:47:12 -0700 (PDT) Message-Id: <200305292347.h4TNlCxc076408@repoman.freebsd.org> From: Bernd Walter Date: Thu, 29 May 2003 16:47:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb ugen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 23:47:13 -0000 ticso 2003/05/29 16:47:12 PDT FreeBSD src repository Modified files: sys/dev/usb ugen.c Log: Correct the fix in rev 1.70 Some lines were misslocated Submitted by: Jay Cornwall Approved by: re (rwatson) Revision Changes Path 1.71 +6 -5 src/sys/dev/usb/ugen.c From owner-cvs-all@FreeBSD.ORG Thu May 29 16:53:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA16237B401 for ; Thu, 29 May 2003 16:53:39 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B02343F85 for ; Thu, 29 May 2003 16:53:38 -0700 (PDT) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by mail.imp.ch (8.12.6p2/8.12.3) with ESMTP id h4TNrZ4o024004; Fri, 30 May 2003 01:53:36 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Date: Fri, 30 May 2003 01:53:35 +0200 (CEST) From: Martin Blapp To: Alfred Perlstein Message-ID: <20030530014935.W94836@cvs.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 23:53:40 -0000 Hi, >"for some strange reason" Yeah, the comment is not quite correct. I see now EAGAIN errors, but the first read on the socket has always 0 lenght for AF_LOCAL: recvmsg() = 0 recvmsg() = 4 recvmsg() = 92 recvmsg() = -1, errno = 35 recvmsg() = 0 in opposite to recvmsg() = 4 recvmsg() = 40 recvmsg() = -1, errno = 35 recvmsg() = 0 Martin Martin Blapp, ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 61 826 93 00 Fax: +41 61 826 93 01 PGP: PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Thu May 29 17:09:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D537637B401; Thu, 29 May 2003 17:09:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71F9A43F75; Thu, 29 May 2003 17:09:22 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U09M0U079150; Thu, 29 May 2003 17:09:22 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U09MrM079149; Thu, 29 May 2003 17:09:22 -0700 (PDT) Message-Id: <200305300009.h4U09MrM079149@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 29 May 2003 17:09:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_sigprocmask.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:09:23 -0000 deischen 2003/05/29 17:09:22 PDT FreeBSD src repository Modified files: lib/libpthread/thread thr_sigprocmask.c Log: Call the __sys_sigprocmask(the system call) when sigprocmask() is called and the application is not threaded. This works around a problem when an application that hasn't yet become threaded tries to jump out of a signal handler. Reported by: mbr Approved by: re@ (rwatson) Revision Changes Path 1.14 +4 -1 src/lib/libpthread/thread/thr_sigprocmask.c From owner-cvs-all@FreeBSD.ORG Thu May 29 17:21:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCAAA37B401; Thu, 29 May 2003 17:21:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A62943F93; Thu, 29 May 2003 17:21:53 -0700 (PDT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U0Lr0U079729; Thu, 29 May 2003 17:21:53 -0700 (PDT) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U0Lr9j079728; Thu, 29 May 2003 17:21:53 -0700 (PDT) Message-Id: <200305300021.h4U0Lr9j079728@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 29 May 2003 17:21:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/support Makefile.inc thr_support.c src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c thr_init.c thr_mutex.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:21:54 -0000 kan 2003/05/29 17:21:53 PDT FreeBSD src repository Modified files: lib/libpthread Makefile lib/libpthread/sys Makefile.inc lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c thr_init.c thr_mutex.c thr_private.h thr_rwlock.c Added files: lib/libpthread pthread.map lib/libpthread/support Makefile.inc thr_support.c lib/libpthread/thread thr_rtld.c Log: Attempt to eliminate PLT relocations from rwlock aquire/release path, making them suitable for direct use by the dynamic loader. Register libpthread-specific locking API with rtld on startup. This still has some rough edges with signals which should be addresses later. Approved by: re (scottl) Revision Changes Path 1.42 +5 -0 src/lib/libpthread/Makefile 1.1 +296 -0 src/lib/libpthread/pthread.map (new) 1.1 +10 -0 src/lib/libpthread/support/Makefile.inc (new) 1.1 +55 -0 src/lib/libpthread/support/thr_support.c (new) 1.14 +1 -0 src/lib/libpthread/sys/Makefile.inc 1.41 +1 -0 src/lib/libpthread/thread/Makefile.inc 1.43 +7 -1 src/lib/libpthread/thread/thr_cond.c 1.33 +2 -6 src/lib/libpthread/thread/thr_exit.c 1.54 +2 -0 src/lib/libpthread/thread/thr_init.c 1.36 +4 -0 src/lib/libpthread/thread/thr_mutex.c 1.89 +20 -0 src/lib/libpthread/thread/thr_private.h 1.1 +137 -0 src/lib/libpthread/thread/thr_rtld.c (new) 1.12 +19 -14 src/lib/libpthread/thread/thr_rwlock.c From owner-cvs-all@FreeBSD.ORG Thu May 29 17:42:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A4DC37B401 for ; Thu, 29 May 2003 17:42:25 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id C302A43FBD for ; Thu, 29 May 2003 17:42:23 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 10719 invoked by uid 1000); 30 May 2003 00:42:25 -0000 Date: Thu, 29 May 2003 17:42:25 -0700 (PDT) From: Nate Lawson To: Alexander Kabaev In-Reply-To: <20030530002203.F1E9137B447@hub.freebsd.org> Message-ID: <20030529174052.N10716@root.org> References: <20030530002203.F1E9137B447@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread Ma X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:42:25 -0000 On Thu, 29 May 2003, Alexander Kabaev wrote: > Modified files: > lib/libpthread Makefile > lib/libpthread/sys Makefile.inc > lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c > thr_init.c thr_mutex.c thr_private.h > thr_rwlock.c > Added files: > lib/libpthread pthread.map > lib/libpthread/support Makefile.inc thr_support.c > lib/libpthread/thread thr_rtld.c > Log: > Attempt to eliminate PLT relocations from rwlock aquire/release > path, making them suitable for direct use by the dynamic loader. > > Register libpthread-specific locking API with rtld on startup. > > This still has some rough edges with signals which should be > addresses later. > > Approved by: re (scottl) "I sense a disturbance in the tree, as if a thousand delayed commits rushed in and then settled". Hopefully we have some time to test the final branched version a ton before release. -Nate From owner-cvs-all@FreeBSD.ORG Thu May 29 17:49:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8721337B404; Thu, 29 May 2003 17:49:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22BAC43F93; Thu, 29 May 2003 17:49:17 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U0nG0U080761; Thu, 29 May 2003 17:49:16 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U0nGcb080760; Thu, 29 May 2003 17:49:16 -0700 (PDT) Message-Id: <200305300049.h4U0nGcb080760@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Thu, 29 May 2003 17:49:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf libmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:49:18 -0000 mdodd 2003/05/29 17:49:16 PDT FreeBSD src repository Modified files: libexec/rtld-elf libmap.c Log: Don't post-increment pointers inside a loop conditional. While I'm here: - Let lm_add() call strdup() on its own behalf. - Use a temporary pointer when parsing constraints; only set the constraint pointer on a totally successful match. PR: bin/52783 Submitted by: David P. Reese Jr. Approved by: re (rwatson) Revision Changes Path 1.6 +11 -11 src/libexec/rtld-elf/libmap.c From owner-cvs-all@FreeBSD.ORG Thu May 29 17:49:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47B8937B401 for ; Thu, 29 May 2003 17:49:55 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE7C443F75 for ; Thu, 29 May 2003 17:49:54 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id C62A42ED411; Thu, 29 May 2003 17:49:54 -0700 (PDT) Date: Thu, 29 May 2003 17:49:54 -0700 From: Alfred Perlstein To: Martin Blapp Message-ID: <20030530004954.GX59739@elvis.mu.org> References: <20030530014935.W94836@cvs.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030530014935.W94836@cvs.imp.ch> User-Agent: Mutt/1.4.1i cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/rpc svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:49:55 -0000 * Martin Blapp [030529 16:53] wrote: > > Hi, > > >"for some strange reason" > > Yeah, the comment is not quite correct. I see now EAGAIN errors, > but the first read on the socket has always 0 lenght for AF_LOCAL: > > recvmsg() = 0 > recvmsg() = 4 > recvmsg() = 92 > recvmsg() = -1, errno = 35 > recvmsg() = 0 > > in opposite to > > recvmsg() = 4 > recvmsg() = 40 > recvmsg() = -1, errno = 35 > recvmsg() = 0 If it's a kernel/socket bug we shouldn't really be working around it in userland. Is it possible that the read is happening before the socket is connected or has just been disconnected? A more detailed storyboard might get the problem fixed without what appears to be a hack/workaround in userspace. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' From owner-cvs-all@FreeBSD.ORG Thu May 29 17:58:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 019D737B407; Thu, 29 May 2003 17:58:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E022C43FE0; Thu, 29 May 2003 17:58:38 -0700 (PDT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U0wc0U081164; Thu, 29 May 2003 17:58:38 -0700 (PDT) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U0wcfO081163; Thu, 29 May 2003 17:58:38 -0700 (PDT) Message-Id: <200305300058.h4U0wcfO081163@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 29 May 2003 17:58:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen dlfcn.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:58:40 -0000 kan 2003/05/29 17:58:37 PDT FreeBSD src repository Modified files: lib/libc/gen dlfcn.c Log: Add an stub for _rtld_thread_init. This is a part I missed in my last commit. Approved by: re (scottl) Revision Changes Path 1.11 +7 -0 src/lib/libc/gen/dlfcn.c From owner-cvs-all@FreeBSD.ORG Thu May 29 17:58:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B081237B442; Thu, 29 May 2003 17:58:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50D1943FD7; Thu, 29 May 2003 17:58:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U0wn0U081199; Thu, 29 May 2003 17:58:49 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U0wn5o081198; Thu, 29 May 2003 17:58:49 -0700 (PDT) Message-Id: <200305300058.h4U0wn5o081198@repoman.freebsd.org> From: Peter Wemm Date: Thu, 29 May 2003 17:58:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 support.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:58:50 -0000 peter 2003/05/29 17:58:48 PDT FreeBSD src repository Modified files: sys/amd64/amd64 support.S Log: Add setjmp/longjmp for ddb Revision Changes Path 1.101 +35 -0 src/sys/amd64/amd64/support.S From owner-cvs-all@FreeBSD.ORG Thu May 29 18:01:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C4337B401; Thu, 29 May 2003 18:01:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25A2F43FD7; Thu, 29 May 2003 18:01:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U1170U081386; Thu, 29 May 2003 18:01:07 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U11775081385; Thu, 29 May 2003 18:01:07 -0700 (PDT) Message-Id: <200305300101.h4U11775081385@repoman.freebsd.org> From: Peter Wemm Date: Thu, 29 May 2003 18:01:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 db_interface.c db_trace.c src/sys/amd64/include db_machdep.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:01:08 -0000 peter 2003/05/29 18:01:07 PDT FreeBSD src repository Modified files: sys/amd64/amd64 db_interface.c db_trace.c sys/amd64/include db_machdep.h Log: Initial port to amd64 after repocopy from i386. Note that the disassembler has not been updated yet, and will do some very strange things. It does tracebacks (without function arguments due to regparm calling conventions) if -fno-omit-frame-pointer is used (to come later). This achieves basic functionality. Approved by: re (amd64/* blanket) Revision Changes Path 1.73 +37 -65 src/sys/amd64/amd64/db_interface.c 1.56 +137 -99 src/sys/amd64/amd64/db_trace.c 1.19 +6 -6 src/sys/amd64/include/db_machdep.h From owner-cvs-all@FreeBSD.ORG Thu May 29 18:02:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1821437B401; Thu, 29 May 2003 18:02:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A941D43F3F; Thu, 29 May 2003 18:02:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U12q0U081459; Thu, 29 May 2003 18:02:52 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U12qdj081458; Thu, 29 May 2003 18:02:52 -0700 (PDT) Message-Id: <200305300102.h4U12qdj081458@repoman.freebsd.org> From: Peter Wemm Date: Thu, 29 May 2003 18:02:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 amd64-gdbstub.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:02:53 -0000 peter 2003/05/29 18:02:52 PDT FreeBSD src repository Modified files: sys/amd64/amd64 amd64-gdbstub.c Log: Nasty 'make it compile' port to amd64. Note that it needs some other wire protocol for the extra registers. I should probably just remove it from here for now since its quite useless. Approved by: re (amd64/* blanket) Revision Changes Path 1.23 +42 -40 src/sys/amd64/amd64/amd64-gdbstub.c From owner-cvs-all@FreeBSD.ORG Thu May 29 18:03:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CC037B401; Thu, 29 May 2003 18:03:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9132343F93; Thu, 29 May 2003 18:03:44 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U13i0U082437; Thu, 29 May 2003 18:03:44 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U13icY082436; Thu, 29 May 2003 18:03:44 -0700 (PDT) Message-Id: <200305300103.h4U13icY082436@repoman.freebsd.org> From: Peter Wemm Date: Thu, 29 May 2003 18:03:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf Makefile.amd64 files.amd64 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:03:45 -0000 peter 2003/05/29 18:03:44 PDT FreeBSD src repository Modified files: sys/conf Makefile.amd64 files.amd64 Log: Add ddb machdep bits. Approved by: re (amd64 bits) Revision Changes Path 1.9 +5 -0 src/sys/conf/Makefile.amd64 1.16 +4 -0 src/sys/conf/files.amd64 From owner-cvs-all@FreeBSD.ORG Thu May 29 18:06:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 906A837B401; Thu, 29 May 2003 18:06:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E7C143F3F; Thu, 29 May 2003 18:06:59 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U16x0U082641; Thu, 29 May 2003 18:06:59 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U16wUp082640; Thu, 29 May 2003 18:06:58 -0700 (PDT) Message-Id: <200305300106.h4U16wUp082640@repoman.freebsd.org> From: Peter Wemm Date: Thu, 29 May 2003 18:06:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kern.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:07:00 -0000 peter 2003/05/29 18:06:58 PDT FreeBSD src repository Modified files: sys/conf kern.mk Log: Update the kernel compile flags inside the .if ${MACHINE_ARCH} == "amd64" section to stop gcc generating the dwarf2 .eh_frame unwind tables. It is dead weight for the time being. Maybe it can be used to perform stack traces and/or get the location of function arguments in ddb, but that requires a dwarf2 runtime interpreter, which we do not have. Approved by: re (amd64 "safe" bits) Revision Changes Path 1.36 +2 -1 src/sys/conf/kern.mk From owner-cvs-all@FreeBSD.ORG Thu May 29 18:12:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 755E137B401; Thu, 29 May 2003 18:12:48 -0700 (PDT) Received: from mx7.mail.ru (mx7.mail.ru [194.67.23.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E6143F3F; Thu, 29 May 2003 18:12:47 -0700 (PDT) (envelope-from kabaev@mail.ru) Received: from [151.203.204.223] (port=51602 helo=kan.dnsalias.net) by mx7.mail.ru with esmtp id 19LYRp-000KAu-00; Fri, 30 May 2003 05:12:46 +0400 Received: from kan.dnsalias.net (ak03@localhost [127.0.0.1]) by kan.dnsalias.net (8.12.9/8.12.9) with ESMTP id h4U1ChCG062716; Thu, 29 May 2003 21:12:43 -0400 (EDT) (envelope-from kan@kan.dnsalias.net) Received: (from kan@localhost) by kan.dnsalias.net (8.12.9/8.12.9/Submit) id h4U1ChdV062715; Thu, 29 May 2003 21:12:43 -0400 (EDT) Date: Thu, 29 May 2003 21:12:43 -0400 From: Alexander Kabaev To: Nate Lawson Message-Id: <20030529211243.3aef2a09.kabaev@mail.ru> In-Reply-To: <20030529174052.N10716@root.org> References: <20030530002203.F1E9137B447@hub.freebsd.org> <20030529174052.N10716@root.org> X-Mailer: Sylpheed version 0.9.0claws2 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: Alexander Kabaev cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/support Makefile.inc thr_support.c src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread Ma X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:12:49 -0000 On Thu, 29 May 2003 17:42:25 -0700 (PDT) Nate Lawson wrote: > "I sense a disturbance in the tree, as if a thousand delayed commits > rushed in and then settled". Hopefully we have some time to test the > final branched version a ton before release. > > -Nate The change only changes anything for libkse. And yes, libkse and libkse-related thing could really use some testing. From owner-cvs-all@FreeBSD.ORG Thu May 29 18:20:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 888C737B401; Thu, 29 May 2003 18:20:03 -0700 (PDT) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE5FB43FB1; Thu, 29 May 2003 18:20:02 -0700 (PDT) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.9/8.12.9) with ESMTP id h4U1K13q082206; Thu, 29 May 2003 21:20:02 -0400 (EDT) (envelope-from mdodd@FreeBSD.ORG) Date: Thu, 29 May 2003 21:20:01 -0400 (EDT) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Ruslan Ermilov In-Reply-To: <200305292141.h4TLfB9Y064005@repoman.freebsd.org> Message-ID: <20030529211923.L86964@sasami.jurai.net> References: <200305292141.h4TLfB9Y064005@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/man/man5 libmap.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:20:04 -0000 On Thu, 29 May 2003, Ruslan Ermilov wrote: > FreeBSD src repository > > Modified files: > share/man/man5 libmap.conf.5 > Log: > Assorted mdoc(7) fixes. Thanks! (I suppose I should get mdoc(7) reviews before I commit manpages in the future since my track record isn't that great.) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | From owner-cvs-all@FreeBSD.ORG Thu May 29 18:50:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C546037B401; Thu, 29 May 2003 18:50:00 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4E0143F75; Thu, 29 May 2003 18:49:57 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4U1jCZ18521; Thu, 29 May 2003 18:45:12 -0700 Received: from btc.adaptec.com ([10.100.253.187]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id SAA07023; Thu, 29 May 2003 18:49:55 -0700 (PDT) Message-ID: <3ED6CAC8.9040809@btc.adaptec.com> Date: Thu, 29 May 2003 21:06:48 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nate Lawson References: <20030530002203.F1E9137B447@hub.freebsd.org> <20030529174052.N10716@root.org> In-Reply-To: <20030529174052.N10716@root.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Alexander Kabaev cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/supportsrc/lib/libpthread/thread Ma X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 01:50:01 -0000 Nate Lawson wrote: > On Thu, 29 May 2003, Alexander Kabaev wrote: > >> Modified files: >> lib/libpthread Makefile >> lib/libpthread/sys Makefile.inc >> lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c >> thr_init.c thr_mutex.c thr_private.h >> thr_rwlock.c >> Added files: >> lib/libpthread pthread.map >> lib/libpthread/support Makefile.inc thr_support.c >> lib/libpthread/thread thr_rtld.c >> Log: >> Attempt to eliminate PLT relocations from rwlock aquire/release >> path, making them suitable for direct use by the dynamic loader. >> >> Register libpthread-specific locking API with rtld on startup. >> >> This still has some rough edges with signals which should be >> addresses later. >> >> Approved by: re (scottl) > > > "I sense a disturbance in the tree, as if a thousand delayed commits > rushed in and then settled". Hopefully we have some time to test the > final branched version a ton before release. > > -Nate Alexander has actually been working quite hard on this, and we greatly appreciate his efforts. It's been ready to commit for several days, but he has held off to allow others to review and test it. And, it gives kse-based apps a fighting chance to start working, which is the first step to debugging kse in the real world. Please don't make me get grounchy over this. Scott From owner-cvs-all@FreeBSD.ORG Thu May 29 19:14:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA8A137B401; Thu, 29 May 2003 19:14:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 484E743F75; Thu, 29 May 2003 19:14:23 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U2EN0U086868; Thu, 29 May 2003 19:14:23 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U2EM02086867; Thu, 29 May 2003 19:14:22 -0700 (PDT) Message-Id: <200305300214.h4U2EM02086867@repoman.freebsd.org> From: Scott Long Date: Thu, 29 May 2003 19:14:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.h aic79xx.reg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 02:14:24 -0000 scottl 2003/05/29 19:14:22 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.h aic79xx.reg Log: Fix a reported case of severe data corruption: aic79xx.h: aic79xx.reg: Return the SCB_TAG field to 16byte alignment. It seems that on some PCI systems, SCBs are not transferred correctly to the controller with the previous placement of the SCB_TAG field. Approved by: re (rwatson) Revision Changes Path 1.12 +13 -13 src/sys/dev/aic7xxx/aic79xx.h 1.14 +32 -29 src/sys/dev/aic7xxx/aic79xx.reg From owner-cvs-all@FreeBSD.ORG Thu May 29 19:15:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4985337B401; Thu, 29 May 2003 19:15:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA09943F3F; Thu, 29 May 2003 19:15:15 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U2FF0U086964; Thu, 29 May 2003 19:15:15 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U2FF8T086955; Thu, 29 May 2003 19:15:15 -0700 (PDT) Message-Id: <200305300215.h4U2FF8T086955@repoman.freebsd.org> From: Scott Long Date: Thu, 29 May 2003 19:15:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic79xx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 02:15:16 -0000 scottl 2003/05/29 19:15:15 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic79xx.c Log: aic79xx.c: Use the special LUNLEN_SINGLE_LEVEL constant for post Rev A4 hardware for single byte luns. Without this change, Rev B hardware would place the single byte of lun data in byte 0 of the lun structure when it should be in byte 1. Since there are few if any devices on the market that support multiple luns in target mode, the corrupted lun field (which was only corrupted for non-zero luns) wasn't hurting us. Approved by: re (rwatson) Revision Changes Path 1.17 +2 -2 src/sys/dev/aic7xxx/aic79xx.c From owner-cvs-all@FreeBSD.ORG Thu May 29 19:19:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFC3137B401; Thu, 29 May 2003 19:19:08 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18A5E43F3F; Thu, 29 May 2003 19:19:08 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4U2EMZ25185; Thu, 29 May 2003 19:14:22 -0700 Received: from btc.adaptec.com ([10.100.253.187]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id TAA13501; Thu, 29 May 2003 19:19:06 -0700 (PDT) Message-ID: <3ED6D3E8.7000004@btc.adaptec.com> Date: Thu, 29 May 2003 21:45:44 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 References: <200305300214.h4U2EM02086867@repoman.freebsd.org> In-Reply-To: <200305300214.h4U2EM02086867@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/aic7xxx aic79xx.h aic79xx.reg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 02:19:09 -0000 Scott Long wrote: > scottl 2003/05/29 19:14:22 PDT > > FreeBSD src repository > > Modified files: > sys/dev/aic7xxx aic79xx.h aic79xx.reg > Log: > Fix a reported case of severe data corruption: > > aic79xx.h: > aic79xx.reg: > Return the SCB_TAG field to 16byte alignment. > It seems that on some PCI systems, SCBs are not > transferred correctly to the controller with > the previous placement of the SCB_TAG field. > > Approved by: re (rwatson) > > Revision Changes Path > 1.12 +13 -13 src/sys/dev/aic7xxx/aic79xx.h > 1.14 +32 -29 src/sys/dev/aic7xxx/aic79xx.reg Shoot, this and the other change were both submitted by Justin Gibbs. Sorry for the omission. Scott From owner-cvs-all@FreeBSD.ORG Thu May 29 22:27:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DF5B37B405; Thu, 29 May 2003 22:27:05 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2956043F85; Thu, 29 May 2003 22:27:01 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h4U5QuEd084663 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 May 2003 08:26:57 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h4U5QuE8084658; Fri, 30 May 2003 08:26:56 +0300 (EEST) (envelope-from ru) Date: Fri, 30 May 2003 08:26:56 +0300 From: Ruslan Ermilov To: "Matthew N. Dodd" Message-ID: <20030530052656.GA84392@sunbay.com> References: <200305292141.h4TLfB9Y064005@repoman.freebsd.org> <20030529211923.L86964@sasami.jurai.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline In-Reply-To: <20030529211923.L86964@sasami.jurai.net> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/man/man5 libmap.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 05:27:06 -0000 --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 29, 2003 at 09:20:01PM -0400, Matthew N. Dodd wrote: > On Thu, 29 May 2003, Ruslan Ermilov wrote: > > FreeBSD src repository > > > > Modified files: > > share/man/man5 libmap.conf.5 > > Log: > > Assorted mdoc(7) fixes. >=20 > Thanks! >=20 > (I suppose I should get mdoc(7) reviews before I commit manpages in the > future since my track record isn't that great.) >=20 No, not really. The mdoc(7) formatting issues are minor, and the contents of the manpages is a real value. But if you want to get a pre-commit review, please don't hesitate to ask me. ;) Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer. --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+1uugUkv4P6juNwoRAuSoAJ424AWlX/lqCRmcImjyhj+ARqCNbACfS5EB 8xCni9dgvmUaM6MCV0/xDIU= =b+KU -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- From owner-cvs-all@FreeBSD.ORG Fri May 30 00:17:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C39237B401; Fri, 30 May 2003 00:17:49 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A323C43F3F; Fri, 30 May 2003 00:17:48 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h4U7HiVm014383; Fri, 30 May 2003 00:17:48 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h4U7HiVb014382; Fri, 30 May 2003 00:17:44 -0700 (PDT) Date: Fri, 30 May 2003 00:17:44 -0700 From: "David O'Brien" To: Akinori MUSHA Message-ID: <20030530071744.GA13879@dragon.nuxi.com> References: <200304220642.h3M6gRO8040466@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304220642.h3M6gRO8040466@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.1-BETA Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/portupgrade Makefile distinfo ports/sysutils/portupgrade/files patch-pkg_fetchpatch-pkgtools.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 07:17:50 -0000 On Mon, Apr 21, 2003 at 11:42:27PM -0700, Akinori MUSHA wrote: > knu 2003/04/21 23:42:27 PDT > > FreeBSD ports repository > > Modified files: > sysutils/portupgrade Makefile distinfo > Removed files: > sysutils/portupgrade/files patch-pkg_fetch patch-pkgtools.conf > Log: > Update to 20030422. This is a maintenance release. ... > pkgtools.conf(5): > - Set OS_PKGBRANCH to "-stable" for PRERELEASE, RC, ALPHA, BETA, > etc. Is this really correct??? "5.1-BETA" is 5-current, not 5-stable. Right now "portupgrade -PP" is broken: # portupgrade -PP XFree86-libraries-4.2.1_5 ---> Checking the availability of the latest package of 'x11/XFree86-4-libraries' ---> Fetching the package(s) for 'XFree86-libraries-4.3.0_5' (x11/XFree86-4-libraries) ---> Fetching XFree86-libraries-4.3.0_5 fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5-stable/All/XFree86-libraries-4.3.0_5.tbz: File unavailable (e.g., file not found, no access) ** The command returned a non-zero exit status: 1 From owner-cvs-all@FreeBSD.ORG Fri May 30 02:15:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E9037B401; Fri, 30 May 2003 02:15:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE0B643FB1; Fri, 30 May 2003 02:15:07 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U9F70U018574; Fri, 30 May 2003 02:15:07 -0700 (PDT) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U9F78u018573; Fri, 30 May 2003 02:15:07 -0700 (PDT) Message-Id: <200305300915.h4U9F78u018573@repoman.freebsd.org> From: Joseph Koshy Date: Fri, 30 May 2003 02:15:07 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 09:15:08 -0000 jkoshy 2003/05/30 02:15:07 PDT FreeBSD doc repository Modified files: en/news press.xml Log: Infoworld article by Chad Dickerson recommending FreeBSD. Revision Changes Path 1.71 +13 -1 www/en/news/press.xml From owner-cvs-all@FreeBSD.ORG Fri May 30 02:22:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B70CC37B401; Fri, 30 May 2003 02:22:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 569CD43F85; Fri, 30 May 2003 02:22:20 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U9MK0U018852; Fri, 30 May 2003 02:22:20 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U9MK5U018851; Fri, 30 May 2003 02:22:20 -0700 (PDT) Message-Id: <200305300922.h4U9MK5U018851@repoman.freebsd.org> From: Scott Long Date: Fri, 30 May 2003 02:22:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 09:22:21 -0000 scottl 2003/05/30 02:22:20 PDT FreeBSD src repository Modified files: sys/dev/aac aac_pci.c Log: Add support for the upcoming 2410SA card. Approved by: re (telecon) Revision Changes Path 1.34 +2 -0 src/sys/dev/aac/aac_pci.c From owner-cvs-all@FreeBSD.ORG Fri May 30 02:29:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB82D37B401; Fri, 30 May 2003 02:29:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7391943F75; Fri, 30 May 2003 02:29:24 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4U9TO0U019162; Fri, 30 May 2003 02:29:24 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U9TOgI019161; Fri, 30 May 2003 02:29:24 -0700 (PDT) Message-Id: <200305300929.h4U9TOgI019161@repoman.freebsd.org> From: Scott Long Date: Fri, 30 May 2003 02:29:24 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/forth beastie.4th frames.4th screen.4th src/sys/boot/i386/loader Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 09:29:25 -0000 scottl 2003/05/30 02:29:24 PDT FreeBSD src repository Modified files: sys/boot/i386/loader Makefile Added files: sys/boot/forth beastie.4th frames.4th screen.4th Log: Add a new bootloader menu. Pull in screen.4th and frames.4th from the examples directory to support it. This is installed only on i386 for now. It will be enabled in a later commit. Approved by: re Revision Changes Path 1.1 +206 -0 src/sys/boot/forth/beastie.4th (new) 1.1 +90 -0 src/sys/boot/forth/frames.4th (new) 1.1 +36 -0 src/sys/boot/forth/screen.4th (new) 1.64 +1 -0 src/sys/boot/i386/loader/Makefile From owner-cvs-all@FreeBSD.ORG Fri May 30 02:43:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8283937B401; Fri, 30 May 2003 02:43:13 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id E31E843F3F; Fri, 30 May 2003 02:43:12 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4U9cPZ11759; Fri, 30 May 2003 02:38:25 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id CAA20508; Fri, 30 May 2003 02:43:11 -0700 (PDT) Message-ID: <3ED727A6.2070209@btc.adaptec.com> Date: Fri, 30 May 2003 03:43:02 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Long References: <200305300929.h4U9TOgI019161@repoman.freebsd.org> In-Reply-To: <200305300929.h4U9TOgI019161@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth beastie.4th frames.4thscreen.4th src/sys/boot/i386/loader Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 09:43:14 -0000 Scott Long wrote: > scottl 2003/05/30 02:29:24 PDT > > FreeBSD src repository > > Modified files: > sys/boot/i386/loader Makefile > Added files: > sys/boot/forth beastie.4th frames.4th screen.4th > Log: > Add a new bootloader menu. Pull in screen.4th and frames.4th from the > examples directory to support it. This is installed only on i386 for > now. It will be enabled in a later commit. > > Approved by: re > > Revision Changes Path > 1.1 +206 -0 src/sys/boot/forth/beastie.4th (new) > 1.1 +90 -0 src/sys/boot/forth/frames.4th (new) > 1.1 +36 -0 src/sys/boot/forth/screen.4th (new) > 1.64 +1 -0 src/sys/boot/i386/loader/Makefile Bah, today is not my day for giving attributions.... Thanks a lot to Daniel Sobral for reviewing this and helping me learn some of the finer quirks of FICL and Boot4th, and thanks to the many helpful suggestions that I received via email. Scott From owner-cvs-all@FreeBSD.ORG Fri May 30 03:07:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84F5B37B401; Fri, 30 May 2003 03:07:26 -0700 (PDT) Received: from mandarin.fruitsalad.org (pc117.net160.koping.net [81.16.160.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8B743FA3; Fri, 30 May 2003 03:07:25 -0700 (PDT) (envelope-from lauri@kde.org) Received: from [192.168.15.5] (helo=kurant.internal.hasta.se) by mandarin.fruitsalad.org with esmtp (Exim 4.14) id 19Lgn8-0005JX-NE; Fri, 30 May 2003 12:07:18 +0200 From: Lauri Watts To: Kris Kennaway , "David E. O'Brien" Date: Wed, 28 May 2003 19:11:26 +0200 User-Agent: KMail/1.5.9 References: <200305280332.h4S3WXni074958@repoman.freebsd.org> <20030528052814.GA90975@rot13.obsecurity.org> In-Reply-To: <20030528052814.GA90975@rot13.obsecurity.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200305281911.27187.lauri@kde.org> cc: cvs-all@FreeBSD.org Subject: Re: [kde-freebsd] Re: cvs commit: src/contrib/binutils/bfd elf64-alpha.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 10:07:26 -0000 On Wednesday 28 May 2003 07.28, Kris Kennaway wrote: > On Tue, May 27, 2003 at 08:32:33PM -0700, David E. O'Brien wrote: > > obrien 2003/05/27 20:32:33 PDT > > > > FreeBSD src repository > > > > Modified files: > > contrib/binutils/bfd elf64-alpha.c > > Log: > > From FSF Binutils CVS repo: > > 2003-04-09 Richard Henderson > > * elf64-alpha.c (elf64_alpha_relocate_section) > > : Ignore relocations against r_symndx == 0. > > > > Requested by: kris,re(scottl) > > Thanks. In case anyone else is interested, this fixes the failures on > alpha when trying to link large object files (most commonly in C++ > code in KDE). This is fabulous news. We might even be able to at some point re-enable the --enable-final switch, which lets KDE compile in about half the time, which ought to make everyone happy. Regards, -- Lauri Watts KDE Documentation: http://i18n.kde.org/doc/ KDE on FreeBSD: http://freebsd.kde.org/ From owner-cvs-all@FreeBSD.ORG Fri May 30 03:21:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BF4837B401; Fri, 30 May 2003 03:21:03 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28ECE43F93; Fri, 30 May 2003 03:21:02 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id AAA9066B9B; Fri, 30 May 2003 03:21:01 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 92125AFE; Fri, 30 May 2003 03:21:01 -0700 (PDT) Date: Fri, 30 May 2003 03:21:01 -0700 From: Kris Kennaway To: Lauri Watts Message-ID: <20030530102058.GA5343@rot13.obsecurity.org> References: <200305280332.h4S3WXni074958@repoman.freebsd.org> <20030528052814.GA90975@rot13.obsecurity.org> <200305281911.27187.lauri@kde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline In-Reply-To: <200305281911.27187.lauri@kde.org> User-Agent: Mutt/1.4.1i cc: cvs-all@FreeBSD.org cc: "David E. O'Brien" cc: Kris Kennaway Subject: Re: [kde-freebsd] Re: cvs commit: src/contrib/binutils/bfd elf64-alpha.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 10:21:03 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 28, 2003 at 07:11:26PM +0200, Lauri Watts wrote: > On Wednesday 28 May 2003 07.28, Kris Kennaway wrote: > > On Tue, May 27, 2003 at 08:32:33PM -0700, David E. O'Brien wrote: > > > obrien 2003/05/27 20:32:33 PDT > > > > > > FreeBSD src repository > > > > > > Modified files: > > > contrib/binutils/bfd elf64-alpha.c > > > Log: > > > From FSF Binutils CVS repo: > > > 2003-04-09 Richard Henderson > > > * elf64-alpha.c (elf64_alpha_relocate_section) > > > : Ignore relocations against r_symndx =3D=3D 0. > > > > > > Requested by: kris,re(scottl) > > > > Thanks. In case anyone else is interested, this fixes the failures on > > alpha when trying to link large object files (most commonly in C++ > > code in KDE). >=20 > This is fabulous news. We might even be able to at some point re-enable = the=20 > --enable-final switch, which lets KDE compile in about half the time, whi= ch=20 > ought to make everyone happy. I'd be happy to test a patch after 5.1. Kris --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1zCKWry0BWjoQKURAgATAJ9fTrQWhiD+Z+LlOdJQMm+RLCkVWACgslbm GVA4keAZEZr4fXv15JCFFI0= =MU7q -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- From owner-cvs-all@FreeBSD.ORG Fri May 30 04:04:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEA0337B401; Fri, 30 May 2003 04:04:16 -0700 (PDT) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88E1943F93; Fri, 30 May 2003 04:04:15 -0700 (PDT) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C7B94530E; Fri, 30 May 2003 13:04:13 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson References: <200305292251.h4TMprW5068851@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 30 May 2003 13:04:12 +0200 In-Reply-To: <200305292251.h4TMprW5068851@repoman.freebsd.org> (Robert Watson's message of "Thu, 29 May 2003 15:51:53 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_biba mac_biba.c src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 11:04:17 -0000 Robert Watson writes: > Modified files: > sys/security/mac_biba mac_biba.c > sys/security/mac_mls mac_mls.c > Log: > Use strsep() in preference to manual string parsing for Biba and MLS > label internalization. Use sensible variable names. Include comments. > Doesn't fix any known bugs, but may fix unknown ones. This breaks LINT: /vol/vol0/users/des/tinderbox/CURRENT/alpha/alpha/src/sys/security/mac_mls/mac_mls.c: In function `mac_mls_parse': /vol/vol0/users/des/tinderbox/CURRENT/alpha/alpha/src/sys/security/mac_mls/mac_mls.c:675: warning: unused variable `range' /vol/vol0/users/des/tinderbox/CURRENT/alpha/alpha/src/sys/security/mac_mls/mac_mls.c:675: warning: unused variable `rangeend' *** Error code 1 DES -- Dag-Erling Smorgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Fri May 30 04:05:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 713E537B401; Fri, 30 May 2003 04:05:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FF6143F93; Fri, 30 May 2003 04:05:09 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UB580U024726; Fri, 30 May 2003 04:05:08 -0700 (PDT) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UB58q6024725; Fri, 30 May 2003 04:05:08 -0700 (PDT) Message-Id: <200305301105.h4UB58q6024725@repoman.freebsd.org> From: Thomas Moestl Date: Fri, 30 May 2003 04:05:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/db/btree bt_put.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 11:05:09 -0000 tmm 2003/05/30 04:05:08 PDT FreeBSD src repository Modified files: lib/libc/db/btree bt_put.c Log: Fix a sizeof error in __bt_put: when writing they key and data sizes to a buffer in the big key/data case, memmove() was used on pointers to size_ts, but only sizeof(u_int32_t) bytes where copied. This broke on big_endian architectures where sizeof(size_t) > sizeof(u_int32_t). This bug broke portupgrade (by way of ruby_bdb1) on sparc64. Approved by: re (rwatson) Revision Changes Path 1.4 +5 -3 src/lib/libc/db/btree/bt_put.c From owner-cvs-all@FreeBSD.ORG Fri May 30 04:24:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6A5E37B401; Fri, 30 May 2003 04:24:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4218043FAF; Fri, 30 May 2003 04:24:01 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UBO10U025345; Fri, 30 May 2003 04:24:01 -0700 (PDT) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UBO0IW025344; Fri, 30 May 2003 04:24:00 -0700 (PDT) Message-Id: <200305301124.h4UBO0IW025344@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 30 May 2003 04:24:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 11:24:02 -0000 nyan 2003/05/30 04:24:00 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Add documents for the ct driver. Submitted by: rushani Approved by: re (jhb and bmah) Revision Changes Path 1.157 +52 -0 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 05:09:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D5137B401; Fri, 30 May 2003 05:09:50 -0700 (PDT) Received: from mail.tcoip.com.br (erato.tco.net.br [200.220.254.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 258D143F3F; Fri, 30 May 2003 05:09:47 -0700 (PDT) (envelope-from dcs@tcoip.com.br) Received: from tcoip.com.br ([10.0.2.6]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id h4UC8Ll02202; Fri, 30 May 2003 09:08:21 -0300 Message-ID: <3ED749B5.70402@tcoip.com.br> Date: Fri, 30 May 2003 09:08:21 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4a) Gecko/20030416 X-Accept-Language: en-us, en, pt-br, ja MIME-Version: 1.0 To: Nate Lawson References: <20030530002203.F1E9137B447@hub.freebsd.org> <20030529174052.N10716@root.org> In-Reply-To: <20030529174052.N10716@root.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Alexander Kabaev cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/supportsrc/lib/libpthread/thread Ma X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 12:09:50 -0000 Nate Lawson wrote: > > "I sense a disturbance in the tree, as if a thousand delayed commits > rushed in and then settled". Hopefully we have some time to test the > final branched version a ton before release. Actually, no. This commit festival is thr/kse, none of which are used by default, and both of which aren't production-ready in first place. People are trying to _make_ them production ready, but if worst comes to worst, they'll fail and it will remain not production-ready in the release. -- Daniel C. Sobral (8-DCS) Gerencia de Operacoes Divisao de Comunicacao de Dados Coordenacao de Seguranca VIVO Centro Oeste Norte Fones: 55-61-313-7654/Cel: 55-61-9618-0904 E-mail: Daniel.Capo@tco.net.br Daniel.Sobral@tcoip.com.br dcs@tcoip.com.br Outros: dcs@newsguy.com dcs@freebsd.org capo@notorious.bsdconspiracy.net We are all worms. But I do believe I am a glowworm. -- Winston Churchill From owner-cvs-all@FreeBSD.ORG Fri May 30 07:50:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C08437B401; Fri, 30 May 2003 07:50:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8701243F85; Fri, 30 May 2003 07:50:17 -0700 (PDT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UEoH0U040826; Fri, 30 May 2003 07:50:17 -0700 (PDT) (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UEoHEs040823; Fri, 30 May 2003 07:50:17 -0700 (PDT) Message-Id: <200305301450.h4UEoHEs040823@repoman.freebsd.org> From: David Xu Date: Fri, 30 May 2003 07:50:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 14:50:18 -0000 davidxu 2003/05/30 07:50:16 PDT FreeBSD src repository Modified files: lib/libpthread/thread thr_sig.c Log: Save THR_FLAGS_IN_TDLIST in signal frame, otherwise if a thread received a signal will can not be removed from thread list after it exited. Reviewed by: deischen Approved by: re (jhb) Revision Changes Path 1.53 +2 -1 src/lib/libpthread/thread/thr_sig.c From owner-cvs-all@FreeBSD.ORG Fri May 30 09:12:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8348E37B401; Fri, 30 May 2003 09:12:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 233A643FBD; Fri, 30 May 2003 09:12:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UGCq0U050663; Fri, 30 May 2003 09:12:52 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UGCqr6050662; Fri, 30 May 2003 09:12:52 -0700 (PDT) Message-Id: <200305301612.h4UGCqr6050662@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 30 May 2003 09:12:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/ruby-bdb1 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 16:12:54 -0000 kris 2003/05/30 09:12:52 PDT FreeBSD ports repository Modified files: databases/ruby-bdb1 Makefile Log: ruby-bdb1 now works on sparc64, thanks to tmm's fix to btree/bt_put.c Revision Changes Path 1.13 +0 -2 ports/databases/ruby-bdb1/Makefile From owner-cvs-all@FreeBSD.ORG Fri May 30 10:02:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1943D37B401; Fri, 30 May 2003 10:02:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9BC443FD7; Fri, 30 May 2003 10:02:37 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UH2b0U052361; Fri, 30 May 2003 10:02:37 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UH2bHi052360; Fri, 30 May 2003 10:02:37 -0700 (PDT) Message-Id: <200305301702.h4UH2bHi052360@repoman.freebsd.org> From: Robert Watson Date: Fri, 30 May 2003 10:02:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 17:02:38 -0000 rwatson 2003/05/30 10:02:37 PDT FreeBSD src repository Modified files: sys/security/mac_mls mac_mls.c Log: Make sure all character pointers are properly initialized; this was mismerged from the MAC tree, and didn't get picked up because warnings are not normally fatal in per-module builds, only when they are linked into a kernel (such as LINT). Reported by: des and the technicolor tinderbox Approved by: re (scottl) Revision Changes Path 1.47 +5 -4 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Fri May 30 10:15:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2088A37B401; Fri, 30 May 2003 10:15:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C595A43F3F; Fri, 30 May 2003 10:15:56 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UHFu0U053820; Fri, 30 May 2003 10:15:56 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UHFueR053819; Fri, 30 May 2003 10:15:56 -0700 (PDT) Message-Id: <200305301715.h4UHFueR053819@repoman.freebsd.org> From: Robert Watson Date: Fri, 30 May 2003 10:15:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_lock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 17:15:57 -0000 rwatson 2003/05/30 10:15:56 PDT FreeBSD src repository Modified files: sys/nfsclient nfs_lock.c Log: rpc.lockd stability workaround: remove PCATCH from the tsleep() in nfs_lock.c. Right now, if we permit a signal to interrupt the sleep, we will slip the lock and no process on that client, the server, or any other client will be able to acquire the lock. This can happen, for example, if a user hits Ctrl-C or Ctrl-T while a process is waiting for the lock. By removing PCATCH, we prevent that from happening, at the cost of not permitting a user-requested lock abort: also nasty. However, a user interface bug might be preferable to a serious semantic bug, so we go with that for now. We need to teach the rpc.lockd/kernel protocol how to abort lock requests, and rpc.lockd how to handle aborted lock requests; patches for the kernel bit are floating around, but no rpc.lockd bit yet. Approved by: re (scottl) Revision Changes Path 1.36 +1 -1 src/sys/nfsclient/nfs_lock.c From owner-cvs-all@FreeBSD.ORG Fri May 30 10:26:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3819B37B401; Fri, 30 May 2003 10:26:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6EF943F3F; Fri, 30 May 2003 10:26:11 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UHQB0U054178; Fri, 30 May 2003 10:26:11 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UHQBoX054177; Fri, 30 May 2003 10:26:11 -0700 (PDT) Message-Id: <200305301726.h4UHQBoX054177@repoman.freebsd.org> From: Scott Long Date: Fri, 30 May 2003 10:26:11 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml www/en/releases/5.2R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 17:26:12 -0000 scottl 2003/05/30 10:26:11 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml en/releases/5.2R todo.sgml Log: Move the MAC frame work and rpc.lockd items to the 5.2 list. NFS locking appears to be working fairly well now with the exception of one issue that can wait until 5.2 for resolution. Also remove the kldunload and rtld items now that they have been committed. Thanks to imp, mux, and kan for those! Revision Changes Path 1.57 +1 -41 www/en/releases/5.1R/todo.sgml 1.23 +22 -2 www/en/releases/5.2R/todo.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 11:25:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38CDC37B401 for ; Fri, 30 May 2003 11:25:16 -0700 (PDT) Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id C539B43FAF for ; Fri, 30 May 2003 11:25:14 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 989 invoked from network); 30 May 2003 18:25:13 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 30 May 2003 18:25:13 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h4UIPAp0088272; Fri, 30 May 2003 14:25:11 -0400 (EDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200305301702.h4UH2bHi052360@repoman.freebsd.org> Date: Fri, 30 May 2003 14:25:10 -0400 (EDT) From: John Baldwin To: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 18:25:16 -0000 On 30-May-2003 Robert Watson wrote: > rwatson 2003/05/30 10:02:37 PDT > > FreeBSD src repository > > Modified files: > sys/security/mac_mls mac_mls.c > Log: > Make sure all character pointers are properly initialized; this was > mismerged from the MAC tree, and didn't get picked up because warnings > are not normally fatal in per-module builds, only when they are linked > into a kernel (such as LINT). Can someone make module builds use the same warning flags and settings as kernel builds please? This same scenario has happened numerous times now. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Fri May 30 12:01:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA60D37B401 for ; Fri, 30 May 2003 12:01:39 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 71A5743FD7 for ; Fri, 30 May 2003 12:01:38 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 12053 invoked by uid 1000); 30 May 2003 19:01:39 -0000 Date: Fri, 30 May 2003 12:01:39 -0700 (PDT) From: Nate Lawson To: John Baldwin In-Reply-To: Message-ID: <20030530120101.C12034@root.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 19:01:40 -0000 On Fri, 30 May 2003, John Baldwin wrote: > On 30-May-2003 Robert Watson wrote: > > Make sure all character pointers are properly initialized; this was > > mismerged from the MAC tree, and didn't get picked up because warnings > > are not normally fatal in per-module builds, only when they are linked > > into a kernel (such as LINT). > > Can someone make module builds use the same warning flags and > settings as kernel builds please? This same scenario has happened > numerous times now. ... to "me too". :) -Nate From owner-cvs-all@FreeBSD.ORG Fri May 30 12:16:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7377C37B401; Fri, 30 May 2003 12:16:47 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9F6843F85; Fri, 30 May 2003 12:16:46 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h4UJGfVm094974; Fri, 30 May 2003 12:16:45 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h4UJGfpo094973; Fri, 30 May 2003 12:16:41 -0700 (PDT) Date: Fri, 30 May 2003 12:16:40 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20030530191640.GA94952@dragon.nuxi.com> References: <200305301702.h4UH2bHi052360@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.1-BETA Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 19:16:47 -0000 On Fri, May 30, 2003 at 02:25:10PM -0400, John Baldwin wrote: > > On 30-May-2003 Robert Watson wrote: > > rwatson 2003/05/30 10:02:37 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/security/mac_mls mac_mls.c > > Log: > > Make sure all character pointers are properly initialized; this was > > mismerged from the MAC tree, and didn't get picked up because warnings > > are not normally fatal in per-module builds, only when they are linked > > into a kernel (such as LINT). > > Can someone make module builds use the same warning flags and > settings as kernel builds please? As soon as the freeze is over... From owner-cvs-all@FreeBSD.ORG Fri May 30 12:26:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65E7737B401; Fri, 30 May 2003 12:26:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 019E143F75; Fri, 30 May 2003 12:26:21 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UJQK0U060240; Fri, 30 May 2003 12:26:20 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UJQKBt060239; Fri, 30 May 2003 12:26:20 -0700 (PDT) Message-Id: <200305301926.h4UJQKBt060239@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 30 May 2003 12:26:20 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 19:26:21 -0000 bmah 2003/05/30 12:26:20 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Fix some particularly glaring errors resulting from the FAQ not using the correct version number entities when referring to 4.X and 5.X releases. Revision 1.514 tried to handle this, but failed. Commit based on a patch in the PR. PR: 52679 Submitted by: "Simon L.Nielsen" Revision Changes Path 1.539 +27 -15 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 13:05:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FAE837B401; Fri, 30 May 2003 13:05:31 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E565943F85; Fri, 30 May 2003 13:05:27 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h4UK5DEd076119 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 May 2003 23:05:19 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h4UK5CVg076110; Fri, 30 May 2003 23:05:12 +0300 (EEST) (envelope-from ru) Date: Fri, 30 May 2003 23:05:12 +0300 From: Ruslan Ermilov To: John Baldwin Message-ID: <20030530200512.GE60607@sunbay.com> References: <200305301702.h4UH2bHi052360@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V4b9U9vrdWczvw78" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:05:31 -0000 --V4b9U9vrdWczvw78 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 30, 2003 at 02:25:10PM -0400, John Baldwin wrote: >=20 > On 30-May-2003 Robert Watson wrote: > > rwatson 2003/05/30 10:02:37 PDT > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/security/mac_mls mac_mls.c=20 > > Log: > > Make sure all character pointers are properly initialized; this was > > mismerged from the MAC tree, and didn't get picked up because warnings > > are not normally fatal in per-module builds, only when they are linked > > into a kernel (such as LINT). >=20 > Can someone make module builds use the same warning flags and > settings as kernel builds please? This same scenario has happened > numerous times now. >=20 This is not easy. For the kernel build, we have NORMAL_C and NORMAL_C_NOWERROR (the former includes WERROR?=3D -Werror). There are lot of files in sys/conf/files* that are marked with "nowerror", and I'm sure they will break to compile as modules with this patch, e.g., the acpi module has lot of files with warnings: %%% Index: kern.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/sys/conf/kern.mk,v retrieving revision 1.34 diff -u -r1.34 kern.mk --- kern.mk 3 May 2003 18:05:56 -0000 1.34 +++ kern.mk 30 May 2003 19:57:00 -0000 @@ -9,6 +9,8 @@ CWARNFLAGS?=3D -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototype= s \ -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \ -fformat-extensions -std=3Dc99 +WERROR?=3D -Werror + # # The following flags are next up for working on: # -W Index: kern.pre.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/sys/conf/kern.pre.mk,v retrieving revision 1.24 diff -u -r1.24 kern.pre.mk --- kern.pre.mk 28 Feb 2003 21:59:14 -0000 1.24 +++ kern.pre.mk 30 May 2003 19:57:15 -0000 @@ -48,7 +48,6 @@ .endif .endif DEFINED_PROF=3D ${PROF} -WERROR?=3D -Werror =20 # Put configuration-specific C flags last (except for ${PROF}) so that they # can override the others. Index: kmod.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/sys/conf/kmod.mk,v retrieving revision 1.137 diff -u -r1.137 kmod.mk --- kmod.mk 3 Mar 2003 22:51:22 -0000 1.137 +++ kmod.mk 30 May 2003 19:55:07 -0000 @@ -70,7 +70,7 @@ =20 .SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S =20 -CFLAGS+=3D ${COPTS} -D_KERNEL ${CWARNFLAGS} +CFLAGS+=3D ${COPTS} -D_KERNEL ${CWARNFLAGS} ${WERROR} CFLAGS+=3D -DKLD_MODULE =20 # Don't use any standard or source-relative include directories. %%% --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer. --V4b9U9vrdWczvw78 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+17l4Ukv4P6juNwoRAi6LAJ0b9rOuoqZJqdahjHxI5pwAvOOvGQCdEfdC qb4Rr3AuXGE8F5QV5vdncfE= =VWGE -----END PGP SIGNATURE----- --V4b9U9vrdWczvw78-- From owner-cvs-all@FreeBSD.ORG Fri May 30 13:40:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9175F37B401; Fri, 30 May 2003 13:40:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FF1443FAF; Fri, 30 May 2003 13:40:34 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UKeY0U069284; Fri, 30 May 2003 13:40:34 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UKeX49069283; Fri, 30 May 2003 13:40:33 -0700 (PDT) Message-Id: <200305302040.h4UKeX49069283@repoman.freebsd.org> From: Hiten Pandya Date: Fri, 30 May 2003 13:40:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/include bus.h src/sys/amd64/include bus_dma.h src/sys/i386/include bus_dma.h src/sys/i4b/layer1/itjc i4b_itjc_pci.c src/sys/ia64/include bus.h src/sys/sparc64/include bus.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:40:35 -0000 hmp 2003/05/30 13:40:33 PDT FreeBSD src repository (doc committer) Modified files: sys/alpha/include bus.h sys/amd64/include bus_dma.h sys/i386/include bus_dma.h sys/i4b/layer1/itjc i4b_itjc_pci.c sys/ia64/include bus.h sys/sparc64/include bus.h Log: Rename BUS_DMAMEM_NOSYNC to BUS_DMA_COHERENT. The current name is confusing, because it indicates to the client that a bus_dmamap_sync() operation is not necessary when the flag is specified, which is wrong. The main purpose of this flag is to hint the underlying architecture that DMA memory should be mapped in a coherent way, but the architecture can ignore it. But if the architecture does supports coherent mapping of memory, then it makes bus_dmamap_sync() calls cheap. This flag is the same as the one in NetBSD's Bus DMA. Reviewed by: gibbs, scottl, des (implicitly) Approved by: re@ (jhb) Revision Changes Path 1.21 +1 -1 src/sys/alpha/include/bus.h 1.22 +1 -1 src/sys/amd64/include/bus_dma.h 1.21 +1 -1 src/sys/i386/include/bus_dma.h 1.7 +2 -2 src/sys/i4b/layer1/itjc/i4b_itjc_pci.c 1.12 +1 -1 src/sys/ia64/include/bus.h 1.26 +1 -2 src/sys/sparc64/include/bus.h From owner-cvs-all@FreeBSD.ORG Fri May 30 13:48:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55BAE37B401; Fri, 30 May 2003 13:48:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAEDD43F3F; Fri, 30 May 2003 13:48:05 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UKm50U069644; Fri, 30 May 2003 13:48:05 -0700 (PDT) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UKm5YS069643; Fri, 30 May 2003 13:48:05 -0700 (PDT) Message-Id: <200305302048.h4UKm5YS069643@repoman.freebsd.org> From: Thomas Moestl Date: Fri, 30 May 2003 13:48:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/ebus ebus.c src/sys/sparc64/include ofw_bus.h src/sys/sparc64/isa isa.c src/sys/sparc64/pci ofw_pci.c ofw_pci.h psycho.c psychovar.h src/sys/sparc64/sparc64 ofw_bus.c sparcbus_if.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:48:06 -0000 tmm 2003/05/30 13:48:05 PDT FreeBSD src repository Modified files: sys/sparc64/ebus ebus.c sys/sparc64/include ofw_bus.h sys/sparc64/isa isa.c sys/sparc64/pci ofw_pci.c ofw_pci.h psycho.c psychovar.h sys/sparc64/sparc64 ofw_bus.c sparcbus_if.m Log: Fix interrupt assignment for non-builtin PCI devices on e450s. This machine uses a non-standard scheme to specify the interrupts to be assigned for devices in PCI slots; instead of giving the INO or full interrupt number (which is done for the other devices in this box), the firmware interrupt properties contain intpin numbers, which have to be swizzled as usual on PCI-PCI bridges; however, the PCI host bridge nodes have no interrupt map, so we need to guess the correct INO by slot number of the device or the closest PCI-PCI bridge leading to it, and the intpin. To do this, this fix makes the following changes: - Add a newbus method for sparc64 PCI host bridges to guess the INO, and glue code in ofw_pci_orb_callback() to invoke it based on a new quirk entry. The guessing is only done for interrupt numbers too low to contain any IGN found on e450s. - Create another new quirk entry was created to prevent mapping of EBus interrupts at PCI level; the e450 has full INOs in the interrupt properties of EBus devices, so trying to remap them could cause problems. - Set both quirk entries for e450s; remove the no-swizzle entry. - Determine the psycho half (bus A or B) a driver instance manages in psycho_attach() - Implement the new guessing method for psycho, using the slot number, psycho half and property value (intpin). Thanks go to the testers, especially Brian Denehy, who tested many kernels for me until I had found the right workaround. Tested by: Brian Denehy , jake, fenner, Marius Strobl , Marian Dobre Approved by: re (scottl) Revision Changes Path 1.8 +6 -4 src/sys/sparc64/ebus/ebus.c 1.4 +2 -2 src/sys/sparc64/include/ofw_bus.h 1.6 +1 -1 src/sys/sparc64/isa/isa.c 1.11 +67 -19 src/sys/sparc64/pci/ofw_pci.c 1.5 +0 -1 src/sys/sparc64/pci/ofw_pci.h 1.35 +43 -8 src/sys/sparc64/pci/psycho.c 1.8 +3 -0 src/sys/sparc64/pci/psychovar.h 1.6 +2 -2 src/sys/sparc64/sparc64/ofw_bus.c 1.2 +22 -4 src/sys/sparc64/sparc64/sparcbus_if.m From owner-cvs-all@FreeBSD.ORG Fri May 30 13:48:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38CFE37B401; Fri, 30 May 2003 13:48:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A06E943F85; Fri, 30 May 2003 13:48:41 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UKmf0U069685; Fri, 30 May 2003 13:48:41 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UKmfFT069684; Fri, 30 May 2003 13:48:41 -0700 (PDT) Message-Id: <200305302048.h4UKmfFT069684@repoman.freebsd.org> From: Robert Watson Date: Fri, 30 May 2003 13:48:41 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.2R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:48:42 -0000 rwatson 2003/05/30 13:48:41 PDT FreeBSD doc repository Modified files: en/releases/5.2R todo.sgml Log: Add a task for gdb threading support. Submitted by: kan Revision Changes Path 1.24 +11 -1 www/en/releases/5.2R/todo.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 13:55:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6942937B401; Fri, 30 May 2003 13:55:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0695D43F3F; Fri, 30 May 2003 13:55:57 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UKtu0U070039; Fri, 30 May 2003 13:55:56 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UKtuwJ070038; Fri, 30 May 2003 13:55:56 -0700 (PDT) Message-Id: <200305302055.h4UKtuwJ070038@repoman.freebsd.org> From: Robert Watson Date: Fri, 30 May 2003 13:55:56 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en developers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:55:58 -0000 rwatson 2003/05/30 13:55:56 PDT FreeBSD doc repository Modified files: en developers.sgml Log: Add an entity for Matthew Dodd. Sure-fire sign that he'll get stuck with a task. Revision Changes Path 1.59 +2 -1 www/en/developers.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 13:56:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B52237B401; Fri, 30 May 2003 13:56:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCB8343F3F; Fri, 30 May 2003 13:56:58 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UKuw0U070085; Fri, 30 May 2003 13:56:58 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UKuwgx070084; Fri, 30 May 2003 13:56:58 -0700 (PDT) Message-Id: <200305302056.h4UKuwgx070084@repoman.freebsd.org> From: Robert Watson Date: Fri, 30 May 2003 13:56:58 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.2R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 20:56:59 -0000 rwatson 2003/05/30 13:56:58 PDT FreeBSD doc repository Modified files: en/releases/5.2R todo.sgml Log: Add a 5.2-RELEASE "desired" entry: prebinding support. Assign task to Matthew Dodd. Revision Changes Path 1.25 +18 -1 www/en/releases/5.2R/todo.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 14:13:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F94537B401; Fri, 30 May 2003 14:13:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A987543F75; Fri, 30 May 2003 14:13:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4ULDW0U071702; Fri, 30 May 2003 14:13:32 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4ULDWZ3071701; Fri, 30 May 2003 14:13:32 -0700 (PDT) Message-Id: <200305302113.h4ULDWZ3071701@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 30 May 2003 14:13:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 CTASSERT.9 bus_activate_resource.9 bus_child_present.9 bus_set_resource.9 device_get_name.9 device_get_parent.9 device_printf.9 device_set_driver.9 rman.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 21:13:33 -0000 ru 2003/05/30 14:13:32 PDT FreeBSD src repository Modified files: share/man/man9 CTASSERT.9 bus_activate_resource.9 bus_child_present.9 bus_set_resource.9 device_get_name.9 device_get_parent.9 device_printf.9 device_set_driver.9 rman.9 Log: Assorted mdoc(7) fixes. Revision Changes Path 1.2 +5 -7 src/share/man/man9/CTASSERT.9 1.3 +24 -28 src/share/man/man9/bus_activate_resource.9 1.2 +20 -15 src/share/man/man9/bus_child_present.9 1.2 +30 -30 src/share/man/man9/bus_set_resource.9 1.2 +6 -5 src/share/man/man9/device_get_name.9 1.2 +3 -2 src/share/man/man9/device_get_parent.9 1.2 +5 -5 src/share/man/man9/device_printf.9 1.2 +1 -1 src/share/man/man9/device_set_driver.9 1.2 +71 -51 src/share/man/man9/rman.9 From owner-cvs-all@FreeBSD.ORG Fri May 30 14:27:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D82FC37B401; Fri, 30 May 2003 14:27:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75C0D43FBF; Fri, 30 May 2003 14:27:29 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4ULRT0U072131; Fri, 30 May 2003 14:27:29 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4ULRTj0072130; Fri, 30 May 2003 14:27:29 -0700 (PDT) Message-Id: <200305302127.h4ULRTj0072130@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 30 May 2003 14:27:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/usbhidaction usbhidaction.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 21:27:30 -0000 ru 2003/05/30 14:27:29 PDT FreeBSD src repository Modified files: usr.bin/usbhidaction usbhidaction.1 Log: Assorted mdoc(7) fixes. Revision Changes Path 1.3 +42 -30 src/usr.bin/usbhidaction/usbhidaction.1 From owner-cvs-all@FreeBSD.ORG Fri May 30 14:37:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48CD837B401; Fri, 30 May 2003 14:37:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D899443F85; Fri, 30 May 2003 14:37:53 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4ULbr0U072528; Fri, 30 May 2003 14:37:53 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4ULbrmB072527; Fri, 30 May 2003 14:37:53 -0700 (PDT) Message-Id: <200305302137.h4ULbrmB072527@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 30 May 2003 14:37:53 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 21:37:54 -0000 trhodes 2003/05/30 14:37:53 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Add information about the 'force' option. Give the user an example. Submitted by: "Simon L. Nielsen" Reviewed by: bmah Revision Changes Path 1.109 +53 -0 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 14:56:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D07C537B408 for ; Fri, 30 May 2003 14:56:42 -0700 (PDT) Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB72343F85 for ; Fri, 30 May 2003 14:56:40 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 29507 invoked from network); 30 May 2003 21:56:39 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 30 May 2003 21:56:39 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h4ULubp0088803; Fri, 30 May 2003 17:56:37 -0400 (EDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20030530200512.GE60607@sunbay.com> Date: Fri, 30 May 2003 17:56:37 -0400 (EDT) From: John Baldwin To: Ruslan Ermilov cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 21:56:43 -0000 On 30-May-2003 Ruslan Ermilov wrote: > On Fri, May 30, 2003 at 02:25:10PM -0400, John Baldwin wrote: >> >> On 30-May-2003 Robert Watson wrote: >> > rwatson 2003/05/30 10:02:37 PDT >> > >> > FreeBSD src repository >> > >> > Modified files: >> > sys/security/mac_mls mac_mls.c >> > Log: >> > Make sure all character pointers are properly initialized; this was >> > mismerged from the MAC tree, and didn't get picked up because warnings >> > are not normally fatal in per-module builds, only when they are linked >> > into a kernel (such as LINT). >> >> Can someone make module builds use the same warning flags and >> settings as kernel builds please? This same scenario has happened >> numerous times now. >> > This is not easy. For the kernel build, we have NORMAL_C and > NORMAL_C_NOWERROR (the former includes WERROR?= -Werror). > There are lot of files in sys/conf/files* that are marked with > "nowerror", and I'm sure they will break to compile as modules > with this patch, e.g., the acpi module has lot of files with > warnings: This is just a symptom of the problem that module Makefiles duplicate metadata in sys/conf/files (namely the list of files in a given module). The modules Makefile's should somehow be changed to get their list of files (as well as nowerror settings) from the sys/conf/files. Essentially, you almost want to build the acpi module like so: % cd modules/acpi % cat conf # ACPI module configuration device acpi % config conf ... generate makefiles, etc. ... % make ... compiles acpi.ko ... And avoid having to duplicate the metadata about what belongs in a module. Basically, you build a kernel that doesn't include standard and doesn't require a CPU keyword. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Fri May 30 15:57:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56C2B37B401; Fri, 30 May 2003 15:57:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E84CD43F75; Fri, 30 May 2003 15:57:54 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UMvs0U078194; Fri, 30 May 2003 15:57:54 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UMvslp078193; Fri, 30 May 2003 15:57:54 -0700 (PDT) Message-Id: <200305302257.h4UMvslp078193@repoman.freebsd.org> From: Hiten Pandya Date: Fri, 30 May 2003 15:57:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 22:57:55 -0000 hmp 2003/05/30 15:57:54 PDT FreeBSD src repository (doc committer) Modified files: share/man/man9 Makefile Added files: share/man/man9 bus_dma.9 Log: Add the bus_dma(9) manual page to our section 9 collection. It provides comprehensive documentation on FreeBSD's Bus DMA interface. Approved by: gibbs, re@ (scottl) Reviewed by: gibbs, scottl, des, sam, jake, tmm Revision Changes Path 1.192 +12 -0 src/share/man/man9/Makefile 1.1 +720 -0 src/share/man/man9/bus_dma.9 (new) From owner-cvs-all@FreeBSD.ORG Fri May 30 16:10:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9E5D37B401; Fri, 30 May 2003 16:10:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8725D43F3F; Fri, 30 May 2003 16:10:52 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4UNAq0U079681; Fri, 30 May 2003 16:10:52 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4UNAq7h079680; Fri, 30 May 2003 16:10:52 -0700 (PDT) Message-Id: <200305302310.h4UNAq7h079680@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 30 May 2003 16:10:52 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 23:10:53 -0000 bmah 2003/05/30 16:10:52 PDT FreeBSD doc repository Modified files: en/releases/5.1R schedule.sgml Log: doc/ has been tagged, so check this item off. I missed the fact this date had been pushed back on the on the release schedule, but it makes sense to do this now anyways in order to give the RC builds a tagged doc/ tree. Revision Changes Path 1.11 +3 -3 www/en/releases/5.1R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Fri May 30 21:33:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 599F637B401; Fri, 30 May 2003 21:33:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC7D143F85; Fri, 30 May 2003 21:33:45 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V4Xj0U006135; Fri, 30 May 2003 21:33:45 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V4XjHs006134; Fri, 30 May 2003 21:33:45 -0700 (PDT) Message-Id: <200305310433.h4V4XjHs006134@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 30 May 2003 21:33:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/tcl84 distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 04:33:46 -0000 kris 2003/05/30 21:33:45 PDT FreeBSD ports repository Modified files: lang/tcl84 distinfo Log: Add a second checksum: - distfile was recreated with modified files: macosx/tclMacOSXBundle.c ChangeLog PR: 52625 Submitted by: Nate Eldredge Revision Changes Path 1.27 +1 -0 ports/lang/tcl84/distinfo From owner-cvs-all@FreeBSD.ORG Fri May 30 21:52:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0990F37B401; Fri, 30 May 2003 21:52:09 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA1E143F3F; Fri, 30 May 2003 21:52:07 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h4V4q6kA080818; Fri, 30 May 2003 22:52:07 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 30 May 2003 22:51:56 -0600 (MDT) Message-Id: <20030530.225156.71089616.imp@bsdimp.com> To: jhb@FreeBSD.org From: "M. Warner Losh" In-Reply-To: References: <20030530200512.GE60607@sunbay.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 04:52:09 -0000 In message: John Baldwin writes: : This is just a symptom of the problem that module Makefiles duplicate : metadata in sys/conf/files (namely the list of files in a given module). : The modules Makefile's should somehow be changed to get their list of : files (as well as nowerror settings) from the sys/conf/files. Essentially, : you almost want to build the acpi module like so: : : % cd modules/acpi : % cat conf : # ACPI module configuration : : device acpi : % config conf : ... generate makefiles, etc. ... : % make : ... compiles acpi.ko ... : : And avoid having to duplicate the metadata about what belongs in a : module. Basically, you build a kernel that doesn't include standard : and doesn't require a CPU keyword. Only if I don't have to config every module that I'm going to compile with the kernel. How would you deal with, say, the ed device which needs to have isa, pccard, cbus, and pci attachments? device 'ed' would be insufficient without knowledge of these attachments. Warner From owner-cvs-all@FreeBSD.ORG Fri May 30 22:20:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9C8D37B401; Fri, 30 May 2003 22:20:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D28843F75; Fri, 30 May 2003 22:20:45 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V5Kj0U008749; Fri, 30 May 2003 22:20:45 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V5Kjfr008748; Fri, 30 May 2003 22:20:45 -0700 (PDT) Message-Id: <200305310520.h4V5Kjfr008748@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 30 May 2003 22:20:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc_r/uthread uthread_close.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 05:20:46 -0000 ru 2003/05/30 22:20:44 PDT FreeBSD src repository Modified files: lib/libc_r/uthread uthread_close.c Log: If an application closes one of its stdio descriptors (0..2), an excessive close() on one of these descriptors would cause a memory for this descriptor to be allocated in the internal descriptor table. When this descriptor gets used again, e.g. through the call to open() or socket(), the descriptor would be erroneously left in the blocking mode, and the whole application would get stuck on a blocking operation, e.g., in accept(2). Prevent this bug from happening by disallowing close() against non-active descriptors (return -1 and set errno to EBADF in this case). Reviewed by: deischen Approved by: re (scottl) Revision Changes Path 1.14 +4 -2 src/lib/libc_r/uthread/uthread_close.c From owner-cvs-all@FreeBSD.ORG Fri May 30 22:23:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 282C437B401; Fri, 30 May 2003 22:23:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA87043F3F; Fri, 30 May 2003 22:23:20 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V5NK0U008823; Fri, 30 May 2003 22:23:20 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V5NKG5008822; Fri, 30 May 2003 22:23:20 -0700 (PDT) Message-Id: <200305310523.h4V5NKG5008822@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 30 May 2003 22:23:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc_r/uthread uthread_close.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 05:23:21 -0000 ru 2003/05/30 22:23:20 PDT FreeBSD src repository Modified files: lib/libc_r/uthread uthread_close.c Log: Fixed another bug in the threaded close() call; clear the stale stdio descriptors flags. PR: bin/51535 Submitted by: Enache Adrian Reviewed by: deischen Approved by: re (scottl) Revision Changes Path 1.15 +4 -0 src/lib/libc_r/uthread/uthread_close.c From owner-cvs-all@FreeBSD.ORG Fri May 30 22:25:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D977037B401; Fri, 30 May 2003 22:25:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A1E43F75; Fri, 30 May 2003 22:25:18 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V5PI0U008929; Fri, 30 May 2003 22:25:18 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V5PIfF008928; Fri, 30 May 2003 22:25:18 -0700 (PDT) Message-Id: <200305310525.h4V5PIfF008928@repoman.freebsd.org> From: Scott Long Date: Fri, 30 May 2003 22:25:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/loader Makefile loader.rc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 05:25:19 -0000 scottl 2003/05/30 22:25:18 PDT FreeBSD src repository Modified files: sys/boot/i386/loader Makefile Added files: sys/boot/i386/loader loader.rc Log: Enable the new bootloader for i386 only. The new loader.rc is will only be installed if an old one does not exist, i.e. only during install, not during upgrades. Approved by: re Revision Changes Path 1.65 +1 -1 src/sys/boot/i386/loader/Makefile 1.1 +20 -0 src/sys/boot/i386/loader/loader.rc (new) From owner-cvs-all@FreeBSD.ORG Fri May 30 23:27:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9899A37B401; Fri, 30 May 2003 23:27:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3754543F93; Fri, 30 May 2003 23:27:59 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6Rw0U039439; Fri, 30 May 2003 23:27:58 -0700 (PDT) (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6Rwb2039438; Fri, 30 May 2003 23:27:58 -0700 (PDT) Message-Id: <200305310627.h4V6Rwb2039438@repoman.freebsd.org> From: Bill Fenner Date: Fri, 30 May 2003 23:27:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh expand.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:28:00 -0000 fenner 2003/05/30 23:27:58 PDT FreeBSD src repository Modified files: bin/sh expand.c Log: Instead of eating trailing newlines after inserting them into the output buffer, don't insert them at all. This prevents a buffer *underrun* when the substitution consists completely of newlines (e.g. `echo`) and the byte before the source buffer to which p points is a '\n', in which case more characters would be removed from the output buffer than were inserted. This fixes certain port builds on sparc64. Approved by: re (scottl) Reviewed by: des, tjr Revision Changes Path 1.43 +12 -5 src/bin/sh/expand.c From owner-cvs-all@FreeBSD.ORG Fri May 30 23:42:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F169637B401; Fri, 30 May 2003 23:42:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91B6A43FCB; Fri, 30 May 2003 23:42:37 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6gb0U040084; Fri, 30 May 2003 23:42:37 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6gbAv040083; Fri, 30 May 2003 23:42:37 -0700 (PDT) Message-Id: <200305310642.h4V6gbAv040083@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:42:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:42:38 -0000 peter 2003/05/30 23:42:37 PDT FreeBSD src repository Modified files: sys/kern subr_witness.c Log: Add __amd64__ to the ifdefs that introduce the "pcicfg" spinlock to witness. Approved by: re (safe amd64 support) Revision Changes Path 1.153 +1 -1 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Fri May 30 23:43:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3140D37B401; Fri, 30 May 2003 23:43:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3F6343F3F; Fri, 30 May 2003 23:43:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6ht0U040188; Fri, 30 May 2003 23:43:55 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6htXk040187; Fri, 30 May 2003 23:43:55 -0700 (PDT) Message-Id: <200305310643.h4V6htXk040187@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:43:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include acpica_machdep.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:43:56 -0000 peter 2003/05/30 23:43:55 PDT FreeBSD src repository Modified files: sys/amd64/include acpica_machdep.h Log: With the help of jhb, fix the ACPI_ACQUIRE_GLOBAL_LOCK() macros and port to amd64 after repocopy. Approved by: re (amd64/*) Revision Changes Path 1.2 +9 -28 src/sys/amd64/include/acpica_machdep.h From owner-cvs-all@FreeBSD.ORG Fri May 30 23:45:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54E0B37B401; Fri, 30 May 2003 23:45:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8A9D43F85; Fri, 30 May 2003 23:45:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6jS0U040312; Fri, 30 May 2003 23:45:28 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6jSHx040311; Fri, 30 May 2003 23:45:28 -0700 (PDT) Message-Id: <200305310645.h4V6jSHx040311@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:45:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdHardware.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:45:29 -0000 peter 2003/05/30 23:45:28 PDT FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdHardware.c Log: Add the MD ifdefs for amd64 to point to the IO space bustag/handle. Approved by: re ("safe" amd64 support) Revision Changes Path 1.9 +4 -0 src/sys/dev/acpica/Osd/OsdHardware.c From owner-cvs-all@FreeBSD.ORG Fri May 30 23:47:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40D0A37B401; Fri, 30 May 2003 23:47:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0FC843F3F; Fri, 30 May 2003 23:47:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6l50U040394; Fri, 30 May 2003 23:47:05 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6l50N040393; Fri, 30 May 2003 23:47:05 -0700 (PDT) Message-Id: <200305310647.h4V6l50N040393@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:47:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.amd64 src/sys/amd64/acpica OsdEnvironment.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:47:06 -0000 peter 2003/05/30 23:47:05 PDT FreeBSD src repository Modified files: sys/conf files.amd64 sys/amd64/acpica OsdEnvironment.c Log: Port acpica to amd64. Approved by: re (amd64/* blanket) Revision Changes Path 1.9 +5 -5 src/sys/amd64/acpica/OsdEnvironment.c 1.17 +3 -0 src/sys/conf/files.amd64 From owner-cvs-all@FreeBSD.ORG Fri May 30 23:49:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3A7337B401; Fri, 30 May 2003 23:49:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E45743F75; Fri, 30 May 2003 23:49:54 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6nr0U040497; Fri, 30 May 2003 23:49:53 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6nrJS040496; Fri, 30 May 2003 23:49:53 -0700 (PDT) Message-Id: <200305310649.h4V6nrJS040496@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:49:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.amd64 src/sys/amd64/ia32 Makefile ia32_syscall.c syscalls.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:49:55 -0000 peter 2003/05/30 23:49:53 PDT FreeBSD src repository Modified files: sys/conf files.amd64 sys/amd64/ia32 Makefile ia32_syscall.c syscalls.conf Log: Make this compile with WITNESS enabled. It wants the syscall names. Revision Changes Path 1.2 +2 -1 src/sys/amd64/ia32/Makefile 1.2 +2 -1 src/sys/amd64/ia32/ia32_syscall.c 1.2 +1 -1 src/sys/amd64/ia32/syscalls.conf 1.18 +1 -0 src/sys/conf/files.amd64 From owner-cvs-all@FreeBSD.ORG Fri May 30 23:51:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 715DF37B408; Fri, 30 May 2003 23:51:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F69A43F3F; Fri, 30 May 2003 23:51:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6p40U040679; Fri, 30 May 2003 23:51:04 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6p44I040678; Fri, 30 May 2003 23:51:04 -0700 (PDT) Message-Id: <200305310651.h4V6p44I040678@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:51:04 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/ia32 ia32_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:51:05 -0000 peter 2003/05/30 23:51:04 PDT FreeBSD src repository Added files: sys/amd64/ia32 ia32_syscalls.c Log: Regenerate. Revision Changes Path 1.1 +447 -0 src/sys/amd64/ia32/ia32_syscalls.c (new) From owner-cvs-all@FreeBSD.ORG Fri May 30 23:55:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8FB737B404; Fri, 30 May 2003 23:55:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 322E243F75; Fri, 30 May 2003 23:55:24 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V6tM0U040822; Fri, 30 May 2003 23:55:22 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V6snT7040778; Fri, 30 May 2003 23:54:49 -0700 (PDT) Message-Id: <200305310654.h4V6snT7040778@repoman.freebsd.org> From: Peter Wemm Date: Fri, 30 May 2003 23:54:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 locore.S machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 06:55:25 -0000 peter 2003/05/30 23:54:47 PDT FreeBSD src repository Modified files: sys/amd64/amd64 locore.S machdep.c Log: Have hammer_time() return the proc0 stack location, and have locore switch to it before calling mi_startup(). The bootstack is WAY too small for running acpica during probe/attach. While here, pass modulep/physfree to the startup routine, rather than writing to the global variables in locore.S. Approved by: re (amd64/*) Revision Changes Path 1.175 +4 -6 src/sys/amd64/amd64/locore.S 1.581 +13 -19 src/sys/amd64/amd64/machdep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 00:00:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0168537B401; Sat, 31 May 2003 00:00:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9057643F75; Sat, 31 May 2003 00:00:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V7090U041092; Sat, 31 May 2003 00:00:09 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V708wi041091; Sat, 31 May 2003 00:00:08 -0700 (PDT) Message-Id: <200305310700.h4V708wi041091@repoman.freebsd.org> From: Peter Wemm Date: Sat, 31 May 2003 00:00:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 machdep.c src/sys/amd64/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 07:00:10 -0000 peter 2003/05/31 00:00:08 PDT FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c sys/amd64/conf GENERIC Log: Add acpi to the build. Remove the hack from machdep.c that lies to the loader to shut it up. Revision Changes Path 1.582 +0 -2 src/sys/amd64/amd64/machdep.c 1.386 +7 -1 src/sys/amd64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Sat May 31 00:09:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3A8D37B401; Sat, 31 May 2003 00:09:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52DC943F93; Sat, 31 May 2003 00:09:01 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V7910U042389; Sat, 31 May 2003 00:09:01 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V791J6042388; Sat, 31 May 2003 00:09:01 -0700 (PDT) Message-Id: <200305310709.h4V791J6042388@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 00:09:01 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 07:09:02 -0000 scottl 2003/05/31 00:09:01 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml Log: The busdma manpage has been committed, remove it from the list. Also remove the item regarding instability. Some of the reports have been tracked down to faulty hardware or drivers, while others have become harder to reproduce. It can be re-added to 5.2 is needed. Revision Changes Path 1.58 +1 -24 www/en/releases/5.1R/todo.sgml From owner-cvs-all@FreeBSD.ORG Sat May 31 00:19:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 339D537B401; Sat, 31 May 2003 00:19:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C24D943F93; Sat, 31 May 2003 00:19:32 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V7JW0U042812; Sat, 31 May 2003 00:19:32 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V7JWAE042811; Sat, 31 May 2003 00:19:32 -0700 (PDT) Message-Id: <200305310719.h4V7JWAE042811@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 00:19:32 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R todo.sgml www/en/releases/5.2R todo.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 07:19:33 -0000 scottl 2003/05/31 00:19:32 PDT FreeBSD doc repository Modified files: en/releases/5.1R todo.sgml en/releases/5.2R todo.sgml Log: Move the truss race item to 5.2 since it won't get done for 5.1. Move the ia64 stability item to 5.2 also, though Marcel is working hard to get it into shape. Revision Changes Path 1.59 +1 -25 www/en/releases/5.1R/todo.sgml 1.26 +25 -1 www/en/releases/5.2R/todo.sgml From owner-cvs-all@FreeBSD.ORG Sat May 31 01:48:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DEC637B401; Sat, 31 May 2003 01:48:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7DE43F93; Sat, 31 May 2003 01:48:06 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4V8m60U051936; Sat, 31 May 2003 01:48:06 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4V8m5if051935; Sat, 31 May 2003 01:48:05 -0700 (PDT) Message-Id: <200305310848.h4V8m5if051935@repoman.freebsd.org> From: Alan Cox Date: Sat, 31 May 2003 01:48:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/i386/i386 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 08:48:07 -0000 alc 2003/05/31 01:48:05 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/i386/i386 machdep.c Log: MFC (o)sendsig() changes from revisions 1.503 and 1.504 Eliminate grow_stack() and useracc() from (o)sendsig(). Both of these functions are handled transparently by copyout(). Revision Changes Path 1.385.2.30 +0 -41 src/sys/i386/i386/machdep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 02:20:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C99A37B401; Sat, 31 May 2003 02:20:47 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E7543F85; Sat, 31 May 2003 02:20:45 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id TAA06052; Sat, 31 May 2003 19:20:41 +1000 Date: Sat, 31 May 2003 19:20:41 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov In-Reply-To: <20030530200512.GE60607@sunbay.com> Message-ID: <20030531191000.D7734@gamplex.bde.org> References: <200305301702.h4UH2bHi052360@repoman.freebsd.org> <20030530200512.GE60607@sunbay.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 09:20:48 -0000 On Fri, 30 May 2003, Ruslan Ermilov wrote: > On Fri, May 30, 2003 at 02:25:10PM -0400, John Baldwin wrote: > > Can someone make module builds use the same warning flags and > > settings as kernel builds please? This same scenario has happened > > numerous times now. > > > This is not easy. For the kernel build, we have NORMAL_C and > NORMAL_C_NOWERROR (the former includes WERROR?= -Werror). > There are lot of files in sys/conf/files* that are marked with > "nowerror", and I'm sure they will break to compile as modules > with this patch, e.g., the acpi module has lot of files with > warnings: Not a lot, actually. There are 21 acpi files and 17 non-acpi files with nowerror. The acpi errors are less numerous than they used. About half of the other 17 are for unmaintained drivers and the other half are not needed or otherwise bogus. > %%% > Index: kern.mk > =================================================================== > RCS file: /home/ncvs/src/sys/conf/kern.mk,v > retrieving revision 1.34 > diff -u -r1.34 kern.mk > --- kern.mk 3 May 2003 18:05:56 -0000 1.34 > +++ kern.mk 30 May 2003 19:57:00 -0000 > @@ -9,6 +9,8 @@ > CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \ > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \ > -fformat-extensions -std=c99 > +WERROR?= -Werror > + > # > # The following flags are next up for working on: > # -W Style bug: separation of the -W options and comments by putting a non- -W option in the middile. The comment at the beginning of kern.mk was intended to apply to the whole file (the file should contain only warning options). This was broken in rev.1.11. Bruce From owner-cvs-all@FreeBSD.ORG Sat May 31 04:19:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C389C37B401; Sat, 31 May 2003 04:19:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 638B743F75; Sat, 31 May 2003 04:19:13 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VBJD0U062442; Sat, 31 May 2003 04:19:13 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VBJC9M062441; Sat, 31 May 2003 04:19:12 -0700 (PDT) Message-Id: <200305311119.h4VBJC9M062441@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 04:19:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/forth beastie.4th X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 11:19:14 -0000 scottl 2003/05/31 04:19:12 PDT FreeBSD src repository Modified files: sys/boot/forth beastie.4th Log: Flag when ACPI has been disabled by the user so that sysinstall can do something with it. Revision Changes Path 1.2 +2 -0 src/sys/boot/forth/beastie.4th From owner-cvs-all@FreeBSD.ORG Sat May 31 04:28:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5CEA37B401; Sat, 31 May 2003 04:28:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50F9043F85; Sat, 31 May 2003 04:28:29 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VBST0U062795; Sat, 31 May 2003 04:28:29 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VBSTS6062794; Sat, 31 May 2003 04:28:29 -0700 (PDT) Message-Id: <200305311128.h4VBSTS6062794@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 04:28:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c install.c sysinstall.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 11:28:30 -0000 scottl 2003/05/31 04:28:28 PDT FreeBSD src repository Modified files: usr.sbin/sysinstall config.c install.c sysinstall.h Log: Teach sysinstall to recognize if acpi was turned off from the bootloader, and then ask the user if this should be made permanent. Approved by: re Revision Changes Path 1.210 +38 -0 src/usr.sbin/sysinstall/config.c 1.344 +9 -0 src/usr.sbin/sysinstall/install.c 1.246 +4 -0 src/usr.sbin/sysinstall/sysinstall.h From owner-cvs-all@FreeBSD.ORG Sat May 31 05:43:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFC1A37B401; Sat, 31 May 2003 05:43:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689AF43F75; Sat, 31 May 2003 05:43:32 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VChW0U087485; Sat, 31 May 2003 05:43:32 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VChWeg087484; Sat, 31 May 2003 05:43:32 -0700 (PDT) Message-Id: <200305311243.h4VChWeg087484@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 05:43:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC src/sys/sparc64/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 12:43:33 -0000 scottl 2003/05/31 05:43:31 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) sys/alpha/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC sys/sparc64/conf GENERIC Log: Disable WITNESS, INVARIANTS, and DDB for the release branch. Approved by: re (implicit) Revision Changes Path 1.160.2.1 +2 -2 src/sys/alpha/conf/GENERIC 1.384.2.1 +4 -4 src/sys/i386/conf/GENERIC 1.233.2.1 +4 -4 src/sys/pc98/conf/GENERIC 1.55.2.1 +4 -4 src/sys/sparc64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Sat May 31 05:53:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 575AE37B401; Sat, 31 May 2003 05:53:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E93AE43F85; Sat, 31 May 2003 05:53:42 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VCrg0U087837; Sat, 31 May 2003 05:53:42 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VCrggI087836; Sat, 31 May 2003 05:53:42 -0700 (PDT) Message-Id: <200305311253.h4VCrggI087836@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 05:53:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/lib/libc/stdlib malloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 12:53:43 -0000 scottl 2003/05/31 05:53:42 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) lib/libc/stdlib malloc.c Log: Turn off malloc_abort and malloc_junk for the release. Approved by: re (implicit) Revision Changes Path 1.75.2.1 +2 -2 src/lib/libc/stdlib/malloc.c From owner-cvs-all@FreeBSD.ORG Sat May 31 05:55:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FEE237B401; Sat, 31 May 2003 05:55:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E367F43F85; Sat, 31 May 2003 05:55:54 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VCts0U087960; Sat, 31 May 2003 05:55:54 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VCtsKX087959; Sat, 31 May 2003 05:55:54 -0700 (PDT) Message-Id: <200305311255.h4VCtsKX087959@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 05:55:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 12:55:55 -0000 scottl 2003/05/31 05:55:54 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) sys/conf newvers.sh Log: We are now in RC Approved by: re (implicit) Revision Changes Path 1.50.2.1 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat May 31 05:58:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2FD237B401; Sat, 31 May 2003 05:58:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42F2143FB1; Sat, 31 May 2003 05:58:01 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VCw10U088026; Sat, 31 May 2003 05:58:01 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VCw0J1088025; Sat, 31 May 2003 05:58:00 -0700 (PDT) Message-Id: <200305311258.h4VCw0J1088025@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 05:58:00 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.1R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 12:58:02 -0000 scottl 2003/05/31 05:58:00 PDT FreeBSD doc repository Modified files: en/releases/5.1R schedule.sgml Log: Check off the branch and unfreeze boxes Revision Changes Path 1.12 +4 -4 www/en/releases/5.1R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Sat May 31 07:07:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61B9F37B401; Sat, 31 May 2003 07:07:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A3243F85; Sat, 31 May 2003 07:07:26 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VE7Q0U092634; Sat, 31 May 2003 07:07:26 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VE7QqO092633; Sat, 31 May 2003 07:07:26 -0700 (PDT) Message-Id: <200305311407.h4VE7QqO092633@repoman.freebsd.org> From: Hiten Pandya Date: Sat, 31 May 2003 07:07:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 VFS_CHECKEXP.9 VFS_FHTOVP.9 VFS_MOUNT.9 VFS_ROOT.9 VFS_START.9 VFS_STATFS.9 VFS_SYNC.9 VFS_UNMOUNT.9 VFS_VGET.9 VFS_VPTOFH.9 VOP_ACCESS.9 VOP_ACLCHECK.9 VOP_ADVLOCK.9 VOP_BWRITE.9 VOP_CREATE.9 VOP_FSYNC.9 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:07:27 -0000 hmp 2003/05/31 07:07:26 PDT FreeBSD src repository (doc committer) Modified files: share/man/man9 VFS_CHECKEXP.9 VFS_FHTOVP.9 VFS_MOUNT.9 VFS_ROOT.9 VFS_START.9 VFS_STATFS.9 VFS_SYNC.9 VFS_UNMOUNT.9 VFS_VGET.9 VFS_VPTOFH.9 VOP_ACCESS.9 VOP_ACLCHECK.9 VOP_ADVLOCK.9 VOP_BWRITE.9 VOP_CREATE.9 VOP_FSYNC.9 VOP_GETEXTATTR.9 VOP_GETPAGES.9 VOP_INACTIVE.9 VOP_IOCTL.9 VOP_LINK.9 VOP_LOCK.9 VOP_LOOKUP.9 VOP_OPENCLOSE.9 VOP_PATHCONF.9 VOP_PRINT.9 VOP_RDWR.9 VOP_READDIR.9 VOP_READLINK.9 VOP_REALLOCBLKS.9 VOP_REMOVE.9 VOP_RENAME.9 VOP_STRATEGY.9 atomic.9 devclass.9 devclass_find.9 device.9 kobj.9 ktr.9 rtalloc.9 sleep.9 vget.9 vput.9 vref.9 vrele.9 Log: Some mdoc(7) fixes: Nuke incorrect usage of .Ar; replace it with .Vt, .Va or .Fa appropriately. The .Ar mdoc(7) specifier should only be used when displaying command line arguments. Approved by: des (mentor) Revision Changes Path 1.10 +5 -5 src/share/man/man9/VFS_CHECKEXP.9 1.14 +3 -3 src/share/man/man9/VFS_FHTOVP.9 1.11 +5 -5 src/share/man/man9/VFS_MOUNT.9 1.8 +2 -2 src/share/man/man9/VFS_ROOT.9 1.9 +3 -3 src/share/man/man9/VFS_START.9 1.9 +3 -3 src/share/man/man9/VFS_STATFS.9 1.11 +4 -4 src/share/man/man9/VFS_SYNC.9 1.9 +3 -3 src/share/man/man9/VFS_UNMOUNT.9 1.11 +5 -5 src/share/man/man9/VFS_VGET.9 1.8 +3 -3 src/share/man/man9/VFS_VPTOFH.9 1.19 +4 -4 src/share/man/man9/VOP_ACCESS.9 1.10 +5 -5 src/share/man/man9/VOP_ACLCHECK.9 1.11 +5 -5 src/share/man/man9/VOP_ADVLOCK.9 1.10 +2 -2 src/share/man/man9/VOP_BWRITE.9 1.13 +5 -5 src/share/man/man9/VOP_CREATE.9 1.13 +4 -4 src/share/man/man9/VOP_FSYNC.9 1.16 +1 -1 src/share/man/man9/VOP_GETEXTATTR.9 1.7 +8 -8 src/share/man/man9/VOP_GETPAGES.9 1.12 +1 -1 src/share/man/man9/VOP_INACTIVE.9 1.12 +6 -6 src/share/man/man9/VOP_IOCTL.9 1.20 +3 -3 src/share/man/man9/VOP_LINK.9 1.14 +3 -3 src/share/man/man9/VOP_LOCK.9 1.19 +3 -3 src/share/man/man9/VOP_LOOKUP.9 1.12 +3 -3 src/share/man/man9/VOP_OPENCLOSE.9 1.10 +4 -4 src/share/man/man9/VOP_PATHCONF.9 1.8 +2 -2 src/share/man/man9/VOP_PRINT.9 1.14 +4 -4 src/share/man/man9/VOP_RDWR.9 1.11 +7 -7 src/share/man/man9/VOP_READDIR.9 1.11 +3 -3 src/share/man/man9/VOP_READLINK.9 1.9 +3 -3 src/share/man/man9/VOP_REALLOCBLKS.9 1.12 +3 -3 src/share/man/man9/VOP_REMOVE.9 1.17 +6 -6 src/share/man/man9/VOP_RENAME.9 1.15 +2 -2 src/share/man/man9/VOP_STRATEGY.9 1.11 +3 -3 src/share/man/man9/atomic.9 1.9 +4 -4 src/share/man/man9/devclass.9 1.7 +3 -3 src/share/man/man9/devclass_find.9 1.14 +7 -7 src/share/man/man9/device.9 1.13 +3 -3 src/share/man/man9/kobj.9 1.5 +1 -1 src/share/man/man9/ktr.9 1.13 +10 -10 src/share/man/man9/rtalloc.9 1.41 +10 -10 src/share/man/man9/sleep.9 1.9 +2 -2 src/share/man/man9/vget.9 1.10 +3 -3 src/share/man/man9/vput.9 1.10 +2 -2 src/share/man/man9/vref.9 1.11 +3 -3 src/share/man/man9/vrele.9 From owner-cvs-all@FreeBSD.ORG Sat May 31 07:20:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B263437B401; Sat, 31 May 2003 07:20:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E51A43FA3; Sat, 31 May 2003 07:20:32 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEKV0U093113; Sat, 31 May 2003 07:20:31 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEKVXk093112; Sat, 31 May 2003 07:20:31 -0700 (PDT) Message-Id: <200305311420.h4VEKVXk093112@repoman.freebsd.org> From: Hiten Pandya Date: Sat, 31 May 2003 07:20:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 make_dev.9 vnode.9 zone.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:20:33 -0000 hmp 2003/05/31 07:20:31 PDT FreeBSD src repository (doc committer) Modified files: share/man/man9 make_dev.9 vnode.9 zone.9 Log: Various mdoc(7) fixes: Add devfs(5) reference - make_dev.9 Change .Xr from VFS_VGET(9) to vget(9) - vnode.9 Spelling fix, 'useage' to 'usage' - zone.9 Approved by: des (mentor) Revision Changes Path 1.13 +2 -0 src/share/man/man9/make_dev.9 1.26 +1 -1 src/share/man/man9/vnode.9 1.24 +1 -1 src/share/man/man9/zone.9 From owner-cvs-all@FreeBSD.ORG Sat May 31 07:38:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3424437B401; Sat, 31 May 2003 07:38:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C798843F3F; Sat, 31 May 2003 07:38:23 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEcN0U093689; Sat, 31 May 2003 07:38:23 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEcNV1093683; Sat, 31 May 2003 07:38:23 -0700 (PDT) Message-Id: <200305311438.h4VEcNV1093683@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 31 May 2003 07:38:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:38:24 -0000 mtm 2003/05/31 07:38:23 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_cond.c thr_mutex.c Log: I botched one of my committs in the last round. Fix it. Revision Changes Path 1.8 +3 -2 src/lib/libthr/thread/thr_cond.c 1.10 +8 -10 src/lib/libthr/thread/thr_mutex.c From owner-cvs-all@FreeBSD.ORG Sat May 31 07:38:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9187D37B401; Sat, 31 May 2003 07:38:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44A3E43F93; Sat, 31 May 2003 07:38:46 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEcj0U093826; Sat, 31 May 2003 07:38:45 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEcjRx093825; Sat, 31 May 2003 07:38:45 -0700 (PDT) Message-Id: <200305311438.h4VEcjRx093825@repoman.freebsd.org> From: Hiten Pandya Date: Sat, 31 May 2003 07:38:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 namei.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:38:47 -0000 hmp 2003/05/31 07:38:45 PDT FreeBSD src repository (doc committer) Modified files: share/man/man9 namei.9 Log: Mass cleanup of the namei(9) manual page. - Nuke markup indicators for editors. - Bump the date - Use mdoc(7) specifiers for marking up defines, etc. - Update the prototypes - Flash out the description - Cleanup english, spelling and grammar - Update .Xr's - Add following SEE ALSOs: uio(9), uma(9), vput(9), vref(9) - Reorder sections to be in agreement with mdoc(7) - Add FILES section - Update Copyright and AUTHORS section. Approved by: des (mentor) Revision Changes Path 1.24 +180 -91 src/share/man/man9/namei.9 From owner-cvs-all@FreeBSD.ORG Sat May 31 07:45:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D282C37B401; Sat, 31 May 2003 07:45:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F0BF43F3F; Sat, 31 May 2003 07:45:12 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEjC0U094163; Sat, 31 May 2003 07:45:12 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEjCUS094162; Sat, 31 May 2003 07:45:12 -0700 (PDT) Message-Id: <200305311445.h4VEjCUS094162@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sat, 31 May 2003 07:45:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf rtld.1 rtld.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:45:13 -0000 mdodd 2003/05/31 07:45:12 PDT FreeBSD src repository Modified files: libexec/rtld-elf rtld.1 rtld.c Log: Use the environment variable LD_LIBMAP_DISABLE to disable libmap.conf(5) functionality. Revision Changes Path 1.35 +3 -0 src/libexec/rtld-elf/rtld.1 1.81 +8 -3 src/libexec/rtld-elf/rtld.c From owner-cvs-all@FreeBSD.ORG Sat May 31 07:46:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ADB237B401; Sat, 31 May 2003 07:46:05 -0700 (PDT) Received: from out006.verizon.net (out006pub.verizon.net [206.46.170.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 288D143FA3; Sat, 31 May 2003 07:46:04 -0700 (PDT) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([138.88.45.55]) by out006.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net>; Sat, 31 May 2003 09:46:03 -0500 Date: Sat, 31 May 2003 10:46:02 -0400 From: Mike Makonnen To: Mike Makonnen In-Reply-To: <200305311438.h4VEcNV1093683@repoman.freebsd.org> References: <200305311438.h4VEcNV1093683@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out006.verizon.net from [138.88.45.55] at Sat, 31 May 2003 09:46:02 -0500 Message-Id: <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:46:05 -0000 On Sat, 31 May 2003 07:38:23 -0700 (PDT) Mike Makonnen wrote: > mtm 2003/05/31 07:38:23 PDT > > FreeBSD src repository > > Modified files: > lib/libthr/thread thr_cond.c thr_mutex.c > Log: > I botched one of my committs in the last round. Fix it. > I feel I owe you guys an apology. Over the past week a couple of real stupid mistakes made it past me. This was mostly the result of committing after late night coding sessions. This reflects badly on me and possibly the project. So, apologies all around. Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 mtm@FreeBSD.Org| FreeBSD - The Power To Serve From owner-cvs-all@FreeBSD.ORG Sat May 31 07:46:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A457A37B401; Sat, 31 May 2003 07:46:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 426BC43F93; Sat, 31 May 2003 07:46:39 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEkd0U094243; Sat, 31 May 2003 07:46:39 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEkcdp094242; Sat, 31 May 2003 07:46:38 -0700 (PDT) Message-Id: <200305311446.h4VEkcdp094242@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sat, 31 May 2003 07:46:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf libmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:46:40 -0000 mdodd 2003/05/31 07:46:38 PDT FreeBSD src repository Modified files: libexec/rtld-elf libmap.c Log: Provide function entry debugging messages. Revision Changes Path 1.7 +16 -1 src/libexec/rtld-elf/libmap.c From owner-cvs-all@FreeBSD.ORG Sat May 31 07:48:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E79A037B401; Sat, 31 May 2003 07:48:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84DA643FAF; Sat, 31 May 2003 07:48:59 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VEmx0U094306; Sat, 31 May 2003 07:48:59 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VEmxhM094305; Sat, 31 May 2003 07:48:59 -0700 (PDT) Message-Id: <200305311448.h4VEmxhM094305@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sat, 31 May 2003 07:48:59 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf map_object.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:49:00 -0000 mdodd 2003/05/31 07:48:59 PDT FreeBSD src repository Modified files: libexec/rtld-elf map_object.c Log: Simplify map_object() by breaking out the ELF header validation bits into a separate function. Revision Changes Path 1.13 +67 -58 src/libexec/rtld-elf/map_object.c From owner-cvs-all@FreeBSD.ORG Sat May 31 07:49:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F3BC37B401; Sat, 31 May 2003 07:49:24 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C61143FBD; Sat, 31 May 2003 07:49:23 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h4VEiWZ26115; Sat, 31 May 2003 07:44:32 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id HAA20018; Sat, 31 May 2003 07:49:16 -0700 (PDT) Message-ID: <3ED8C0DF.90405@btc.adaptec.com> Date: Sat, 31 May 2003 08:49:03 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Makonnen References: <200305311438.h4VEcNV1093683@repoman.freebsd.org> <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> In-Reply-To: <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: Mike Makonnen cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:49:24 -0000 Mike Makonnen wrote: > On Sat, 31 May 2003 07:38:23 -0700 (PDT) > Mike Makonnen wrote: > > >>mtm 2003/05/31 07:38:23 PDT >> >> FreeBSD src repository >> >> Modified files: >> lib/libthr/thread thr_cond.c thr_mutex.c >> Log: >> I botched one of my committs in the last round. Fix it. >> > > > I feel I owe you guys an apology. Over the past week a couple of real stupid > mistakes made it past me. This was mostly the result of committing after late > night coding sessions. This reflects badly on me and possibly the project. So, > apologies all around. > > Cheers. There no need to be hard on yourself, we all really appreciate the work that you're putting in. Does this commit need to go into the RELENG_5_1 branch? Scott From owner-cvs-all@FreeBSD.ORG Sat May 31 07:49:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF70E37B401; Sat, 31 May 2003 07:49:43 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id B862A43FB1; Sat, 31 May 2003 07:49:42 -0700 (PDT) (envelope-from hmp@nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1072) id 2E41D20F00; Sat, 31 May 2003 07:49:42 -0700 (PDT) Date: Sat, 31 May 2003 07:49:42 -0700 From: Hiten Pandya To: Mike Makonnen Message-ID: <20030531144942.GB39381@perrin.int.nxad.com> References: <200305311438.h4VEcNV1093683@repoman.freebsd.org> <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> X-Operating-System: FreeBSD FreeBSD 4.7-STABLE User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: Mike Makonnen cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:49:45 -0000 On Sat, May 31, 2003 at 10:46:02AM -0400, Mike Makonnen wrote: > On Sat, 31 May 2003 07:38:23 -0700 (PDT) > Mike Makonnen wrote: > > > mtm 2003/05/31 07:38:23 PDT > > > > FreeBSD src repository > > > > Modified files: > > lib/libthr/thread thr_cond.c thr_mutex.c > > Log: > > I botched one of my committs in the last round. Fix it. > > > > I feel I owe you guys an apology. Over the past week a couple of real stupid > mistakes made it past me. This was mostly the result of committing after late > night coding sessions. This reflects badly on me and possibly the project. So, > apologies all around. Apology accepted! Punishment: Keep up the good work! 8-) 8-) Cheers. -- Hiten (hmp@FreeBSD.ORG) From owner-cvs-all@FreeBSD.ORG Sat May 31 07:56:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 060EA37B401; Sat, 31 May 2003 07:56:55 -0700 (PDT) Received: from pop016.verizon.net (pop016pub.verizon.net [206.46.170.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id C889F43F3F; Sat, 31 May 2003 07:56:53 -0700 (PDT) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([138.88.45.55]) by pop016.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030531145653.PBOA3199.pop016.verizon.net@kokeb.ambesa.net>; Sat, 31 May 2003 09:56:53 -0500 Date: Sat, 31 May 2003 10:56:51 -0400 From: Mike Makonnen To: Scott Long In-Reply-To: <3ED8C0DF.90405@btc.adaptec.com> References: <200305311438.h4VEcNV1093683@repoman.freebsd.org> <20030531144603.OAOT25800.out006.verizon.net@kokeb.ambesa.net> <3ED8C0DF.90405@btc.adaptec.com> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop016.verizon.net from [138.88.45.55] at Sat, 31 May 2003 09:56:52 -0500 Message-Id: <20030531145653.PBOA3199.pop016.verizon.net@kokeb.ambesa.net> cc: cvs-src@FreeBSD.org cc: mtm@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:56:55 -0000 On Sat, 31 May 2003 08:49:03 -0600 Scott Long wrote: > > There no need to be hard on yourself, we all really appreciate the work > that you're putting in. Missing semi-colons are one thing. Obviously screwed up logic is a different matter. It was just bothering me, and i wanted to get it off my chest. > Does this commit need to go into the RELENG_5_1 > branch? Yes, it does. Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 mtm@FreeBSD.Org| FreeBSD - The Power To Serve From owner-cvs-all@FreeBSD.ORG Sat May 31 08:18:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD38037B401; Sat, 31 May 2003 08:18:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52B4743F3F; Sat, 31 May 2003 08:18:42 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VFIg0U096328; Sat, 31 May 2003 08:18:42 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VFIgRl096327; Sat, 31 May 2003 08:18:42 -0700 (PDT) Message-Id: <200305311518.h4VFIgRl096327@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 08:18:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC src/sys/sparc64/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 15:18:43 -0000 scottl 2003/05/31 08:18:41 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) sys/alpha/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC sys/sparc64/conf GENERIC Log: Disable building debug kernels in GENERIC for the release. Reminded by: rwatson Approved by: re (implicit) Revision Changes Path 1.160.2.2 +1 -1 src/sys/alpha/conf/GENERIC 1.384.2.2 +1 -1 src/sys/i386/conf/GENERIC 1.233.2.2 +1 -1 src/sys/pc98/conf/GENERIC 1.55.2.2 +1 -1 src/sys/sparc64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Sat May 31 08:24:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DDDB37B401; Sat, 31 May 2003 08:24:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 891E443F75; Sat, 31 May 2003 08:24:29 -0700 (PDT) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VFOT0U096534; Sat, 31 May 2003 08:24:29 -0700 (PDT) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VFOTF9096533; Sat, 31 May 2003 08:24:29 -0700 (PDT) Message-Id: <200305311524.h4VFOTF9096533@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sat, 31 May 2003 08:24:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/rtld-elf rtld.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 15:24:30 -0000 mdodd 2003/05/31 08:24:29 PDT FreeBSD src repository Modified files: libexec/rtld-elf rtld.c Log: - use issetugid() - be paranoid about honoring LD_LIBMAP_DISABLE. Suggested by: rwatson Revision Changes Path 1.82 +2 -3 src/libexec/rtld-elf/rtld.c From owner-cvs-all@FreeBSD.ORG Sat May 31 08:42:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4849D37B401; Sat, 31 May 2003 08:42:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD40543F75; Sat, 31 May 2003 08:42:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VFgu0U097214; Sat, 31 May 2003 08:42:56 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VFgua4097213; Sat, 31 May 2003 08:42:56 -0700 (PDT) Message-Id: <200305311542.h4VFgua4097213@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 31 May 2003 08:42:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 15:42:57 -0000 obrien 2003/05/31 08:42:56 PDT FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: Protext copyright[]. Revision Changes Path 1.94 +2 -3 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-all@FreeBSD.ORG Sat May 31 08:46:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DCF937B401; Sat, 31 May 2003 08:46:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA4D43F85; Sat, 31 May 2003 08:46:06 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VFk50U097402; Sat, 31 May 2003 08:46:05 -0700 (PDT) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VFk5F5097401; Sat, 31 May 2003 08:46:05 -0700 (PDT) Message-Id: <200305311546.h4VFk5F5097401@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 31 May 2003 08:46:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/termcap termcap.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 15:46:06 -0000 ache 2003/05/31 08:46:05 PDT FreeBSD src repository Modified files: share/termcap termcap.src Log: Add entry for putty as an alias to vt220-color Revision Changes Path 1.136 +1 -1 src/share/termcap/termcap.src From owner-cvs-all@FreeBSD.ORG Sat May 31 09:07:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79B9537B401; Sat, 31 May 2003 09:07:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 178FE43F85; Sat, 31 May 2003 09:07:01 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VG700U004372; Sat, 31 May 2003 09:07:00 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VG70D8004371; Sat, 31 May 2003 09:07:00 -0700 (PDT) Message-Id: <200305311607.h4VG70D8004371@repoman.freebsd.org> From: Scott Long Date: Sat, 31 May 2003 09:07:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/forth beastie.4th X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:07:02 -0000 scottl 2003/05/31 09:07:00 PDT FreeBSD src repository Modified files: sys/boot/forth beastie.4th Log: Man, I'm not on the ball. 4th does not need to escape '\' chars. This should make our beloved friend look less like he has a massive head wound. Revision Changes Path 1.3 +8 -8 src/sys/boot/forth/beastie.4th From owner-cvs-all@FreeBSD.ORG Sat May 31 09:27:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C83837B401; Sat, 31 May 2003 09:27:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C48E43FB1; Sat, 31 May 2003 09:27:54 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGRr0U005052; Sat, 31 May 2003 09:27:53 -0700 (PDT) (envelope-from hoek@repoman.freebsd.org) Received: (from hoek@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGRrC8005051; Sat, 31 May 2003 09:27:53 -0700 (PDT) Message-Id: <200305311627.h4VGRrC8005051@repoman.freebsd.org> From: Tim Vanderhoek Date: Sat, 31 May 2003 09:27:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/games/fortune/datfiles fortunes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:27:54 -0000 hoek 2003/05/31 09:27:53 PDT FreeBSD src repository Modified files: games/fortune/datfiles fortunes Log: Fixup three rather minor typos that have irked me over time. Revision Changes Path 1.111 +4 -4 src/games/fortune/datfiles/fortunes From owner-cvs-all@FreeBSD.ORG Sat May 31 09:30:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DEA737B401; Sat, 31 May 2003 09:30:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05A843F93; Sat, 31 May 2003 09:30:39 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGUd0U005269; Sat, 31 May 2003 09:30:39 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGUd0T005268; Sat, 31 May 2003 09:30:39 -0700 (PDT) Message-Id: <200305311630.h4VGUd0T005268@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 31 May 2003 09:30:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:30:40 -0000 obrien 2003/05/31 09:30:39 PDT FreeBSD src repository Modified files: share/mk bsd.sys.mk Log: Make CSTD style match the rest of file. Revision Changes Path 1.18 +6 -6 src/share/mk/bsd.sys.mk From owner-cvs-all@FreeBSD.ORG Sat May 31 09:36:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 184F037B401; Sat, 31 May 2003 09:36:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB30A43F75; Sat, 31 May 2003 09:36:43 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGah0U005470; Sat, 31 May 2003 09:36:43 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGahdo005469; Sat, 31 May 2003 09:36:43 -0700 (PDT) Message-Id: <200305311636.h4VGahdo005469@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:36:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:36:44 -0000 phk 2003/05/31 09:36:43 PDT FreeBSD src repository Modified files: sys/cam/scsi scsi_all.c Log: Don't use return(foo(...)); in a function returning void. Found by: FlexeLint Revision Changes Path 1.41 +8 -6 src/sys/cam/scsi/scsi_all.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:37:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7CE837B401; Sat, 31 May 2003 09:37:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0433043F85; Sat, 31 May 2003 09:37:23 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGbM0U005502; Sat, 31 May 2003 09:37:22 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGbM8p005501; Sat, 31 May 2003 09:37:22 -0700 (PDT) Message-Id: <200305311637.h4VGbM8p005501@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 31 May 2003 09:37:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:37:24 -0000 obrien 2003/05/31 09:37:22 PDT FreeBSD src repository Modified files: share/mk bsd.sys.mk Log: CSTD is virtually worthless for WARNS=2-5. Return -pedantic to WARNS=6+. Revision Changes Path 1.19 +3 -1 src/share/mk/bsd.sys.mk From owner-cvs-all@FreeBSD.ORG Sat May 31 09:42:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D0637B401; Sat, 31 May 2003 09:42:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AE2A43F85; Sat, 31 May 2003 09:42:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGgj0U005830; Sat, 31 May 2003 09:42:45 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGgjKO005829; Sat, 31 May 2003 09:42:45 -0700 (PDT) Message-Id: <200305311642.h4VGgjKO005829@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:42:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c src/sys/kern vfs_bio.c vfs_cluster.c src/sys/nfsclient nfs_bio.c src/sys/sys buf.h vnode.h src/sys/ufs/ffs ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:42:46 -0000 phk 2003/05/31 09:42:45 PDT FreeBSD src repository Modified files: sys/dev/md md.c sys/kern vfs_bio.c vfs_cluster.c sys/nfsclient nfs_bio.c sys/sys buf.h vnode.h sys/ufs/ffs ffs_vnops.c Log: The IO_NOWDRAIN and B_NOWDRAIN hacks are no longer needed to prevent deadlocks with vnode backed md(4) devices because md now uses a kthread to run the bio requests instead of doing it directly from the bio down path. Revision Changes Path 1.100 +2 -3 src/sys/dev/md/md.c 1.391 +3 -7 src/sys/kern/vfs_bio.c 1.139 +1 -1 src/sys/kern/vfs_cluster.c 1.119 +0 -6 src/sys/nfsclient/nfs_bio.c 1.150 +1 -5 src/sys/sys/buf.h 1.224 +0 -1 src/sys/sys/vnode.h 1.110 +0 -4 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:46:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E3EA37B401; Sat, 31 May 2003 09:46:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CEC643F75; Sat, 31 May 2003 09:46:04 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGk40U006080; Sat, 31 May 2003 09:46:04 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGk344006079; Sat, 31 May 2003 09:46:03 -0700 (PDT) Message-Id: <200305311646.h4VGk344006079@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 31 May 2003 09:46:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/release/doc/share/sgml release.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:46:05 -0000 bmah 2003/05/31 09:46:03 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) release/doc/share/sgml release.ent Log: We're in 5.1-RC. Approved by: re (implicitly) Revision Changes Path 1.11.2.1 +1 -1 src/release/doc/share/sgml/release.ent From owner-cvs-all@FreeBSD.ORG Sat May 31 09:46:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3A4837B401; Sat, 31 May 2003 09:46:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6099243FA3; Sat, 31 May 2003 09:46:58 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGkw0U006137; Sat, 31 May 2003 09:46:58 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGkwEa006136; Sat, 31 May 2003 09:46:58 -0700 (PDT) Message-Id: <200305311646.h4VGkwEa006136@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 31 May 2003 09:46:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/release/doc/share/examples Makefile.relnotesng X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:46:59 -0000 bmah 2003/05/31 09:46:58 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) release/doc/share/examples Makefile.relnotesng Log: Put generated RELNOTESng snapshot in the right place for 5.1-RC/RELEASE. Approved by: re (implicitly) Revision Changes Path 1.8.4.1 +1 -1 src/release/doc/share/examples/Makefile.relnotesng From owner-cvs-all@FreeBSD.ORG Sat May 31 09:47:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72D8337B40F; Sat, 31 May 2003 09:47:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28EAA43FA3; Sat, 31 May 2003 09:47:08 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGl70U006188; Sat, 31 May 2003 09:47:07 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGl70X006187; Sat, 31 May 2003 09:47:07 -0700 (PDT) Message-Id: <200305311647.h4VGl70X006187@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:47:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_uuid.c src/sys/sys uuid.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:47:10 -0000 phk 2003/05/31 09:47:07 PDT FreeBSD src repository Modified files: sys/kern kern_uuid.c sys/sys uuid.h Log: Introduce {be,le}_uuid_{enc,dec}() functions for explicitly encoding and decoding UUID's in big endian and little endian binary format. Revision Changes Path 1.5 +80 -0 src/sys/kern/kern_uuid.c 1.3 +4 -0 src/sys/sys/uuid.h From owner-cvs-all@FreeBSD.ORG Sat May 31 09:48:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2054837B404; Sat, 31 May 2003 09:48:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC4B943F75; Sat, 31 May 2003 09:48:43 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGmh0U006239; Sat, 31 May 2003 09:48:43 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGmhse006238; Sat, 31 May 2003 09:48:43 -0700 (PDT) Message-Id: <200305311648.h4VGmhse006238@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:48:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_gpt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:48:44 -0000 phk 2003/05/31 09:48:43 PDT FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Use le_uuid_dec() since GPT UUID's are always in LE format. Tested by: Marcel Revision Changes Path 1.23 +4 -2 src/sys/geom/geom_gpt.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:51:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DE7F37B401; Sat, 31 May 2003 09:51:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D57B043F93; Sat, 31 May 2003 09:51:41 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGpf0U006442; Sat, 31 May 2003 09:51:41 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGpfPV006441; Sat, 31 May 2003 09:51:41 -0700 (PDT) Message-Id: <200305311651.h4VGpfPV006441@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:51:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/exca exca.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:51:43 -0000 phk 2003/05/31 09:51:41 PDT FreeBSD src repository Modified files: sys/dev/exca exca.c Log: Don't use return(foo(...)); in function returning void. Found by: FlexeLint Revision Changes Path 1.8 +1 -1 src/sys/dev/exca/exca.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:52:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D46237B404; Sat, 31 May 2003 09:52:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4E0943F93; Sat, 31 May 2003 09:52:58 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGqw0U006521; Sat, 31 May 2003 09:52:58 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGqwAt006520; Sat, 31 May 2003 09:52:58 -0700 (PDT) Message-Id: <200305311652.h4VGqwAt006520@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 09:52:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules modules.inc src/lib/libpam/modules/pam_guest Makefile pam_guest.8 pam_guest.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:53:00 -0000 des 2003/05/31 09:52:58 PDT FreeBSD src repository Modified files: lib/libpam/modules modules.inc Added files: lib/libpam/modules/pam_guest Makefile pam_guest.8 pam_guest.c Log: Introduce pam_guest(8) which will replace pam_ftp(8). Revision Changes Path 1.18 +1 -1 src/lib/libpam/modules/modules.inc 1.1 +7 -0 src/lib/libpam/modules/pam_guest/Makefile (new) 1.1 +98 -0 src/lib/libpam/modules/pam_guest/pam_guest.8 (new) 1.1 +114 -0 src/lib/libpam/modules/pam_guest/pam_guest.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 09:53:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CBE237B401; Sat, 31 May 2003 09:53:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A34F43F3F; Sat, 31 May 2003 09:53:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGrG0U006555; Sat, 31 May 2003 09:53:16 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGrGVo006554; Sat, 31 May 2003 09:53:16 -0700 (PDT) Message-Id: <200305311653.h4VGrGVo006554@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:53:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:53:17 -0000 phk 2003/05/31 09:53:16 PDT FreeBSD src repository Modified files: sys/kern tty_pty.c Log: "break" rather than fall through to a break in the default clause. Found by: FlexeLint Revision Changes Path 1.109 +1 -0 src/sys/kern/tty_pty.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:54:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0C7F37B401; Sat, 31 May 2003 09:54:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D27F43FA3; Sat, 31 May 2003 09:54:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGsc0U006652; Sat, 31 May 2003 09:54:38 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGsbfH006651; Sat, 31 May 2003 09:54:37 -0700 (PDT) Message-Id: <200305311654.h4VGsbfH006651@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:54:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys chio.h src/sys/cam/scsi scsi_ch.c scsi_ch.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:54:39 -0000 phk 2003/05/31 09:54:37 PDT FreeBSD src repository Modified files: sys/sys chio.h sys/cam/scsi scsi_ch.c scsi_ch.h Log: Use symbolic constants instead of "4". Use arrays instead of relying on struct packing. Identical md5(scsi_ch.o). Revision Changes Path 1.36 +7 -7 src/sys/cam/scsi/scsi_ch.c 1.4 +2 -8 src/sys/cam/scsi/scsi_ch.h 1.16 +2 -1 src/sys/sys/chio.h From owner-cvs-all@FreeBSD.ORG Sat May 31 09:55:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 427F637B401; Sat, 31 May 2003 09:55:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A5643F85; Sat, 31 May 2003 09:55:07 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGt70U006793; Sat, 31 May 2003 09:55:07 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGt77X006792; Sat, 31 May 2003 09:55:07 -0700 (PDT) Message-Id: <200305311655.h4VGt77X006792@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 09:55:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules/pam_krb5 pam_krb5.c src/lib/libpam/modules/pam_opie pam_opie.c src/lib/libpam/modules/pam_radius pam_radius.c src/lib/libpam/modules/pam_unix pam_unix.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:55:08 -0000 des 2003/05/31 09:55:07 PDT FreeBSD src repository Modified files: lib/libpam/modules/pam_krb5 pam_krb5.c lib/libpam/modules/pam_opie pam_opie.c lib/libpam/modules/pam_radius pam_radius.c lib/libpam/modules/pam_tacplus pam_tacplus.c lib/libpam/modules/pam_unix pam_unix.c Log: Remove all instances of pam_std_option() Revision Changes Path 1.17 +25 -60 src/lib/libpam/modules/pam_krb5/pam_krb5.c 1.24 +4 -18 src/lib/libpam/modules/pam_opie/pam_opie.c 1.14 +8 -25 src/lib/libpam/modules/pam_radius/pam_radius.c 1.13 +10 -26 src/lib/libpam/modules/pam_tacplus/pam_tacplus.c 1.45 +11 -38 src/lib/libpam/modules/pam_unix/pam_unix.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:56:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F174E37B404; Sat, 31 May 2003 09:56:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC0043FB1; Sat, 31 May 2003 09:56:36 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGuZ0U006903; Sat, 31 May 2003 09:56:35 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGuZSX006902; Sat, 31 May 2003 09:56:35 -0700 (PDT) Message-Id: <200305311656.h4VGuZSX006902@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 09:56:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/libpam/security pam_mod_misc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:56:37 -0000 des 2003/05/31 09:56:35 PDT FreeBSD src repository Modified files: lib/libpam/libpam/security pam_mod_misc.h Log: Remove pam_std_option() and related functions. Add #defines for common options. Revision Changes Path 1.12 +6 -24 src/lib/libpam/libpam/security/pam_mod_misc.h From owner-cvs-all@FreeBSD.ORG Sat May 31 09:57:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F347937B401; Sat, 31 May 2003 09:57:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9656843F75; Sat, 31 May 2003 09:57:02 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGv20U007032; Sat, 31 May 2003 09:57:02 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGv217007031; Sat, 31 May 2003 09:57:02 -0700 (PDT) Message-Id: <200305311657.h4VGv217007031@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:57:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i4b/driver i4b_trace.c src/sys/i4b/layer1/ifpi i4b_ifpi_pci.c src/sys/i4b/layer1/ifpi2 i4b_ifpi2_pci.c src/sys/i4b/layer1/ifpnp i4b_ifpnp_avm.c src/sys/i4b/layer1/itjc i4b_itjc_pci.c src/sys/i4b/layer2 i4b_l2fsm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:57:03 -0000 phk 2003/05/31 09:57:02 PDT FreeBSD src repository Modified files: sys/i4b/driver i4b_trace.c sys/i4b/layer1/ifpi i4b_ifpi_pci.c sys/i4b/layer1/ifpi2 i4b_ifpi2_pci.c sys/i4b/layer1/ifpnp i4b_ifpnp_avm.c sys/i4b/layer1/itjc i4b_itjc_pci.c sys/i4b/layer2 i4b_l2fsm.c Log: Fix systematic off-by-one errors in unit number range checks. Found by: FlexeLint Revision Changes Path 1.24 +1 -1 src/sys/i4b/driver/i4b_trace.c 1.12 +2 -2 src/sys/i4b/layer1/ifpi/i4b_ifpi_pci.c 1.11 +2 -2 src/sys/i4b/layer1/ifpi2/i4b_ifpi2_pci.c 1.9 +2 -2 src/sys/i4b/layer1/ifpnp/i4b_ifpnp_avm.c 1.8 +2 -2 src/sys/i4b/layer1/itjc/i4b_itjc_pci.c 1.14 +2 -2 src/sys/i4b/layer2/i4b_l2fsm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 09:59:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3116137B401; Sat, 31 May 2003 09:59:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5D2A43F75; Sat, 31 May 2003 09:59:27 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VGxR0U007224; Sat, 31 May 2003 09:59:27 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VGxRXb007223; Sat, 31 May 2003 09:59:27 -0700 (PDT) Message-Id: <200305311659.h4VGxRXb007223@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 09:59:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c src/sys/geom geom.h geom_aes.c geom_apple.c geom_bsd.c geom_dev.c geom_disk.c geom_gpt.c geom_mbr.c geom_mirror.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c src/sys/geom/bde g_bde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:59:28 -0000 phk 2003/05/31 09:59:27 PDT FreeBSD src repository Modified files: sys/dev/md md.c sys/geom geom.h geom_aes.c geom_apple.c geom_bsd.c geom_dev.c geom_disk.c geom_gpt.c geom_mbr.c geom_mirror.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c sys/geom/bde g_bde.c Log: Remove the G_CLASS_INITIALIZER, we do not need it anymore. Revision Changes Path 1.101 +0 -1 src/sys/dev/md/md.c 1.20 +0 -1 src/sys/geom/bde/g_bde.c 1.65 +2 -8 src/sys/geom/geom.h 1.21 +0 -1 src/sys/geom/geom_aes.c 1.10 +0 -1 src/sys/geom/geom_apple.c 1.61 +0 -1 src/sys/geom/geom_bsd.c 1.59 +0 -1 src/sys/geom/geom_dev.c 1.73 +0 -1 src/sys/geom/geom_disk.c 1.24 +0 -1 src/sys/geom/geom_gpt.c 1.51 +0 -2 src/sys/geom/geom_mbr.c 1.8 +0 -1 src/sys/geom/geom_mirror.c 1.40 +0 -1 src/sys/geom/geom_pc98.c 1.37 +0 -1 src/sys/geom/geom_sunlabel.c 1.9 +0 -1 src/sys/geom/geom_vol_ffs.c From owner-cvs-all@FreeBSD.ORG Sat May 31 10:06:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E06037B401; Sat, 31 May 2003 10:06:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7A7543F85; Sat, 31 May 2003 10:06:20 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VH6K0U008763; Sat, 31 May 2003 10:06:20 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VH6K7b008758; Sat, 31 May 2003 10:06:20 -0700 (PDT) Message-Id: <200305311706.h4VH6K7b008758@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 10:06:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.i386 files.pc98 src/sys/i386/conf NOTES src/sys/i386/isa ctx.c src/sys/pc98/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:06:21 -0000 phk 2003/05/31 10:06:20 PDT FreeBSD src repository Modified files: sys/conf files.i386 files.pc98 sys/i386/conf NOTES sys/i386/isa ctx.c sys/pc98/conf NOTES Log: Eliminate potential overflows by allocating softc dynamically, removing at the same time the need for this to be a "count" config option. Found by: FlexeLint Revision Changes Path 1.445 +1 -1 src/sys/conf/files.i386 1.271 +1 -1 src/sys/conf/files.pc98 1.1089 +1 -1 src/sys/i386/conf/NOTES 1.46 +19 -30 src/sys/i386/isa/ctx.c 1.9 +1 -1 src/sys/pc98/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sat May 31 10:19:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94AA737B401; Sat, 31 May 2003 10:19:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38A1843F75; Sat, 31 May 2003 10:19:04 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VHJ40U009754; Sat, 31 May 2003 10:19:04 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VHJ3sK009753; Sat, 31 May 2003 10:19:03 -0700 (PDT) Message-Id: <200305311719.h4VHJ3sK009753@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 10:19:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules/pam_krb5 pam_krb5.c src/lib/libpam/modules/pam_opie pam_opie.c src/lib/libpam/modules/pam_radius pam_radius.c src/lib/libpam/modules/pam_unix pam_unix.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:19:04 -0000 des 2003/05/31 10:19:03 PDT FreeBSD src repository Modified files: lib/libpam/modules/pam_krb5 pam_krb5.c lib/libpam/modules/pam_opie pam_opie.c lib/libpam/modules/pam_radius pam_radius.c lib/libpam/modules/pam_tacplus pam_tacplus.c lib/libpam/modules/pam_unix pam_unix.c Log: Update copyright dates. Revision Changes Path 1.18 +1 -1 src/lib/libpam/modules/pam_krb5/pam_krb5.c 1.25 +1 -1 src/lib/libpam/modules/pam_opie/pam_opie.c 1.15 +1 -1 src/lib/libpam/modules/pam_radius/pam_radius.c 1.14 +1 -1 src/lib/libpam/modules/pam_tacplus/pam_tacplus.c 1.46 +1 -1 src/lib/libpam/modules/pam_unix/pam_unix.c From owner-cvs-all@FreeBSD.ORG Sat May 31 10:51:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C17FF37B401; Sat, 31 May 2003 10:51:27 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3899743F93; Sat, 31 May 2003 10:51:24 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h4VHpFEd093479 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 31 May 2003 20:51:16 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h4VHoxFb093459; Sat, 31 May 2003 20:50:59 +0300 (EEST) (envelope-from ru) Date: Sat, 31 May 2003 20:50:59 +0300 From: Ruslan Ermilov To: "Daniel C. Sobral" Message-ID: <20030531175059.GB89765@sunbay.com> References: <20030530002203.F1E9137B447@hub.freebsd.org> <20030529174052.N10716@root.org> <3ED749B5.70402@tcoip.com.br> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TakKZr9L6Hm6aLOc" Content-Disposition: inline In-Reply-To: <3ED749B5.70402@tcoip.com.br> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/lib/libpthread Makefile pthread.map src/lib/libpthread/support Makefile.inc thr_support.c src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread Ma X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:51:28 -0000 --TakKZr9L6Hm6aLOc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 30, 2003 at 09:08:21AM -0300, Daniel C. Sobral wrote: > Nate Lawson wrote: > > > >"I sense a disturbance in the tree, as if a thousand delayed commits > >rushed in and then settled". Hopefully we have some time to test the > >final branched version a ton before release. >=20 > Actually, no. This commit festival is thr/kse, none of which are used by= =20 > default, [...] >=20 Actually, yes. The libpthread^Wlibkse is now built by default on i386 and pc98. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer. --TakKZr9L6Hm6aLOc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+2OuDUkv4P6juNwoRAqU2AJ9IOc0HaBM+ShM7gtVUzq/7MoH8AQCghCB2 qddC8FRz0SDjaoXRLqHvhSA= =Magf -----END PGP SIGNATURE----- --TakKZr9L6Hm6aLOc-- From owner-cvs-all@FreeBSD.ORG Sat May 31 10:55:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ABA237B401; Sat, 31 May 2003 10:55:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E40643F3F; Sat, 31 May 2003 10:55:22 -0700 (PDT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VHtM0U011060; Sat, 31 May 2003 10:55:22 -0700 (PDT) (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VHtLKx011059; Sat, 31 May 2003 10:55:21 -0700 (PDT) Message-Id: <200305311755.h4VHtLKx011059@repoman.freebsd.org> From: Garrett Wollman Date: Sat, 31 May 2003 10:55:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:55:22 -0000 wollman 2003/05/31 10:55:21 PDT FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Don't generate an ip_id for packets with the DF bit set; ip_id is only meaningful for fragments. Also don't bother to byte-swap the ip_id when we do generate it; it is only used at the receiver as a nonce. I tried several different permutations of this code with no measurable difference to each other or to the unmodified version, so I've settled on the one for which gcc seems to generate the best code. (If anyone cares to microoptimize this differently for an architecture where it actually matters, feel free.) Suggested by: Steve Bellovin's paper in IMW'02 Revision Changes Path 1.189 +17 -4 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:07:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 931F737B401; Sat, 31 May 2003 11:07:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 345C943FA3; Sat, 31 May 2003 11:07:10 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VI7A0U012472; Sat, 31 May 2003 11:07:10 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VI79rf012471; Sat, 31 May 2003 11:07:09 -0700 (PDT) Message-Id: <200305311807.h4VI79rf012471@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 31 May 2003 11:07:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/diskinfo diskinfo.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:07:11 -0000 ru 2003/05/31 11:07:09 PDT FreeBSD src repository Modified files: usr.sbin/diskinfo diskinfo.8 Log: Assorted mdoc(7) fixes. Revision Changes Path 1.3 +8 -7 src/usr.sbin/diskinfo/diskinfo.8 From owner-cvs-all@FreeBSD.ORG Sat May 31 11:13:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3783737B404; Sat, 31 May 2003 11:13:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9038D43FB1; Sat, 31 May 2003 11:13:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VID70U012697; Sat, 31 May 2003 11:13:07 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VID7U2012696; Sat, 31 May 2003 11:13:07 -0700 (PDT) Message-Id: <200305311813.h4VID7U2012696@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:13:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_disk.c geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:13:08 -0000 phk 2003/05/31 11:13:07 PDT FreeBSD src repository Modified files: sys/geom geom.h geom_disk.c geom_subr.c Log: Introduce a init and fini member functions on a class. Use ->init() and ->fini() to handle the mutex in geom_disk.c Remove the g_add_class() function and replace it with a standardized g_modevent() function. This adds the basic infrastructure for loading/unloading GEOM classes Revision Changes Path 1.66 +12 -13 src/sys/geom/geom.h 1.74 +14 -5 src/sys/geom/geom_disk.c 1.53 +100 -22 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:17:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B46D37B401; Sat, 31 May 2003 11:17:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39BB243F93; Sat, 31 May 2003 11:17:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIHX0U012957; Sat, 31 May 2003 11:17:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIHXkM012956; Sat, 31 May 2003 11:17:33 -0700 (PDT) Message-Id: <200305311817.h4VIHXkM012956@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:17:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:17:35 -0000 phk 2003/05/31 11:17:33 PDT FreeBSD src repository Modified files: sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ffs_vnops.c Log: Remove unused local variables. Found by: FlexeLint Revision Changes Path 1.114 +4 -4 src/sys/ufs/ffs/ffs_alloc.c 1.212 +0 -3 src/sys/ufs/ffs/ffs_vfsops.c 1.111 +3 -26 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:19:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8751737B404; Sat, 31 May 2003 11:19:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B70D043FBD; Sat, 31 May 2003 11:19:09 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIJ70U013012; Sat, 31 May 2003 11:19:07 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIJ6bE013011; Sat, 31 May 2003 11:19:06 -0700 (PDT) Message-Id: <200305311819.h4VIJ6bE013011@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:19:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsserver nfs_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:19:11 -0000 phk 2003/05/31 11:19:06 PDT FreeBSD src repository Modified files: sys/nfsserver nfs_syscalls.c Log: Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.88 +1 -0 src/sys/nfsserver/nfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:19:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A35A537B401; Sat, 31 May 2003 11:19:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432E043F85; Sat, 31 May 2003 11:19:51 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIJp0U013046; Sat, 31 May 2003 11:19:51 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIJoOs013045; Sat, 31 May 2003 11:19:50 -0700 (PDT) Message-Id: <200305311819.h4VIJoOs013045@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 31 May 2003 11:19:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/gstat gstat.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:19:52 -0000 ru 2003/05/31 11:19:50 PDT FreeBSD src repository Modified files: usr.sbin/gstat gstat.8 Log: Sigh, I guess this manpage used cat(1) as a template? Otherwise, fix the manpage to not use the second person, and add two missing punctuation bits. Revision Changes Path 1.2 +6 -7 src/usr.sbin/gstat/gstat.8 From owner-cvs-all@FreeBSD.ORG Sat May 31 11:20:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 673BA37B401; Sat, 31 May 2003 11:20:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C014D43F93; Sat, 31 May 2003 11:20:27 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIKR0U013151; Sat, 31 May 2003 11:20:27 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIKQEw013148; Sat, 31 May 2003 11:20:26 -0700 (PDT) Message-Id: <200305311820.h4VIKQEw013148@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:20:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam cam_periph.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:20:28 -0000 phk 2003/05/31 11:20:26 PDT FreeBSD src repository Modified files: sys/cam cam_periph.c Log: Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.49 +3 -0 src/sys/cam/cam_periph.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:21:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6550137B401; Sat, 31 May 2003 11:21:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0528643FAF; Sat, 31 May 2003 11:21:41 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VILe0U013246; Sat, 31 May 2003 11:21:40 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VILeDl013245; Sat, 31 May 2003 11:21:40 -0700 (PDT) Message-Id: <200305311821.h4VILeDl013245@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:21:40 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mcd mcd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:21:41 -0000 phk 2003/05/31 11:21:40 PDT FreeBSD src repository Modified files: sys/dev/mcd mcd.c Log: Fix \ alignment in macro. Remove breaks after return. Remove unused variable. Found by: FlexeLint Revision Changes Path 1.137 +1 -5 src/sys/dev/mcd/mcd.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:24:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1418337B407; Sat, 31 May 2003 11:24:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9052A43FCB; Sat, 31 May 2003 11:24:41 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIOf0U013379; Sat, 31 May 2003 11:24:41 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIOe8n013378; Sat, 31 May 2003 11:24:40 -0700 (PDT) Message-Id: <200305311824.h4VIOe8n013378@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 31 May 2003 11:24:40 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/jexec jexec.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:24:42 -0000 ru 2003/05/31 11:24:40 PDT FreeBSD src repository Modified files: usr.sbin/jexec jexec.8 Log: excute: typo; possible replacements: excite, excuse. Revision Changes Path 1.2 +4 -4 src/usr.sbin/jexec/jexec.8 From owner-cvs-all@FreeBSD.ORG Sat May 31 11:36:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A77B37B401; Sat, 31 May 2003 11:36:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0989943F93; Sat, 31 May 2003 11:36:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIaf0U014055; Sat, 31 May 2003 11:36:41 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIaf6G014054; Sat, 31 May 2003 11:36:41 -0700 (PDT) Message-Id: <200305311836.h4VIaf6G014054@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:36:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile src/sys/modules/geom Makefile src/sys/modules/geom/geom_bde Makefile src/sys/modules/geom/geom_bsd Makefile src/sys/modules/geom/geom_mbr ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:36:42 -0000 phk 2003/05/31 11:36:41 PDT FreeBSD src repository Modified files: sys/modules Makefile Added files: sys/modules/geom Makefile sys/modules/geom/geom_apple Makefile sys/modules/geom/geom_bde Makefile sys/modules/geom/geom_bsd Makefile sys/modules/geom/geom_gpt Makefile sys/modules/geom/geom_mbr Makefile sys/modules/geom/geom_pc98 Makefile sys/modules/geom/geom_sunlabel Makefile Log: Add GEOM module compilation shims. Revision Changes Path 1.324 +1 -0 src/sys/modules/Makefile 1.1 +11 -0 src/sys/modules/geom/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_apple/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_bde/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_bsd/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_gpt/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_mbr/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_pc98/Makefile (new) 1.1 +8 -0 src/sys/modules/geom/geom_sunlabel/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 11:37:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8133037B401; Sat, 31 May 2003 11:37:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2113143F85; Sat, 31 May 2003 11:37:31 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIbU0U014101; Sat, 31 May 2003 11:37:30 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIbUGa014100; Sat, 31 May 2003 11:37:30 -0700 (PDT) Message-Id: <200305311837.h4VIbUGa014100@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:37:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:37:32 -0000 phk 2003/05/31 11:37:30 PDT FreeBSD src repository Modified files: sys/isa psm.c Log: Remove extra ';' Found by: FlexeLint Revision Changes Path 1.56 +1 -1 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:39:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4255A37B401; Sat, 31 May 2003 11:39:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5C1E43F85; Sat, 31 May 2003 11:39:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIdT0U014228; Sat, 31 May 2003 11:39:29 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIdTui014227; Sat, 31 May 2003 11:39:29 -0700 (PDT) Message-Id: <200305311839.h4VIdTui014227@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:39:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sio sio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:39:30 -0000 phk 2003/05/31 11:39:29 PDT FreeBSD src repository Modified files: sys/dev/sio sio.c Log: Remove extra unused variable. Found by: FlexeLint Revision Changes Path 1.399 +0 -2 src/sys/dev/sio/sio.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:41:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3186437B401; Sat, 31 May 2003 11:41:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C546843F93; Sat, 31 May 2003 11:41:09 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIf90U014406; Sat, 31 May 2003 11:41:09 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIf9aL014405; Sat, 31 May 2003 11:41:09 -0700 (PDT) Message-Id: <200305311841.h4VIf9aL014405@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:41:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:41:10 -0000 phk 2003/05/31 11:41:09 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: Fix off-by-one error in drive number check. Don't return(foo(...)) in function returning void. Found by: FlexeLint Revision Changes Path 1.22 +3 -3 src/sys/dev/ciss/ciss.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:42:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DACBF37B401; Sat, 31 May 2003 11:42:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A55343F3F; Sat, 31 May 2003 11:42:18 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIgI0U014451; Sat, 31 May 2003 11:42:18 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIgIWX014450; Sat, 31 May 2003 11:42:18 -0700 (PDT) Message-Id: <200305311842.h4VIgIWX014450@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 31 May 2003 11:42:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/setfmac setfsmac.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:42:19 -0000 ru 2003/05/31 11:42:18 PDT FreeBSD src repository Modified files: usr.sbin/setfmac setfsmac.8 Log: Mostly fixed the SYNOPSIS. Revision Changes Path 1.3 +14 -12 src/usr.sbin/setfmac/setfsmac.8 From owner-cvs-all@FreeBSD.ORG Sat May 31 11:42:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6511437B401; Sat, 31 May 2003 11:42:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 064B543F85; Sat, 31 May 2003 11:42:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIgS0U014478; Sat, 31 May 2003 11:42:28 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIgSKA014477; Sat, 31 May 2003 11:42:28 -0700 (PDT) Message-Id: <200305311842.h4VIgSKA014477@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:42:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa fd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:42:29 -0000 phk 2003/05/31 11:42:28 PDT FreeBSD src repository Modified files: sys/isa fd.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.250 +0 -2 src/sys/isa/fd.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:43:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DCA337B401; Sat, 31 May 2003 11:43:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E318C43FA3; Sat, 31 May 2003 11:43:17 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIhH0U014548; Sat, 31 May 2003 11:43:17 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIhH2P014547; Sat, 31 May 2003 11:43:17 -0700 (PDT) Message-Id: <200305311843.h4VIhH2P014547@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 31 May 2003 11:43:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:43:18 -0000 mtm 2003/05/31 11:43:17 PDT FreeBSD src repository Modified files: lib Makefile Log: Hook libthr to the build. It's currently built only for i386 and a NOLIBTHR knob will prevent it from being built. Revision Changes Path 1.158 +5 -2 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 11:44:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2AA737B401; Sat, 31 May 2003 11:44:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6125443FAF; Sat, 31 May 2003 11:44:25 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIiP0U014621; Sat, 31 May 2003 11:44:25 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIiPTA014620; Sat, 31 May 2003 11:44:25 -0700 (PDT) Message-Id: <200305311844.h4VIiPTA014620@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:44:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nullfs null_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:44:26 -0000 phk 2003/05/31 11:44:25 PDT FreeBSD src repository Modified files: sys/fs/nullfs null_vfsops.c Log: Use temporary variable to avoid double expansion of macro with side effects. Found by: FlexeLint Revision Changes Path 1.58 +4 -1 src/sys/fs/nullfs/null_vfsops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:45:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D39637B401; Sat, 31 May 2003 11:45:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26B7843F93; Sat, 31 May 2003 11:45:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIjW0U014755; Sat, 31 May 2003 11:45:32 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIjWvM014754; Sat, 31 May 2003 11:45:32 -0700 (PDT) Message-Id: <200305311845.h4VIjWvM014754@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:45:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/fifofs fifo_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:45:34 -0000 phk 2003/05/31 11:45:32 PDT FreeBSD src repository Modified files: sys/fs/fifofs fifo_vnops.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.86 +1 -2 src/sys/fs/fifofs/fifo_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:46:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E37A437B401; Sat, 31 May 2003 11:46:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EB343F85; Sat, 31 May 2003 11:46:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIkj0U014805; Sat, 31 May 2003 11:46:45 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIkjq9014804; Sat, 31 May 2003 11:46:45 -0700 (PDT) Message-Id: <200305311846.h4VIkjq9014804@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:46:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/umapfs umap_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:46:46 -0000 phk 2003/05/31 11:46:45 PDT FreeBSD src repository Modified files: sys/fs/umapfs umap_vfsops.c Log: Use temporary variable to avoid double expansion of macro with side effects. Found by: FlexeLint Revision Changes Path 1.54 +3 -1 src/sys/fs/umapfs/umap_vfsops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:46:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 273C737B401; Sat, 31 May 2003 11:46:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B811143FA3; Sat, 31 May 2003 11:46:55 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIkt0U014849; Sat, 31 May 2003 11:46:55 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIktlF014848; Sat, 31 May 2003 11:46:55 -0700 (PDT) Message-Id: <200305311846.h4VIktlF014848@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 31 May 2003 11:46:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:46:56 -0000 mtm 2003/05/31 11:46:55 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) lib/libthr/thread thr_cond.c thr_mutex.c Log: MFC correction to mutex and cond initializers. Approved by: re/scottl Revision Changes Path 1.7.2.1 +3 -2 src/lib/libthr/thread/thr_cond.c 1.9.2.1 +8 -10 src/lib/libthr/thread/thr_mutex.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:49:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DE5F37B401; Sat, 31 May 2003 11:49:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DC9643F85; Sat, 31 May 2003 11:49:10 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIn90U014928; Sat, 31 May 2003 11:49:09 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIn9EA014927; Sat, 31 May 2003 11:49:09 -0700 (PDT) Message-Id: <200305311849.h4VIn9EA014927@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 31 May 2003 11:49:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:49:10 -0000 mtm 2003/05/31 11:49:09 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) lib Makefile Log: MFC libthr hookup to the regular build. Approved by: re/scottl Revision Changes Path 1.157.2.1 +5 -2 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 11:49:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 599BA37B40D; Sat, 31 May 2003 11:49:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE79C43F85; Sat, 31 May 2003 11:49:23 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VInN0U014964; Sat, 31 May 2003 11:49:23 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VInNbL014963; Sat, 31 May 2003 11:49:23 -0700 (PDT) Message-Id: <200305311849.h4VInNbL014963@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 31 May 2003 11:49:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man8 MAKEDEV.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:49:24 -0000 ru 2003/05/31 11:49:23 PDT FreeBSD src repository Modified files: share/man/man8 MAKEDEV.8 Log: Add missing markup bits. Revision Changes Path 1.2 +6 -2 src/share/man/man8/MAKEDEV.8 From owner-cvs-all@FreeBSD.ORG Sat May 31 11:52:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC62237B43D; Sat, 31 May 2003 11:52:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 490FC43FBD; Sat, 31 May 2003 11:52:06 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIq60U015169; Sat, 31 May 2003 11:52:06 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIq5Xk015168; Sat, 31 May 2003 11:52:05 -0700 (PDT) Message-Id: <200305311852.h4VIq5Xk015168@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:52:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ccd ccd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:52:07 -0000 phk 2003/05/31 11:52:05 PDT FreeBSD src repository Modified files: sys/dev/ccd ccd.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.135 +0 -2 src/sys/dev/ccd/ccd.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:52:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52F6737B401; Sat, 31 May 2003 11:52:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9800943F93; Sat, 31 May 2003 11:52:39 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIqd0U015203; Sat, 31 May 2003 11:52:39 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIqdIS015202; Sat, 31 May 2003 11:52:39 -0700 (PDT) Message-Id: <200305311852.h4VIqdIS015202@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:52:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/gnu/i386/fpemul fpu_trig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:52:40 -0000 phk 2003/05/31 11:52:39 PDT FreeBSD src repository Modified files: sys/gnu/i386/fpemul fpu_trig.c Log: Remove extra ';' Found by: FlexeLint Revision Changes Path 1.11 +1 -1 src/sys/gnu/i386/fpemul/fpu_trig.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:54:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AABB137B401; Sat, 31 May 2003 11:54:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 482BE43F3F; Sat, 31 May 2003 11:54:03 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIs30U015272; Sat, 31 May 2003 11:54:03 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIs2Ob015271; Sat, 31 May 2003 11:54:02 -0700 (PDT) Message-Id: <200305311854.h4VIs2Ob015271@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:54:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i4b/layer2 i4b_l2fsm.c src/sys/i4b/layer3 i4b_l3fsm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:54:04 -0000 phk 2003/05/31 11:54:02 PDT FreeBSD src repository Modified files: sys/i4b/layer2 i4b_l2fsm.c sys/i4b/layer3 i4b_l3fsm.c Log: Fix off-by-one errors in range checks of state machine states & events. Found by: FlexeLint Revision Changes Path 1.15 +4 -4 src/sys/i4b/layer2/i4b_l2fsm.c 1.16 +4 -4 src/sys/i4b/layer3/i4b_l3fsm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:55:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AB2037B401; Sat, 31 May 2003 11:55:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED81043FA3; Sat, 31 May 2003 11:55:18 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VItI0U015373; Sat, 31 May 2003 11:55:18 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VItIMe015372; Sat, 31 May 2003 11:55:18 -0700 (PDT) Message-Id: <200305311855.h4VItIMe015372@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:55:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/pci pci_bus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:55:19 -0000 phk 2003/05/31 11:55:18 PDT FreeBSD src repository Modified files: sys/i386/pci pci_bus.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.99 +1 -2 src/sys/i386/pci/pci_bus.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:56:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A99B637B401; Sat, 31 May 2003 11:56:35 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC3243F93; Sat, 31 May 2003 11:56:32 -0700 (PDT) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h4VIuTEd099596 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 31 May 2003 21:56:29 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h4VIuTkg099591; Sat, 31 May 2003 21:56:29 +0300 (EEST) (envelope-from ru) Date: Sat, 31 May 2003 21:56:29 +0300 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030531185629.GE89765@sunbay.com> References: <200305311842.h4VIgIWX014450@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5oH/S/bF6lOfqCQb" Content-Disposition: inline In-Reply-To: <200305311842.h4VIgIWX014450@repoman.freebsd.org> User-Agent: Mutt/1.5.4i Subject: Re: cvs commit: src/usr.sbin/setfmac setfsmac.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:56:36 -0000 --5oH/S/bF6lOfqCQb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 31, 2003 at 11:42:18AM -0700, Ruslan Ermilov wrote: > ru 2003/05/31 11:42:18 PDT >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/setfmac setfsmac.8=20 > Log: > Mostly fixed the SYNOPSIS. > =20 > Revision Changes Path > 1.3 +14 -12 src/usr.sbin/setfmac/setfsmac.8 >=20 For those who follows this commit, I suggest reading the POSIX.1-2001 Section 12.1 (Utility Argument Syntax). Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer. --5oH/S/bF6lOfqCQb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+2PrdUkv4P6juNwoRAiP/AJ0U9WoTJulNWet6oYNJ9ObzfskSlACeJfan VtxmdB9pUl0EJeccXvHuxj0= =BfrP -----END PGP SIGNATURE----- --5oH/S/bF6lOfqCQb-- From owner-cvs-all@FreeBSD.ORG Sat May 31 11:56:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D35537B401; Sat, 31 May 2003 11:56:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A244643F75; Sat, 31 May 2003 11:56:58 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIuw0U015480; Sat, 31 May 2003 11:56:58 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIuw6R015479; Sat, 31 May 2003 11:56:58 -0700 (PDT) Message-Id: <200305311856.h4VIuw6R015479@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:56:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa wt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:56:59 -0000 phk 2003/05/31 11:56:58 PDT FreeBSD src repository Modified files: sys/i386/isa wt.c Log: Hang softc from dev_t Revision Changes Path 1.73 +18 -6 src/sys/i386/isa/wt.c From owner-cvs-all@FreeBSD.ORG Sat May 31 11:57:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 495ED37B401; Sat, 31 May 2003 11:57:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE3E143F93; Sat, 31 May 2003 11:57:41 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VIvf0U015528; Sat, 31 May 2003 11:57:41 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VIvfAf015527; Sat, 31 May 2003 11:57:41 -0700 (PDT) Message-Id: <200305311857.h4VIvfAf015527@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 11:57:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/tdfx tdfx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 18:57:42 -0000 phk 2003/05/31 11:57:41 PDT FreeBSD src repository Modified files: sys/dev/tdfx tdfx_pci.c Log: Remove extra ';' Found by: FlexeLint Revision Changes Path 1.27 +2 -2 src/sys/dev/tdfx/tdfx_pci.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:00:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26AC837B404; Sat, 31 May 2003 12:00:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0606743FB1; Sat, 31 May 2003 12:00:03 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ020U015663; Sat, 31 May 2003 12:00:02 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ02s6015662; Sat, 31 May 2003 12:00:02 -0700 (PDT) Message-Id: <200305311900.h4VJ02s6015662@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:00:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ddb db_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:00:04 -0000 phk 2003/05/31 12:00:02 PDT FreeBSD src repository Modified files: sys/ddb db_input.c Log: Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.34 +1 -0 src/sys/ddb/db_input.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:01:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F62937B401; Sat, 31 May 2003 12:01:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D311943F93; Sat, 31 May 2003 12:01:08 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ180U015820; Sat, 31 May 2003 12:01:08 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ18vn015819; Sat, 31 May 2003 12:01:08 -0700 (PDT) Message-Id: <200305311901.h4VJ18vn015819@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:01:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/en midway.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:01:09 -0000 phk 2003/05/31 12:01:08 PDT FreeBSD src repository Modified files: sys/dev/en midway.c Log: Fix off-by-one error in range check of VC index. Found by: FlexeLint Revision Changes Path 1.40 +1 -1 src/sys/dev/en/midway.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:01:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D28D37B401; Sat, 31 May 2003 12:01:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A16243FB1; Sat, 31 May 2003 12:01:45 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ1i0U015883; Sat, 31 May 2003 12:01:44 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ1i00015882; Sat, 31 May 2003 12:01:44 -0700 (PDT) Message-Id: <200305311901.h4VJ1i00015882@repoman.freebsd.org> From: Robert Watson Date: Sat, 31 May 2003 12:01:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_biba mac_biba.csrc/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:01:45 -0000 rwatson 2003/05/31 12:01:44 PDT FreeBSD src repository Modified files: sys/security/mac_biba mac_biba.c sys/security/mac_mls mac_mls.c Log: Rewrite Biba and MLS label externalization code to use sbufs instead of C strings internally; C strings require a lot of return value checking that (a) takes a lot of space, and (b) is difficult to get right. Prior to the advent of compartment support, modeling APIs for helper functions on snprintf worked fine; with the additional complexity, the sbuf_printf() API makes a lot more sense. While doing this, break out the printing of sequential compartment lists into a helper function, mac_{biba,mls}_compartment_to_string(). This permits the main body of mac_{biba,mls}_element_to_string() to be concerned only with identifying sequential ranges rather than rendering. At a less disruptive moment, we'll push the move from snprintf()-like interface to sbuf()-like interface up into the MAC Framework layer. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.60 +49 -52 src/sys/security/mac_biba/mac_biba.c 1.48 +50 -53 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:01:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22EA937B440; Sat, 31 May 2003 12:01:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5DF743FAF; Sat, 31 May 2003 12:01:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ1m0U015910; Sat, 31 May 2003 12:01:48 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ1mXb015909; Sat, 31 May 2003 12:01:48 -0700 (PDT) Message-Id: <200305311901.h4VJ1mXb015909@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:01:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_cue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:01:51 -0000 phk 2003/05/31 12:01:48 PDT FreeBSD src repository Modified files: sys/dev/usb if_cue.c Log: Fix indentation. Found by: FlexeLint Revision Changes Path 1.35 +2 -2 src/sys/dev/usb/if_cue.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:02:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8EE737B401; Sat, 31 May 2003 12:02:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89CCF43F93; Sat, 31 May 2003 12:02:21 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ2L0U015945; Sat, 31 May 2003 12:02:21 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ2KKk015944; Sat, 31 May 2003 12:02:20 -0700 (PDT) Message-Id: <200305311902.h4VJ2KKk015944@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:02:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa if_cx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:02:22 -0000 phk 2003/05/31 12:02:20 PDT FreeBSD src repository Modified files: sys/i386/isa if_cx.c Log: Fix indentation. Found by: FlexeLint Revision Changes Path 1.39 +1 -1 src/sys/i386/isa/if_cx.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:03:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 574A037B407; Sat, 31 May 2003 12:03:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB85143F3F; Sat, 31 May 2003 12:03:20 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ3K0U016920; Sat, 31 May 2003 12:03:20 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ3KTv016919; Sat, 31 May 2003 12:03:20 -0700 (PDT) Message-Id: <200305311903.h4VJ3KTv016919@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:03:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 nexus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:03:21 -0000 phk 2003/05/31 12:03:20 PDT FreeBSD src repository Modified files: sys/i386/i386 nexus.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.50 +0 -3 src/sys/i386/i386/nexus.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:04:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D19337B401; Sat, 31 May 2003 12:04:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E3FB43F3F; Sat, 31 May 2003 12:04:08 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ480U016958; Sat, 31 May 2003 12:04:08 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ47Am016957; Sat, 31 May 2003 12:04:07 -0700 (PDT) Message-Id: <200305311904.h4VJ47Am016957@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:04:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 math_emulate.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:04:09 -0000 phk 2003/05/31 12:04:07 PDT FreeBSD src repository Modified files: sys/i386/i386 math_emulate.c Log: Protect macro with do { ... } while (0) Found by: FlexeLint Revision Changes Path 1.42 +2 -1 src/sys/i386/i386/math_emulate.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:04:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C67BB37B425; Sat, 31 May 2003 12:04:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1671543FAF; Sat, 31 May 2003 12:04:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ4b0U016988; Sat, 31 May 2003 12:04:37 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ4bgk016987; Sat, 31 May 2003 12:04:37 -0700 (PDT) Message-Id: <200305311904.h4VJ4bgk016987@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:04:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 identcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:04:39 -0000 phk 2003/05/31 12:04:37 PDT FreeBSD src repository Modified files: sys/i386/i386 identcpu.c Log: Add missing break; Found by: FlexeLint Revision Changes Path 1.123 +1 -0 src/sys/i386/i386/identcpu.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:06:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3BA737B401; Sat, 31 May 2003 12:06:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61DE143F93; Sat, 31 May 2003 12:06:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ6c0U017162; Sat, 31 May 2003 12:06:38 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ6cFg017161; Sat, 31 May 2003 12:06:38 -0700 (PDT) Message-Id: <200305311906.h4VJ6cFg017161@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:06:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 i386-gdbstub.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:06:39 -0000 phk 2003/05/31 12:06:38 PDT FreeBSD src repository Modified files: sys/i386/i386 i386-gdbstub.c Log: We cannot use the normal strlen() and strcpy, but don't #define strlen and strcpy to get private versions, use private versions directly. Found by: FlexeLint Revision Changes Path 1.23 +11 -14 src/sys/i386/i386/i386-gdbstub.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:07:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A2A37B407; Sat, 31 May 2003 12:07:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7591F43F75; Sat, 31 May 2003 12:07:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ7N0U017218; Sat, 31 May 2003 12:07:23 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ7Nuf017217; Sat, 31 May 2003 12:07:23 -0700 (PDT) Message-Id: <200305311907.h4VJ7Nuf017217@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:07:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:07:24 -0000 phk 2003/05/31 12:07:23 PDT FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.206 +1 -0 src/sys/netinet/tcp_input.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:08:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16CD637B401; Sat, 31 May 2003 12:08:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABF4743F3F; Sat, 31 May 2003 12:08:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJ8N0U017257; Sat, 31 May 2003 12:08:23 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJ8Nxj017256; Sat, 31 May 2003 12:08:23 -0700 (PDT) Message-Id: <200305311908.h4VJ8Nxj017256@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:08:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde_work.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:08:24 -0000 phk 2003/05/31 12:08:23 PDT FreeBSD src repository Modified files: sys/geom/bde g_bde_work.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.22 +0 -2 src/sys/geom/bde/g_bde_work.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:21:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2BC337B401; Sat, 31 May 2003 12:21:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 824F043F3F; Sat, 31 May 2003 12:21:57 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJLv0U017791; Sat, 31 May 2003 12:21:57 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJLvAd017790; Sat, 31 May 2003 12:21:57 -0700 (PDT) Message-Id: <200305311921.h4VJLvAd017790@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:21:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_aes.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:21:58 -0000 phk 2003/05/31 12:21:57 PDT FreeBSD src repository Modified files: sys/geom geom_aes.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.22 +0 -4 src/sys/geom/geom_aes.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:23:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02E4E37B401; Sat, 31 May 2003 12:23:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A4743F85; Sat, 31 May 2003 12:23:11 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJNB0U017858; Sat, 31 May 2003 12:23:11 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJNBWi017857; Sat, 31 May 2003 12:23:11 -0700 (PDT) Message-Id: <200305311923.h4VJNBWi017857@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:23:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde_crypt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:23:12 -0000 phk 2003/05/31 12:23:11 PDT FreeBSD src repository Modified files: sys/geom/bde g_bde_crypt.c Log: Don't use & in front of arrays. Found by: FlexeLint Revision Changes Path 1.16 +2 -2 src/sys/geom/bde/g_bde_crypt.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:24:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 418D837B401; Sat, 31 May 2003 12:24:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A28043F93; Sat, 31 May 2003 12:24:07 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJO70U017903; Sat, 31 May 2003 12:24:07 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJO7ie017902; Sat, 31 May 2003 12:24:07 -0700 (PDT) Message-Id: <200305311924.h4VJO7ie017902@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:24:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:24:08 -0000 phk 2003/05/31 12:24:07 PDT FreeBSD src repository Modified files: sys/geom/bde g_bde.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.21 +0 -6 src/sys/geom/bde/g_bde.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:25:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B116437B401; Sat, 31 May 2003 12:25:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E5D243F75; Sat, 31 May 2003 12:25:06 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJP60U017978; Sat, 31 May 2003 12:25:06 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJP6fE017975; Sat, 31 May 2003 12:25:06 -0700 (PDT) Message-Id: <200305311925.h4VJP6fE017975@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:25:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_slice.c geom_slice.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:25:07 -0000 phk 2003/05/31 12:25:06 PDT FreeBSD src repository Modified files: sys/geom geom_slice.c geom_slice.h Log: Add a destroy_geom method to the slice "library". If a slice class has no destroy_geom method, use this one. This should allow all slicers to kldload. Revision Changes Path 1.48 +11 -2 src/sys/geom/geom_slice.c 1.17 +2 -0 src/sys/geom/geom_slice.h From owner-cvs-all@FreeBSD.ORG Sat May 31 12:28:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF09A37B401; Sat, 31 May 2003 12:28:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C31943F3F; Sat, 31 May 2003 12:28:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJSH0U018143; Sat, 31 May 2003 12:28:17 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJSH4p018142; Sat, 31 May 2003 12:28:17 -0700 (PDT) Message-Id: <200305311928.h4VJSH4p018142@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:28:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_apple.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:28:18 -0000 phk 2003/05/31 12:28:16 PDT FreeBSD src repository Modified files: sys/geom geom_apple.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.11 +1 -8 src/sys/geom/geom_apple.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:28:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA88B37B401; Sat, 31 May 2003 12:28:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2984943F75; Sat, 31 May 2003 12:28:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJSr0U018205; Sat, 31 May 2003 12:28:53 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJSrnF018204; Sat, 31 May 2003 12:28:53 -0700 (PDT) Message-Id: <200305311928.h4VJSrnF018204@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:28:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_gpt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:28:55 -0000 phk 2003/05/31 12:28:53 PDT FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.25 +1 -6 src/sys/geom/geom_gpt.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:29:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91D6A37B401; Sat, 31 May 2003 12:29:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EAB43FA3; Sat, 31 May 2003 12:29:39 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJTd0U018252; Sat, 31 May 2003 12:29:39 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJTcfK018251; Sat, 31 May 2003 12:29:38 -0700 (PDT) Message-Id: <200305311929.h4VJTcfK018251@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:29:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_mbr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:29:39 -0000 phk 2003/05/31 12:29:38 PDT FreeBSD src repository Modified files: sys/geom geom_mbr.c Log: Remove unused variable. Remove unneeded return. Found by: FlexeLint Revision Changes Path 1.52 +0 -6 src/sys/geom/geom_mbr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:30:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A223C37B401; Sat, 31 May 2003 12:30:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4141643F75; Sat, 31 May 2003 12:30:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJUr0U018407; Sat, 31 May 2003 12:30:53 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJUqgQ018406; Sat, 31 May 2003 12:30:52 -0700 (PDT) Message-Id: <200305311930.h4VJUqgQ018406@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:30:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_bsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:30:54 -0000 phk 2003/05/31 12:30:52 PDT FreeBSD src repository Modified files: sys/geom geom_bsd.c Log: Remove unused variables. Remove #ifdef notyet which will never become. Found by: FlexeLint Revision Changes Path 1.62 +2 -23 src/sys/geom/geom_bsd.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:31:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2690337B401; Sat, 31 May 2003 12:31:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B938243F3F; Sat, 31 May 2003 12:31:46 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJVk0U018527; Sat, 31 May 2003 12:31:46 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJVk4N018526; Sat, 31 May 2003 12:31:46 -0700 (PDT) Message-Id: <200305311931.h4VJVk4N018526@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:31:46 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/drm drm_os_freebsd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:31:47 -0000 phk 2003/05/31 12:31:46 PDT FreeBSD src repository Modified files: sys/dev/drm drm_os_freebsd.h Log: Do not define memset() to bzero(). We have a memset(). Found by: FlexeLint Revision Changes Path 1.11 +0 -2 src/sys/dev/drm/drm_os_freebsd.h From owner-cvs-all@FreeBSD.ORG Sat May 31 12:34:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A7F737B401; Sat, 31 May 2003 12:34:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEE7543F75; Sat, 31 May 2003 12:34:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJYq0U018611; Sat, 31 May 2003 12:34:52 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJYqxm018610; Sat, 31 May 2003 12:34:52 -0700 (PDT) Message-Id: <200305311934.h4VJYqxm018610@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:34:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/devfs devfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:34:53 -0000 phk 2003/05/31 12:34:52 PDT FreeBSD src repository Modified files: sys/fs/devfs devfs_vnops.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.65 +1 -6 src/sys/fs/devfs/devfs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:37:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBEF337B404; Sat, 31 May 2003 12:37:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E1E843F85; Sat, 31 May 2003 12:37:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJbM0U018780; Sat, 31 May 2003 12:37:22 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJbM9P018779; Sat, 31 May 2003 12:37:22 -0700 (PDT) Message-Id: <200305311937.h4VJbM9P018779@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:37:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_sunlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:37:25 -0000 phk 2003/05/31 12:37:22 PDT FreeBSD src repository Modified files: sys/geom geom_sunlabel.c Log: Remove unused variables. Rename struct h0h0 to g_hh01 in order to make it unique over files. Found by: FlexeLint Revision Changes Path 1.38 +4 -7 src/sys/geom/geom_sunlabel.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:38:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE83637B401; Sat, 31 May 2003 12:38:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FF7743F85; Sat, 31 May 2003 12:38:00 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJc00U018826; Sat, 31 May 2003 12:38:00 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJc0FJ018823; Sat, 31 May 2003 12:38:00 -0700 (PDT) Message-Id: <200305311938.h4VJc0FJ018823@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:38:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/trm trm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:38:01 -0000 phk 2003/05/31 12:38:00 PDT FreeBSD src repository Modified files: sys/dev/trm trm.c Log: Fix indentation. Found by: FlexeLint Revision Changes Path 1.9 +1 -1 src/sys/dev/trm/trm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:38:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F7B737B401; Sat, 31 May 2003 12:38:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F7AC43F75; Sat, 31 May 2003 12:38:44 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJci0U018896; Sat, 31 May 2003 12:38:44 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJchuE018895; Sat, 31 May 2003 12:38:43 -0700 (PDT) Message-Id: <200305311938.h4VJchuE018895@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:38:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usb_port.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:38:45 -0000 phk 2003/05/31 12:38:43 PDT FreeBSD src repository Modified files: sys/dev/usb usb_port.h Log: Don't define memcpy() to bcopy() and in particular not memset() to bzero() when we have them all already. Found by: FlexeLint Revision Changes Path 1.59 +0 -3 src/sys/dev/usb/usb_port.h From owner-cvs-all@FreeBSD.ORG Sat May 31 12:40:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAECB37B401; Sat, 31 May 2003 12:40:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41B0643F75; Sat, 31 May 2003 12:40:44 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJei0U019079; Sat, 31 May 2003 12:40:44 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJehAY019078; Sat, 31 May 2003 12:40:43 -0700 (PDT) Message-Id: <200305311940.h4VJehAY019078@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:40:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_dev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:40:45 -0000 phk 2003/05/31 12:40:43 PDT FreeBSD src repository Modified files: sys/geom geom_dev.c Log: Remove unused variables. Found by: FlexeLint Revision Changes Path 1.60 +1 -6 src/sys/geom/geom_dev.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:40:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2A4B37B401; Sat, 31 May 2003 12:40:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 841B043F85; Sat, 31 May 2003 12:40:57 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJev0U019106; Sat, 31 May 2003 12:40:57 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJevkl019105; Sat, 31 May 2003 12:40:57 -0700 (PDT) Message-Id: <200305311940.h4VJevkl019105@repoman.freebsd.org> From: Alan Cox Date: Sat, 31 May 2003 12:40:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_object.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:40:58 -0000 alc 2003/05/31 12:40:57 PDT FreeBSD src repository Modified files: sys/vm vm_object.c Log: Add vm object locking to vm_object_madvise(). Revision Changes Path 1.289 +17 -9 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:41:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0690C37B401; Sat, 31 May 2003 12:41:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B51A43F93; Sat, 31 May 2003 12:41:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJfX0U019159; Sat, 31 May 2003 12:41:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJfX1U019158; Sat, 31 May 2003 12:41:33 -0700 (PDT) Message-Id: <200305311941.h4VJfX1U019158@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:41:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_pc98.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:41:34 -0000 phk 2003/05/31 12:41:33 PDT FreeBSD src repository Modified files: sys/geom geom_pc98.c Log: Remove unused variable. Remove unneeded return; Found by: FlexeLint Revision Changes Path 1.41 +0 -4 src/sys/geom/geom_pc98.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:42:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE7CA37B40F; Sat, 31 May 2003 12:42:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC2943F93; Sat, 31 May 2003 12:42:51 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJgp0U019202; Sat, 31 May 2003 12:42:51 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJgpEx019201; Sat, 31 May 2003 12:42:51 -0700 (PDT) Message-Id: <200305311942.h4VJgpEx019201@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 12:42:51 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/ia64/gen Makefile.inc makecontext.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:42:52 -0000 marcel 2003/05/31 12:42:51 PDT FreeBSD src repository Modified files: lib/libc/ia64/gen Makefile.inc Added files: lib/libc/ia64/gen makecontext.c Log: Rough implement of makecontext() needed to support libthr. o Up to 8 arguments are allowed. This is the number of arguments passed in registers. Subsequent registers are passed on the stack. Trying to deal with this is not easy in C and likely forces us to use assembly code. Let's avoid that for now. There's no indication that more than 8 arguments is a strong requirement (Linux also has an 8 argument limit). o We expect that the stack base is 16-byte aligned and the stack size is a multiple of 16-byte. We bomb out if this is not the case. We probably want to be less strict by enforcing it ourselves. For now it's better to not hide gross alignment bogons by silently correcting it. Revision Changes Path 1.7 +1 -1 src/lib/libc/ia64/gen/Makefile.inc 1.1 +121 -0 src/lib/libc/ia64/gen/makecontext.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 12:46:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A83837B401; Sat, 31 May 2003 12:46:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29CB843F75; Sat, 31 May 2003 12:46:59 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJkx0U019424; Sat, 31 May 2003 12:46:59 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJkw6t019423; Sat, 31 May 2003 12:46:58 -0700 (PDT) Message-Id: <200305311946.h4VJkw6t019423@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:46:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_de.c if_devar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:47:00 -0000 phk 2003/05/31 12:46:58 PDT FreeBSD src repository Modified files: sys/pci if_de.c if_devar.h Log: Move some FALLTHROUGH comments so they work. Fix indentation error. Make boardid string long enough. Remove unused variable. Found by: FlexeLint Revision Changes Path 1.146 +5 -6 src/sys/pci/if_de.c 1.27 +1 -1 src/sys/pci/if_devar.h From owner-cvs-all@FreeBSD.ORG Sat May 31 12:48:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8516437B404; Sat, 31 May 2003 12:48:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE08643F85; Sat, 31 May 2003 12:48:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJmY0U024649; Sat, 31 May 2003 12:48:34 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJmY0x024648; Sat, 31 May 2003 12:48:34 -0700 (PDT) Message-Id: <200305311948.h4VJmY0x024648@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:48:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/mii bmtphy.c dcphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c pnphy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:48:37 -0000 phk 2003/05/31 12:48:34 PDT FreeBSD src repository Modified files: sys/dev/mii bmtphy.c dcphy.c lxtphy.c mii_physubr.c mlphy.c nsgphy.c pnphy.c Log: Remove unnecessary breaks. Remove unused variables. Add XXX comment where a break may be missing. [lxtphy.c] Found by: FlexeLint Revision Changes Path 1.4 +0 -1 src/sys/dev/mii/bmtphy.c 1.21 +0 -1 src/sys/dev/mii/dcphy.c 1.11 +1 -1 src/sys/dev/mii/lxtphy.c 1.18 +0 -2 src/sys/dev/mii/mii_physubr.c 1.17 +0 -1 src/sys/dev/mii/mlphy.c 1.15 +0 -2 src/sys/dev/mii/nsgphy.c 1.15 +0 -6 src/sys/dev/mii/pnphy.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:49:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D42A37B401; Sat, 31 May 2003 12:49:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEB3943F3F; Sat, 31 May 2003 12:49:49 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJnn0U024708; Sat, 31 May 2003 12:49:49 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJnnc4024707; Sat, 31 May 2003 12:49:49 -0700 (PDT) Message-Id: <200305311949.h4VJnnc4024707@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:49:49 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/isp isp.c isp_target.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:49:50 -0000 phk 2003/05/31 12:49:49 PDT FreeBSD src repository Modified files: sys/dev/isp isp.c isp_target.c Log: Remove unused variables Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.104 +3 -6 src/sys/dev/isp/isp.c 1.26 +2 -0 src/sys/dev/isp/isp_target.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:51:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 618FB37B401; Sat, 31 May 2003 12:51:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A9D643FDD; Sat, 31 May 2003 12:51:06 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJp60U024910; Sat, 31 May 2003 12:51:06 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJp5w4024909; Sat, 31 May 2003 12:51:05 -0700 (PDT) Message-Id: <200305311951.h4VJp5w4024909@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:51:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_glue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:51:10 -0000 phk 2003/05/31 12:51:05 PDT FreeBSD src repository Modified files: sys/vm vm_glue.c Log: Remove unused variables Found by: FlexeLint Revision Changes Path 1.173 +0 -4 src/sys/vm/vm_glue.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:52:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C558937B401; Sat, 31 May 2003 12:52:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4701D43FA3; Sat, 31 May 2003 12:52:16 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJqG0U024966; Sat, 31 May 2003 12:52:16 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJqFcm024965; Sat, 31 May 2003 12:52:15 -0700 (PDT) Message-Id: <200305311952.h4VJqFcm024965@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:52:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm uma_int.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:52:17 -0000 phk 2003/05/31 12:52:15 PDT FreeBSD src repository Modified files: sys/vm uma_int.h Log: Prepend _ to internal union members to avoid ambiguity. Found by: FlexeLint Revision Changes Path 1.14 +4 -4 src/sys/vm/uma_int.h From owner-cvs-all@FreeBSD.ORG Sat May 31 12:53:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40D5437B401; Sat, 31 May 2003 12:53:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ECEF43FAF; Sat, 31 May 2003 12:53:05 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJr50U025005; Sat, 31 May 2003 12:53:05 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJr5JJ025004; Sat, 31 May 2003 12:53:05 -0700 (PDT) Message-Id: <200305311953.h4VJr5JJ025004@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:53:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ufs ufs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:53:06 -0000 phk 2003/05/31 12:53:05 PDT FreeBSD src repository Modified files: sys/ufs/ufs ufs_vnops.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.226 +0 -2 src/sys/ufs/ufs/ufs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:55:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E082337B401; Sat, 31 May 2003 12:55:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B6BB43F75; Sat, 31 May 2003 12:55:06 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJt60U025087; Sat, 31 May 2003 12:55:06 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJt5i5025086; Sat, 31 May 2003 12:55:05 -0700 (PDT) Message-Id: <200305311955.h4VJt5i5025086@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 12:55:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern imgact_elf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:55:07 -0000 marcel 2003/05/31 12:55:05 PDT FreeBSD src repository Modified files: sys/kern imgact_elf.c Log: Fix ia32 compat on ia64. Recent ia64 MD changes caused the garbage on the stack to be changed in a way incompatible with elf32_map_insert() where we used data_buf without initializing it for when the partial mapping resulting in a misaligned image (typical when the page size implied by the image is not the same as the page size in use by the kernel). Since data_buf is passed by reference to vm_map_find(), the compiler cannot warn about it. While here, move all local variables to the top of the function. Revision Changes Path 1.139 +4 -5 src/sys/kern/imgact_elf.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:55:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFCB537B401; Sat, 31 May 2003 12:55:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F49543F75; Sat, 31 May 2003 12:55:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJtX0U025167; Sat, 31 May 2003 12:55:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJtWDs025166; Sat, 31 May 2003 12:55:32 -0700 (PDT) Message-Id: <200305311955.h4VJtWDs025166@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:55:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/security/mac_lomac mac_lomac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:55:34 -0000 phk 2003/05/31 12:55:32 PDT FreeBSD src repository Modified files: sys/security/mac_lomac mac_lomac.c Log: Remove double return() Found by: FlexeLint Revision Changes Path 1.13 +0 -2 src/sys/security/mac_lomac/mac_lomac.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:56:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBBC537B401; Sat, 31 May 2003 12:56:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D36843F93; Sat, 31 May 2003 12:56:10 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJuA0U025282; Sat, 31 May 2003 12:56:10 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJuADr025281; Sat, 31 May 2003 12:56:10 -0700 (PDT) Message-Id: <200305311956.h4VJuADr025281@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:56:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci ncr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:56:11 -0000 phk 2003/05/31 12:56:10 PDT FreeBSD src repository Modified files: sys/pci ncr.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.172 +0 -2 src/sys/pci/ncr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:56:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4DB737B401; Sat, 31 May 2003 12:56:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5597D43F85; Sat, 31 May 2003 12:56:36 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJua0U025318; Sat, 31 May 2003 12:56:36 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJuavK025317; Sat, 31 May 2003 12:56:36 -0700 (PDT) Message-Id: <200305311956.h4VJuavK025317@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:56:36 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_ti.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:56:37 -0000 phk 2003/05/31 12:56:36 PDT FreeBSD src repository Modified files: sys/pci if_ti.c Log: Remove now unused pointer to etherheader. Found by: FlexeLint Revision Changes Path 1.79 +0 -2 src/sys/pci/if_ti.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:58:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54C237B401; Sat, 31 May 2003 12:58:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4679843F75; Sat, 31 May 2003 12:58:15 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJwF0U025425; Sat, 31 May 2003 12:58:15 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJwE1C025424; Sat, 31 May 2003 12:58:14 -0700 (PDT) Message-Id: <200305311958.h4VJwE1C025424@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:58:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_ste.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:58:16 -0000 phk 2003/05/31 12:58:14 PDT FreeBSD src repository Modified files: sys/pci if_ste.c Log: Remove unused variables. Found by: FlexeLint Revision Changes Path 1.53 +0 -4 src/sys/pci/if_ste.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:58:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECC4837B401; Sat, 31 May 2003 12:58:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D75343F75; Sat, 31 May 2003 12:58:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJwj0U025487; Sat, 31 May 2003 12:58:45 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJwjws025486; Sat, 31 May 2003 12:58:45 -0700 (PDT) Message-Id: <200305311958.h4VJwjws025486@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:58:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_sk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:58:46 -0000 phk 2003/05/31 12:58:45 PDT FreeBSD src repository Modified files: sys/pci if_sk.c Log: Remove unused variables. Found by: FlexeLint Revision Changes Path 1.62 +0 -7 src/sys/pci/if_sk.c From owner-cvs-all@FreeBSD.ORG Sat May 31 12:59:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0070637B401; Sat, 31 May 2003 12:59:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A0043F3F; Sat, 31 May 2003 12:59:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VJxT0U025571; Sat, 31 May 2003 12:59:29 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VJxTOa025567; Sat, 31 May 2003 12:59:29 -0700 (PDT) Message-Id: <200305311959.h4VJxTOa025567@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 12:59:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_sf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 19:59:30 -0000 phk 2003/05/31 12:59:29 PDT FreeBSD src repository Modified files: sys/pci if_sf.c Log: Remove break after return Found by: FlexeLint Revision Changes Path 1.57 +0 -5 src/sys/pci/if_sf.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:01:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5B2837B401; Sat, 31 May 2003 13:01:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54DF143F3F; Sat, 31 May 2003 13:01:15 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK1F0U027009; Sat, 31 May 2003 13:01:15 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK1FH8027008; Sat, 31 May 2003 13:01:15 -0700 (PDT) Message-Id: <200305312001.h4VK1FH8027008@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:01:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_rl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:01:16 -0000 phk 2003/05/31 13:01:15 PDT FreeBSD src repository Modified files: sys/pci if_rl.c Log: Remove break after return; Found by: FlexeLint Revision Changes Path 1.99 +0 -2 src/sys/pci/if_rl.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:02:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CC7D37B401; Sat, 31 May 2003 13:02:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B5D643F93; Sat, 31 May 2003 13:02:44 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK2h0U028258; Sat, 31 May 2003 13:02:43 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK2hLH028254; Sat, 31 May 2003 13:02:43 -0700 (PDT) Message-Id: <200305312002.h4VK2hLH028254@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:02:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_pcn.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:02:44 -0000 phk 2003/05/31 13:02:43 PDT FreeBSD src repository Modified files: sys/pci if_pcn.c Log: Remove unused variables. Remove now unused pointer to ether header. Remove break after return Found by: FlexeLint Revision Changes Path 1.46 +0 -5 src/sys/pci/if_pcn.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:04:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71F3A37B401; Sat, 31 May 2003 13:04:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1230743F85; Sat, 31 May 2003 13:04:20 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK4J0U030453; Sat, 31 May 2003 13:04:19 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK4Jf9030449; Sat, 31 May 2003 13:04:19 -0700 (PDT) Message-Id: <200305312004.h4VK4Jf9030449@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:04:19 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci alpm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:04:20 -0000 phk 2003/05/31 13:04:19 PDT FreeBSD src repository Modified files: sys/pci alpm.c Log: Remove unused variable. Found by: FlexeLint Revision Changes Path 1.19 +1 -2 src/sys/pci/alpm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:05:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 019AA37B401; Sat, 31 May 2003 13:05:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 949A543F3F; Sat, 31 May 2003 13:05:25 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK5P0U031493; Sat, 31 May 2003 13:05:25 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK5Pev031479; Sat, 31 May 2003 13:05:25 -0700 (PDT) Message-Id: <200305312005.h4VK5Pev031479@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:05:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient bootp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:05:26 -0000 phk 2003/05/31 13:05:25 PDT FreeBSD src repository Modified files: sys/nfsclient bootp_subr.c Log: Remove unsed variables. Add explicit breaks to switch Found by: FlexeLint Revision Changes Path 1.48 +2 -7 src/sys/nfsclient/bootp_subr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:06:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E49937B404; Sat, 31 May 2003 13:06:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7A743F3F; Sat, 31 May 2003 13:06:28 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK6R0U032519; Sat, 31 May 2003 13:06:27 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK6Rt8032518; Sat, 31 May 2003 13:06:27 -0700 (PDT) Message-Id: <200305312006.h4VK6Rt8032518@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:06:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_ef.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:06:29 -0000 phk 2003/05/31 13:06:27 PDT FreeBSD src repository Modified files: sys/net if_ef.c Log: Remove break after return. Found by: FlexeLint Revision Changes Path 1.25 +0 -3 src/sys/net/if_ef.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:07:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AFFC37B401; Sat, 31 May 2003 13:07:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9C143F85; Sat, 31 May 2003 13:07:16 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK7G0U033273; Sat, 31 May 2003 13:07:16 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK7GLW033272; Sat, 31 May 2003 13:07:16 -0700 (PDT) Message-Id: <200305312007.h4VK7GLW033272@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:07:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_atmsubr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:07:17 -0000 phk 2003/05/31 13:07:16 PDT FreeBSD src repository Modified files: sys/net if_atmsubr.c Log: Wrap macro in do {...} while(0); Found by: FlexeLint Revision Changes Path 1.27 +1 -1 src/sys/net/if_atmsubr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:08:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D911937B401; Sat, 31 May 2003 13:08:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C7643F75; Sat, 31 May 2003 13:08:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK8J0U034261; Sat, 31 May 2003 13:08:19 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK8J6R034246; Sat, 31 May 2003 13:08:19 -0700 (PDT) Message-Id: <200305312008.h4VK8J6R034246@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:08:19 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:08:20 -0000 phk 2003/05/31 13:08:19 PDT FreeBSD src repository Modified files: sys/kern vfs_syscalls.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.315 +1 -6 src/sys/kern/vfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:09:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4232037B401; Sat, 31 May 2003 13:09:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D671143F75; Sat, 31 May 2003 13:09:01 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK910U034903; Sat, 31 May 2003 13:09:01 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK91cK034902; Sat, 31 May 2003 13:09:01 -0700 (PDT) Message-Id: <200305312009.h4VK91cK034902@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:09:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:09:02 -0000 phk 2003/05/31 13:09:01 PDT FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Remove unused variable and now unbalanced call to splbio(); Found by: FlexeLint Revision Changes Path 1.451 +0 -2 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:09:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17C5437B401; Sat, 31 May 2003 13:09:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB3F743F75; Sat, 31 May 2003 13:09:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VK9g0U035569; Sat, 31 May 2003 13:09:42 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VK9gG8035568; Sat, 31 May 2003 13:09:42 -0700 (PDT) Message-Id: <200305312009.h4VK9gG8035568@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:09:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:09:43 -0000 phk 2003/05/31 13:09:42 PDT FreeBSD src repository Modified files: sys/kern subr_witness.c Log: Remove return after panic. Found by: FlexeLint Revision Changes Path 1.154 +0 -1 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:10:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 634AB37B401; Sat, 31 May 2003 13:10:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51E6543F93; Sat, 31 May 2003 13:10:37 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKAb0U036270; Sat, 31 May 2003 13:10:37 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKAbAh036269; Sat, 31 May 2003 13:10:37 -0700 (PDT) Message-Id: <200305312010.h4VKAbAh036269@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:10:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_rman.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:10:38 -0000 phk 2003/05/31 13:10:37 PDT FreeBSD src repository Modified files: sys/kern subr_rman.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.30 +0 -2 src/sys/kern/subr_rman.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:11:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8E6F37B401; Sat, 31 May 2003 13:11:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 886BF43F85; Sat, 31 May 2003 13:11:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKBX0U036318; Sat, 31 May 2003 13:11:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKBXJR036317; Sat, 31 May 2003 13:11:33 -0700 (PDT) Message-Id: <200305312011.h4VKBXJR036317@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:11:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_prf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:11:34 -0000 phk 2003/05/31 13:11:33 PDT FreeBSD src repository Modified files: sys/kern subr_prf.c Log: Remove unused variable(s). Remove break after goto Found by: FlexeLint Revision Changes Path 1.101 +2 -5 src/sys/kern/subr_prf.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:12:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7387A37B401; Sat, 31 May 2003 13:12:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12C1443F93; Sat, 31 May 2003 13:12:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKCi0U036417; Sat, 31 May 2003 13:12:44 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKCi5b036416; Sat, 31 May 2003 13:12:44 -0700 (PDT) Message-Id: <200305312012.h4VKCi5b036416@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:12:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:12:45 -0000 phk 2003/05/31 13:12:44 PDT FreeBSD src repository Modified files: sys/kern kern_thread.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.131 +0 -2 src/sys/kern/kern_thread.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:13:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12D0F37B401; Sat, 31 May 2003 13:13:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6F9043F93; Sat, 31 May 2003 13:13:58 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKDw0U036515; Sat, 31 May 2003 13:13:58 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKDwZb036514; Sat, 31 May 2003 13:13:58 -0700 (PDT) Message-Id: <200305312013.h4VKDwZb036514@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:13:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_synch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:13:59 -0000 phk 2003/05/31 13:13:58 PDT FreeBSD src repository Modified files: sys/kern kern_synch.c Log: Add a couple of XXX comments where the intent is not clear. Found by: FlexeLint Revision Changes Path 1.224 +2 -0 src/sys/kern/kern_synch.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:15:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B264B37B401; Sat, 31 May 2003 13:15:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F4DD43F3F; Sat, 31 May 2003 13:15:00 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKF00U036558; Sat, 31 May 2003 13:15:00 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKF0QA036557; Sat, 31 May 2003 13:15:00 -0700 (PDT) Message-Id: <200305312015.h4VKF0QA036557@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:15:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_intr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:15:01 -0000 phk 2003/05/31 13:15:00 PDT FreeBSD src repository Modified files: sys/kern kern_intr.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.96 +0 -2 src/sys/kern/kern_intr.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:16:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACDC337B401; Sat, 31 May 2003 13:16:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E4EC43FAF; Sat, 31 May 2003 13:16:45 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKGj0U036706; Sat, 31 May 2003 13:16:45 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKGjRs036705; Sat, 31 May 2003 13:16:45 -0700 (PDT) Message-Id: <200305312016.h4VKGjRs036705@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:16:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_descrip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:16:46 -0000 phk 2003/05/31 13:16:45 PDT FreeBSD src repository Modified files: sys/kern kern_descrip.c Log: Remove needless return Found by: FlexeLint Revision Changes Path 1.197 +0 -1 src/sys/kern/kern_descrip.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:18:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4690B37B407; Sat, 31 May 2003 13:18:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D95F343F3F; Sat, 31 May 2003 13:18:23 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKIN0U036754; Sat, 31 May 2003 13:18:23 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKINEp036753; Sat, 31 May 2003 13:18:23 -0700 (PDT) Message-Id: <200305312018.h4VKINEp036753@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:18:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_conf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:18:24 -0000 phk 2003/05/31 13:18:23 PDT FreeBSD src repository Modified files: sys/kern kern_conf.c Log: Remove return after panic. Found by: FlexeLint Revision Changes Path 1.133 +0 -2 src/sys/kern/kern_conf.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:19:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3273037B401; Sat, 31 May 2003 13:19:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C644643FA3; Sat, 31 May 2003 13:19:13 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKJD0U036796; Sat, 31 May 2003 13:19:13 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKJD1r036795; Sat, 31 May 2003 13:19:13 -0700 (PDT) Message-Id: <200305312019.h4VKJD1r036795@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:19:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isofs/cd9660 cd9660_lookup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:19:14 -0000 phk 2003/05/31 13:19:13 PDT FreeBSD src repository Modified files: sys/isofs/cd9660 cd9660_lookup.c Log: emove unused variable(s). Found by: FlexeLint Revision Changes Path 1.34 +0 -2 src/sys/isofs/cd9660/cd9660_lookup.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:19:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7817737B401; Sat, 31 May 2003 13:19:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1950443F85; Sat, 31 May 2003 13:19:55 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKJs0U036834; Sat, 31 May 2003 13:19:54 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKJsXB036833; Sat, 31 May 2003 13:19:54 -0700 (PDT) Message-Id: <200305312019.h4VKJsXB036833@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:19:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa vga_isa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:19:55 -0000 phk 2003/05/31 13:19:54 PDT FreeBSD src repository Modified files: sys/isa vga_isa.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.25 +2 -6 src/sys/isa/vga_isa.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:20:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE0FF37B401; Sat, 31 May 2003 13:20:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E78143F3F; Sat, 31 May 2003 13:20:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKKq0U036994; Sat, 31 May 2003 13:20:52 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKKqqu036993; Sat, 31 May 2003 13:20:52 -0700 (PDT) Message-Id: <200305312020.h4VKKqqu036993@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:20:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa ppc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:20:53 -0000 phk 2003/05/31 13:20:52 PDT FreeBSD src repository Modified files: sys/isa ppc.c Log: Remove break after return; Found by: FlexeLint Revision Changes Path 1.40 +0 -7 src/sys/isa/ppc.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:21:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45D0937B401; Sat, 31 May 2003 13:21:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA1B943F75; Sat, 31 May 2003 13:21:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKLr0U037041; Sat, 31 May 2003 13:21:53 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKLrWY037040; Sat, 31 May 2003 13:21:53 -0700 (PDT) Message-Id: <200305312021.h4VKLrWY037040@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:21:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa pnp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:21:54 -0000 phk 2003/05/31 13:21:53 PDT FreeBSD src repository Modified files: sys/isa pnp.c Log: Remove unused variable(s). Mark a non-critical memoryleak with XXX comment Found by: FlexeLint Revision Changes Path 1.15 +3 -3 src/sys/isa/pnp.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:22:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57B4137B401; Sat, 31 May 2003 13:22:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 931D843F93; Sat, 31 May 2003 13:22:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKMT0U037084; Sat, 31 May 2003 13:22:29 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKMTFr037083; Sat, 31 May 2003 13:22:29 -0700 (PDT) Message-Id: <200305312022.h4VKMTFr037083@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:22:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa gpib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:22:30 -0000 phk 2003/05/31 13:22:29 PDT FreeBSD src repository Modified files: sys/i386/isa gpib.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.40 +0 -9 src/sys/i386/isa/gpib.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:23:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9386C37B401; Sat, 31 May 2003 13:23:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EE543F3F; Sat, 31 May 2003 13:23:47 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKNl0U037127; Sat, 31 May 2003 13:23:47 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKNkKq037126; Sat, 31 May 2003 13:23:46 -0700 (PDT) Message-Id: <200305312023.h4VKNkKq037126@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:23:46 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa clock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:23:47 -0000 phk 2003/05/31 13:23:46 PDT FreeBSD src repository Modified files: sys/i386/isa clock.c Log: Don't rely on boolean expression evaluating to 1 or 0 by default. Found by: FlexeLint Revision Changes Path 1.199 +1 -1 src/sys/i386/isa/clock.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:24:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AF2C37B401; Sat, 31 May 2003 13:24:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEEF443F85; Sat, 31 May 2003 13:24:30 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKOU0U037169; Sat, 31 May 2003 13:24:30 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKOUtn037168; Sat, 31 May 2003 13:24:30 -0700 (PDT) Message-Id: <200305312024.h4VKOUtn037168@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:24:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 db_trace.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:24:32 -0000 phk 2003/05/31 13:24:30 PDT FreeBSD src repository Modified files: sys/i386/i386 db_trace.c Log: Remove break after return; Found by: FlexeLint Revision Changes Path 1.56 +2 -2 src/sys/i386/i386/db_trace.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:25:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C816637B401; Sat, 31 May 2003 13:25:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67A9F43F3F; Sat, 31 May 2003 13:25:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKPs0U037310; Sat, 31 May 2003 13:25:54 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKPs6U037309; Sat, 31 May 2003 13:25:54 -0700 (PDT) Message-Id: <200305312025.h4VKPs6U037309@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:25:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 bios.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:25:55 -0000 phk 2003/05/31 13:25:54 PDT FreeBSD src repository Modified files: sys/i386/i386 bios.c Log: Avoid unbalancing the { } count in the source file with #ifdef by putting the opening { after the #ifdef ... #endif sequence. Found by: FlexeLint Revision Changes Path 1.60 +3 -2 src/sys/i386/i386/bios.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:26:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C8837B401; Sat, 31 May 2003 13:26:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97D3843F93; Sat, 31 May 2003 13:26:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKQs0U037358; Sat, 31 May 2003 13:26:54 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKQsau037357; Sat, 31 May 2003 13:26:54 -0700 (PDT) Message-Id: <200305312026.h4VKQsau037357@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:26:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/msdosfs msdosfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:26:55 -0000 phk 2003/05/31 13:26:54 PDT FreeBSD src repository Modified files: sys/fs/msdosfs msdosfs_vnops.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.137 +0 -6 src/sys/fs/msdosfs/msdosfs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:27:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1D6E37B401; Sat, 31 May 2003 13:27:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 906C643F93; Sat, 31 May 2003 13:27:42 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKRg0U037403; Sat, 31 May 2003 13:27:42 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKRgha037402; Sat, 31 May 2003 13:27:42 -0700 (PDT) Message-Id: <200305312027.h4VKRgha037402@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:27:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/xe if_xe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:27:43 -0000 phk 2003/05/31 13:27:42 PDT FreeBSD src repository Modified files: sys/dev/xe if_xe.c Log: Remove unused variable(s). Put XXX comment where intent is unclear. Found by: FlexeLint Revision Changes Path 1.37 +2 -6 src/sys/dev/xe/if_xe.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:28:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A98A37B401; Sat, 31 May 2003 13:28:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8D943F93; Sat, 31 May 2003 13:28:21 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKSL0U037468; Sat, 31 May 2003 13:28:21 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKSL6M037467; Sat, 31 May 2003 13:28:21 -0700 (PDT) Message-Id: <200305312028.h4VKSL6M037467@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:28:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/vx if_vx_eisa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:28:23 -0000 phk 2003/05/31 13:28:21 PDT FreeBSD src repository Modified files: sys/dev/vx if_vx_eisa.c Log: Remove break after return Found by: FlexeLint Revision Changes Path 1.17 +0 -4 src/sys/dev/vx/if_vx_eisa.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:29:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5986E37B401; Sat, 31 May 2003 13:29:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED36643F85; Sat, 31 May 2003 13:29:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKTY0U037540; Sat, 31 May 2003 13:29:34 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKTYfb037539; Sat, 31 May 2003 13:29:34 -0700 (PDT) Message-Id: <200305312029.h4VKTYfb037539@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:29:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/syscons/fade fade_saver.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:29:35 -0000 phk 2003/05/31 13:29:34 PDT FreeBSD src repository Modified files: sys/dev/syscons/fade fade_saver.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.19 +0 -4 src/sys/dev/syscons/fade/fade_saver.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:33:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 996DA37B401; Sat, 31 May 2003 13:33:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46EC243F75; Sat, 31 May 2003 13:33:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKXJ0U037777; Sat, 31 May 2003 13:33:19 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKXIDj037776; Sat, 31 May 2003 13:33:18 -0700 (PDT) Message-Id: <200305312033.h4VKXIDj037776@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:33:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/svr4 svr4_socket.c svr4_socket.h svr4_stat.c svr4_sysvec.c src/sys/dev/streams streams.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:33:20 -0000 phk 2003/05/31 13:33:18 PDT FreeBSD src repository Modified files: sys/compat/svr4 svr4_socket.c svr4_socket.h svr4_stat.c svr4_sysvec.c sys/dev/streams streams.c Log: Put definition of struct svr4_sockcache_entry in a .h file rather than having two independent definitions in two .c files. Fiddle surrounding details to match. Found by: FlexeLint Revision Changes Path 1.21 +0 -12 src/sys/compat/svr4/svr4_socket.c 1.7 +13 -0 src/sys/compat/svr4/svr4_socket.h 1.17 +1 -0 src/sys/compat/svr4/svr4_stat.c 1.31 +0 -1 src/sys/compat/svr4/svr4_sysvec.c 1.40 +1 -10 src/sys/dev/streams/streams.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:34:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65D3337B401; Sat, 31 May 2003 13:34:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0510743F85; Sat, 31 May 2003 13:34:37 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKYa0U037823; Sat, 31 May 2003 13:34:36 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKYaBH037822; Sat, 31 May 2003 13:34:36 -0700 (PDT) Message-Id: <200305312034.h4VKYaBH037822@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:34:36 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:34:37 -0000 phk 2003/05/31 13:34:36 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Remove unused variable(s). Remove break after return; Found by: FlexeLint Revision Changes Path 1.215 +0 -9 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:35:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F1137B401; Sat, 31 May 2003 13:35:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A617E43F93; Sat, 31 May 2003 13:35:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKZX0U037951; Sat, 31 May 2003 13:35:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKZXk6037950; Sat, 31 May 2003 13:35:33 -0700 (PDT) Message-Id: <200305312035.h4VKZXk6037950@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:35:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:35:34 -0000 phk 2003/05/31 13:35:33 PDT FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Remove return after goto. Remove break after return; Found by: FlexeLint Revision Changes Path 1.72 +0 -2 src/sys/dev/pccbb/pccbb.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:37:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D5637B404 for ; Sat, 31 May 2003 13:37:58 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls20o913.telia.com [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 65F5A43FB1 for ; Sat, 31 May 2003 13:37:54 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 38323 invoked by uid 1001); 31 May 2003 20:37:52 -0000 Date: Sat, 31 May 2003 22:37:52 +0200 From: Erik Trulsson To: Poul-Henning Kamp Message-ID: <20030531203751.GA38298@falcon.midgard.homeip.net> Mail-Followup-To: Poul-Henning Kamp , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200305312023.h4VKNkKq037126@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305312023.h4VKNkKq037126@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/isa clock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:37:58 -0000 On Sat, May 31, 2003 at 01:23:46PM -0700, Poul-Henning Kamp wrote: > phk 2003/05/31 13:23:46 PDT > > FreeBSD src repository > > Modified files: > sys/i386/isa clock.c > Log: > Don't rely on boolean expression evaluating to 1 or 0 by default. Why not? In C the relational operators (including '==') *always* evaluate to 1 or 0. One can rely on that. I.e. this change doesn't really accomplish anything except make the expression somewhat more complicated. > > Found by: FlexeLint > > Revision Changes Path > 1.199 +1 -1 src/sys/i386/isa/clock.c > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" -- Erik Trulsson ertr1013@student.uu.se From owner-cvs-all@FreeBSD.ORG Sat May 31 13:39:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 050C137B401; Sat, 31 May 2003 13:39:05 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8610443FA3; Sat, 31 May 2003 13:39:04 -0700 (PDT) (envelope-from hmp@nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1072) id AFB8520F00; Sat, 31 May 2003 13:39:03 -0700 (PDT) Date: Sat, 31 May 2003 13:39:03 -0700 From: Hiten Pandya To: Poul-Henning Kamp Message-ID: <20030531203903.GA41479@perrin.int.nxad.com> References: <200305311647.h4VGl70X006187@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305311647.h4VGl70X006187@repoman.freebsd.org> X-Operating-System: FreeBSD FreeBSD 4.7-STABLE User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_uuid.c src/sys/sys uuid.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:39:05 -0000 On Sat, May 31, 2003 at 09:47:07AM -0700, Poul-Henning Kamp wrote: > phk 2003/05/31 09:47:07 PDT > > FreeBSD src repository > > Modified files: > sys/kern kern_uuid.c > sys/sys uuid.h > Log: > Introduce {be,le}_uuid_{enc,dec}() functions for explicitly encoding > and decoding UUID's in big endian and little endian binary format. Thank You! -- Hiten (hmp@FreeBSD.ORG) From owner-cvs-all@FreeBSD.ORG Sat May 31 13:39:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 633B537B401; Sat, 31 May 2003 13:39:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 026F943F3F; Sat, 31 May 2003 13:39:29 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKdS0U038104; Sat, 31 May 2003 13:39:28 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKdSW0038103; Sat, 31 May 2003 13:39:28 -0700 (PDT) Message-Id: <200305312039.h4VKdSW0038103@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:39:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/musycc musycc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:39:29 -0000 phk 2003/05/31 13:39:28 PDT FreeBSD src repository Modified files: sys/dev/musycc musycc.c Log: Remove unused variable(s). Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.27 +2 -4 src/sys/dev/musycc/musycc.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:40:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5994B37B401; Sat, 31 May 2003 13:40:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B3F43F75; Sat, 31 May 2003 13:40:13 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKeD0U038201; Sat, 31 May 2003 13:40:13 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKeDnH038195; Sat, 31 May 2003 13:40:13 -0700 (PDT) Message-Id: <200305312040.h4VKeDnH038195@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:40:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ips ips_ioctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:40:15 -0000 phk 2003/05/31 13:40:12 PDT FreeBSD src repository Modified files: sys/dev/ips ips_ioctl.c Log: Fix indentation Found by: FlexeLint Revision Changes Path 1.2 +13 -12 src/sys/dev/ips/ips_ioctl.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:41:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42FA337B401; Sat, 31 May 2003 13:41:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D616443F3F; Sat, 31 May 2003 13:41:08 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKf80U038302; Sat, 31 May 2003 13:41:08 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKf80f038301; Sat, 31 May 2003 13:41:08 -0700 (PDT) Message-Id: <200305312041.h4VKf80f038301@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:41:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/buslogic bt.c bt_eisa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:41:09 -0000 phk 2003/05/31 13:41:08 PDT FreeBSD src repository Modified files: sys/dev/buslogic bt.c bt_eisa.c Log: Add /* FALLTHROUGH */ Remove break after return Found by: FlexeLint Revision Changes Path 1.39 +7 -0 src/sys/dev/buslogic/bt.c 1.16 +0 -7 src/sys/dev/buslogic/bt_eisa.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:41:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 238A637B401; Sat, 31 May 2003 13:41:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6B0343F75; Sat, 31 May 2003 13:41:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKfq0U038354; Sat, 31 May 2003 13:41:52 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKfqTZ038353; Sat, 31 May 2003 13:41:52 -0700 (PDT) Message-Id: <200305312041.h4VKfqTZ038353@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:41:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bktr bktr_os.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:41:53 -0000 phk 2003/05/31 13:41:52 PDT FreeBSD src repository Modified files: sys/dev/bktr bktr_os.c Log: Eliminate mostly unused local variable. Found by: FlexeLint Revision Changes Path 1.35 +2 -5 src/sys/dev/bktr/bktr_os.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:42:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7174437B401; Sat, 31 May 2003 13:42:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B9543F75; Sat, 31 May 2003 13:42:25 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKgO0U038393; Sat, 31 May 2003 13:42:24 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKgOIt038392; Sat, 31 May 2003 13:42:24 -0700 (PDT) Message-Id: <200305312042.h4VKgOIt038392@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:42:24 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:42:25 -0000 phk 2003/05/31 13:42:24 PDT FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.42 +0 -2 src/sys/dev/bge/if_bge.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:42:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB21C37B418; Sat, 31 May 2003 13:42:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B5B243F3F; Sat, 31 May 2003 13:42:35 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKgZ0U038424; Sat, 31 May 2003 13:42:35 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKgZDm038423; Sat, 31 May 2003 13:42:35 -0700 (PDT) Message-Id: <200305312042.h4VKgZDm038423@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 13:42:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:42:36 -0000 marcel 2003/05/31 13:42:35 PDT FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: Make sure we have all the dirty registers in user frames on the backing store before we discard them. It is possible that we enter the kernel (due to an execve in this case) with a lot of dirty user registers and that the RSE has only partially spilled them (to make room for new frames). We cannot move the backing store pointer down (to discard user registers) when not all of the user registers are on the backing store. So, we flush the register stack IFF this happens. Unconditionally doing the flush is too costly, because the condition in which we need to flush is very rare. This change appears to fix the SIGSEGV that sometimes happen for newly executed processes and so far also appears to fix the last of the corruption. It is possible, although not likely, that this change prevents some other bug from happening, even though it is itself not a fix. Hence the uncertainty. We'll know in a couple of months I guess :-) Revision Changes Path 1.137 +12 -2 src/sys/ia64/ia64/machdep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:43:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 196D537B405; Sat, 31 May 2003 13:43:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC76A43F85; Sat, 31 May 2003 13:43:17 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKhH0U038486; Sat, 31 May 2003 13:43:17 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKhHct038485; Sat, 31 May 2003 13:43:17 -0700 (PDT) Message-Id: <200305312043.h4VKhHct038485@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:43:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/amd amd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:43:18 -0000 phk 2003/05/31 13:43:17 PDT FreeBSD src repository Modified files: sys/dev/amd amd.c Log: Remove unused variable(s). Add XXX comment where intent is unclear. Found by: FlexeLint Revision Changes Path 1.19 +2 -11 src/sys/dev/amd/amd.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:43:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C19237B408; Sat, 31 May 2003 13:43:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FF8E43F75; Sat, 31 May 2003 13:43:47 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKhl0U038552; Sat, 31 May 2003 13:43:47 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKhluE038551; Sat, 31 May 2003 13:43:47 -0700 (PDT) Message-Id: <200305312043.h4VKhluE038551@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:43:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ddb db_break.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:43:48 -0000 phk 2003/05/31 13:43:47 PDT FreeBSD src repository Modified files: sys/ddb db_break.c Log: Add /* FALLTHROUGH */ Found by: FlexeLint Revision Changes Path 1.22 +1 -0 src/sys/ddb/db_break.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:44:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC16037B404; Sat, 31 May 2003 13:44:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6267B43FB1; Sat, 31 May 2003 13:44:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKiX0U038597; Sat, 31 May 2003 13:44:33 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKiXV2038596; Sat, 31 May 2003 13:44:33 -0700 (PDT) Message-Id: <200305312044.h4VKiXV2038596@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:44:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_targ_bh.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:44:36 -0000 phk 2003/05/31 13:44:33 PDT FreeBSD src repository Modified files: sys/cam/scsi scsi_targ_bh.c Log: Add /* FALLTHROUGH */ Remove unused variable(s). Order switch in canonical order. Found by: FlexeLint Revision Changes Path 1.17 +4 -7 src/sys/cam/scsi/scsi_targ_bh.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:46:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A95037B401; Sat, 31 May 2003 13:46:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA70043F75; Sat, 31 May 2003 13:46:21 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKkL0U038764; Sat, 31 May 2003 13:46:21 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKkLS6038760; Sat, 31 May 2003 13:46:21 -0700 (PDT) Message-Id: <200305312046.h4VKkLS6038760@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 13:46:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam cam.c cam_xpt.c src/sys/cam/scsi scsi_pt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:46:22 -0000 phk 2003/05/31 13:46:21 PDT FreeBSD src repository Modified files: sys/cam cam.c cam_xpt.c sys/cam/scsi scsi_pt.c Log: Add /* FALLTHROUGH */ Move /* FALLTHROUGH */ to correct location. Remove unused variable(s). Found by: FlexeLint Revision Changes Path 1.6 +1 -0 src/sys/cam/cam.c 1.133 +5 -8 src/sys/cam/cam_xpt.c 1.38 +1 -1 src/sys/cam/scsi/scsi_pt.c From owner-cvs-all@FreeBSD.ORG Sat May 31 13:57:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE5537B401; Sat, 31 May 2003 13:57:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CB5543FA3; Sat, 31 May 2003 13:57:27 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VKvR0U039187; Sat, 31 May 2003 13:57:27 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VKvRO1039186; Sat, 31 May 2003 13:57:27 -0700 (PDT) Message-Id: <200305312057.h4VKvRO1039186@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 13:57:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 syscall.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:57:28 -0000 marcel 2003/05/31 13:57:27 PDT FreeBSD src repository Modified files: sys/ia64/ia64 syscall.s Log: Some ia32 related finetuning for the EPC syscall path: o The SDM states that flushing the RSE in the cycle prior to the call to ia32 code yields the best performance. We don't really care to much about performance here, but we do the same anyway. I'm being paranoia and conservative here. o Only initialize the ia32 state registers, not the registers used as scratch by the ia32 engine. This saves a couple of loads from the trapframe, but also helps debugging: we don't clobber useful debugging data (engineering hints :-) o Make sure all general registers constituting ia32 state have been initialized. If there's no useful to be loaded from the trapframe, clear the register. This avoids accidentally leaking NaT bits. o Make sure we set ar.k6 prior to clobbering ar.bspstore and also set ar.k7 prior to setting sp. This fixes a race seen for ia64 native code as well (and previously fixed too). Revision Changes Path 1.3 +32 -25 src/sys/ia64/ia64/syscall.s From owner-cvs-all@FreeBSD.ORG Sat May 31 14:02:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0C8437B401; Sat, 31 May 2003 14:02:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9516F43FBD; Sat, 31 May 2003 14:02:18 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VL2I0U039465; Sat, 31 May 2003 14:02:18 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VL2ISc039464; Sat, 31 May 2003 14:02:18 -0700 (PDT) Message-Id: <200305312102.h4VL2ISc039464@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 14:02:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/include _regset.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:02:21 -0000 marcel 2003/05/31 14:02:18 PDT FreeBSD src repository Modified files: sys/ia64/include _regset.h Log: Make the regset pointers const pointers for the context restore functions. This works better with set_mcontext() and is more precise in general. Revision Changes Path 1.2 +3 -3 src/sys/ia64/include/_regset.h From owner-cvs-all@FreeBSD.ORG Sat May 31 14:02:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DB1C37B401; Sat, 31 May 2003 14:02:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48FB043F93; Sat, 31 May 2003 14:02:51 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VL2p0U039505; Sat, 31 May 2003 14:02:51 -0700 (PDT) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VL2pnA039504; Sat, 31 May 2003 14:02:51 -0700 (PDT) Message-Id: <200305312102.h4VL2pnA039504@repoman.freebsd.org> From: Jens Schweikhardt Date: Sat, 31 May 2003 14:02:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/vgrind vgrind.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:02:53 -0000 schweikh 2003/05/31 14:02:50 PDT FreeBSD src repository Modified files: usr.bin/vgrind vgrind.sh Log: Rewrite this csh program as a /bin/sh program. This appears to be the last csh script needed for a buildworld. You should now be able to buildworld on a system that was compiled with NO_TCSH=true. Verified to produce the same result for the one file being generated during buildworld, share/doc/papers/kernmalloc/appendix.ms. Reviewed by: hackers@ MFC after: 2 weeks Revision Changes Path 1.4 +97 -119 src/usr.bin/vgrind/vgrind.sh From owner-cvs-all@FreeBSD.ORG Sat May 31 14:07:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD56337B401; Sat, 31 May 2003 14:07:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BAEE43F3F; Sat, 31 May 2003 14:07:09 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VL790U040649; Sat, 31 May 2003 14:07:09 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VL796o040648; Sat, 31 May 2003 14:07:09 -0700 (PDT) Message-Id: <200305312107.h4VL796o040648@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 14:07:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:07:10 -0000 marcel 2003/05/31 14:07:08 PDT FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: Implement set_mcontext() and get_mcontext(). Just as for sendsig() and sigreturn(), we cheat and assume the preserved registers are still on-chip and unmodified. This is actually the case, but more by accident than by design. We need to use unwinding eventually or explicitly compile the kernel in a way that the compiler steers clear from using the preserved registers completely. Revision Changes Path 1.138 +14 -4 src/sys/ia64/ia64/machdep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 14:10:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79C2537B401; Sat, 31 May 2003 14:10:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171D243F75; Sat, 31 May 2003 14:10:02 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLA10U040728; Sat, 31 May 2003 14:10:01 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLA15P040727; Sat, 31 May 2003 14:10:01 -0700 (PDT) Message-Id: <200305312110.h4VLA15P040727@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 14:10:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys devicestat.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:10:02 -0000 phk 2003/05/31 14:10:01 PDT FreeBSD src repository Modified files: sys/sys devicestat.h Log: Add an XXX comment with a TODO item for next time we run a revision on this API. Revision Changes Path 1.25 +5 -0 src/sys/sys/devicestat.h From owner-cvs-all@FreeBSD.ORG Sat May 31 14:11:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B64137B401; Sat, 31 May 2003 14:11:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CF3F43F85; Sat, 31 May 2003 14:11:02 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLB10U040889; Sat, 31 May 2003 14:11:01 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLB1GQ040888; Sat, 31 May 2003 14:11:01 -0700 (PDT) Message-Id: <200305312111.h4VLB1GQ040888@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 14:11:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_mutex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:11:03 -0000 phk 2003/05/31 14:11:01 PDT FreeBSD src repository Modified files: sys/kern kern_mutex.c Log: Add "" around mutex name to make message less confusing. Revision Changes Path 1.127 +1 -1 src/sys/kern/kern_mutex.c From owner-cvs-all@FreeBSD.ORG Sat May 31 14:11:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 021F037B407; Sat, 31 May 2003 14:11:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAEAF43FCB; Sat, 31 May 2003 14:11:51 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLBp0U040933; Sat, 31 May 2003 14:11:51 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLBpJK040932; Sat, 31 May 2003 14:11:51 -0700 (PDT) Message-Id: <200305312111.h4VLBpJK040932@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 14:11:51 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:11:55 -0000 phk 2003/05/31 14:11:51 PDT FreeBSD src repository Modified files: sys/isa psm.c Log: wrap macro in do {...} while(0) Revision Changes Path 1.57 +2 -2 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sat May 31 14:14:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E428537B401; Sat, 31 May 2003 14:14:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8120D43F3F; Sat, 31 May 2003 14:14:25 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLEP0U041063; Sat, 31 May 2003 14:14:25 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLEPRV041062; Sat, 31 May 2003 14:14:25 -0700 (PDT) Message-Id: <200305312114.h4VLEPRV041062@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 14:14:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:14:26 -0000 marcel 2003/05/31 14:14:25 PDT FreeBSD src repository Modified files: sys/ia64/ia64 vm_machdep.c Log: Implement cpu_set_upcall(). Required by libthr and used by thr_create(2). This implementation is so far only compile tested. But since this is also the last of the functions required to support libthr, we're now functionally complete (for some weird definition of functionally; and complete). Runtime testing can commence. Revision Changes Path 1.58 +22 -0 src/sys/ia64/ia64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 14:14:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BFA937B401; Sat, 31 May 2003 14:14:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AC3E43F75; Sat, 31 May 2003 14:14:42 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLEf0U041094; Sat, 31 May 2003 14:14:41 -0700 (PDT) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLEfVC041093; Sat, 31 May 2003 14:14:41 -0700 (PDT) Message-Id: <200305312114.h4VLEfVC041093@repoman.freebsd.org> From: Jens Schweikhardt Date: Sat, 31 May 2003 14:14:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib random.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:14:42 -0000 schweikh 2003/05/31 14:14:41 PDT FreeBSD src repository Modified files: lib/libc/stdlib random.3 Log: Fix grammar bogons. MFC after: 3 days Revision Changes Path 1.18 +2 -2 src/lib/libc/stdlib/random.3 From owner-cvs-all@FreeBSD.ORG Sat May 31 14:16:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A08F937B401; Sat, 31 May 2003 14:16:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F62943FA3; Sat, 31 May 2003 14:16:13 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLGD0U041232; Sat, 31 May 2003 14:16:13 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLGCdB041231; Sat, 31 May 2003 14:16:12 -0700 (PDT) Message-Id: <200305312116.h4VLGCdB041231@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 31 May 2003 14:16:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kern.post.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:16:15 -0000 phk 2003/05/31 14:16:12 PDT FreeBSD src repository Modified files: sys/conf kern.post.mk Log: If DESTDIR was specified as a makeoption in the kernelconfig file we want to pass it on to the modules build so we don't install the kernel under DESTDIR and the modules in /boot. Revision Changes Path 1.42 +5 -0 src/sys/conf/kern.post.mk From owner-cvs-all@FreeBSD.ORG Sat May 31 14:21:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA4037B401; Sat, 31 May 2003 14:21:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EE5F43FB1; Sat, 31 May 2003 14:21:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLLa0U041449; Sat, 31 May 2003 14:21:36 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLLaN9041448; Sat, 31 May 2003 14:21:36 -0700 (PDT) Message-Id: <200305312121.h4VLLaN9041448@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 14:21:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:21:37 -0000 marcel 2003/05/31 14:21:35 PDT FreeBSD src repository Modified files: sys/ia64/ia64 trap.c Log: Now that we have the signal trampolines in the gateway page and the gateway page is considered kernel space, we can panic when we should only SIGSEGV. Hence, add the additional constraint that for page faults we also require running with kernel privileges. The gateway page is the only kernel code running with user privileges, iso this is a correct way to exclude the gateway page from kernel land. We do not currently exclude the gateway page for other faults as it is not always the right way to do it. Further tuning will happen on a case by case bases. Revision Changes Path 1.80 +7 -1 src/sys/ia64/ia64/trap.c From owner-cvs-all@FreeBSD.ORG Sat May 31 14:29:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F24B37B401; Sat, 31 May 2003 14:29:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D20C43F85; Sat, 31 May 2003 14:29:39 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLTd0U041739; Sat, 31 May 2003 14:29:39 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLTcUH041738; Sat, 31 May 2003 14:29:38 -0700 (PDT) Message-Id: <200305312129.h4VLTcUH041738@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 31 May 2003 14:29:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:29:40 -0000 obrien 2003/05/31 14:29:38 PDT FreeBSD src repository Modified files: . Makefile.inc1 Log: Wrap gperf & groff wth NO_CXX. Revision Changes Path 1.363 +4 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Sat May 31 14:58:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35BC437B407; Sat, 31 May 2003 14:58:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA20643F93; Sat, 31 May 2003 14:58:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VLwt0U042890; Sat, 31 May 2003 14:58:55 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VLwtXL042889; Sat, 31 May 2003 14:58:55 -0700 (PDT) Message-Id: <200305312158.h4VLwtXL042889@repoman.freebsd.org> From: Peter Wemm Date: Sat, 31 May 2003 14:58:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 nexus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 21:58:56 -0000 peter 2003/05/31 14:58:55 PDT FreeBSD src repository Modified files: sys/amd64/amd64 nexus.c Log: MFi386: rev 1.50: remove unused variable Revision Changes Path 1.53 +0 -3 src/sys/amd64/amd64/nexus.c From owner-cvs-all@FreeBSD.ORG Sat May 31 15:00:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D894F37B401; Sat, 31 May 2003 15:00:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75E3C43F3F; Sat, 31 May 2003 15:00:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VM0v0U043084; Sat, 31 May 2003 15:00:57 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VM0vBw043083; Sat, 31 May 2003 15:00:57 -0700 (PDT) Message-Id: <200305312200.h4VM0vBw043083@repoman.freebsd.org> From: Peter Wemm Date: Sat, 31 May 2003 15:00:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 amd64-gdbstub.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 22:00:58 -0000 peter 2003/05/31 15:00:57 PDT FreeBSD src repository Modified files: sys/amd64/amd64 amd64-gdbstub.c Log: MFi386: rev 1.23: use gdb_strlen()/gdb_strcpy() directly. Revision Changes Path 1.24 +11 -14 src/sys/amd64/amd64/amd64-gdbstub.c From owner-cvs-all@FreeBSD.ORG Sat May 31 15:02:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BA0137B401; Sat, 31 May 2003 15:02:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C042E43F3F; Sat, 31 May 2003 15:02:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VM2B0U043169; Sat, 31 May 2003 15:02:11 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VM2BDJ043168; Sat, 31 May 2003 15:02:11 -0700 (PDT) Message-Id: <200305312202.h4VM2BDJ043168@repoman.freebsd.org> From: Peter Wemm Date: Sat, 31 May 2003 15:02:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 db_trace.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 22:02:12 -0000 peter 2003/05/31 15:02:11 PDT FreeBSD src repository Modified files: sys/amd64/amd64 db_trace.c Log: MFi386: rev 1.56: remove break after return Revision Changes Path 1.57 +2 -2 src/sys/amd64/amd64/db_trace.c From owner-cvs-all@FreeBSD.ORG Sat May 31 15:57:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D87637B401; Sat, 31 May 2003 15:57:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA2A443F75; Sat, 31 May 2003 15:57:17 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VMvH0U048711; Sat, 31 May 2003 15:57:17 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VMvHTs048710; Sat, 31 May 2003 15:57:17 -0700 (PDT) Message-Id: <200305312257.h4VMvHTs048710@repoman.freebsd.org> From: Robert Watson Date: Sat, 31 May 2003 15:57:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/sys/security/mac_biba mac_biba.csrc/sys/security/mac_mls mac_mls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 22:57:18 -0000 rwatson 2003/05/31 15:57:17 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) sys/security/mac_biba mac_biba.c sys/security/mac_mls mac_mls.c Log: Merge from HEAD to RELENG_5_1 (MFC?): Use sbufs to construct Biba and MLS externalized labels rather than C strings. (mac_biba.c:1.60, mac_mls.c:1.48) Approved by: re (scottl) Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.59.2.1 +49 -52 src/sys/security/mac_biba/mac_biba.c 1.47.2.1 +50 -53 src/sys/security/mac_mls/mac_mls.c From owner-cvs-all@FreeBSD.ORG Sat May 31 16:17:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E84B337B401; Sat, 31 May 2003 16:17:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8628D43F85; Sat, 31 May 2003 16:17:30 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VNHU0U050427; Sat, 31 May 2003 16:17:30 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VNHU6U050426; Sat, 31 May 2003 16:17:30 -0700 (PDT) Message-Id: <200305312317.h4VNHU6U050426@repoman.freebsd.org> From: Robert Watson Date: Sat, 31 May 2003 16:17:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sysv_ipc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:17:31 -0000 rwatson 2003/05/31 16:17:30 PDT FreeBSD src repository Modified files: sys/kern sysv_ipc.c Log: Attempt to marginally de-obfuscate sections of the System V IPC access control logic. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.25 +7 -2 src/sys/kern/sysv_ipc.c From owner-cvs-all@FreeBSD.ORG Sat May 31 16:31:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1332D37B401; Sat, 31 May 2003 16:31:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3D9143F85; Sat, 31 May 2003 16:31:51 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VNVp0U051061; Sat, 31 May 2003 16:31:51 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VNVptt051060; Sat, 31 May 2003 16:31:51 -0700 (PDT) Message-Id: <200305312331.h4VNVptt051060@repoman.freebsd.org> From: Robert Watson Date: Sat, 31 May 2003 16:31:51 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sysv_ipc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:31:52 -0000 rwatson 2003/05/31 16:31:51 PDT FreeBSD src repository Modified files: sys/kern sysv_ipc.c Log: Attempt to further comment and clarify System V IPC logic: document why certain exceptions are made, note an inconsistency between FreeBSD and some other implementations regarding IPC_M, and let suser() generate our EPERM rather than forcing it ourselves. Remove a carriage return that crept in in the last commit. Reviewed by: gordon Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.26 +24 -9 src/sys/kern/sysv_ipc.c From owner-cvs-all@FreeBSD.ORG Sat May 31 16:38:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F47737B405; Sat, 31 May 2003 16:38:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6D3B43F85; Sat, 31 May 2003 16:38:16 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VNcG0U051305; Sat, 31 May 2003 16:38:16 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VNcG4n051304; Sat, 31 May 2003 16:38:16 -0700 (PDT) Message-Id: <200305312338.h4VNcG4n051304@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 16:38:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/libpam Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:38:18 -0000 des 2003/05/31 16:38:16 PDT FreeBSD src repository Modified files: lib/libpam/libpam Makefile Log: Don't build pam_std_option(). Revision Changes Path 1.45 +1 -2 src/lib/libpam/libpam/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 16:43:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8917937B401; Sat, 31 May 2003 16:43:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DAE543F93; Sat, 31 May 2003 16:43:54 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VNhs0U051554; Sat, 31 May 2003 16:43:54 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VNhrBW051553; Sat, 31 May 2003 16:43:53 -0700 (PDT) Message-Id: <200305312343.h4VNhrBW051553@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 31 May 2003 16:43:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports INDEX-5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:43:55 -0000 kris 2003/05/31 16:43:53 PDT FreeBSD ports repository Modified files: . INDEX-5 Log: _Bughunter_ (with apologies to Front 242) Dedicated to Alan L. Cox. o/~ Freeze! Send SIGKILL or die! This page is unclaimed, it's alone and anonymous, But written in the code it's got the marks of a genius. I'm locking down this RAM, to share it with other RAM, To share it with other RAM, on 10 CPUs at least. I'm locking down this RAM, I know the rules of the game. I'm able to rewrite them to realize our aim: I'm locking down this RAM to make us rich and famous! One: you lock the mutex, Two: you cache some files, Three: you download from the net, and Four: you crash VM! You crash VM! o/~ This is the INDEX for 5.1, with 8691 ports. Revision Changes Path 1.9 +3937 -3878 ports/INDEX-5 From owner-cvs-all@FreeBSD.ORG Sat May 31 16:53:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 692D537B401; Sat, 31 May 2003 16:53:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC75143F75; Sat, 31 May 2003 16:53:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4VNqx0U057001; Sat, 31 May 2003 16:52:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4VNqwlE057000; Sat, 31 May 2003 16:52:58 -0700 (PDT) Message-Id: <200305312352.h4VNqwlE057000@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 31 May 2003 16:52:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT avail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:53:02 -0000 kris 2003/05/31 16:52:58 PDT FreeBSD ports repository Modified files: . avail Log: Remove lock on ports tree. Ports are now unfrozen, but as usual please avoid large-scale changes until 5.1-R goes out the door. Revision Changes Path 1.205 +1 -1 CVSROOT/avail From owner-cvs-all@FreeBSD.ORG Sat May 31 17:05:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C112D37B401; Sat, 31 May 2003 17:05:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69CE43F85; Sat, 31 May 2003 17:05:11 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5105B0U058377; Sat, 31 May 2003 17:05:11 -0700 (PDT) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5105BVs058376; Sat, 31 May 2003 17:05:11 -0700 (PDT) Message-Id: <200306010005.h5105BVs058376@repoman.freebsd.org> From: Foxfair Hu Date: Sat, 31 May 2003 17:05:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/pike72 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:05:15 -0000 foxfair 2003/05/31 17:05:11 PDT FreeBSD ports repository Modified files: lang/pike72 Makefile Log: PR: 52611 Submitted by: MAINTAINER Fixing detection of pdflib.so.5 since it has changed from ports/pdflib4 to ports/pdflib. Revision Changes Path 1.18 +3 -3 ports/lang/pike72/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 17:05:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0337F37B401; Sat, 31 May 2003 17:05:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 951DB43F3F; Sat, 31 May 2003 17:05:35 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5105Z0U058478; Sat, 31 May 2003 17:05:35 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5105YsG058477; Sat, 31 May 2003 17:05:34 -0700 (PDT) Message-Id: <200306010005.h5105YsG058477@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:05:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mplayer-plugin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:05:36 -0000 marcus 2003/05/31 17:05:34 PDT FreeBSD ports repository Modified files: www/mplayer-plugin Makefile distinfo Log: Update to 0.80. Revision Changes Path 1.7 +1 -2 ports/www/mplayer-plugin/Makefile 1.6 +1 -1 ports/www/mplayer-plugin/distinfo From owner-cvs-all@FreeBSD.ORG Sat May 31 17:09:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53C3F37B401; Sat, 31 May 2003 17:09:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCB6643F85; Sat, 31 May 2003 17:09:09 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510990U058656; Sat, 31 May 2003 17:09:09 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h51099DP058655; Sat, 31 May 2003 17:09:09 -0700 (PDT) Message-Id: <200306010009.h51099DP058655@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:09:09 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/libgtkhtml Makefileports/www/libgtkhtml/files patch-libgtkhtml_util_htmlatomlist.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:09:10 -0000 marcus 2003/05/31 17:09:09 PDT FreeBSD ports repository Modified files: www/libgtkhtml Makefile Added files: www/libgtkhtml/files patch-libgtkhtml_util_htmlatomlist.c Log: Fix a 64-bit bigendian problem that kept HTML pages from rending correctly on Sparc64. Reported by: kris Revision Changes Path 1.62 +2 -1 ports/www/libgtkhtml/Makefile 1.1 +25 -0 ports/www/libgtkhtml/files/patch-libgtkhtml_util_htmlatomlist.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 17:09:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8981437B401; Sat, 31 May 2003 17:09:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36AAE43F93; Sat, 31 May 2003 17:09:43 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5109h0U058708; Sat, 31 May 2003 17:09:43 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5109gZP058707; Sat, 31 May 2003 17:09:42 -0700 (PDT) Message-Id: <200306010009.h5109gZP058707@repoman.freebsd.org> From: Hye-Shik Chang Date: Sat, 31 May 2003 17:09:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile distinfo pkg-plist ports/www/apache2/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:09:43 -0000 perky 2003/05/31 17:09:42 PDT FreeBSD ports repository Modified files: www/apache2 Makefile distinfo pkg-plist www/apache2/files patch-configure Log: [SECURITY FIX] Update to 2.0.46 See vulnerability details at: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0245 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0189 PR: 52768 [1] Submitted by: Xin Li [1], Miguel Mendez , Trevor Johnson , Mark Gooderum , John Walsh Revision Changes Path 1.142 +2 -2 ports/www/apache2/Makefile 1.56 +1 -1 ports/www/apache2/distinfo 1.9 +13 -13 ports/www/apache2/files/patch-configure 1.53 +354 -48 ports/www/apache2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:15:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36F5F37B401; Sat, 31 May 2003 17:15:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C25A143F3F; Sat, 31 May 2003 17:14:59 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Ex0U058975; Sat, 31 May 2003 17:14:59 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510Ext7058974; Sat, 31 May 2003 17:14:59 -0700 (PDT) Message-Id: <200306010014.h510Ext7058974@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:14:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gal2 Makefile distinfo pkg-plist ports/x11-toolkits/gal2/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:15:00 -0000 marcus 2003/05/31 17:14:59 PDT FreeBSD ports repository Modified files: x11-toolkits/gal2 Makefile distinfo pkg-plist x11-toolkits/gal2/files patch-ab Log: Update to 1.99.6. Revision Changes Path 1.45 +2 -2 ports/x11-toolkits/gal2/Makefile 1.32 +1 -1 ports/x11-toolkits/gal2/distinfo 1.6 +6 -6 ports/x11-toolkits/gal2/files/patch-ab 1.23 +3 -1 ports/x11-toolkits/gal2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:16:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62D6337B404; Sat, 31 May 2003 17:16:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A9D43FA3; Sat, 31 May 2003 17:16:07 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510G70U059082; Sat, 31 May 2003 17:16:07 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510G7Mw059081; Sat, 31 May 2003 17:16:07 -0700 (PDT) Message-Id: <200306010016.h510G7Mw059081@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:16:07 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:16:08 -0000 marcus 2003/05/31 17:16:07 PDT FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Chase gal2's shared lib version. Revision Changes Path 1.36 +2 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Sat May 31 17:17:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 143A937B401; Sat, 31 May 2003 17:17:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3C4043F85; Sat, 31 May 2003 17:17:39 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Hd0U059132; Sat, 31 May 2003 17:17:39 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510HdDd059131; Sat, 31 May 2003 17:17:39 -0700 (PDT) Message-Id: <200306010017.h510HdDd059131@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:17:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gnome-themes Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:17:40 -0000 marcus 2003/05/31 17:17:39 PDT FreeBSD ports repository Modified files: x11-toolkits/gnome-themes Makefile distinfo pkg-plist Log: Update to 2.2.2. Submitted by: adamw Revision Changes Path 1.10 +1 -2 ports/x11-toolkits/gnome-themes/Makefile 1.7 +1 -1 ports/x11-toolkits/gnome-themes/distinfo 1.6 +4 -0 ports/x11-toolkits/gnome-themes/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:18:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37B4837B401; Sat, 31 May 2003 17:18:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8F8143FA3; Sat, 31 May 2003 17:18:42 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Ig0U059182; Sat, 31 May 2003 17:18:42 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510IgeB059181; Sat, 31 May 2003 17:18:42 -0700 (PDT) Message-Id: <200306010018.h510IgeB059181@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:18:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk--2 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:18:43 -0000 marcus 2003/05/31 17:18:42 PDT FreeBSD ports repository Modified files: x11-toolkits/gtk--2 Makefile distinfo Log: Update to 2.2.3. Revision Changes Path 1.54 +1 -1 ports/x11-toolkits/gtk--2/Makefile 1.21 +1 -1 ports/x11-toolkits/gtk--2/distinfo From owner-cvs-all@FreeBSD.ORG Sat May 31 17:26:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8B9037B401; Sat, 31 May 2003 17:26:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B10043F3F; Sat, 31 May 2003 17:26:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510QM0U060282; Sat, 31 May 2003 17:26:22 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510QLom060281; Sat, 31 May 2003 17:26:21 -0700 (PDT) Message-Id: <200306010026.h510QLom060281@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:26:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:26:23 -0000 marcus 2003/05/31 17:26:21 PDT FreeBSD ports repository Modified files: . access Log: Add scrappy to ports access list. Revision Changes Path 1.545 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat May 31 17:26:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C7DE37B404; Sat, 31 May 2003 17:26:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D24E43F3F; Sat, 31 May 2003 17:26:53 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Qr0U060321; Sat, 31 May 2003 17:26:53 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510QrXK060320; Sat, 31 May 2003 17:26:53 -0700 (PDT) Message-Id: <200306010026.h510QrXK060320@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:26:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access.unclassified X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:26:56 -0000 marcus 2003/05/31 17:26:53 PDT FreeBSD src repository (doc,ports committer) Modified files: . access.unclassified Log: Remove scrappy after being added to the ports access list. Revision Changes Path 1.641 +0 -1 CVSROOT/access.unclassified From owner-cvs-all@FreeBSD.ORG Sat May 31 17:30:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9458237B401; Sat, 31 May 2003 17:30:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D6B43F85; Sat, 31 May 2003 17:30:05 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510U50U060464; Sat, 31 May 2003 17:30:05 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510U50P060463; Sat, 31 May 2003 17:30:05 -0700 (PDT) Message-Id: <200306010030.h510U50P060463@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:30:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/rep-gtk2 Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:30:07 -0000 marcus 2003/05/31 17:30:05 PDT FreeBSD ports repository Modified files: x11-toolkits/rep-gtk2 Makefile pkg-descr pkg-plist Log: * Make GNOME support optional [1] * Update the pkg-descr to be more inline with the COMMENT Requested by: obraun Revision Changes Path 1.45 +18 -8 ports/x11-toolkits/rep-gtk2/Makefile 1.3 +1 -1 ports/x11-toolkits/rep-gtk2/pkg-descr 1.12 +6 -6 ports/x11-toolkits/rep-gtk2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:31:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 792B337B401; Sat, 31 May 2003 17:31:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14C4443F3F; Sat, 31 May 2003 17:31:47 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Vk0U060613; Sat, 31 May 2003 17:31:46 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510VkhQ060612; Sat, 31 May 2003 17:31:46 -0700 (PDT) Message-Id: <200306010031.h510VkhQ060612@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:31:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/libgda2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:31:47 -0000 marcus 2003/05/31 17:31:46 PDT FreeBSD ports repository Modified files: databases/libgda2 Makefile distinfo pkg-plist Log: Update to 0.12.0. Revision Changes Path 1.40 +13 -13 ports/databases/libgda2/Makefile 1.20 +1 -1 ports/databases/libgda2/distinfo 1.22 +9 -10 ports/databases/libgda2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:32:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9C4337B401; Sat, 31 May 2003 17:32:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7687243F85; Sat, 31 May 2003 17:32:01 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510W10U060652; Sat, 31 May 2003 17:32:01 -0700 (PDT) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510W1UH060651; Sat, 31 May 2003 17:32:01 -0700 (PDT) Message-Id: <200306010032.h510W1UH060651@repoman.freebsd.org> From: Foxfair Hu Date: Sat, 31 May 2003 17:32:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/saint Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:32:02 -0000 foxfair 2003/05/31 17:32:01 PDT FreeBSD ports repository Modified files: security/saint Makefile distinfo pkg-plist Log: PR: 42509 (originally) Submitted by: Nicolas Jombart Update saint to 3.5.8, minor update according to PR 42509 was made by foxfair@ (hey it is me). Restrict the distribution of saint's distfile or package. Revision Changes Path 1.30 +10 -4 ports/security/saint/Makefile 1.23 +1 -1 ports/security/saint/distinfo 1.23 +25 -0 ports/security/saint/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:32:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F1CD37B429; Sat, 31 May 2003 17:32:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F20243F85; Sat, 31 May 2003 17:32:04 -0700 (PDT) (envelope-from gordon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510W40U060679; Sat, 31 May 2003 17:32:04 -0700 (PDT) (envelope-from gordon@repoman.freebsd.org) Received: (from gordon@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510W4lk060678; Sat, 31 May 2003 17:32:04 -0700 (PDT) Message-Id: <200306010032.h510W4lk060678@repoman.freebsd.org> From: Gordon Tetlow Date: Sat, 31 May 2003 17:32:04 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d mountcritlocal X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:32:06 -0000 gordon 2003/05/31 17:32:04 PDT FreeBSD src repository Modified files: etc/rc.d mountcritlocal Log: nwfs is network filesystem. Treat it as such when mounting filesystems. Revision Changes Path 1.4 +1 -1 src/etc/rc.d/mountcritlocal From owner-cvs-all@FreeBSD.ORG Sat May 31 17:32:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27BFF37B401; Sat, 31 May 2003 17:32:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCF5143F75; Sat, 31 May 2003 17:32:21 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510WL0U060713; Sat, 31 May 2003 17:32:21 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510WLW7060712; Sat, 31 May 2003 17:32:21 -0700 (PDT) Message-Id: <200306010032.h510WLW7060712@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 31 May 2003 17:32:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:32:22 -0000 marcel 2003/05/31 17:32:21 PDT FreeBSD src repository Modified files: lib Makefile Log: Build libthr by default on ia64. Revision Changes Path 1.159 +6 -0 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 17:32:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFF0637B401; Sat, 31 May 2003 17:32:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFA843FA3; Sat, 31 May 2003 17:32:23 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510WN0U060739; Sat, 31 May 2003 17:32:23 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510WNDO060738; Sat, 31 May 2003 17:32:23 -0700 (PDT) Message-Id: <200306010032.h510WNDO060738@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:32:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:32:26 -0000 marcus 2003/05/31 17:32:23 PDT FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Chase the libgda2 shared lib version. Revision Changes Path 1.37 +2 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Sat May 31 17:33:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 516BC37B405; Sat, 31 May 2003 17:33:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2CE843F75; Sat, 31 May 2003 17:33:20 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510XK0U060787; Sat, 31 May 2003 17:33:20 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510XKG7060786; Sat, 31 May 2003 17:33:20 -0700 (PDT) Message-Id: <200306010033.h510XKG7060786@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:33:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/libgnomedb Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:33:21 -0000 marcus 2003/05/31 17:33:20 PDT FreeBSD ports repository Modified files: databases/libgnomedb Makefile distinfo pkg-plist Log: Update to 0.12.0. Revision Changes Path 1.15 +3 -4 ports/databases/libgnomedb/Makefile 1.8 +1 -1 ports/databases/libgnomedb/distinfo 1.9 +4 -1 ports/databases/libgnomedb/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:34:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E3C737B401; Sat, 31 May 2003 17:34:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABA843F75; Sat, 31 May 2003 17:34:12 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510YC0U060847; Sat, 31 May 2003 17:34:12 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510YCB9060846; Sat, 31 May 2003 17:34:12 -0700 (PDT) Message-Id: <200306010034.h510YCB9060846@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:34:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/mergeant Makefile distinfo pkg-plist ports/databases/mergeant/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:34:13 -0000 marcus 2003/05/31 17:34:12 PDT FreeBSD ports repository Modified files: databases/mergeant Makefile distinfo pkg-plist databases/mergeant/files patch-configure Log: Update to 0.12.0. Revision Changes Path 1.11 +4 -4 ports/databases/mergeant/Makefile 1.6 +1 -1 ports/databases/mergeant/distinfo 1.4 +4 -4 ports/databases/mergeant/files/patch-configure 1.8 +48 -4 ports/databases/mergeant/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:34:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C1A37B401; Sat, 31 May 2003 17:34:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64CC943F75; Sat, 31 May 2003 17:34:38 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510Yc0U060886; Sat, 31 May 2003 17:34:38 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510YcmG060885; Sat, 31 May 2003 17:34:38 -0700 (PDT) Message-Id: <200306010034.h510YcmG060885@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 31 May 2003 17:34:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/pam.d README X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:34:39 -0000 des 2003/05/31 17:34:38 PDT FreeBSD src repository Modified files: etc/pam.d README Log: Try to describe the control flags a little better. Revision Changes Path 1.4 +5 -3 src/etc/pam.d/README From owner-cvs-all@FreeBSD.ORG Sat May 31 17:37:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F19E37B401; Sat, 31 May 2003 17:37:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46E0743F3F; Sat, 31 May 2003 17:37:11 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510bA0U061058; Sat, 31 May 2003 17:37:10 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510bA2j061057; Sat, 31 May 2003 17:37:10 -0700 (PDT) Message-Id: <200306010037.h510bA2j061057@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:37:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/bonobo-activation Makefile distinfo patch-idl_Bonobo_GenericFactory.idl patch-server::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:37:12 -0000 marcus 2003/05/31 17:37:10 PDT FreeBSD ports repository Modified files: devel/bonobo-activation Makefile distinfo pkg-plist devel/bonobo-activation/files patch-server::Makefile.in Removed files: devel/bonobo-activation/files patch-idl_Bonobo_GenericFactory.idl Log: Update to 2.2.2. Revision Changes Path 1.36 +2 -3 ports/devel/bonobo-activation/Makefile 1.16 +1 -1 ports/devel/bonobo-activation/distinfo 1.2 +0 -8 ports/devel/bonobo-activation/files/patch-idl_Bonobo_GenericFactory.idl (dead) 1.8 +11 -11 ports/devel/bonobo-activation/files/patch-server::Makefile.in 1.13 +5 -0 ports/devel/bonobo-activation/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:39:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CF4437B401; Sat, 31 May 2003 17:39:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BF7843F3F; Sat, 31 May 2003 17:39:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510dM0U061157; Sat, 31 May 2003 17:39:22 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510dLTY061156; Sat, 31 May 2003 17:39:21 -0700 (PDT) Message-Id: <200306010039.h510dLTY061156@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:39:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libIDL Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:39:23 -0000 marcus 2003/05/31 17:39:21 PDT FreeBSD ports repository Modified files: devel/libIDL Makefile distinfo Log: Update to 0.8.2. Submitted by: adamw Revision Changes Path 1.24 +1 -1 ports/devel/libIDL/Makefile 1.5 +1 -1 ports/devel/libIDL/distinfo From owner-cvs-all@FreeBSD.ORG Sat May 31 17:41:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C279437B401; Sat, 31 May 2003 17:41:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC0C43F3F; Sat, 31 May 2003 17:41:06 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510f60U061340; Sat, 31 May 2003 17:41:06 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510f6Yd061339; Sat, 31 May 2003 17:41:06 -0700 (PDT) Message-Id: <200306010041.h510f6Yd061339@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:41:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libsoup Makefile distinfo ports/devel/libsoup/files patch-libsoup_soup_message.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:41:07 -0000 marcus 2003/05/31 17:41:06 PDT FreeBSD ports repository Modified files: devel/libsoup Makefile distinfo Removed files: devel/libsoup/files patch-libsoup_soup_message.c Log: Update to 1.99.22. Revision Changes Path 1.13 +2 -2 ports/devel/libsoup/Makefile 1.7 +1 -1 ports/devel/libsoup/distinfo 1.2 +0 -20 ports/devel/libsoup/files/patch-libsoup_soup_message.c (dead) From owner-cvs-all@FreeBSD.ORG Sat May 31 17:43:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E427D37B401; Sat, 31 May 2003 17:43:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E0C643F93; Sat, 31 May 2003 17:43:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510hf0U061495; Sat, 31 May 2003 17:43:41 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510hfbC061494; Sat, 31 May 2003 17:43:41 -0700 (PDT) Message-Id: <200306010043.h510hfbC061494@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:43:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/nspr Makefile ports/devel/nspr/files patch-nspr-unix.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:43:42 -0000 marcus 2003/05/31 17:43:41 PDT FreeBSD ports repository Modified files: devel/nspr Makefile Added files: devel/nspr/files patch-nspr-unix.c Log: Fix a bad assumption about socklen_t presence that was causing problems on 64-bit platforms. Submitted by: tmm Revision Changes Path 1.11 +1 -1 ports/devel/nspr/Makefile 1.1 +21 -0 ports/devel/nspr/files/patch-nspr-unix.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 17:45:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B005437B401; Sat, 31 May 2003 17:45:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F57D43F3F; Sat, 31 May 2003 17:45:21 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510jL0U061623; Sat, 31 May 2003 17:45:21 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510jL9p061622; Sat, 31 May 2003 17:45:21 -0700 (PDT) Message-Id: <200306010045.h510jL9p061622@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:45:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/gnucash Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:45:27 -0000 marcus 2003/05/31 17:45:21 PDT FreeBSD ports repository Modified files: finance/gnucash Makefile distinfo pkg-plist Log: * Update to 1.8.4 * Use ${SITE_PERL}, defined in bsd.port.mk. [1] Submitted by: adamw Revision Changes Path 1.63 +6 -8 ports/finance/gnucash/Makefile 1.24 +1 -1 ports/finance/gnucash/distinfo 1.25 +2 -0 ports/finance/gnucash/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:48:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F44537B401; Sat, 31 May 2003 17:48:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9277743F75; Sat, 31 May 2003 17:48:04 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510m40U061795; Sat, 31 May 2003 17:48:04 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510m4RZ061794; Sat, 31 May 2003 17:48:04 -0700 (PDT) Message-Id: <200306010048.h510m4RZ061794@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:48:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/gnomegames2 Makefile pkg-plist patch-gnect_src_prefs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:48:05 -0000 marcus 2003/05/31 17:48:04 PDT FreeBSD ports repository Modified files: games/gnomegames2 Makefile pkg-plist Added files: games/gnomegames2/files patch-gnect_data_Makefile.in patch-gnect_src_prefs.c Log: Make sure gnect's GConf schemas get installed. This lets gnect work again. Reported by: kris Revision Changes Path 1.65 +3 -3 ports/games/gnomegames2/Makefile 1.1 +30 -0 ports/games/gnomegames2/files/patch-gnect_data_Makefile.in (new) 1.1 +51 -0 ports/games/gnomegames2/files/patch-gnect_src_prefs.c (new) 1.33 +4 -4 ports/games/gnomegames2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:50:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C5BE37B401; Sat, 31 May 2003 17:50:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB7EA43F75; Sat, 31 May 2003 17:50:03 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510o20U061868; Sat, 31 May 2003 17:50:02 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510o2Ya061867; Sat, 31 May 2003 17:50:02 -0700 (PDT) Message-Id: <200306010050.h510o2Ya061867@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:50:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/guile/files patch-libguile___scm.h patch-libguile_gc_os_dep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:50:05 -0000 marcus 2003/05/31 17:50:02 PDT FreeBSD ports repository Modified files: lang/guile/files patch-libguile_gc_os_dep.c Added files: lang/guile/files patch-libguile___scm.h Log: Fix build on Sparc64. Reported by: kris Revision Changes Path 1.1 +12 -0 ports/lang/guile/files/patch-libguile___scm.h (new) 1.4 +9 -6 ports/lang/guile/files/patch-libguile_gc_os_dep.c From owner-cvs-all@FreeBSD.ORG Sat May 31 17:51:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 956EB37B401; Sat, 31 May 2003 17:51:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E42B43F3F; Sat, 31 May 2003 17:51:03 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510p20U062063; Sat, 31 May 2003 17:51:02 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510p276062062; Sat, 31 May 2003 17:51:02 -0700 (PDT) Message-Id: <200306010051.h510p276062062@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:51:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/librep Makefile distinfo ports/lang/librep/files patch-src_numbers.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:51:04 -0000 marcus 2003/05/31 17:51:02 PDT FreeBSD ports repository Modified files: lang/librep Makefile distinfo Added files: lang/librep/files patch-src_numbers.c Log: Update to 0.16.2. Revision Changes Path 1.44 +1 -5 ports/lang/librep/Makefile 1.24 +1 -1 ports/lang/librep/distinfo 1.1 +22 -0 ports/lang/librep/files/patch-src_numbers.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 17:52:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE14F37B401; Sat, 31 May 2003 17:52:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7F743F3F; Sat, 31 May 2003 17:52:20 -0700 (PDT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510qK0U062113; Sat, 31 May 2003 17:52:20 -0700 (PDT) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510qJK1062112; Sat, 31 May 2003 17:52:19 -0700 (PDT) Message-Id: <200306010052.h510qJK1062112@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 31 May 2003 17:52:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/cvsync Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:52:21 -0000 naddy 2003/05/31 17:52:19 PDT FreeBSD ports repository Modified files: net/cvsync Makefile distinfo Log: Update to 0.21.1: Fix a well known problem to fail to update the file with the same name but a different type. PR: 52667 Submitted by: hrs@ Revision Changes Path 1.13 +1 -1 ports/net/cvsync/Makefile 1.13 +1 -1 ports/net/cvsync/distinfo From owner-cvs-all@FreeBSD.ORG Sat May 31 17:52:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9AA137B401; Sat, 31 May 2003 17:52:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E7B43F3F; Sat, 31 May 2003 17:52:50 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510qo0U062173; Sat, 31 May 2003 17:52:50 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510qnYx062172; Sat, 31 May 2003 17:52:49 -0700 (PDT) Message-Id: <200306010052.h510qnYx062172@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:52:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/balsa2 Makefile ports/mail/balsa2/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:52:51 -0000 marcus 2003/05/31 17:52:49 PDT FreeBSD ports repository Modified files: mail/balsa2 Makefile Added files: mail/balsa2/files patch-ltmain.sh Log: Fix the dreaded thread problem on -CURRENT. Revision Changes Path 1.78 +2 -2 ports/mail/balsa2/Makefile 1.6 +51 -0 ports/mail/balsa2/files/patch-ltmain.sh (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 17:56:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 001B837B401; Sat, 31 May 2003 17:56:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6986A43F93; Sat, 31 May 2003 17:56:53 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510ur0U062379; Sat, 31 May 2003 17:56:53 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510urbu062378; Sat, 31 May 2003 17:56:53 -0700 (PDT) Message-Id: <200306010056.h510urbu062378@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:56:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/evolution-devel Makefile distinfo pkg-plist patch-mail_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:56:54 -0000 marcus 2003/05/31 17:56:53 PDT FreeBSD ports repository Modified files: mail/evolution-devel Makefile distinfo pkg-plist mail/evolution-devel/files patch-ltmain.sh Added files: mail/evolution-devel/files patch-mail_Makefile.in Log: * Update to 1.3.92 (a.k.a. release candidate 1) * Install the Mail apps GConf schemas * s/find/${FIND}/g s/xargs/${XARGS}/g [1] Submitted by: adamw [1] Revision Changes Path 1.84 +4 -7 ports/mail/evolution-devel/Makefile 1.34 +1 -1 ports/mail/evolution-devel/distinfo 1.9 +15 -6 ports/mail/evolution-devel/files/patch-ltmain.sh 1.1 +21 -0 ports/mail/evolution-devel/files/patch-mail_Makefile.in (new) 1.39 +46 -3 ports/mail/evolution-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 17:58:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B1D237B407; Sat, 31 May 2003 17:58:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71B7543FAF; Sat, 31 May 2003 17:58:32 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510wW0U062458; Sat, 31 May 2003 17:58:32 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510wV7I062457; Sat, 31 May 2003 17:58:31 -0700 (PDT) Message-Id: <200306010058.h510wV7I062457@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:58:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gnomeutils2 Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:58:34 -0000 marcus 2003/05/31 17:58:31 PDT FreeBSD ports repository Modified files: misc/gnomeutils2 Makefile distinfo pkg-descr Log: * Update to 2.2.3 * Make the description more descriptive [1] Submitted by: adamw [1] Revision Changes Path 1.64 +2 -2 ports/misc/gnomeutils2/Makefile 1.34 +1 -1 ports/misc/gnomeutils2/distinfo 1.3 +3 -1 ports/misc/gnomeutils2/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat May 31 17:59:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A9C937B401; Sat, 31 May 2003 17:59:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAFC043F93; Sat, 31 May 2003 17:59:31 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h510xV0U062534; Sat, 31 May 2003 17:59:31 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h510xVaN062533; Sat, 31 May 2003 17:59:31 -0700 (PDT) Message-Id: <200306010059.h510xVaN062533@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 17:59:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/gcalctool Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 00:59:32 -0000 marcus 2003/05/31 17:59:31 PDT FreeBSD ports repository Modified files: math/gcalctool Makefile distinfo pkg-plist Log: Update to 4.2.86. Revision Changes Path 1.12 +3 -3 ports/math/gcalctool/Makefile 1.6 +1 -1 ports/math/gcalctool/distinfo 1.6 +3 -0 ports/math/gcalctool/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:01:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D27037B401; Sat, 31 May 2003 18:01:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0B1243F93; Sat, 31 May 2003 18:01:15 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5111F0U062686; Sat, 31 May 2003 18:01:15 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5111FcP062685; Sat, 31 May 2003 18:01:15 -0700 (PDT) Message-Id: <200306010101.h5111FcP062685@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:01:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/gnumeric2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:01:16 -0000 marcus 2003/05/31 18:01:15 PDT FreeBSD ports repository Modified files: math/gnumeric2 Makefile Log: Make sure the Bonobo server file points to the correct component location. Revision Changes Path 1.105 +2 -0 ports/math/gnumeric2/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 18:02:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD73D37B401; Sat, 31 May 2003 18:02:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B2E43F3F; Sat, 31 May 2003 18:02:31 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5112V0U062771; Sat, 31 May 2003 18:02:31 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5112U7Y062770; Sat, 31 May 2003 18:02:30 -0700 (PDT) Message-Id: <200306010102.h5112U7Y062770@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:02:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gabber Makefile distinfo pkg-plist ports/net/gabber/files patch-an X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:02:32 -0000 marcus 2003/05/31 18:02:30 PDT FreeBSD ports repository Modified files: net/gabber Makefile distinfo pkg-plist Removed files: net/gabber/files patch-an Log: Update to 0.8.8. Revision Changes Path 1.31 +7 -6 ports/net/gabber/Makefile 1.8 +1 -1 ports/net/gabber/distinfo 1.4 +0 -23 ports/net/gabber/files/patch-an (dead) 1.9 +21 -28 ports/net/gabber/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:03:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCBF837B401; Sat, 31 May 2003 18:03:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6952F43F85; Sat, 31 May 2003 18:03:32 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5113W0U063770; Sat, 31 May 2003 18:03:32 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5113W6k063769; Sat, 31 May 2003 18:03:32 -0700 (PDT) Message-Id: <200306010103.h5113W6k063769@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:03:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:03:33 -0000 marcus 2003/05/31 18:03:32 PDT FreeBSD ports repository Modified files: net/gaim Makefile distinfo pkg-plist Log: Update to 0.64. Revision Changes Path 1.99 +1 -1 ports/net/gaim/Makefile 1.63 +1 -1 ports/net/gaim/distinfo 1.44 +1 -0 ports/net/gaim/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:04:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05ABB37B401; Sat, 31 May 2003 18:04:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9429143F85; Sat, 31 May 2003 18:04:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5114f0U063816; Sat, 31 May 2003 18:04:41 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5114fB6063815; Sat, 31 May 2003 18:04:41 -0700 (PDT) Message-Id: <200306010104.h5114fB6063815@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:04:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/gnomespell-devel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:04:42 -0000 marcus 2003/05/31 18:04:41 PDT FreeBSD ports repository Modified files: textproc/gnomespell-devel Makefile distinfo pkg-plist Log: Update to 1.0.4. Revision Changes Path 1.14 +2 -3 ports/textproc/gnomespell-devel/Makefile 1.5 +1 -1 ports/textproc/gnomespell-devel/distinfo 1.5 +2 -0 ports/textproc/gnomespell-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:05:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAC0937B401; Sat, 31 May 2003 18:05:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45E7243F85; Sat, 31 May 2003 18:05:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5115e0U063928; Sat, 31 May 2003 18:05:40 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5115emL063927; Sat, 31 May 2003 18:05:40 -0700 (PDT) Message-Id: <200306010105.h5115emL063927@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:05:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gabber Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:05:42 -0000 marcus 2003/05/31 18:05:40 PDT FreeBSD ports repository Modified files: net/gabber Makefile Log: Don't include bsd.port.pre.mk AND bsd.port.mk. Hit upside the head by: FreshPorts Revision Changes Path 1.32 +1 -1 ports/net/gabber/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 18:07:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B2A737B401; Sat, 31 May 2003 18:07:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 797FB43F85; Sat, 31 May 2003 18:07:00 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511700U063998; Sat, 31 May 2003 18:07:00 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h51170re063995; Sat, 31 May 2003 18:07:00 -0700 (PDT) Message-Id: <200306010107.h51170re063995@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:07:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/gtkhtml3 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:07:01 -0000 marcus 2003/05/31 18:07:00 PDT FreeBSD ports repository Modified files: www/gtkhtml3 Makefile distinfo pkg-plist Log: Update to 3.0.4. Revision Changes Path 1.62 +1 -2 ports/www/gtkhtml3/Makefile 1.26 +1 -1 ports/www/gtkhtml3/distinfo 1.28 +2 -2 ports/www/gtkhtml3/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:08:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CC0D37B401; Sat, 31 May 2003 18:08:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2482643F75; Sat, 31 May 2003 18:08:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5118S0U064071; Sat, 31 May 2003 18:08:28 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5118SRV064070; Sat, 31 May 2003 18:08:28 -0700 (PDT) Message-Id: <200306010108.h5118SRV064070@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:08:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/libgnome Makefile distinfo pkg-plist patch-help-converters::gnome-vfs-module::Makefile.in patch-libgnome::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:08:29 -0000 marcus 2003/05/31 18:08:28 PDT FreeBSD ports repository Modified files: x11/libgnome Makefile distinfo pkg-plist x11/libgnome/files patch-help-converters::gnome-vfs-module::Makefile.in patch-libgnome::Makefile.in Log: Update to 2.2.1. Revision Changes Path 1.123 +2 -2 ports/x11/libgnome/Makefile 1.53 +1 -1 ports/x11/libgnome/distinfo 1.4 +6 -10 ports/x11/libgnome/files/patch-help-converters::gnome-vfs-module::Makefile.in 1.5 +9 -9 ports/x11/libgnome/files/patch-libgnome::Makefile.in 1.48 +5 -0 ports/x11/libgnome/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat May 31 18:09:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FAB837B401; Sat, 31 May 2003 18:09:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC7E843F75; Sat, 31 May 2003 18:09:33 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5119X0U064134; Sat, 31 May 2003 18:09:33 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5119XDX064133; Sat, 31 May 2003 18:09:33 -0700 (PDT) Message-Id: <200306010109.h5119XDX064133@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:09:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/metacity Makefileports/x11-wm/metacity/files patch-src_theme-parser.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:09:34 -0000 marcus 2003/05/31 18:09:33 PDT FreeBSD ports repository Modified files: x11-wm/metacity Makefile Added files: x11-wm/metacity/files patch-src_theme-parser.c Log: Fix theme loading on Sparc64. Reported by: kris Revision Changes Path 1.18 +1 -0 ports/x11-wm/metacity/Makefile 1.1 +11 -0 ports/x11-wm/metacity/files/patch-src_theme-parser.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 18:18:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBFCE37B401; Sat, 31 May 2003 18:18:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6864043F75; Sat, 31 May 2003 18:18:49 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511In0U070961; Sat, 31 May 2003 18:18:49 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511ImaI070958; Sat, 31 May 2003 18:18:48 -0700 (PDT) Message-Id: <200306010118.h511ImaI070958@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 31 May 2003 18:18:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files patch-alpha patch-jsfun.c patch-nspr-unix.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:18:50 -0000 marcus 2003/05/31 18:18:48 PDT FreeBSD ports repository Modified files: www/mozilla Makefile Added files: www/mozilla/files patch-alpha patch-jsfun.c patch-nspr-unix.c Log: * Add FreeBSD Alpha support! [1] * Fix some 64-bit problems with the nspr and JavaScript code [2] Special thanks to Bernd Walter for [1] who put together the patch set based on work from gallatin. Submitted by: Bernd Walter [1] tmm [2] Revision Changes Path 1.142 +3 -5 ports/www/mozilla/Makefile 1.1 +492 -0 ports/www/mozilla/files/patch-alpha (new) 1.1 +29 -0 ports/www/mozilla/files/patch-jsfun.c (new) 1.1 +21 -0 ports/www/mozilla/files/patch-nspr-unix.c (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 18:33:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA3037B405; Sat, 31 May 2003 18:33:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1991943F85; Sat, 31 May 2003 18:33:51 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511Xo0U074395; Sat, 31 May 2003 18:33:50 -0700 (PDT) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511XoDQ074394; Sat, 31 May 2003 18:33:50 -0700 (PDT) Message-Id: <200306010133.h511XoDQ074394@repoman.freebsd.org> From: Foxfair Hu Date: Sat, 31 May 2003 18:33:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/pcal Makefile distinfo pkg-descr ports/print/pcal/files patch-aa patch-ac patch-ad patch-ae X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:33:51 -0000 foxfair 2003/05/31 18:33:50 PDT FreeBSD ports repository Modified files: print/pcal Makefile distinfo pkg-descr print/pcal/files patch-aa patch-ac patch-ad patch-ae Log: PR: 52644 Submitted by: MAINTAINER Update pcal to 4.7.1, which now has a new home as the original author's site is no longer available Revision Changes Path 1.3 +2 -13 ports/print/pcal/Makefile 1.2 +1 -1 ports/print/pcal/distinfo 1.2 +4 -15 ports/print/pcal/files/patch-aa 1.2 +3 -3 ports/print/pcal/files/patch-ac 1.2 +3 -3 ports/print/pcal/files/patch-ad 1.2 +2 -2 ports/print/pcal/files/patch-ae 1.2 +1 -1 ports/print/pcal/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat May 31 18:38:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 672E737B401; Sat, 31 May 2003 18:38:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067EB43F85; Sat, 31 May 2003 18:38:55 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511cs0U074586; Sat, 31 May 2003 18:38:54 -0700 (PDT) (envelope-from billf@repoman.freebsd.org) Received: (from billf@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511csQx074585; Sat, 31 May 2003 18:38:54 -0700 (PDT) Message-Id: <200306010138.h511csQx074585@repoman.freebsd.org> From: Bill Fumerola Date: Sat, 31 May 2003 18:38:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/fpc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:38:55 -0000 billf 2003/05/31 18:38:54 PDT FreeBSD ports repository Modified files: lang/fpc Makefile Log: gtar is required for 'extract' not 'build' Revision Changes Path 1.6 +1 -1 ports/lang/fpc/Makefile From owner-cvs-all@FreeBSD.ORG Sat May 31 18:43:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7712E37B401; Sat, 31 May 2003 18:43:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11E1C43F75; Sat, 31 May 2003 18:43:38 -0700 (PDT) (envelope-from gordon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511hb0U074850; Sat, 31 May 2003 18:43:37 -0700 (PDT) (envelope-from gordon@repoman.freebsd.org) Received: (from gordon@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511hb6G074849; Sat, 31 May 2003 18:43:37 -0700 (PDT) Message-Id: <200306010143.h511hb6G074849@repoman.freebsd.org> From: Gordon Tetlow Date: Sat, 31 May 2003 18:43:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mountcritlocal mountcritremote X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:43:39 -0000 gordon 2003/05/31 18:43:37 PDT FreeBSD src repository Modified files: etc/defaults rc.conf etc/rc.d mountcritlocal mountcritremote Log: Move networkfs_types from mountcritlocal into defaults/rc.conf as netfs_types. Also add logic into mountcritremote to add extra_netfs_types to the list. This unbreaks putting smbfs, portalfs and now nwfs in fstab. Revision Changes Path 1.177 +1 -0 src/etc/defaults/rc.conf 1.5 +2 -3 src/etc/rc.d/mountcritlocal 1.6 +9 -1 src/etc/rc.d/mountcritremote From owner-cvs-all@FreeBSD.ORG Sat May 31 18:46:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B01D37B401; Sat, 31 May 2003 18:46:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD7843F75; Sat, 31 May 2003 18:46:12 -0700 (PDT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511kB0U074997; Sat, 31 May 2003 18:46:12 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511kBRf074996; Sat, 31 May 2003 18:46:11 -0700 (PDT) Message-Id: <200306010146.h511kBRf074996@repoman.freebsd.org> From: Mike Silbersack Date: Sat, 31 May 2003 18:46:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:46:13 -0000 silby 2003/05/31 18:46:11 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/net if_loop.c Log: MFC rev 1.83: Fix a panic in low memory situations. Revision Changes Path 1.47.2.8 +14 -20 src/sys/net/if_loop.c From owner-cvs-all@FreeBSD.ORG Sat May 31 18:50:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8133137B401; Sat, 31 May 2003 18:50:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A98D43F3F; Sat, 31 May 2003 18:50:17 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511oG0U075167; Sat, 31 May 2003 18:50:16 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511oGLj075165; Sat, 31 May 2003 18:50:16 -0700 (PDT) Message-Id: <200306010150.h511oGLj075165@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 31 May 2003 18:50:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_1 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:50:17 -0000 bmah 2003/05/31 18:50:16 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_1) release/doc/en_US.ISO8859-1/errata article.sgml Log: Put back some of the conditional text infrastructure that we used to use for the errata. We need to have this, or else 5.1-RELEASE will go out with the 5.0-RELEASE errata. I think I nuked this (deliberately) during the 5.0-RELEASE cycle and never put it back. This change will be merged to HEAD folded in with some other changes, post-release. Approved by: re (implicitly) Revision Changes Path 1.38.2.1 +12 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Sat May 31 18:51:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7DF837B401; Sat, 31 May 2003 18:51:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86B6343F93; Sat, 31 May 2003 18:51:19 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511pJ0U075318; Sat, 31 May 2003 18:51:19 -0700 (PDT) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511pISd075317; Sat, 31 May 2003 18:51:18 -0700 (PDT) Message-Id: <200306010151.h511pISd075317@repoman.freebsd.org> From: Foxfair Hu Date: Sat, 31 May 2003 18:51:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/tentakel Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:51:20 -0000 foxfair 2003/05/31 18:51:18 PDT FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/tentakel Makefile distinfo pkg-descr pkg-plist Log: Add tentakel 0.3.1, a shell script to execute commands on parallel hosts by ssh or rsh. PR: 52651 Submitted by: Munish Chopra Revision Changes Path 1.365 +1 -0 ports/sysutils/Makefile 1.1 +21 -0 ports/sysutils/tentakel/Makefile (new) 1.1 +1 -0 ports/sysutils/tentakel/distinfo (new) 1.1 +13 -0 ports/sysutils/tentakel/pkg-descr (new) 1.1 +1 -0 ports/sysutils/tentakel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 18:53:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8214D37B401; Sat, 31 May 2003 18:53:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1946543F75; Sat, 31 May 2003 18:53:15 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511rE0U075592; Sat, 31 May 2003 18:53:14 -0700 (PDT) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511rERB075591; Sat, 31 May 2003 18:53:14 -0700 (PDT) Message-Id: <200306010153.h511rERB075591@repoman.freebsd.org> From: Foxfair Hu Date: Sat, 31 May 2003 18:53:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/iftop Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:53:15 -0000 foxfair 2003/05/31 18:53:14 PDT FreeBSD ports repository Modified files: net Makefile Added files: net/iftop Makefile distinfo pkg-descr pkg-plist Log: Add iftop 0.12, network utility for real-time bandwidth usage information. PR: 52649 Submitted by: Kirill Ponomarew Revision Changes Path 1.993 +1 -0 ports/net/Makefile 1.1 +43 -0 ports/net/iftop/Makefile (new) 1.1 +1 -0 ports/net/iftop/distinfo (new) 1.1 +4 -0 ports/net/iftop/pkg-descr (new) 1.1 +6 -0 ports/net/iftop/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat May 31 19:12:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F85B37B401; Sat, 31 May 2003 19:12:04 -0700 (PDT) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6470843F85; Sat, 31 May 2003 19:12:03 -0700 (PDT) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h5127AZ09912; Sat, 31 May 2003 19:07:10 -0700 Received: from btc.adaptec.com (hollin.btc.adaptec.com [10.100.253.56]) by redfish.adaptec.com (8.8.8p2+Sun/8.8.8) with ESMTP id TAA03482; Sat, 31 May 2003 19:11:58 -0700 (PDT) Message-ID: <3ED960E1.3040907@btc.adaptec.com> Date: Sat, 31 May 2003 20:11:45 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marcel Moolenaar References: <200306010032.h510WLW7060712@repoman.freebsd.org> In-Reply-To: <200306010032.h510WLW7060712@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 02:12:04 -0000 Marcel Moolenaar wrote: > marcel 2003/05/31 17:32:21 PDT > > FreeBSD src repository > > Modified files: > lib Makefile > Log: > Build libthr by default on ia64. > > Revision Changes Path > 1.159 +6 -0 src/lib/Makefile Excellent! Thanks a lot. From owner-cvs-all@FreeBSD.ORG Sat May 31 19:15:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9294D37B401; Sat, 31 May 2003 19:15:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E43B43F3F; Sat, 31 May 2003 19:15:22 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h512FM0U077416; Sat, 31 May 2003 19:15:22 -0700 (PDT) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h512FLcO077415; Sat, 31 May 2003 19:15:21 -0700 (PDT) Message-Id: <200306010215.h512FLcO077415@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 31 May 2003 19:15:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-ParallelUA Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 02:15:22 -0000 ache 2003/05/31 19:15:21 PDT FreeBSD ports repository Modified files: www/p5-ParallelUA Makefile distinfo pkg-descr pkg-plist Log: Upgrade to 2.56 Revision Changes Path 1.24 +1 -1 ports/www/p5-ParallelUA/Makefile 1.10 +1 -1 ports/www/p5-ParallelUA/distinfo 1.4 +1 -1 ports/www/p5-ParallelUA/pkg-descr 1.6 +1 -0 ports/www/p5-ParallelUA/pkg-plist