From owner-freebsd-bugs Sun Feb 16 3: 0:34 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E66E237B406 for ; Sun, 16 Feb 2003 03:00:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDBE943FBF for ; Sun, 16 Feb 2003 03:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GB0UNS090629 for ; Sun, 16 Feb 2003 03:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GB0UGT090628; Sun, 16 Feb 2003 03:00:30 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E4AD37B401 for ; Sun, 16 Feb 2003 02:59:34 -0800 (PST) Received: from mail.continuity.cx (mail.continuity.cx [64.141.71.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6B1B43F3F for ; Sun, 16 Feb 2003 02:59:33 -0800 (PST) (envelope-from paul@mail.continuity.cx) Received: by mail.continuity.cx (Postfix, from userid 1005) id B4B0A3DD; Sun, 16 Feb 2003 03:00:30 -0800 (PST) Message-Id: <20030216110030.B4B0A3DD@mail.continuity.cx> Date: Sun, 16 Feb 2003 03:00:30 -0800 (PST) From: Paul Guyot Reply-To: Paul Guyot To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/48325: /etc/periodic/security/100.chksetuid doesn't work with spaces in mount points Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48325 >Category: misc >Synopsis: /etc/periodic/security/100.chksetuid doesn't work with spaces in mount points >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 03:00:30 PST 2003 >Closed-Date: >Last-Modified: >Originator: Paul Guyot >Release: FreeBSD 4.7-STABLE i386 >Organization: Kallisys >Environment: MacOS X >Description: If one has spaces in a mount point, then 100.chksetuid doesn't work (it fails for these mount points). Having a space can occur on FreeBSD and is much more likely to happen on MacOS X where one just has to put a space in a volume's name. Additionally, it doesn't handle hfs volumes. >How-To-Repeat: Create a UFS mount point with a space in its path (e.g. "/Volumes/Foo Bar") and then run periodic security. >Fix: Apply this patch: --- 100.chksetuid.old Fri Oct 25 17:14:16 2002 +++ 100.chksetuid Sun Feb 16 11:43:59 2003 @@ -44,21 +44,13 @@ echo "" echo 'Checking setuid files and devices:' # XXX Note that there is the possibility of overrunning the args to ls - MP=`mount -t ufs | grep -v " nosuid" | awk '{ print $3 }' | sort` - if [ -n "${MP}" ] - then - set ${MP} - while [ $# -ge 1 ]; do - mount=$1 - shift - find $mount -xdev -type f \ - \( -perm -u+x -or -perm -g+x -or -perm -o+x \) \ - \( -perm -u+s -or -perm -g+s \) -print0 - done | xargs -0 -n 20 ls -liTd | sed 's/^ *//' | sort -k 11 | + (mount -t hfs && mount -t ufs) | grep -v " nosuid" | + sed -n -e 's/^.* on \(.*\) (.*local.*)/\1/p' | + awk '{ printf "find \"%s\" -xdev -type f \\( -perm -u+x -or -perm -g+x -or -perm -o+x \\) \\( -perm -u+s -or -perm -g+s \\) -print0\n", $0 }' | + sort | sh | xargs -0 -n 20 ls -liTd | sed 's/^ *//' | sort -k 11 | check_diff setuid - "${host} setuid diffs:" - rc=$? - fi;; + rc=$?;; *) rc=0;; esac -exit $rc +exit $rc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 4:40:33 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D96FE37B405 for ; Sun, 16 Feb 2003 04:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F0943FAF for ; Sun, 16 Feb 2003 04:40:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GCeENS022158 for ; Sun, 16 Feb 2003 04:40:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GCeE6x022157; Sun, 16 Feb 2003 04:40:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35FC637B405 for ; Sun, 16 Feb 2003 04:37:50 -0800 (PST) Received: from mistral.imasy.or.jp (flets22-023.kamome.or.jp [218.45.22.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A17443F85 for ; Sun, 16 Feb 2003 04:37:44 -0800 (PST) (envelope-from mistral@imasy.or.jp) Received: from mistral.imasy.or.jp (localhost [IPv6:::1]) by mistral.imasy.or.jp (8.12.6/8.12.6/mistral) with ESMTP id h1GCbPKo040604 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 16 Feb 2003 21:37:25 +0900 (JST) (envelope-from mistral@imasy.or.jp) Received: (from sarumaru@localhost) by mistral.imasy.or.jp (8.12.6/8.12.6/Submit) id h1GCbJFD040603; Sun, 16 Feb 2003 21:37:19 +0900 (JST) (envelope-from sarumaru) Message-Id: <200302161237.h1GCbJFD040603@mistral.imasy.or.jp> Date: Sun, 16 Feb 2003 21:37:19 +0900 (JST) From: Yoshihiko Sarumaru Reply-To: Yoshihiko Sarumaru To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/48326: ucom/uplcom user must make device file before use it Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48326 >Category: conf >Synopsis: ucom/uplcom user must make device file before use it >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 04:40:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Yoshihiko Sarumaru >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD mistral.imasy.or.jp 4.7-STABLE FreeBSD 4.7-STABLE #1: Tue Feb 11 18:42:52 JST 2003 sarumaru@mistral.imasy.or.jp:/usr/obj/usr/src/sys/Z505VRK i386 >Description: ucom/uplcom user must make device file before use it. it should be made when `MAKEDEV all' is performed. >How-To-Repeat: cu -l /dev/ucom0 (not with FreeBSD 5.x system :) >Fix: --- MAKEDEV.orig Tue Feb 11 18:01:52 2003 +++ MAKEDEV Sun Feb 16 21:21:10 2003 @@ -328,7 +328,7 @@ sh MAKEDEV iic0 iic1 # cdev, I2C device sh MAKEDEV smb0 smb1 # cdev, SMBus device sh MAKEDEV usb usb0 uhid0 ums0 ulpt0 ugen0 # cdev, USB devices - sh MAKEDEV urio0 uscanner0 umodem0 # cdev, USB devices too + sh MAKEDEV urio0 uscanner0 umodem0 ucom0 # cdev, USB devices too sh MAKEDEV bpf0 bpf1 bpf2 bpf3 # cdev, network sh MAKEDEV ipl tun0 tun1 tun2 tun3 # cdev, network sh MAKEDEV tap0 tap1 tap2 tap3 # cdev, network >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 5:40:44 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8587E37B401; Sun, 16 Feb 2003 05:40:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C8B43FB1; Sun, 16 Feb 2003 05:40:43 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from freefall.freebsd.org (tjr@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GDehNS040467; Sun, 16 Feb 2003 05:40:43 -0800 (PST) (envelope-from tjr@freefall.freebsd.org) Received: (from tjr@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GDegLA040458; Sun, 16 Feb 2003 05:40:42 -0800 (PST) Date: Sun, 16 Feb 2003 05:40:42 -0800 (PST) From: "Tim J. Robbins" Message-Id: <200302161340.h1GDegLA040458@freefall.freebsd.org> To: tjr@FreeBSD.org, freebsd-bugs@FreeBSD.org, bp@FreeBSD.org Subject: Re: kern/48291: mmap()'d regions of smbfs files behave incorrectly after close() Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mmap()'d regions of smbfs files behave incorrectly after close() Responsible-Changed-From-To: freebsd-bugs->bp Responsible-Changed-By: tjr Responsible-Changed-When: Sun Feb 16 05:40:21 PST 2003 Responsible-Changed-Why: Over to bp. http://www.freebsd.org/cgi/query-pr.cgi?pr=48291 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 6:47:28 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 636D137B405; Sun, 16 Feb 2003 06:47:27 -0800 (PST) Received: from mx03.uni-tuebingen.de (mx03.uni-tuebingen.de [134.2.3.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA4F943F85; Sun, 16 Feb 2003 06:47:25 -0800 (PST) (envelope-from friedemann.becker@student.uni-tuebingen.de) Received: from linux17.zdv.uni-tuebingen.de (linux17.zdv.uni-tuebingen.de [134.2.18.17]) by mx03.uni-tuebingen.de (8.12.3/8.12.3) with ESMTP id h1GElNrR012728; Sun, 16 Feb 2003 15:47:24 +0100 Date: Sun, 16 Feb 2003 15:47:22 +0100 (CET) From: Friedemann Becker X-Sender: To: , Subject: Re: where's my pr gone? - supplemental In-Reply-To: <200302160305.30223.soralx@cydem.zp.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-AntiVirus: checked by AntiVir Milter 1.0.0.8; AVE 6.18.0.2; VDF 6.18.0.7 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org indeed, it seems to work again On Sun, 16 Feb 2003 soralx@cydem.zp.ua wrote: > Date: Sun, 16 Feb 2003 03:05:30 -0700 > From: soralx@cydem.zp.ua > To: freebsd-hackers@FreeBSD.ORG > Cc: Friedemann.Becker@student.uni-tuebingen.de > Subject: Re: where's my pr gone? - supplemental > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/47512 > > this happens only with the above link, i.e. from the pr summary. > > searching for the bugid 47512 works (=> not empty).... > > works as well with the link > > 16.02.2003; 03:03:54 > [SorAlx] http://cydem.zp.ua/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 8:20: 9 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A87FF37B405 for ; Sun, 16 Feb 2003 08:20:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A388043F85 for ; Sun, 16 Feb 2003 08:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GGK5NS056345 for ; Sun, 16 Feb 2003 08:20:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GGK5LV056344; Sun, 16 Feb 2003 08:20:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 474EB37B401 for ; Sun, 16 Feb 2003 08:17:27 -0800 (PST) Received: from cicero1.cybercity.dk (cicero1.cybercity.dk [212.242.40.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09C5743F3F for ; Sun, 16 Feb 2003 08:17:26 -0800 (PST) (envelope-from fj@batmule.dk) Received: from prefect.unknown.dk (dag.batmule.dk [212.242.86.227]) by cicero1.cybercity.dk (Postfix) with ESMTP id 241C615FF42 for ; Sun, 16 Feb 2003 17:17:24 +0100 (CET) Received: from prefect.unknown.dk (localhost [127.0.0.1]) by prefect.unknown.dk (8.12.6/8.12.6) with ESMTP id h1GGHNU0050238 for ; Sun, 16 Feb 2003 17:17:23 +0100 (CET) (envelope-from fj@prefect.unknown.dk) Received: (from fj@localhost) by prefect.unknown.dk (8.12.6/8.12.6/Submit) id h1GGHNOq050237; Sun, 16 Feb 2003 17:17:23 +0100 (CET) Message-Id: <200302161617.h1GGHNOq050237@prefect.unknown.dk> Date: Sun, 16 Feb 2003 17:17:23 +0100 (CET) From: Flemming Jacobsen Reply-To: Flemming Jacobsen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/48332: [PATCH] /etc/rc.d/ipsec has ipsec_file hardcoded, overriding rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48332 >Category: conf >Synopsis: [PATCH] /etc/rc.d/ipsec has ipsec_file hardcoded, overriding rc.conf >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 08:20:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Flemming Jacobsen >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD dent.unknown.dk 5.0-CURRENT FreeBSD 5.0-CURRENT #11: Sun Feb 9 20:36:00 CET 2003 fj@dent.unknown.dk:/usr/obj/usr/src/sys/DENT i386 >Description: ipsec_file is set in /etc/defaults/rc.conf and (possibly) in /etc/rc.conf. However /etc/rc.d/ipsec set it to /etc/ipsec.conf. The attached patch moved this setting into the NetBSD section (where I assume it is needed). >How-To-Repeat: Create a valid /etc/ipsec.conf file. Set ipsec_enable="YES" in /etc/rc.conf Reboot and observe that everything is behaving well. Rename /etc/ipsec.conf to (i.e.) /etc/ipsec1.conf Set ipsec_file="/etc/ipsec1.conf" in /etc/rc.conf Reboot and observe the following error: /etc/rc: WARNING: /etc/ipsec.conf not readable; ipsec start aborted. ERROR: ABORTING BOOT((sending SIGTERM to parent)! Enter full pathname of shell or RETURN for /bin/sh: >Fix: See attached patch. --- ipsec.udiff begins here --- --- ipsec.orig Sun Feb 16 16:29:22 2003 +++ ipsec Sun Feb 16 16:30:32 2003 @@ -15,8 +15,6 @@ name="ipsec" rcvar=`set_rcvar` -# This will be overiden from rc.conf on FreeBSD. -ipsec_file="/etc/ipsec.conf" start_precmd="ipsec_prestart" start_cmd="ipsec_start" stop_precmd="test -f /etc/ipsec.conf" @@ -27,9 +25,11 @@ case ${OSTYPE} in FreeBSD) ipsec_program="/usr/sbin/setkey" + # ipsec_file is set by rc.conf ;; NetBSD) ipsec_program="/sbin/setkey" + ipsec_file="/etc/ipsec.conf" ;; esac --- ipsec.udiff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 10:20: 9 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74B0137B401 for ; Sun, 16 Feb 2003 10:20:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5780643F93 for ; Sun, 16 Feb 2003 10:20:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GIK6NS087874 for ; Sun, 16 Feb 2003 10:20:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GIK6wH087873; Sun, 16 Feb 2003 10:20:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12CDA37B405 for ; Sun, 16 Feb 2003 10:14:02 -0800 (PST) Received: from mta4.srv.hcvlny.cv.net (mta4.srv.hcvlny.cv.net [167.206.5.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id B76EF43FA3 for ; Sun, 16 Feb 2003 10:14:00 -0800 (PST) (envelope-from agapon@cv-nj.com) Received: from asv20.srv.hcvlny.cv.net (asv20.srv.hcvlny.cv.net [167.206.5.174]) by mta4.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.05 (built Nov 6 2002)) with ESMTP id <0HAE00BNLYN9U6@mta4.srv.hcvlny.cv.net> for FreeBSD-gnats-submit@freebsd.org; Sun, 16 Feb 2003 13:13:57 -0500 (EST) Received: from terminus.foundation.invalid (ool-4355489e.dyn.optonline.net [67.85.72.158]) by asv20.srv.hcvlny.cv.net (8.12.6/8.11.6) with ESMTP id h1GIDIeX027428 for ; Sun, 16 Feb 2003 13:13:19 -0500 (EST) Received: from edge.foundation.invalid (edge.foundation.invalid [192.168.1.12]) by terminus.foundation.invalid (8.12.6/8.12.3) with ESMTP id h1GIDu4t074016 for ; Sun, 16 Feb 2003 13:13:56 -0500 (EST envelope-from agapon@cv-nj.com) Received: from localhost (localhost.foundation.invalid [127.0.0.1]) by edge.foundation.invalid (8.12.6/8.12.6) with ESMTP id h1GIDtIo003384 for ; Sun, 16 Feb 2003 13:13:56 -0500 (EST envelope-from agapon@cv-nj.com) Message-Id: <20030216130814.T3374@edge.foundation.invalid> Date: Sun, 16 Feb 2003 13:13:55 -0500 (EST) From: Andriy Gapon To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/48336: mono audio is played back at double speed Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48336 >Category: kern >Synopsis: mono audio is played back at double speed >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 10:20:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD terminus.foundation.invalid 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #3: Sun Jan 19 16:16:52 EST 2003 avg@edge.foundation.invalid:/sys-devel/obj/sys-devel/src/sys/TERMINUS i386 sbc0: at port 0x220-0x22f,0x300-0x301,0x388-0x38b irq7 drq 0,5 on isa0 sbc0: setting card to irq 7, drq 0, 5 pcm0: on sbc0 >Description: mono audio is played back at double speed, for instance when playing mono mp3 with xmms or mpg123 using OSS driver. Please see xmms PR http://bugs.xmms.org/show_bug.cgi?id=1203 for additional information and debugging done with the help of xmms OSS output plugin developer. >How-To-Repeat: just play a mono mp3 with xmms using OSS output plugin >Fix: dunno >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 11: 0: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54A5137B401 for ; Sun, 16 Feb 2003 11:00:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5406F43FAF for ; Sun, 16 Feb 2003 11:00:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GJ04NS095669 for ; Sun, 16 Feb 2003 11:00:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GJ04wC095668; Sun, 16 Feb 2003 11:00:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 623FC37B401 for ; Sun, 16 Feb 2003 10:51:21 -0800 (PST) Received: from gateway.lefort.net (213.189.162.78.brutele.be [213.189.162.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EEC543F75 for ; Sun, 16 Feb 2003 10:51:20 -0800 (PST) (envelope-from jylefort@brutele.be) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 768C754E5 for ; Sun, 16 Feb 2003 19:51:17 +0100 (CET) Received: by jsite.lefort.net (Postfix, from userid 1000) id 47EE922E35; Sun, 16 Feb 2003 19:51:17 +0100 (CET) Message-Id: <20030216185117.47EE922E35@jsite.lefort.net> Date: Sun, 16 Feb 2003 19:51:17 +0100 (CET) From: Jean-Yves Lefort Reply-To: Jean-Yves Lefort To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48338: pcm audio driver hogs /dev/dsp?.? Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48338 >Category: kern >Synopsis: pcm audio driver hogs /dev/dsp?.? >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 11:00:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Jean-Yves Lefort >Release: FreeBSD 4.7-RELEASE-p3 i386 >Organization: >Environment: The problem has been experienced on: $ uname -a FreeBSD jsite.lefort.net 4.7-RELEASE-p3 FreeBSD 4.7-RELEASE-p3 #0: Tue Jan 7 23:46:56 CET 2003 jylefort@jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386 $ cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0x9000 irq 11 (1p/1r/4v channels duplex) $ and: $ uname -a FreeBSD noname 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Sat Feb 1 00:57:38 EST 2003 refugee@noname:/usr/obj/usr/src/sys/NONAME i386 $ cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xd800 irq 10 (1p/1r/0v channels duplex default) $ >Description: Under certain conditions, the pcm audio device driver hogs /dev/dsp?.? ("Device Busy"). It seems that the problem happens when a process tries to open a dsp device shortly after the same device has been opened by another process. This might be related to the vchan code, as the hw.snd.pcm0.vchans sysctl knob was set to 4 during my tests. "fstat | grep dsp" gives nothing. >How-To-Repeat: $ while :; do play somesoundfile & done This will quickly lock /dev/dsp0.0. Of course, be prepared to hit ^C, since the & is not a typo. :) >Fix: If multiple virtual channels are in use when the problem first appears, setting sysctl hw.snd.pcm0.vchans to locked_dsp_# - 1 and then back to the original number unlocks the dsp device. However, after locking the dsp device a second time, reducing hw.snd.pcm0.vchans gives "Invalid argument" and the device is locked for good: then, only a reboot helps. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 12:36:19 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D54737B401; Sun, 16 Feb 2003 12:36:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5E4643F3F; Sun, 16 Feb 2003 12:36:18 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GKaINS022751; Sun, 16 Feb 2003 12:36:18 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GKaILY022747; Sun, 16 Feb 2003 12:36:18 -0800 (PST) Date: Sun, 16 Feb 2003 12:36:18 -0800 (PST) From: Mike Makonnen Message-Id: <200302162036.h1GKaILY022747@freefall.freebsd.org> To: mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: conf/48332: [PATCH] /etc/rc.d/ipsec has ipsec_file hardcoded, overriding rc.conf Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] /etc/rc.d/ipsec has ipsec_file hardcoded, overriding rc.conf Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: mtm Responsible-Changed-When: Sun Feb 16 12:35:46 PST 2003 Responsible-Changed-Why: Ok, I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=48332 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 12:58: 1 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 173C137B401; Sun, 16 Feb 2003 12:58:00 -0800 (PST) Received: from mail1.arcor-ip.de (mail1.arcor-ip.de [145.253.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6724443F3F; Sun, 16 Feb 2003 12:57:57 -0800 (PST) (envelope-from Friedemann.Becker@student.uni-tuebingen.de) Received: from chasey (212.144.228.141) by mail1.arcor-ip.de (5.5.034) id 3E1E87630024E67C; Sun, 16 Feb 2003 21:57:56 +0100 Date: Sun, 16 Feb 2003 22:03:21 +0100 (=?ISO-8859-1?Q?Westeurop=E4ische_Normalzeit?=) From: Friedemann Becker To: Giorgos Keramidas Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: where's my pr gone? - supplemental In-Reply-To: <20030216030641.GG2053@gothmog.gr> Message-ID: References: <20030216030641.GG2053@gothmog.gr> X-X-Sender: zxmxy33@mailserv02.uni-tuebingen.de MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 16 Feb 2003, Giorgos Keramidas wrote: > Please, don't post to more than one list, unless absolutly necessary. > Also, avoid top-posting & trim the quotes. > > On 2003-02-16 00:05, Friedemann Becker wrote: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/47512 > > > > this happens only with the above link, i.e. from the pr summary. > > searching for the bugid 47512 works (=> not empty).... > > > > someone want to look at this? > > The PR isn't set to "Confidential" and it does appear in > http://www.FreeBSD.org/cgi/query-pr-summary.cgi output. > > How did you search for it, and saw that it's "empty" ? it's not happening anymore, but the page did only contain the lines: Submit Followup | Raw PR -------------------------------------------------------------------------------- www@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 13:10:13 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4535937B401 for ; Sun, 16 Feb 2003 13:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6708C43F75 for ; Sun, 16 Feb 2003 13:10:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GLAANS032468 for ; Sun, 16 Feb 2003 13:10:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GLAAPT032467; Sun, 16 Feb 2003 13:10:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1F9337B405 for ; Sun, 16 Feb 2003 13:05:50 -0800 (PST) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id BCEC743F75 for ; Sun, 16 Feb 2003 13:05:49 -0800 (PST) (envelope-from h.eichmann@gmx.de) Received: (qmail 16739 invoked by uid 0); 16 Feb 2003 21:05:48 -0000 Received: from pD9EC2375.dip.t-dialin.net (HELO 192.168.254.43) (217.236.35.117) by mail.gmx.net (mp016-rz3) with SMTP; 16 Feb 2003 21:05:48 -0000 Message-Id: <200302162039.16382.h.eichmann@gmx.de> Date: Sun, 16 Feb 2003 20:39:16 +0100 From: Heiner To: FreeBSD-gnats-submit@FreeBSD.org Subject: bin/48341: Sysinstall deletes mbr although it should not Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48341 >Category: bin >Synopsis: Sysinstall deletes mbr although it should not >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 13:10:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Heiner Eichmann >Release: FreeBSD 4.7-STABLE i386 >Organization: Sirius Cybernetics Corp. >Environment: System: FreeBSD 7of9.unimatrix-zero.borg 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Oct 12 19:14:16 CEST 2002 root@7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL i386 Athlon 1300 borad, 2 hard drives. Prim. master: 1st partition: Windows 98 with Windows 200 dual boot, 2nd partition free (for FreeBSD) Prim. slave: Windows 2000 >Description: During the installation from CD as described in the hanbook ad0s2 was choosen as install target and partitioned by pressing 'a'. Afterwards, the boot manager question (chapter 2.5.4) was answered with "None". My plan was to use a boot utility on a floppy disk to boot FreeBSD later on (which works on another computer) in order to leave microsoft boot handler untouched. After finishing the installation process, the computer could not boot at all: The mbr of the primary master hard drive was deleted or destroyed! By booting from a MS-DOS boot disk and running fdisk /mbr the boot problem was fixed. The bug remains: If I choose 'None' in sysinstall I expect the mbr to be untouched! >How-To-Repeat: Install a non FreeBSD operating system on the first partition of your prim. master harddisk which uses the mbr to boot. Install FreeBSD afterwards on the second partition of the same disk, answering the question of chapter 2.5.4 with 'none'. After the installation the mbr is gone. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 13:50:11 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18CCC37B401 for ; Sun, 16 Feb 2003 13:50:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 157CC43F75 for ; Sun, 16 Feb 2003 13:50:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1GLo8NS041260 for ; Sun, 16 Feb 2003 13:50:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1GLo8rT041259; Sun, 16 Feb 2003 13:50:08 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D1BE37B401 for ; Sun, 16 Feb 2003 13:42:18 -0800 (PST) Received: from garple.migus.org (pcp243391pcs.howard01.md.comcast.net [68.55.83.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59B0343F93 for ; Sun, 16 Feb 2003 13:42:17 -0800 (PST) (envelope-from amigus@migus.org) Received: from ludo.migus.org (ludo.migus.org [192.168.4.1]) by garple.migus.org (8.12.6/8.12.6) with ESMTP id h1GLgGn2015070 for ; Sun, 16 Feb 2003 16:42:16 -0500 (EST) (envelope-from amigus@migus.org) Received: from ludo.migus.org (localhost [127.0.0.1]) by ludo.migus.org (8.12.6/8.12.6) with ESMTP id h1GLgGdf005647 for ; Sun, 16 Feb 2003 16:42:16 -0500 (EST) (envelope-from amigus@ludo.migus.org) Received: (from amigus@localhost) by ludo.migus.org (8.12.6/8.12.6/Submit) id h1GLgGLI005646; Sun, 16 Feb 2003 16:42:16 -0500 (EST) Message-Id: <200302162142.h1GLgGLI005646@ludo.migus.org> Date: Sun, 16 Feb 2003 16:42:16 -0500 (EST) From: Adam Migus Reply-To: Adam Migus To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/48342: [PATCH] usbd dynamic device list. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48342 >Category: bin >Synopsis: [PATCH] usbd dynamic device list. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 13:50:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Adam Migus >Release: FreeBSD 5.0-CURRENT i386 >Organization: Network Associates Laboratories >Environment: System: FreeBSD ludo.migus.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Feb 4 00:52:29 EST 2003 amigus@ludo.migus.org:/obj/ufs2/sys/src/p4/user/amigus/perforce.freebsd.org/freebsd/src/sys/SMP i386 FreeBSD on a machine with > 4 usb controllers >Description: The code uses a static array of currently 4 devices. Thus devices are ignored. >How-To-Repeat: Plug in > 4 usb controllers. >Fix: The attached patch manages controllers in a list. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 14:17:45 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33AFD37B401; Sun, 16 Feb 2003 14:17:40 -0800 (PST) Received: from mail.com (pa128.santok.sdi.tpnet.pl [80.49.50.128]) by mx1.FreeBSD.org (Postfix) with SMTP id 4BCB643F75; Sun, 16 Feb 2003 14:17:27 -0800 (PST) (envelope-from tycoon@megapolis.pl) Reply-To: From: "Tycoon" Subject: Druckereien in Polen Date: Sun, 16 Feb 2003 23:17:35 +0100 MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-Id: <20030216221727.4BCB643F75@mx1.FreeBSD.org> To: undisclosed-recipients: ; Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
Gorzów Wlkp., den 16. Februar 03
Druckereien in Polen
Sehr geehrte Damen und Herren,
auf diesem Wege möchten wir sie für die Druckereien in Polen begeistern.
Polen mag zwar in vielen Bereichen als Entwicklungsland gelten, ist aber im Bereich
Druckerzeugnisse auf dem neuesten Standard und in der Lage sämtliche geforderte Leistungen zu erfüllen.
Die Kosten liegen deutlich unter denen in Deutschland, was auf dem immer enger werdenden Markt
für Werbeerzeugnisse deutliche Vorteile bietet.
Wir können Ihnen in Zusammenarbeit mit unseren Partnern
- termingerechte Lieferung
- erstklassige handwerkliche Leistung
- deutsche Ansprechpartner
- Flexibilität
- und äußerst faire Preise bieten.
Sollten wir auf diesem Wege Ihr Interesse geweckt haben, würden wir uns über eine Antwort von Ihnen freuen.
Mit freundlichem Gruß
J. Barylski
Tycoon Sp. z o.o.
ul. Pomorska 43
66-400 Gorzów Wlkp.
T: 0048  95 -7282378
F: 0048  95  7282376
Mobil: 0048  501  657 851
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 17:41:38 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE81537B401; Sun, 16 Feb 2003 17:41:36 -0800 (PST) Received: from smtp2.server.rpi.edu (smtp2.server.rpi.edu [128.113.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id F335343F3F; Sun, 16 Feb 2003 17:41:35 -0800 (PST) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp2.server.rpi.edu (8.12.7/8.12.7) with ESMTP id h1H1fYEP018800; Sun, 16 Feb 2003 20:41:34 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: References: Date: Sun, 16 Feb 2003 20:41:33 -0500 To: Friedemann Becker , freebsd-hackers@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG From: Garance A Drosihn Subject: Re: where's my pr gone? - supplemental Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-RPI-Spam-Score: -1.1 () IN_REP_TO,REFERENCES,SIGNATURE_SHORT_DENSE,SPAM_PHRASE_01_02 X-Scanned-By: MIMEDefang 2.28 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At 12:05 AM +0100 2/16/03, Friedemann Becker wrote: >http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/47512 > >this happens only with the above link, i.e. from the pr summary. >searching for the bugid 47512 works (=> not empty).... > >someone want to look at this? The above link worked fine for me. I did not get a blank page. Also, doing an 'ls' in bash, after starting 'gdb bash', did not cause any kernel panic. But then it occurred to me that my login shell was bash (ie, I was already in bash when I typed the 'gdb bash' command). So, I logged into 'toor', which has /bin/sh as the login shell. If I logged in at the console, and did a 'gdb bash', then when I tried to do a 'run' I was told: Starting program: /usr/local/bin/bash Cannot exec : No such file or directory So, then I ssh'ed into 'toor', to make it easier to copy&paste that error message into this email. Behold, it worked fine. Well, there was a complaint of: Starting program: /usr/local/bin/bash warning: shared library handler failed to enable breakpoint but other than that warning it worked fine (as did the 'ls'). Sooo, then I checked to see what the difference was between the two sessions. It turned out that when logging into the console, the SHELL environment variable was set to the null string. When I ssh'ed in, it was set to /bin/sh. If I set SHELL on the console session, then gdb could run bash OK. I'm not quite sure what all of that means... All of this was done an a FreeBSD 5.0-CURRENT system, built on Sat Feb 15 01:34:07 EST 2003 -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Feb 16 22:30:12 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76C2537B401 for ; Sun, 16 Feb 2003 22:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C13043F75 for ; Sun, 16 Feb 2003 22:30:09 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1H6U9NS098888 for ; Sun, 16 Feb 2003 22:30:09 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1H6U9AX098887; Sun, 16 Feb 2003 22:30:09 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F97C37B401 for ; Sun, 16 Feb 2003 22:22:56 -0800 (PST) Received: from TMA-1.brad-x.com (static-b2-191.highspeed.eol.ca [64.56.236.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA3B443F75 for ; Sun, 16 Feb 2003 22:22:55 -0800 (PST) (envelope-from brad@brad-x.com) Received: by TMA-1.brad-x.com (Postfix, from userid 1000) id CB2A522104F; Mon, 17 Feb 2003 01:23:31 -0500 (EST) Message-Id: <20030217062331.CB2A522104F@TMA-1.brad-x.com> Date: Mon, 17 Feb 2003 01:23:31 -0500 (EST) From: Brad Laue Reply-To: Brad Laue To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48359: SiS 5597/8 USB + uscanner breakage Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48359 >Category: kern >Synopsis: SiS 5597/8 USB + uscanner breakage >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 22:30:08 PST 2003 >Closed-Date: >Last-Modified: >Originator: Brad Laue >Release: FreeBSD 4.7-STABLE i386 >Organization: brad-x.com >Environment: System: FreeBSD TMA-1.brad-x.com 4.7-STABLE FreeBSD 4.7-STABLE #1: Wed Jan 8 03:52:02 EST 2003 root@TMA-1.brad-x.com:/usr/obj/usr/src/sys/DISCOVERY-IPF i386 ohci0@pci0:2:2: class=0x0c0310 card=0x0a141019 chip=0x70011039 rev=0x07 hdr=0x00 vendor = 'Silicon Integrated Systems (SiS)' device = 'SiS5597/8 Universal Serial Bus Controller' class = serial bus subclass = USB ohci1@pci0:2:3: class=0x0c0310 card=0x0a141019 chip=0x70011039 rev=0x07 hdr=0x00 vendor = 'Silicon Integrated Systems (SiS)' device = 'SiS5597/8 Universal Serial Bus Controller' class = serial bus subclass = USB >Description: The USB controller present here does not interact well with uscanner. The problem manifests itself in an inability to instruct the scanner to conduct a scan more than once, reliably. The device will succeed, silently return to idle, and will never be heard from again. All SANE frontends fail to communicate with the scanner after this point. If another USB device such as a mouse is plugged in at the same time, this does not occur. This may provide a clue as to where the failure is hopefully. The scanner used to demonstrate this is an Agfa Snapscan e20. Whether this is specific to the type of scanner is unknown. The snapscan works flawlessly with other USB controllers using FreeBSD, including that included in the intel i810e chipset and the VIA KT133. This pinpoints an interaction with the SiS controller specifically. >How-To-Repeat: Use snapscan e20 with SANE frontend such as xscanimage GIMP plugin. - Scan using different modes and resolutions, multiple times each. - Observe that when the scanner is the only device plugged into a USB port, this recurs. - Others who see this PR, please test this condition with other USB scanners (non-snapscan) >Fix: Workaround: Use a USB mouse or plug another USB device into the other port. This is a workaround to the issue, and the scanner(s) will proceed to work well. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 0:50:16 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73BD637B401 for ; Mon, 17 Feb 2003 00:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 204E643F75 for ; Mon, 17 Feb 2003 00:50:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1H8oDNS034604 for ; Mon, 17 Feb 2003 00:50:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1H8oDAB034603; Mon, 17 Feb 2003 00:50:13 -0800 (PST) Date: Mon, 17 Feb 2003 00:50:13 -0800 (PST) Message-Id: <200302170850.h1H8oDAB034603@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/48342: [PATCH] usbd dynamic device list. Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/48342; it has been noted by GNATS. From: Peter Pentchev To: Adam Migus Cc: bug-followup@FreeBSD.org Subject: Re: bin/48342: [PATCH] usbd dynamic device list. Date: Mon, 17 Feb 2003 10:48:52 +0200 On Sun, Feb 16, 2003 at 04:42:16PM -0500, Adam Migus wrote: > > >Number: 48342 > >Category: bin > >Synopsis: [PATCH] usbd dynamic device list. > >Originator: Adam Migus > >Release: FreeBSD 5.0-CURRENT i386 > >Environment: > System: FreeBSD ludo.migus.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Feb 4 00:52:29 EST 2003 amigus@ludo.migus.org:/obj/ufs2/sys/src/p4/user/amigus/perforce.freebsd.org/freebsd/src/sys/SMP i386 > > > FreeBSD on a machine with > 4 usb controllers > >Description: > The code uses a static array of currently 4 devices. Thus devices > are ignored. > > >How-To-Repeat: > Plug in > 4 usb controllers. > >Fix: > > The attached patch manages controllers in a list. Err.. did you, by any chance, forget to actually attach a patch? :) [Please respond to this message, CC'ing bug-followup@FreeBSD.org, and keeping the subject line, so that the GNATS PR tracking system can add your response to the audit trail.] G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@sbnd.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am jealous of the first word in this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 3: 0:38 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A5737B401; Mon, 17 Feb 2003 03:00:36 -0800 (PST) Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CBC43FB1; Mon, 17 Feb 2003 03:00:36 -0800 (PST) (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+Sun/8.11.6) with ESMTP id h1HB0YD06487; Mon, 17 Feb 2003 03:00:34 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id DAA01777; Mon, 17 Feb 2003 03:00:24 -0800 (PST) Received: from btc.adaptec.com (hollin [10.100.253.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id EAA06017; Mon, 17 Feb 2003 04:00:21 -0700 (MST) Message-ID: <3E50C0C2.4080800@btc.adaptec.com> Date: Mon, 17 Feb 2003 04:00:18 -0700 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2b) Gecko/20021105 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Dubinin, Alexander" Cc: "'Scott Long'" , freebsd-bugs@freebsd.org Subject: Re: kern/40481: Kernel fault on detecting Mylex eXtreme RAID 3000 controller References: <67B5ACB373D0D411B9BD00508BD951A7CF9878@nnsmsx30.inn.intel.com> In-Reply-To: <67B5ACB373D0D411B9BD00508BD951A7CF9878@nnsmsx30.inn.intel.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dubinin, Alexander wrote: > Hi Scott, > > Ok. I'll do it, but only week later - Ok? > > Yes, it seems to work in 5.0-RELEASE, but then I tried to move data on > RAID > it just hangs without any messages in kernel log, approximately after > copying ~1 Gb of data. > And it gives lot of messages like "Can't update cache" in kernel log > then I > making partition and slices. > > Unfortunately, system was reinstalled, and I have no 5.0 anymore. > I'll do more experiments for you, as soon as find some free time. > > Regards, > Alexander Dubinin. > > PS: It's not a card's bug - it working good enougth under Linux and > Windows. Alexander, Thanks for the reply. The driver in FreeBSD 5.0 has a bug that is most likely causing the problem that you're seeing in there. I fixed it about a week ago in 5-CURRENT, so you'll need to update in order for it to work. As for 4.x, I discovered that the driver there was never updated for the newer generation of cards, of which I think the ER3000 is part of. If the card does wind up working well on 5-CURRENT, I'll work on updating the driver in 4.x. Scott > > > >-----Original Message----- > >From: Scott Long [mailto:scottl@FreeBSD.org] > >Sent: Saturday, February 15, 2003 2:58 AM > >To: alexander.dubinin@intel.com; scottl@FreeBSD.org; > >freebsd-bugs@FreeBSD.org > >Subject: Re: kern/40481: Kernel fault on detecting Mylex > >eXtreme RAID 3000 controller > > > > > >Synopsis: Kernel fault on detecting Mylex eXtreme RAID 3000 controller > > > >State-Changed-From-To: open->feedback > >State-Changed-By: scottl > >State-Changed-When: Fri Feb 14 15:56:15 PST 2003 > >State-Changed-Why: > >I only have access to an eXtreme RAID 2000, and it appears to > >work fine. > >Can you try removing the card, installing onto another disk, inserting > >the card, and capturing the crash via a serial console? Also, does it > >behave any different under 5.0-R? > > > >http://www.freebsd.org/cgi/query-pr.cgi?pr=40481 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 3:30:15 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6939537B401 for ; Mon, 17 Feb 2003 03:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA6BB43FD7 for ; Mon, 17 Feb 2003 03:30:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1HBUBNS079229 for ; Mon, 17 Feb 2003 03:30:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1HBUBvQ079228; Mon, 17 Feb 2003 03:30:11 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6867637B401 for ; Mon, 17 Feb 2003 03:23:37 -0800 (PST) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35C7943FDD for ; Mon, 17 Feb 2003 03:23:36 -0800 (PST) (envelope-from ma@dt.e-technik.uni-dortmund.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id 0F799A381D for ; Mon, 17 Feb 2003 12:23:35 +0100 (CET) Received: by merlin.emma.line.org (Postfix, from userid 500) id 48B8F7C405; Mon, 17 Feb 2003 12:23:33 +0100 (CET) Received: by merlin.emma.line.org (Postfix, from userid 500) id 9C11A7C405; Mon, 17 Feb 2003 12:22:54 +0100 (CET) Received: from localhost (127.0.0.1) by merlin with POP3 (getmail 2.3.9.ma1) for ; 17 Feb 2003 11:22:54 -0000 Received: from unimail.uni-dortmund.de ([unix socket]) by unimail (Cyrus v2.1.11) with LMTP; Mon, 17 Feb 2003 12:15:07 +0100 Received: from nx5.HRZ.Uni-Dortmund.DE (nx5.HRZ.Uni-Dortmund.DE [129.217.131.21]) by unimail.uni-dortmund.de (8.12.7+Sun/8.11.6) with ESMTP id h1HBEwPZ001084 for ; Mon, 17 Feb 2003 12:15:07 +0100 (MET) Received: from m2a2.myip.org (actually pD9E1E033.dip.t-dialin.net) by nx5.HRZ.Uni-Dortmund.DE via smtp-def with ESMTP; Mon, 17 Feb 2003 10:57:30 +0100 Received: by emma.line.org (Postfix, from userid 0) id 27A5E1B205; Mon, 17 Feb 2003 10:57:27 +0100 (CET) Message-Id: <20030217095727.27A5E1B205@emma.line.org> Date: Mon, 17 Feb 2003 10:57:27 +0100 (CET) From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48369: ext2fs no-go in FreeBSD 5 (regression over 4.7) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48369 >Category: kern >Synopsis: ext2fs no-go in FreeBSD 5 (regression over 4.7) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 17 03:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Bourne-again Superuser >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD merlin.emma.line.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Mon Feb 17 09:59:35 CET 2003 root@merlin.emma.line.org:/usr/src/sys/i386/compile/MA5 i386 >Description: Since the update from 4-STABLE to 5, I can no longer mount my Linux ext3fs (root) partition: -bash-2.05b# grep /linux /etc/fstab /dev/da0s1 /linux ext2fs ro,noauto 0 0 -bash-2.05b# mount /linux ext2fs: /dev/da0s1: Operation not supported by device -bash-2.05b# e2fsck /dev/da0s1 e2fsck 1.27 (8-Mar-2002) The filesystem size (according to the superblock) is 192252 blocks The physical size of the device is 0 blocks Either the superblock or the partition table is likely to be corrupt! >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 5:20:12 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA6A337B401 for ; Mon, 17 Feb 2003 05:20:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 684B843FA3 for ; Mon, 17 Feb 2003 05:20:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1HDK7NS013538 for ; Mon, 17 Feb 2003 05:20:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1HDK7eQ013537; Mon, 17 Feb 2003 05:20:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FEEA37B401 for ; Mon, 17 Feb 2003 05:13:08 -0800 (PST) Received: from bsd.masp.srv.br (bsd.masp.srv.br [200.223.149.86]) by mx1.FreeBSD.org (Postfix) with SMTP id 3900643F75 for ; Mon, 17 Feb 2003 05:13:06 -0800 (PST) (envelope-from duwde@isec.com.br) Received: (qmail 61295 invoked from network); 17 Feb 2003 13:21:11 -0000 Received: from unknown (HELO astral.home.isec.com.br) (200.164.0.100) by bsd.masp.srv.br with SMTP; 17 Feb 2003 13:21:11 -0000 Received: (from duwde@localhost) by astral.home.isec.com.br (8.12.6/8.12.6/Submit) id h1HDEtvN001044; Mon, 17 Feb 2003 10:14:55 -0300 (BRT) (envelope-from duwde) Message-Id: <200302171314.h1HDEtvN001044@astral.home.isec.com.br> Date: Mon, 17 Feb 2003 10:14:55 -0300 (BRT) From: Fabio Vilan Dias Reply-To: Fabio Vilan Dias To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/48378: [PATCH] User-PPP MTU/MRU - LCP Problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48378 >Category: bin >Synopsis: [PATCH] User-PPP MTU/MRU - LCP Problem >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 17 05:20:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Fabio Vilan Dias >Release: FreeBSD 4.7-STABLE i386 >Organization: ISec.com.br >Environment: System: FreeBSD astral.home.isec.com.br 4.7-STABLE FreeBSD 4.7-STABLE #0: Mon Feb 10 02:03:52 BRST 2003 root@astral.home.isec.com.br:/usr/obj/usr/src/sys/ASTRAL i386 >Description: There is a very specific bug in user-ppp LCP negotiation that if the peer NAKs and REJs our requested MRU and if it doesn't ask for any specific MRU, the standard compiled default MRU (1500) is assigned to the peer mru (variable lcp->his_mru in lcp.c), but if we're using PPPoE, for example, the his_mru will never be updated to the new 1492 value, so the tun0 MTU will be incorrectly set to 1500 instead of 1492. Even setting "set mru max 1492" and "set mtu max 1492" won't fix the problem and you'll end up with a tun0 mtu of 1500. You can see a ppp.log of this problem here: http://www.isec.com.br/ppp-lcp-bug/ppp-broken-mtu-1500.log >How-To-Repeat: Just try to simulate a LCP negotiation only NAKing and REJing the peer MRU request, and don't ask for any specific MRU value. Or you can follow the source code in lcp.c and see that when this behavior exists, the variable lcp->his_mru will be wrong if you have PPPoE (or use the "set mru max" and/or "set mtu max" command) because it's supposed to be updated when : a) you ack a peer req, b) you nak a peer req, c) your peer ack your req. But those things may not happen at all if the peer NAKs an REJk only, and if it doesn't ask for any MRU at all. >Fix: Here's a simple patch that checks if the lcp->his_mru is less than the mru after a MRU Reject, if so, we update the lcp->his_mru because it'll be used to set the tun0 MTU in bundle.c, so it MUST be updated to the proper value. Remember, again, that this bug will only happen if the peer only NAK, REJ and doesn't ask for any MRU from us... if it does, there's already some code that will update the lcp->his_mru to the proper value and the bug won't happen. Anyway this MUST be fixed. *** lcp.c.orig Mon Jan 6 15:51:17 2003 --- lcp.c Mon Feb 17 08:35:47 2003 *************** *** 786,791 **** --- 786,795 ---- lcp->want_mru = mru; break; case MODE_REJ: + /* Fabio Vilan: Fix his_mru if the peer has never ACK or REQ any MRU */ + if (lcp->his_mru > mru) + lcp->his_mru = mru; + lcp->his_reject |= (1 << opt->hdr.id); break; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 5:30:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9340637B401 for ; Mon, 17 Feb 2003 05:30:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F0AB43F85 for ; Mon, 17 Feb 2003 05:30:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1HDU4NS015643 for ; Mon, 17 Feb 2003 05:30:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1HDU431015642; Mon, 17 Feb 2003 05:30:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A43D137B401 for ; Mon, 17 Feb 2003 05:25:17 -0800 (PST) Received: from mailrelay2.lrz-muenchen.de (mailrelay2.lrz-muenchen.de [129.187.254.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C5C43F75 for ; Mon, 17 Feb 2003 05:25:16 -0800 (PST) (envelope-from johannes.schaefer@lrz.tu-muenchen.de) Received: from sun4.lrz-muenchen.de by mailrelay2.lrz-muenchen.de with ESMTP; Mon, 17 Feb 2003 14:25:12 +0100 Received: (from t383106@localhost) by sun4.lrz-muenchen.de (8.11.6+Sun/8.11.6) id h1HDPB900922; Mon, 17 Feb 2003 14:25:11 +0100 (MET) Message-Id: <200302171325.h1HDPB900922@sun4.lrz-muenchen.de> Date: Mon, 17 Feb 2003 14:25:11 +0100 (MET) From: johannes.schaefer@lrz.tu-muenchen.de Reply-To: johannes.schaefer@lrz.tu-muenchen.de To: FreeBSD-gnats-submit@FreeBSD.org Cc: johannes.schaefer@lrz.tu-muenchen.de X-Send-Pr-Version: 3.113 Subject: kern/48379: the keyboard is dead after X11R6 started Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48379 >Category: kern >Synopsis: the keyboard is dead after X11R6 started >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 17 05:30:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: johannes schaefer >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD gandalf.foo.org 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Fri Jan 31 12:15:31 CET 2003 root@gandalf.foo.org:/usr/obj/kernels/SMALL i386 >Description: The keyboard is dead after X11R6 started. Standard X11 clients (like xterm (1), xdm (1), emacs (1)) behave as if the keyboard were disconnected, i.e. there is no visible response if any key is pressed. The mouse still works. This error does not occur when using a 4.7-RELEASE (i386). Since XFree86-4.2.x does not yet support my video card, I used a fresh compiled set of XFree86-3.3.6 binaries and libraries. The mouse and the keyboard are plugged in using PS/2 connectors. The following hardware is used (in case it might be needed) Motherboard: ASUS, P2B Keyboard: Cherry, RS 6000 M Mouse: Logitech, Mouseman Below I appended the kernel configuration file and boot messages >How-To-Repeat: just start X11R6 >Fix: n/a ---------------------------------------------------------------------------- the configuration file extracted via: `/usr/bin/strings /boot/kernel/kernel | /usr/bin/grep ^___' ___machine i386 ___cpu I686_CPU ___ident GANDALF ___maxusers 0 ___makeoptions CONF_CFLAGS=-fno-builtin ___makeoptions KERNEL=kernel.SMALL ___options INCLUDE_CONFIG_FILE ___options COMPAT_43 ___options COMPAT_FREEBSD4 ___options SYSVSHM ___options SYSVMSG ___options SYSVSEM ___options _KPOSIX_PRIORITY_SCHEDULING ___options FFS ___options SOFTUPDATES ___options INET ___options INET6 ___device loop ___device ether ___device scbus ___device da ___device ahc ___options AHC_ALLOW_MEMIO ___options SCSI_DELAY=1000 ___device pty ___device pci ___device isa ___options AUTO_EOI_1 ___device sio ___device atkbdc ___device atkbd ___options ATKBD_DFLT_KEYMAP ___makeoptions ATKBD_DFLT_KEYMAP="german.iso" ___device psm ___device vga ___device sc ___options MAXCONS=8 ___options SC_DFLT_FONT ___makeoptions SC_DFLT_FONT=iso15 ___options SC_DISABLE_DDBKEY ___options SC_DISABLE_REBOOT ___options SC_HISTORY_SIZE=128 ___options SC_NORM_ATTR=(FG_BLACK|BG_LIGHTGREY) ___options SC_NORM_REV_ATTR=(FG_WHITE|BG_BLACK) ___options SC_KERNEL_CONS_ATTR=(FG_RED|BG_LIGHTGREY) ___options SC_KERNEL_CONS_REV_ATTR=(FG_WHITE|BG_RED) ___device npx ---------------------------------------------------------------------------- the bootmessages from `/sbin/dmesg' Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RELEASE #0: Fri Jan 31 12:15:31 CET 2003 root@gandalf.foo.org:/usr/obj/kernels/SMALL Preloaded elf kernel "/boot/kernel.SYSCONS/kernel.SMALL" at 0xc03ca000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc03ca0c4. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 350797371 Hz CPU: Pentium II/Pentium II Xeon/Celeron (350.80-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183f9ff real memory = 67096576 (63 MB) avail memory = 61063168 (58 MB) Initializing GEOMetry subsystem Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 Using $PIR table, 6 entries at 0xc00f0d10 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-safe" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 acpi_cpu0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 4.0 on pci0 isa0: on isab0 pci0: at device 4.1 (no driver attached) pci0: at device 4.2 (no driver attached) pci0: at device 4.3 (no driver attached) ahc0: port 0xd000-0xd0ff mem 0xe3000000-0xe3000fff irq 10 at device 11.0 on pci0 ahc0: PCI Device 0:11:0 failed memory mapped test. Using PIO. aic7880: Single Channel A, SCSI Id=7, 16/253 SCBs pci0: at device 12.0 (no driver attached) sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 orm0: Òðåíèíã ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé

Èíñòèòóò êîðïîðàòèâíûõ ïàáëèê ðèëåéøíç (ÈÍÊÎÐÏÈÀÐ) ïðèãëàøàåò ïðèíÿòü ó÷àñòèå â ïðîãðàììå:

Òðåíèíã
ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé.

Öåëü
òðåíèíãà:
ïîâûñèòü ýôôåêòèâíîñòü äåëîâûõ êîíòàêòîâ

Çàäà÷è òðåíèíãà:

  • èçó÷èòü çàêîíîìåðíîñòè äåëîâîãî îáùåíèÿ;
  • íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü ñîáåñåäíèêà: ïîíèìàòü òî, ÷òî îí «ãîâîðèò» è «íå ãîâîðèò»;
  • îñâîèòü íàâûêè áûñòðîé äèàãíîñòèêè ñèòóàöèè è âûáîðà îïòèìàëüíîé ñòðàòåãèè ïîâåäåíèÿ;
  • íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü è ïîäàâàòü èíôîðìàöèþ;
  • îâëàäåòü ïðàêòè÷åñêèìè íàâûêàìè óáåæäåíèÿ è ìåòîäàìè âëèÿíèÿ;
  • îçíàêîìèòüñÿ ñ ïðèíöèïàìè ìàíèïóëÿòèâíûõ òåõíèê è îñâîèòü íàâûêè ïðîòèâîñòîÿíèÿ èì;
  • íàó÷èòüñÿ íå òîëüêî èçáåãàòü, íî è ïðîäóêòèâíî èñïîëüçîâàòü êîíôëèêòû;
  • îâëàäåòü íàâûêàìè êîíñòðóêòèâíîãî ïîâåäåíèÿ â ñòðåññîâûõ ñèòóàöèÿõ;
  • îñâîèòü ñòðàòåãèè ïîâåäåíèÿ â óñëîâèÿõ äåôèöèòà èíôîðìàöèè.

Ïëàíèðóåìûå ðåçóëüòàòû:

  • êîìïåòåíòíîñòü â çàêîíàõ äåëîâîé êîììóíèêàöèè;

  • äîñòèæåíèå ìàêñèìàëüíîãî ðåçóëüòàòà â ïåðåãîâîðíîì ïðîöåññå;

  • óâåðåííîå ïîâåäåíèå â ðàçëè÷íûõ ñèòóàöèÿõ îáùåíèÿ;

  • ñïîñîáíîñòü áûñòðî íàõîäèòü îïòèìàëüíûå ðåøåíèÿ;

  • óìåíèå àíàëèçèðîâàòü è èñïîëüçîâàòü ïîëó÷åííûé îïûò.

Ïðîãðàììà òðåíèíãà
ýôôåêòèâíûõ
äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé

  • Îáùåå ïðåäñòàâëåíèå î ñòðóêòóðå ïðîöåññà ýôôåêòèâíîé êîììóíèêàöèè

  • Îïðåäåëåíèå êà÷åñòâ, íåîáõîäèìûõ óñïåøíîìó êîììóíèêàòîðó

  • Öåëåïîëàãàíèå

  • ×óâñòâèòåëüíîñòü ê ñîáåñåäíèêó è åãî ïñèõè÷åñêîìó ñîñòîÿíèþ

  • Ãèáêîñòü è ðàçíîîáðàçèå â âûáîðå ñòðàòåãèè îáùåíèÿ ñ íèì

  • Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ ïðàêòè÷åñêîãî èñïîëüçîâàíèÿ ÷óâñòâèòåëüíîñòè è ãèáêîñòè

  •  

  • Îçíàêîìëåíèå ñ ýòàïàìè äåëîâîé êîììóíèêàöèè, îñîáåííîñòÿìè êàæäîãî ýòàïà è ñîîòâåòñòâóþùèìè ýôôåêòèâíûìè ñòðàòåãèÿìè ïîâåäåíèÿ

  • Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ óñïåøíîé êîììóíèêàöèè íà íà÷àëüíûõ ýòàïàõ îáùåíèÿ («ïðèñîåäèíåíèå» - óñòàíîâëåíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû, âûÿâëåíèå ïîçèöèé, öåííîñòåé è íàèáîëåå çíà÷èìûõ ïîòðåáíîñòåé ñîáåñåäíèêà)

  • Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ «ñîïðîâîæäåíèÿ» ñîáåñåäíèêà â åãî ñòðóêòóðå ïîòðåáíîñòåé è öåííîñòåé. Çàêðåïëåíèå è ïîääåðæàíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû (óäåðæàíèå ðàïïîðòà)

  • Îñâîåíèå óìåíèé «âåäåíèÿ» êëèåíòà (êîððåêöèÿ åãî óáåæäåíèé ñ ó÷åòîì Âàøèõ èíòåðåñîâ)

  • Ðàáîòà ñ ñîìíåíèÿìè è âîçðàæåíèÿìè

  • Ïðèíöèïû âçàèìîäåéñòâèÿ â îñòðûõ êîíôëèêòíûõ ñèòóàöèÿõ

  • Çíàêîìñòâî ñ ìàíèïóëÿòèâíûìè òåõíîëîãèÿìè

Òðåíåð – êîíñóëüòàíò: Àëåêñåé Øíååð

Äàòà ïðîâåäåíèÿ òðåíèíãà: 14, 15, 16 ìàðòà 2002 ã. ñ 10 äî 18
Ìåñòî ïðîâåäåíèÿ: Ìîñêâà, Ïóëêîâñêàÿ óë.2, ÊÐÖ «Êåíòàâð», 2 ýòàæ, Õóäîæåñòâåííàÿ ãàëåðåÿ
Ïðåäóñìîòðåíû îáåäû è êîôå-áðåéêè.
Ïî îêîí÷àíèè âûäàåòñÿ ñåðòèôèêàò Èíêîðïèàð, ìåòîäè÷åñêîå ïîñîáèå À. Øíååðà è ìåòîäè÷åñêîå ïîñîáèå «Òåîðèÿ è ïðàêòèêà
PR â óñëîâèÿõ ñîâðåìåííîé Ðîññèè» Ñ. Àðõèïîâà è Ê. Êðàéíîâà
Ñòîèìîñòü òðåíèíãà: 280 äîëë. ÑØÀ
Äîïîëíèòåëüíàÿ èíôîðìàöèÿ è ðåãèñòðàöèÿ ïî òåë. Â Ìîñêâå:
095 – 459 – 9023
095 – 459 - 9034

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 20:50:14 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D63237B401 for ; Mon, 17 Feb 2003 20:50:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A59343F75 for ; Mon, 17 Feb 2003 20:50:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1I4oDNS050229 for ; Mon, 17 Feb 2003 20:50:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1I4oCl4050228; Mon, 17 Feb 2003 20:50:12 -0800 (PST) Date: Mon, 17 Feb 2003 20:50:12 -0800 (PST) Message-Id: <200302180450.h1I4oCl4050228@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Mike Makonnen Subject: Re: bin/48399: Can't put URL in GECOS phone field Reply-To: Mike Makonnen Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/48399; it has been noted by GNATS. From: Mike Makonnen To: Galen Hancock Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/48399: Can't put URL in GECOS phone field Date: Mon, 17 Feb 2003 23:42:56 -0500 As you've allready noted, colons are not allowed in _any_ passwd field. The better solution is probably to encode the information in a human readable format. Example: 19081@fwd.pulver.com Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Feb 17 23:40:25 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 648E537B405 for ; Mon, 17 Feb 2003 23:40:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7631E43FDD for ; Mon, 17 Feb 2003 23:40:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1I7eCNS094746 for ; Mon, 17 Feb 2003 23:40:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1I7eCrF094745; Mon, 17 Feb 2003 23:40:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 908E637B401 for ; Mon, 17 Feb 2003 23:38:57 -0800 (PST) Received: from ws-t2.galati.rdsnet.ro (ws-t2.galati.rdsnet.ro [193.231.184.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4647843F75 for ; Mon, 17 Feb 2003 23:38:56 -0800 (PST) (envelope-from enter@ws-t2.galati.rdsnet.ro) Received: from ws-t2.galati.rdsnet.ro (localhost.galati.rdsnet.ro [127.0.0.1]) by ws-t2.galati.rdsnet.ro (8.12.6/8.12.6) with ESMTP id h1I7cfEW067855 for ; Tue, 18 Feb 2003 09:38:43 +0200 (EET) (envelope-from enter@ws-t2.galati.rdsnet.ro) Received: (from enter@localhost) by ws-t2.galati.rdsnet.ro (8.12.6/8.12.6/Submit) id h1I7cfBI067854; Tue, 18 Feb 2003 09:38:41 +0200 (EET) Message-Id: <200302180738.h1I7cfBI067854@ws-t2.galati.rdsnet.ro> Date: Tue, 18 Feb 2003 09:38:41 +0200 (EET) From: Emil Cazamir Reply-To: Emil Cazamir To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48414: FreeBSD's drm code does not detect the ATI 9500 Pro AGP card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48414 >Category: kern >Synopsis: FreeBSD's drm code does not detect the ATI 9500 Pro AGP card >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 17 23:40:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Emil Cazamir >Release: FreeBSD 5.0-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD ws-t2.galati.rdsnet.ro 5.0-RELEASE-p1 FreeBSD 5.0-RELEASE-p1 #8: Mon Feb 17 18:56:18 EET 2003 root@ws-t2.galati.rdsnet.ro:/usr/obj/usr/src/sys/ENTER i386 >Description: I have an ATI Radeon 9500 pro card, and kernel's drm code does not enable it. dmesg -----> Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RELEASE-p1 #8: Mon Feb 17 18:56:18 EET 2003 root@ws-t2.galati.rdsnet.ro:/usr/obj/usr/src/sys/ENTER Preloaded elf kernel "/boot/kernel/kernel" at 0xc06ef000. Preloaded elf module "/boot/kernel/snd_emu10k1.ko" at 0xc06ef0a8. Preloaded elf module "/boot/kernel/snd_pcm.ko" at 0xc06ef158. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc06ef204. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 1551926313 Hz CPU: AMD Athlon(tm) XP 1800+ (1551.93-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x681 Stepping = 1 Features=0x383fbff AMD Features=0xffffffffc0400000 real memory = 268369920 (255 MB) avail memory = 253259776 (241 MB) Initializing GEOMetry subsystem Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15 Using $PIR table, 9 entries at 0xc00fd5d0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 acpi_cpu0: on acpi0 acpi_button0: on acpi0 acpi_button1: on acpi0 pcib0: port 0x6000-0x607f,0x5000-0x500f,0x4080-0x40ff,0x4 000-0x407f,0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) pci1: at device 0.1 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xd000-0xd00f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd400-0xd41f irq 10 at device 7.2 on pc i0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xd800-0xd81f irq 10 at device 7.3 on pc i0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pcm0: port 0xdc00-0xdc1f irq 5 at device 10.0 on pci0 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xe400-0xe47f mem 0xe7000000-0xe700 007f irq 11 at device 12.0 on pci0 xl0: Ethernet address: 00:01:02:24:93:84 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fdc0: port 0x3f7,0x3f0-0 x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A ppc0 port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 orm0: ðòéçìáûåîéå äìñ õþáóôéñ ÷ ðòáëôéþåóëïí ïâõþáàýåí óåíéîáòå
***************************************
ïÒÇÁÎÉÚÁÔÏÒ:
úáï "ïÂÝÅÓÔ×Ï ÆÉÎÁÎÓÏ×ÏÇÏ É ÜËÏÎÏÍÉÉÞÅÓËÏÇÏ ÒÁÚ×ÉÔÉÑ ÐÒÅÄÐÒÉÑÔÉÊ òïæüò"
ÉÓÈÏÄÑÝÉÅ ÓÏÏÂÝÅÎÉÅ №84/02 ÏÔ 14.02.2003Ç.
***************************************
ôÅÍÁ ÓÅÍÉÎÁÒÁ:
«ÐÒÏÆÅÓÓÉÏÎÁÌØÎÏÅ ÆÉÎÁÎÓÏ×ÏÅ ÐÌÁÎÉÒÏ×ÁÎÉÅ».
 
ðÏ ÚÁÐÒÏÓÕ ×ÙÓÙÌÁÀÔÓÑ 2 ÉÎÆÏÒÍÁÃÉÏÎÎÙÈ ÆÁÊÌÁ:
seminar_bp.doc (ÆÏÒÍÁÔ MSWord)  - ÐÏÌÎÏÅ ÏÐÉÓÁÎÉÅ ÓÅÍÉÎÁÒÁ;
seminar.xls (ÆÏÒÍÁÔ MSExcel) - ÆÏÒÍÁ ÚÁÑ×ËÉ ÎÁ ÕÞÁÓÔÉÅ × ÓÅÍÉÎÁÒÅ.
***************************************************************************************
                  ÷ÎÉÍÁÎÉÅ áËÃÉÑ:
             ÔÏÌØËÏ × ËÁÎÕÎ 8 ÍÁÒÔÁ
×ÓÅ ÕÞÁÓÔÎÉÃÙ ÓÅÍÉÎÁÒÁ ÐÏÌÕÞÁÀÔ × ÐÏÄÁÒÏË ÐÒÏÆ. ÂÌÏË
«Business Plan PL» Professional category «Analyzer»
(ÐÏÓÔÒÏÅÎÉÅ, ÒÁÚ×ÉÔÉÅ É ÕÐÒÁ×ÌÅÎÉÅ ÜËÏÎÏÍÉÞÅÓËÏÊ ÍÏÄÅÌØÀ
ÐÒÅÄÐÒÉÑÔÉÑ).
 
****************************************************************************************
"ïæüòð òïæüò" ÐÒÉÇÌÁÛÁÅÔ ÓÐÅÃÉÁÌÉÓÔÏ× É ÒÕËÏ×ÏÄÉÔÅÌÅÊ ×ÓÅÈ ÒÁÎÇÏ× ÐÏÓÅÔÉÔØ
ÐÒÁËÔÉÞÅÓËÉÊ ÓÅÍÉÎÁÒ × ÓÆÅÒÅ ÂÉÚÎÅÓ ÐÌÁÎÉÒÏ×ÁÎÉÑ (ÏÔ ÎÁÞÁÌØÎÙÈ ÜÌÅÍÅÎÔÏ×
ÂÉÚÎÅÓ ÐÌÁÎÉÒÏ×ÁÎÉÑ ÄÏ ÓÏÚÄÁÎÉÑ ÐÒÏÆÅÓÓÉÏÎÁÌØÎÏÊ ÄÏËÕÍÅÎÔÁÃÉÉ) Ó
ÐÏÓÌÅÄÕÀÝÅÊ ×ÙÄÁÞÅÊ Ë×ÁÌÉÆÉËÁÃÉÏÎÎÏÇÏ ÓÅÒÔÉÆÉËÁÔÁ.
 
÷áöîï! úÁÎÑÔÉÑ ÐÒÏ×ÏÄÑÔÓÑ × ËÏÍÐØÀÔÅÒÎÏÍ ËÌÁÓÓÅ
(ÉÚ ÒÁÓÞÅÔÁ:  ÏÄÉÎ ÕÞÁÓÔÎÉË - ÏÄÎÏ ÒÁÂÏÞÅÅ ÍÅÓÔÏ).
 
ëÒÁÔËÁÑ ÉÎÆÏÒÍÁÃÉÑ Ï ÓÅÍÉÎÁÒÅ:
äÁÔÁ ÐÒÏ×ÅÄÅÎÉÑ ÓÅÍÉÎÁÒÁ:
03 - 06 ÍÁÒÔÁ 2003Ç.
îáìéþéå íåóô (×ÓÅÇÏ 22)
 
óËÉÄËÉ: ÐÒÉ ÅÄÉÎÏ×ÒÅÍÅÎÎÏÍ ÐÏÓÅÝÅÎÉÉ 2-È É ÂÏÌÅÅ ÕÞÁÓÔÎÉËÏ×.
ðÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ: 4 ÄÎÑ
ëÏÌ-×Ï ÞÁÓÏ×: ×ÓÅÇÏ 36Þ.
ÎÅ ÏÂÑÚÁÔÅÌØÎÙÈ 4Þ.
1 ÄÅÎØ: 8 ÞÁÓÏ×  2 ÄÅÎØ: 8 ÞÁÓÏ×
3 ÄÅÎØ: 8 ÞÁÓÏ×  4 ÄÅÎØ: 8 ÞÁÓÏ×
ðÌÀÓ 1 ÞÁÓ (ÎÅÏÂÑÚÁÔÅÌØÎÙÊ) Ë ËÁÖÄÏÍÕ ÄÎÀ ÄÌÑ ÒÁÓÓÍÏÔÒÅÎÉÑ
ÏÂÝÉÈ ÔÅÍ É ÄÏÐÏÌÎÉÔÅÌØÎÏÇÏ ÏÂÕÞÅÎÉÑ.
 
íÅÓÔÏ ÐÒÏ×ÅÄÅÎÉÑ: Ç. íÏÓË×Á "CONGRESS HOTEL éòéó"
ÄÏÓÔÁ×ËÁ Ë ÍÅÓÔÕ ÐÒÏ×ÅÄÅÎÉÑ ÓÅÍÉÎÁÒÁ ÏÓÕÝÅÓÔ×ÌÑÅÔÓÑ ÔÒÁÎÓÐÏÒÔÏÍ ËÏÍÐÁÎÉÉ.
îÁÚ×ÁÎÉÅ ÓÅÍÉÎÁÒÁ:
«ïÔ ÎÁÞÁÌØÎÙÈ ÜÌÅÍÅÎÔÏ× ÂÉÚÎÅÓ ÐÌÁÎÉÒÏ×ÁÎÉÑ É ÉÎ×ÅÓÔÉÃÉÏÎÎÏÇÏ ÐÒÏÅËÔÉÒÏ×ÁÎÉÑ
ÄÏ ÐÏÓÔÒÏÅÎÉÑ ÜËÏÎÏÍÉÞÅÓËÏÊ ÍÏÄÅÌÉ ÐÒÅÄÐÒÉÑÔÉÑ É ÓÏÚÄÁÎÉÑ ÐÒÏÆÅÓÓÉÏÎÁÌØÎÏÊ
ÄÏËÕÍÅÎÔÁÃÉÉ» ðÏÄÇÏÔÏ×ËÁ ÕÞÁÓÔÎÉËÏ× ÐÒÁËÔÉÞÅÓËÏÇÏ ÓÅÍÉÎÁÒÁ ÂÕÄÅÔ ÏÓÎÏ×ÁÎÁ ÎÁ
ÐÒÏÇÒÁÍÍÎÏÍ ëÏÍÐÌÅËÓÅ «Business Plan PL» Professional.
 
÷ÁÖÎÁÑ ÉÎÆÏÒÍÁÃÉÑ!  ÏÂÕÞÅÎÉÅ ÂÕÄÅÔ ÐÒÏ×ÏÄÉÔØÓÑ ÎÁ ÂÁÚÅ ËÏÍÐÌÅËÓÁ
«Business Plan PL» Professional Ó ÉÓÐÏÌØÚÏ×ÁÎÉÅÍ ÔÅÈÎÏÌÏÇÉÊ
(ÁÎÁÌÉÔÉÞÅÓËÏÇÏ ÑÄÒÁ) “LOGICAL  J 3000” É ÍÅÔÏÄÉËÉ «âÀÄÖÅÔÉÒÏ×ÁÎÉÅ».
 
óÏ×ÍÅÝÅÎÉÅ ÐÒÏÇÒÁÍÍÎÏÇÏ ËÏÍÐÌÅËÓÁ Ó ÍÅÔÏÄÉÞÅÓËÏÊ É ÔÅÈÎÉÞÅÓËÏÊ
ÉÎÆÏÒÍÁÃÉÅÊ úîáþéôåìøîï ÒÁÓÛÉÒÉÔ ÚÎÁÎÉÑ ËÁÖÄÏÇÏ ÕÞÁÓÔÎÉËÁ ÓÅÍÉÎÁÒÁ ×
ÓÆÅÒÅ ÜËÏÎÏÍÉÞÅÓËÏÇÏ ÐÌÁÎÉÒÏ×ÁÎÉÑ, ÐÏÚ×ÏÌÉÔ ÐÏÌÕÞÉÔØ ÐÒÏÆÅÓÓÉÏÎÁÌØÎÙÅ
ÎÁ×ÙËÉ × ÒÁÚÒÁÂÏÔËÅ ÜËÏÎÏÍÉÞÅÓËÏÊ ÍÏÄÅÌÉ, ÐÏÍÏÖÅÔ ÇÌÕÂÏËÏ ÏÓÏÚÎÁÔØ
×ÅÓØ ÐÒÏÃÅÓÓ ÐÌÁÎÉÒÏ×ÁÎÉÑ, ÐÏÄÇÏÔÏ×ÉÔØ ÎÁÇÌÑÄÎÕÀ ÐÒÏÆÅÓÓÉÏÎÁÌØÎÕÀ
ÄÏËÕÍÅÎÔÁÃÉÀ É ÐÒÅÚÅÎÔÁÃÉÀ ÎÁ ÏÓÎÏ×Å ÐÒÏÇÒÁÍÍÎÏÇÏ ËÏÍÐÌÅËÓÁ.
 
ëÁÖÄÏÍÕ ÕÞÁÓÔÎÉËÕ ÓÅÍÉÎÁÒÁ:
ÄÌÑ ÄÁÌØÎÅÊÛÅÊ ÕÓÐÅÛÎÏÊ ÒÁÂÏÔÙ É ×ÎÅÄÒÅÎÉÑ ÍÅÔÏÄÉËÉ ÐÌÁÎÉÒÏ×ÁÎÉÑ É
ÔÅËÕÝÅÇÏ ÂÀÄÖÅÔÎÏÇÏ ÕÞÅÔÁ ÎÁ ÐÒÅÄÐÒÉÑÔÉÉ ÐÒÅÄÏÓÔÁ×ÌÑÀÔÓÑ ÂÅÓÐÌÁÔÎÏ
ÓÌÅÄÕÀÝÉÅ ÍÅÔÏÄÉÞÅÓËÉÅ ÍÁÔÅÒÉÁÌÙ É ÐÒÏÇÒÁÍÍÙ:
 
*  «Business Plan PL» ÐÁËÅÔ «ðÏÌÎÙÊ» (ÎÏ×ÁÑ 3.4 ×ÅÒÓÉÑ)
*  «Business Plan PL» Professional category «Integrator» (ÎÏ×ÁÑ ÐÒÏÇÒÁÍÍÁ)
*  ÷ ÐÏÄÁÒÏË ÐÒÏÇÒÁÍÍÁ “Business Plan ðÌÁÎ í” (ÎÏ×ÁÑ 1.4 ×ÅÒÓÉÑ).
*  íÅÔÏÄÉÞÅÓËÉÊ ÐÅÞÁÔÎÙÊ ÍÁÔÅÒÉÁÌ (ÒÁÚÒÁÂÏÔÁÎÎÙÊ ÎÁÛÅÊ ËÏÍÐÁÎÉÅÊ)
ÄÌÑ ÓÁÍÏÓÔÏÑÔÅÌØÎÏÊ ÒÁÚÒÁÂÏÔËÉ ÆÉÎÁÎÓÏ×ÏÊ ÄÏËÕÍÅÎÔÁÃÉÉ.
*  üÌÅËÔÒÏÎÎÁÑ ×ÅÒÓÉÑ (ÎÁ CD) ÍÅÔÏÄÉÞÅÓËÏÇÏ ÍÁÔÅÒÉÁÌÁ ÄÌÑ ÓÁÍÏÓÔÏÑÔÅÌØÎÏÊ
ÒÁÚÒÁÂÏÔËÉ ÆÉÎÁÎÓÏ×ÏÊ ÄÏËÕÍÅÎÔÁÃÉÉ É ÓÏÂÓÔ×ÅÎÎÏÇÏ ÍÅÔÏÄÉÞÅÓËÏÇÏ ÍÁÔÅÒÉÁÌÁ.
 
       äïðïìîéôåìøîï:
*÷ðåò÷ùå! É ÔÏÌØËÏ ÕÞÁÓÔÎÉËÉ ÓÅÍÉÎÁÒÁ ÐÏÌÕÞÁÔ × ÐÏÄÁÒÏË ÏÔ ËÏÍÐÁÎÉÉ ÞÁÓÔØ
ÔÅÈÎÏÌÏÇÉÊ × ×ÉÄÅ ÉÓÐÏÌÎÉÔÅÌØÎÙÈ ÐÒÏÇÒÁÍÍÎÙÈ ÍÏÄÕÌÅÊ ÄÌÑ ×ÏÓÐÒÏÉÚ×ÏÄÓÔ×Á
ÄÏËÕÍÅÎÔÁÃÉÉ É ÆÏÒÍÉÒÏ×ÁÎÉÑ ÏÔÞÅÔÏ× É ÐÒÅÚÅÎÔÁÃÉÊ.
 
*65% - ÓËÉÄËÉ ÎÁ ÐÒÉÏÂÒÅÔÅÎÉÅ «Business Plan PL» Professional category «Analyzer»
(ÐÏÓÔÒÏÅÎÉÅ, ÒÁÚ×ÉÔÉÅ É ÕÐÒÁ×ÌÅÎÉÅ ÜËÏÎÏÍÉÞÅÓËÏÊ ÍÏÄÅÌØÀ ÐÒÅÄÐÒÉÑÔÉÑ).
äÌÑ ÄÁÎÎÏÊ ËÁÔÅÇÏÒÉÉ ÕÞÁÓÔÎÉËÏ× ÂÕÄÅÔ ÏÒÇÁÎÉÚÏ×ÁÎ ÄÏÐÏÌÎÉÔÅÌØÎÙÊ ÂÅÓÐÌÁÔÎÙÊ
ÄÅÎØ ÏÂÕÞÅÎÉÑ ÎÅ ×ÈÏÄÑÝÉÊ × ÓÏÓÔÁ× ÒÁÓÐÉÓÁÎÉÑ ÐÒÏ×ÏÄÉÍÏÇÏ ÓÅÍÉÎÁÒÁ.
 
ëÁÖÄÏÍÕ ÕÞÁÓÔÎÉËÕ ÓÅÍÉÎÁÒÁ ÷ÙÄÁÅÔÓÑ Ë×ÁÌÉÆÉËÁÃÉÏÎÎÙÊ
Ó Å Ò Ô É Æ É Ë Á Ô ëÏÍÐÁÎÉÉ Ï ÐÒÏÈÏÖÄÅÎÉÉ ËÕÒÓÁ ÏÂÕÞÅÎÉÑ
«ðÒÏÆÅÓÓÉÏÎÁÌØÎÏÅ ÆÉÎÁÎÓÏ×ÏÅ ÐÌÁÎÉÒÏ×ÁÎÉÅ».
óÐÉÓËÉ ÓÅÒÔÉÆÉÃÉÒÏ×ÁÎÎÙÈ ÓÐÅÃÉÁÌÉÓÔÏ× ÐÕÂÌÉËÕÀÔÓÑ ÎÁ ÓÁÊÔÅ ëÏÍÐÁÎÉÉ É
ÂÕÄÕÔ ÐÏÄÔ×ÅÒÖÄÁÔØÓÑ ÐÏ ÌÀÂÏÍÕ ÚÁÐÒÏÓÕ × ÔÅÞÅÎÉÅ Ë×ÁÌÉÆÉËÁÃÉÏÎÎÏÇÏ ÐÅÒÉÏÄÁ.
ôÁË ÖÅ ÂÕÄÅÔ ÏÐÕÂÌÉËÏ×ÁÎÁ ÉÎÆÏÒÍÁÃÉÑ Ï ÐÒÏÇÒÁÍÍÅ ÏÂÕÞÅÎÉÑ
«ðÒÏÆÅÓÓÉÏÎÁÌØÎÏÅ ÆÉÎÁÎÓÏ×ÏÅ ÐÌÁÎÉÒÏ×ÁÎÉÅ».
ðÏ ÏËÏÎÞÁÎÉÉ Ë×ÁÌÉÆÉËÁÃÉÏÎÎÏÇÏ ÓÒÏËÁ ËÁÖÄÙÊ ÓÅÒÔÉÆÉÃÉÒÏ×ÁÎÎÙÊ ÓÐÅÃÉÁÌÉÓÔ
ÓÍÏÖÅÔ ÓÏ ÚÎÁÞÉÔÅÌØÎÙÍÉ ÓËÉÄËÁÍÉ ÐÒÏÊÔÉ ËÕÒÓ ÐÅÒÅË×ÁÌÉÆÉËÁÃÉÉ É ÐÒÉÏÂÒÅÓÔÉ
ÍÏÄÉÆÉÃÉÒÏ×ÁÎÎÙÊ ÐÒÏÇÒÁÍÍÎÙÊ ËÏÍÐÌÅËÓ «Business Plan PL» Professional.
 
*******************************************
îÁÉÂÏÌÅÅ ÐÏÄÒÏÂÎÁÑ ÉÎÆÏÒÍÁÃÉÑ Ï ÓÅÍÉÎÁÒÅ ÎÁÈÏÄÉÔÓÑ × ÉÎÆÏÒÍÁÃÉÏÎÎÙÈ
ÆÁÊÌÁÈ ËÏÔÏÒÙÅ ×ÙÓÙÌÁÀÔÓÑ ÐÏ ÚÁÐÒÏÓÕ.
 
*******************************************
ó õ×ÁÖÅÎÉÅÍ ÏÔÄ. ÉÎÆÏÒÍÁÃÉÉ
“ïæüòð òïæüò”
ÔÅÌ. (095) 742-9198
       (095) 792-2122

 

Ilm3EQ8mVNdCoHixTVd9H1yIptyDV9Wvlan
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 9:30:13 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A8D437B401 for ; Thu, 20 Feb 2003 09:30:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F321D43FBD for ; Thu, 20 Feb 2003 09:30:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1KHU7NS062539 for ; Thu, 20 Feb 2003 09:30:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1KHU7MG062538; Thu, 20 Feb 2003 09:30:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED0B537B401 for ; Thu, 20 Feb 2003 09:23:28 -0800 (PST) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C4F43FE9 for ; Thu, 20 Feb 2003 09:23:24 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 3786C19E; Thu, 20 Feb 2003 20:23:22 +0300 (MSK) Message-Id: <20030220172322.3786C19E@freebsd.org.ru> Date: Thu, 20 Feb 2003 20:23:22 +0300 (MSK) From: "Sergey A.Osokin" Reply-To: "Sergey A.Osokin" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/48489: [PATCH] update information arp(4): describe one more diagnosis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48489 >Category: bin >Synopsis: [PATCH] update information arp(4): describe one more diagnosis >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 20 09:30:07 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.7-STABLE i386 >Organization: n/a >Environment: System: FreeBSD 4.7-STABLE i386 >Description: A update information arp(4) Describe one more diagnosis in DIAGNOSTICS section. >How-To-Repeat: >Fix: Index: src/usr.sbin/arp/arp.4 =================================================================== RCS file: /home/ncvs/src/usr.sbin/arp/arp.4,v retrieving revision 1.10 diff -u -r1.10 arp.4 --- src/usr.sbin/arp/arp.4 26 Dec 2002 19:56:29 -0000 1.10 +++ src/usr.sbin/arp/arp.4 20 Feb 2003 15:54:35 -0000 @@ -124,12 +124,23 @@ required, but ARP was unable to allocate a routing table entry in which to store the host's MAC address. This usually points to a misconfigured routing table. It can also occur if the kernel cannot allocate memory. +.Pp +.Em "arp: %d.%d.%d.%d is on XX1 but got reply from %x:%x:%x:%x:%x:%x on XX0" : +There are three solutions for this problem: ignore the error, +rewire or set the kernel state. The first solution is really isn't a +good one for the any reason. The second solution means: connect NIC +XX0 with subnet A to a switch with only subnet A attached to it and +the other NIC XX1 with subnet B to a switch with only subnet B attached +to it your problem will be solved. The last solution is change +net.link.ether.inet.log_arp_wrong_iface parameter from 1 to 0 via +sysctl interface. .Sh SEE ALSO .Xr inet 4 , .Xr route 4 , .Xr arp 8 , .Xr ifconfig 8 , -.Xr route 8 +.Xr route 8 , +.Xr sysctl 8 .Rs .%A Plummer, D. .%B "An Ethernet Address Resolution Protocol" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 9:39:42 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A7BD37B401; Thu, 20 Feb 2003 09:39:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E680443F85; Thu, 20 Feb 2003 09:39:41 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1KHdfNS064712; Thu, 20 Feb 2003 09:39:41 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1KHdfeM064708; Thu, 20 Feb 2003 09:39:41 -0800 (PST) Date: Thu, 20 Feb 2003 09:39:41 -0800 (PST) From: Ruslan Ermilov Message-Id: <200302201739.h1KHdfeM064708@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/48489 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] update information arp(4): describe one more diagnosis Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Thu Feb 20 09:39:11 PST 2003 Responsible-Changed-Why: I will handle this and nmbd.conf(5) manpage of yours. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 9:41:36 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAE6237B401 for ; Thu, 20 Feb 2003 09:41:34 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9933C43F75 for ; Thu, 20 Feb 2003 09:41:25 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1KHfFgX017661 for ; Thu, 20 Feb 2003 19:41:15 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1KHfFHR017647 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Thu, 20 Feb 2003 19:41:15 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1KHfF19017642 for freebsd-bugs@FreeBSD.org; Thu, 20 Feb 2003 19:41:15 +0200 (EET) Date: Thu, 20 Feb 2003 19:41:14 +0200 From: Ruslan Ermilov To: freebsd-bugs@freebsd.org Subject: Re: bin/48489 Message-ID: <20030220174114.GA16964@sunbay.com> References: <200302201739.h1KHdfeM064708@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <200302201739.h1KHdfeM064708@freefall.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 20, 2003 at 09:39:41AM -0800, Ruslan Ermilov wrote: > Synopsis: [PATCH] update information arp(4): describe one more diagnosis >=20 > Responsible-Changed-From-To: freebsd-bugs->ru > Responsible-Changed-By: ru > Responsible-Changed-When: Thu Feb 20 09:39:11 PST 2003 > Responsible-Changed-Why:=20 > I will handle this and nmbd.conf(5) manpage of yours. >=20 I meant nsmb.conf(5) actually. --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+VRM6Ukv4P6juNwoRAnJyAJ9eQjO84BK41aysCReef/b/AUuZRQCght72 vKZayDpZj3mL4WKrOpCICNU= =T+dT -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 11: 0:26 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60A1937B401 for ; Thu, 20 Feb 2003 11:00:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E521643F3F for ; Thu, 20 Feb 2003 11:00:24 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1KJ0ONS089283 for ; Thu, 20 Feb 2003 11:00:24 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1KJ0Opr089282; Thu, 20 Feb 2003 11:00:24 -0800 (PST) Date: Thu, 20 Feb 2003 11:00:24 -0800 (PST) Message-Id: <200302201900.h1KJ0Opr089282@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Heiko Weber" Subject: Re: kern/48100: Fatal panic in vm_map_lookup_entry ... Reply-To: "Heiko Weber" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/48100; it has been noted by GNATS. From: "Heiko Weber" To: , Cc: Subject: Re: kern/48100: Fatal panic in vm_map_lookup_entry ... Date: Thu, 20 Feb 2003 19:53:04 +0100 Look like there is a vm problem with SMP kernel. I have reported an similar problem in http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/44950 ... maybe we should try to setup a FreeBSD 5.0 with same configuration to see if it is fixed there. Heiko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 18:30:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C850E37B401 for ; Thu, 20 Feb 2003 18:30:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 733D643FA3 for ; Thu, 20 Feb 2003 18:30:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1L2U8NS009416 for ; Thu, 20 Feb 2003 18:30:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1L2U8WN009415; Thu, 20 Feb 2003 18:30:08 -0800 (PST) Date: Thu, 20 Feb 2003 18:30:08 -0800 (PST) Message-Id: <200302210230.h1L2U8WN009415@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: misc/48444: change to count connection attempts instead of listing them Reply-To: Giorgos Keramidas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/48444; it has been noted by GNATS. From: Giorgos Keramidas To: Alan Batie Cc: bug-followup@freebsd.org Subject: Re: misc/48444: change to count connection attempts instead of listing them Date: Fri, 21 Feb 2003 04:26:24 +0200 I do agree that listing all of ipfw's output can be overwhelming at times. Since the perl script of the PR only works for IPFW, here's an addition that will probably look interesting to ipfilter users. I'm using the following locally to check for ports that ipfilter has blocked and logged: : #!/bin/sh : # $RCS: scripts/listports.sh,v 1.1 2003/01/22 01:14:06 giorgos Exp $ : # List all the ports that ipfilter has blocked and logged, : # ordered by number of hits. : : echo " RANK HITS PORT" : grep "`date '+%b %e'`" /var/log/messages |\ : egrep -e '(ppp|tun)[0-9]+ .* b ' |\ : sed -e 's/^.*,.*,//' -e 's/ .*$//' |\ : sort | uniq -c | sort -r -k 1 | \ : awk '{ printf "%10d %10d %10d\n", NR, $1, $2 }' The output is similar to (trimmed to keep this a bit short): : # sh listports.sh | head -6 : RANK HITS PORT : 1 32 137 : 2 15 80 : 3 11 1214 : 4 11 1080 : 5 8 81 Does this look like an interesting addition to periodic/security too? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 21: 0: 8 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B03FE37B401 for ; Thu, 20 Feb 2003 21:00:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58A7243F85 for ; Thu, 20 Feb 2003 21:00:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1L506NS046612 for ; Thu, 20 Feb 2003 21:00:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1L506oC046611; Thu, 20 Feb 2003 21:00:06 -0800 (PST) Date: Thu, 20 Feb 2003 21:00:06 -0800 (PST) Message-Id: <200302210500.h1L506oC046611@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alan Batie Subject: Re: misc/48444: change to count connection attempts instead of listing them Reply-To: Alan Batie Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/48444; it has been noted by GNATS. From: Alan Batie To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: misc/48444: change to count connection attempts instead of listing them Date: Thu, 20 Feb 2003 20:57:30 -0800 --6Nae48J/T25AfBN4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 21, 2003 at 04:26:24AM +0200, Giorgos Keramidas wrote: > : # sh listports.sh | head -6 > : RANK HITS PORT > : 1 32 137 >=20 > Does this look like an interesting addition to periodic/security too? I'm not familiar with ipfilter's output, but if possible, I would recommend ranking by source-ip:port, so that you can tell if someone in particular is hammering you. On the other hand, a DDOS attempt would be better shown by an aggregate, and if you see a high count, you can always go look at the log for the addresses, so I'll leave it to you guys which way you think is best... --=20 Alan Batie ______ alan.batie.org Me alan at batie.org \ / www.qrd.org The Triangle PGPFP DE 3C 29 17 C0 49 7A \ / www.pgpi.com The Weird Numbers 27 40 A5 3C 37 4A DA 52 B9 \/ spamassassin.taint.org NO SPAM! --6Nae48J/T25AfBN4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iQCVAwUBPlWxuov4wNua7QglAQGTfwP8Cp2oepihL0VrR+VRq57t+/HnivHybL3C IFyJBbUL5Pu5q+aHgFy1F8iheRQDRh9ppM1ZGhjrs8tWxtnvxt1P+bIAyeG11uo8 Z9B9kzBTS5fENNFxphCU3tP+9H36TZySWGZyNR+27Oz9VYdkzQKPzsmN+PaQnFQM oi2egTKWK8Q= =zrx4 -----END PGP SIGNATURE----- --6Nae48J/T25AfBN4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Feb 20 22: 0:31 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97F3637B401 for ; Thu, 20 Feb 2003 22:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8B4543FE1 for ; Thu, 20 Feb 2003 22:00:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1L60ONS062244 for ; Thu, 20 Feb 2003 22:00:24 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1L60OY4062243; Thu, 20 Feb 2003 22:00:24 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA7B337B401 for ; Thu, 20 Feb 2003 21:58:06 -0800 (PST) Received: from osprey.kermodei.com (kermodei.com [216.103.110.74]) by mx1.FreeBSD.org (Postfix) with SMTP id 306C943FBD for ; Thu, 20 Feb 2003 21:58:06 -0800 (PST) (envelope-from markd@osprey.kermodei.com) Received: (qmail 27063 invoked by uid 100); 21 Feb 2003 05:54:58 -0000 Message-Id: <20030221055458.27062.qmail@osprey.kermodei.com> Date: 21 Feb 2003 05:54:58 -0000 From: Mark Diekhans Reply-To: Mark Diekhans To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/48516: add support of Dell PS/2 mouse port Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48516 >Category: i386 >Synopsis: add support of Dell PS/2 mouse port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 20 22:00:24 PST 2003 >Closed-Date: >Last-Modified: >Originator: Mark Diekhans >Release: FreeBSD 5.0-CURRENT i386 >Organization: UCSC >Environment: System: FreeBSD harrier.kermodei.com 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Wed Feb 19 20:55:13 PST 2003 markd@harrier.kermodei.com:/usr/src/sys/i386/compile/X200 i386 Dell Latitude X200 >Description: psm does not recognize the PS/2 mouse port >How-To-Repeat: >Fix: Apply the enclosed path to sys/isa/psm.c. Patch was obtained from http://www.running-dog.net/bsd/x200/. --- sys/isa/psm.c.ORG Tue Feb 11 00:35:59 2003 +++ sys/isa/psm.c Tue Feb 11 00:37:45 2003 @@ -2874,6 +2874,7 @@ { 0x0290d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9002, Vaio */ { 0x0390d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9003, Vaio */ { 0x0490d94d, "SONY VAIO PS/2 mouse port"}, /* SNY9004, Vaio */ + { 0x02002e4f, "Dell PS/2 mouse port"}, /* ???, Dell */ { 0 } }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 2: 0:49 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 935C037B401; Fri, 21 Feb 2003 02:00:47 -0800 (PST) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC96243FBD; Fri, 21 Feb 2003 02:00:46 -0800 (PST) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 3398E1A2; Fri, 21 Feb 2003 13:00:44 +0300 (MSK) Date: Fri, 21 Feb 2003 13:00:44 +0300 From: "Sergey A. Osokin" To: Ruslan Ermilov Cc: freebsd-bugs@freebsd.org Subject: Re: bin/48489 Message-ID: <20030221100044.GK14402@freebsd.org.ru> Reply-To: osa@FreeBSD.org.ru References: <200302201739.h1KHdfeM064708@freefall.freebsd.org> <20030220174114.GA16964@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline In-Reply-To: <20030220174114.GA16964@sunbay.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 20, 2003 at 07:41:14PM +0200, Ruslan Ermilov wrote: > On Thu, Feb 20, 2003 at 09:39:41AM -0800, Ruslan Ermilov wrote: > > Synopsis: [PATCH] update information arp(4): describe one more diagnosis > >=20 > > Responsible-Changed-From-To: freebsd-bugs->ru > > Responsible-Changed-By: ru > > Responsible-Changed-When: Thu Feb 20 09:39:11 PST 2003 > > Responsible-Changed-Why:=20 > > I will handle this and nmbd.conf(5) manpage of yours. > >=20 > I meant nsmb.conf(5) actually. You talk about docs/45833? --=20 Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iQCVAwUBPlX4zI/Va73vhFLNAQH0owP9GkBc8hc9w1WjBRarXvoWxKB3tNkqBbvr j7YSxAZ92YERC1KI/0ke3ktNzqkyGdWwZ4Je1/TErGiSOhUqEUr9Q64Wv6G86ynC C7Z5qtcHWYmav+IKIFTryKtvnLpGmh18201HARTFpF+vmYSIv2XFtXc1HCn2QOL/ vX/eSvyhjto= =1L9N -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 3:20: 8 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B170437B401 for ; Fri, 21 Feb 2003 03:20:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7088D43FBF for ; Fri, 21 Feb 2003 03:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1LBK3NS047806 for ; Fri, 21 Feb 2003 03:20:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1LBK3Rr047805; Fri, 21 Feb 2003 03:20:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC41937B401 for ; Fri, 21 Feb 2003 03:12:59 -0800 (PST) Received: from mirk.wigner.bme.hu (mirk.wigner.bme.hu [152.66.229.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C64643FB1 for ; Fri, 21 Feb 2003 03:12:59 -0800 (PST) (envelope-from crow@mirk.wigner.bme.hu) Received: by mirk.wigner.bme.hu (Postfix, from userid 1000) id 2DBED32B2C; Fri, 21 Feb 2003 12:12:12 +0100 (CET) Message-Id: <20030221111212.2DBED32B2C@mirk.wigner.bme.hu> Date: Fri, 21 Feb 2003 12:12:12 +0100 (CET) From: Foldi Tamas Reply-To: Foldi Tamas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/48525: [PATCH] pkg_add under 5.0-RELEASE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48525 >Category: bin >Synopsis: [PATCH] pkg_add under 5.0-RELEASE >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 21 03:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Foldi Tamas >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: FreeBSD carma 5.0-RELEASE FreeBSD 5.0-RELEASE #1: Mon Jan 27 15:27:21 CET 2003 root@carma:/usr/obj/usr/src/sys/GENERIC i386 program version: src/usr.sbin/pkg_install/add/main.c,v 1.54.2.1 >Description: After I upgraded my system to 5.0-RELEASE the "pkg_add -rv" command can not download the port packages: [crow@carma]% pkg_add -rv bbpager /home/crow requesting ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.0-release/La t est/bbpager.tbz Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.0-release/Late s t/bbpager.tbz...bzip2: (stdin) is not a bzip2 file. tar: Child returned status 2 tar: Error exit delayed from previous errors tar command returns 2 status Done. pkg_add: unable to open table of contents file '+CONTENTS' - not a package? pkg_add: 1 package addition(s) failed The requested file on the server does not exists (bad symlink). I would like to change the package release directory, but the pkg_add program does not have option to do this. After I patched the src/usr.sbin/pkg_install/add/main.c, the pkg_add program works correctly with the 5-current release tag: [crow@carma]% pkg_add -rv -O 5-current bbpager /home/crow requesting ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5-current/Late s t/bbpager.tbz Fetching ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5-current/Latest/bbpager.tbz...+CONTENTS >How-To-Repeat: run pkg_add on 5.0 release with 'r' option >Fix: The following patch will solve this issue: (src/usr.sbin/pkg_install/add/main.c) 30c30 < static char Options[] = "hvIRfnrp:SMt:"; --- > static char Options[] = "hvIRfnrp:SMt:O:"; 68a69 > char *Osrelease = NULL; 127a129,132 > case 'O': > Osrelease = optarg; > break; > 258,262c263,265 < reldate = getosreldate(); < for(i = 0; releases[i].directory != NULL; i++) { < if (reldate >= releases[i].lowver && reldate <= releases[i].hiver) { < if (strlcat(sitepath, releases[i].directory, sizeof(sitepath)) < >= sizeof(sitepath)) --- > if ( Osrelease ) { > if (strlcat(sitepath, "/packages-", sizeof(sitepath)) > >= sizeof(sitepath)) 264c267,279 < break; --- > if (strlcat(sitepath, Osrelease, sizeof(sitepath)) > >= sizeof(sitepath)) > return NULL; > } else { > reldate = getosreldate(); > for(i = 0; releases[i].directory != NULL; i++) { > if (reldate >= releases[i].lowver && reldate <= releases[i].hiver) { > if (strlcat(sitepath, releases[i].directory, sizeof(sitepath)) > >= sizeof(sitepath)) > return NULL; > break; > } > } 266d280 < } 279c293 < "usage: pkg_add [-vInrfRMS] [-t template] [-p prefix]", --- > "usage: pkg_add [-vInrfRMS] [-O osrelease] [-t template] [-p prefix]", >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 7:10:22 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B98137B405 for ; Fri, 21 Feb 2003 07:10:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9967943F93 for ; Fri, 21 Feb 2003 07:10:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1LFAANS032728 for ; Fri, 21 Feb 2003 07:10:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1LFAApA032727; Fri, 21 Feb 2003 07:10:10 -0800 (PST) Date: Fri, 21 Feb 2003 07:10:10 -0800 (PST) Message-Id: <200302211510.h1LFAApA032727@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "HiTech Creations Support" Subject: Re: kern/39878: mysqld process suddenly runs at 99% CPU without load, and a restart of mysqld is required. Reply-To: "HiTech Creations Support" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/39878; it has been noted by GNATS. From: "HiTech Creations Support" To: , Cc: Subject: Re: kern/39878: mysqld process suddenly runs at 99% CPU without load, and a restart of mysqld is required. Date: Fri, 21 Feb 2003 09:08:18 -0600 We have the same problem, using either MySQL versions 3.23.52 or 3.23.55, running on 4.6-STABLE. Our run-away MySQL process occurs under high load conditions. Here are some details on our configuration: Hardware Intel E7500 based motherboard Dual Xeon P4's @ 2.4Ghz w/HyperThreading 2GB Memory (4x256MB DDR DIMM modules) Dual Intel 82555 Ethernet controllers Adaptec 3940N SCSI Host Adapter Seagate 72GB Cheetah LVD SCSI Drive Plextor Wide SCSI drive ATI RageXL video controller Our kernel is compiled with the following configuration file: # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.43 2002/05/23 17:04:01 obrien Exp $ machine i386 # cpu I386_CPU # cpu I486_CPU # cpu I586_CPU cpu I686_CPU ident MYKERNEL maxusers 0 makeoptions CONF_CFLAGS=-fno-builtin #Don't allow use of memcmp, etc. #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options CPU_ENABLE_SSE #enables SSE/MMX2 instructions support. options CPU_FASTER_5X86_FPU #enables faster FPU exception handler. options NO_F00F_HACK #disables the hack that Pentiums have options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options UFS_DIRHASH #Improve performance on big directories options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev # To make an SMP kernel, the next two are needed options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O # options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI # options MATH_EMULATE #Support for x87 emulation # options INET6 #IPv6 communications protocols # options NFS #Network Filesystem # options NFS_ROOT #NFS usable as root device, NFS required # options MSDOSFS #MSDOS Filesystem device isa # device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 device fd1 at fdc0 drive 1 # # If you have a Toshiba Libretto with its Y-E Data PCMCIA floppy, # don't use the above line for fdc0 but the following one: #device fdc0 # ATA and ATAPI devices # device ata0 at isa? port IO_WD1 irq 14 # device ata1 at isa? port IO_WD2 irq 15 # device ata # device atadisk # ATA disk drives # device atapicd # ATAPI CDROM drives # device atapifd # ATAPI floppy drives # device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering # SCSI Controllers # device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices # device amd # AMD 53C974 (Tekram DC-390(T)) # device isp # Qlogic family # device ncr # NCR/Symbios Logic # device sym # NCR/Symbios Logic (newer chipsets) # options SYM_SETUP_LP_PROBE_MAP=0x40 # Allow ncr to attach legacy NCR devices when # both sym and ncr are configured # device adv0 at isa? # device adw # device bt0 at isa? # device aha0 at isa? # device aic0 at isa? # device ncv # NCR 53C500 # device nsp # Workbit Ninja SCSI-3 # device stg # TMC 18C30/18C50 # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) # device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers interfaced to the SCSI subsystem # device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID # device dpt # DPT Smartcache - See LINT for options! # device iir # Intel Integrated RAID # device mly # Mylex AcceleRAID/eXtremeRAID # device ciss # Compaq SmartRAID 5* series # RAID controllers # device aac # Adaptec FSA RAID, Dell PERC2/PERC3 # device aacp # SCSI passthrough for aac (requires CAM) # device ida # Compaq Smart RAID # device amr # AMI MegaRAID # device mlx # Mylex DAC960 family # device twe # 3ware Escalade # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 # device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) # device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support # device card # device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000 # device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # device sio2 at isa? disable port IO_COM3 irq 5 # device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port # device ppc0 at isa? irq 7 # device ppbus # Parallel port bus (required) # device lpt # Printer # device plip # TCP/IP over parallel # device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. # device de # DEC/Intel DC21x4x (``Tulip'') # device em # Intel PRO/1000 adapter Gigabit Ethernet Card (``Wiseman'') # device txp # 3Com 3cR990 (``Typhoon'') # device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support # device dc # DEC/Intel 21143 and various workalikes device fxp # Intel EtherExpress PRO/100B (82557, 82558) # device pcn # AMD Am79C97x PCI 10/100 NICs # device rl # RealTek 8129/8139 # device sf # Adaptec AIC-6915 (``Starfire'') # device sis # Silicon Integrated Systems SiS 900/SiS 7016 # device ste # Sundance ST201 (D-Link DFE-550TX) # device tl # Texas Instruments ThunderLAN # device tx # SMC EtherPower II (83c170 ``EPIC'') # device vr # VIA Rhine, Rhine II # device wb # Winbond W89C840F # device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # device bge # Broadcom BCM570x (``Tigon III'') # ISA Ethernet NICs. # 'device ed' requires 'device miibus' # device ed0 at isa? port 0x280 irq 10 iomem 0xd8000 # device ex # device ep # device fe0 at isa? port 0x300 # Xircom Ethernet # device xe # PRISM I IEEE 802.11b wireless NIC. # device awi # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attachment needed # and resources will always be dynamically assigned by the pccard code. # device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those parameters here. # device an # The probe order of these is presently determined by i386/isa/isa_compat.c. # device ie0 at isa? port 0x300 irq 10 iomem 0xd0000 #device le0 at isa? port 0x300 irq 5 iomem 0xd0000 # device lnc0 at isa? port 0x280 irq 10 drq 0 # device cs0 at isa? port 0x300 # device sn0 at isa? port 0x300 irq 10 # Pseudo devices - the number indicates how many units to allocate. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support # pseudo-device sl 1 # Kernel SLIP # pseudo-device ppp 1 # Kernel PPP # pseudo-device tun # Packet tunnel. pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device md # Memory "disks" # pseudo-device gif # IPv6 and IPv4 tunneling # pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # pseudo-device bpf #Berkeley packet filter # USB support # device uhci # UHCI PCI->USB interface # device ohci # OHCI PCI->USB interface # device usb # USB Bus (required) # device ugen # Generic # device uhid # "Human Interface Devices" # device ukbd # Keyboard # device ulpt # Printer # device umass # Disks/Mass storage - Requires scbus and da # device ums # Mouse # device uscanner # Scanners # device urio # Diamond Rio MP3 Player # USB Ethernet, requires mii # device aue # ADMtek USB ethernet # device cue # CATC USB ethernet # device kue # Kawasaki LSI USB ethernet #options IPFIREWALL #firewall #options IPFIREWALL_VERBOSE #enable logging to syslogd(8) #options IPFIREWALL_FORWARD #enable transparent proxy support #options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity #options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default #options IPV6FIREWALL #firewall for IPv6 #options IPV6FIREWALL_VERBOSE #options IPV6FIREWALL_VERBOSE_LIMIT=100 #options IPV6FIREWALL_DEFAULT_TO_ACCEPT #options IPDIVERT #divert sockets #options IPFILTER #ipfilter support #options IPFILTER_LOG #ipfilter logging #options IPFILTER_DEFAULT_BLOCK #block all packets by default #options IPSTEALTH #support for stealth forwarding #options TCPDEBUG # # These three options provide support for System V Interface # Definition-style interprocess communication, in the form of shared # memory, semaphores, and message queues, respectively. # # System V shared memory and tunable parameters options SYSVSHM # include support for shared memory options SHMMAXPGS=16385 # max amount of shared memory pages (4k on i386) options SHMALL=31250000 # max amount of shared memory (bytes) #options SHMMAX="(SHMMAXPGS*PAGE_SIZE+1)" # max shared memory segment size (bytes) options SHMMIN=200 # min shared memory segment size (bytes) options SHMMNI=200 # max number of shared memory identifiers options SHMSEG=200 # max shared memory segments per process options ICMP_BANDLIM ##################################################################### # CLOCK OPTIONS # The granularity of operation is controlled by the kernel option HZ whose # default value (100) means a granularity of 10ms (1s/HZ). # Some subsystems, such as DUMMYNET or DEVICE_POLLING, might benefit from # a smaller granularity such as 1ms or less. # Consider, however, that reducing the granularity too much might # cause excessive overhead in clock interrupt processing, # potentially causing ticks to be missed and thus actually reducing # the accuracy of operation. # options HZ=100 default options HZ=1000 # DEVICE_POLLING adds support for mixed interrupt-polling handling # of network device drivers, which has significant benefits in terms # of robustness to overloads and responsivity, as well as permitting # accurate scheduling of the CPU time between kernel network processing # and other activities. The drawback is a moderate (up to 1/HZ seconds) # potential increase in response times. # It is strongly recommended to use HZ=1000 or 2000 with DEVICE_POLLING # to achieve smoother behaviour. # Additionally, you can enable/disable polling at runtime with the # sysctl variable kern.polling.enable (defaults off), and select # the CPU fraction reserved to userland with the sysctl variable # kern.polling.user_frac (default 50, range 0..100). # # Only the "dc" "fxp" and "sis" devices support this mode of operation at # the time of this writing. # not compatible with SMP operations # options DEVICE_POLLING # Set the size of the mbuf KVM reservation, in clusters. This is scaled # by approximately 2048 bytes. The system will auto-size the mbuf area # to (512 + maxusers*16) if this option is not specified. # maxusers is in turn computed at boot time depending on available memory # or set to the value specified by "options MAXUSERS=x" (x=0 means # autoscaling). # So, to take advantage of autoscaling, you have to remove both # NMBCLUSTERS and MAXUSERS (and NMBUFS) from your kernel config. # #options NMBCLUSTERS=1024 default options NMBCLUSTERS=16384 #options NMBUFS=4096 default options NMBUFS=65536 Our MySQL build file for 3.23.55 is: CC=gcc CFLAGS="-O2 -fno-strength-reduce -mpentiumpro -march=pentiumpro" \ CXX=gcc CXXFLAGS="-O2 -mpentiumpro -march=pentiumpro -fno-rtti -fno-exceptions -feli de-constructors -fno-strength-reduce" \ ./configure --prefix=/usr/xxx/mysql --exec-prefix=/usr/local --without-debug --enable-assembler#!/bin/sh We start MySQL as follows from a startup script. /usr/local/bin/safe_mysqld -O max_connections=900 -O key_buffer=256M -O max_allowed_packet=1M -O table_cache=256 -O sort_buffer=1M -O record_buffer=1M -O myisam_sort_buffer_size=64M -O thread_cache=8 -O thread_concurrency=8 & In our environment we run MySQL with the bulk of the connections running on localhost. In our high load conditions, we reach about 600-700 socket connections to MySQL. We have tried on different servers of the same configuration and still have the same problem. Typically the run-away MySQL process will happen during our high peak hour (around 10:00pm CST). MySQL still continues to operate, but the bottleneck is very severe. The only fix we have to to reset MySQL, which resets all our clients. We have tried running optimizations on the database, which made no difference. The extended-status from MySQL appears quite normal. We are not running out of socket nor file descriptors and have not loaded the server enough to cause any swapping. Our clients connecting to the MySQL server do use a high amount of floating point operations and conversions. But the data itself, is very small. Once the client connects, we hold the connection open for the duration of the link. So this yeilds one open/close per client. At this point in time, we do not have any idea where the problem may lie, and are willing to entertain any help/suggestions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 12:10:23 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84FC037B401; Fri, 21 Feb 2003 12:10:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19CB643F93; Fri, 21 Feb 2003 12:10:22 -0800 (PST) (envelope-from gad@FreeBSD.org) Received: from freefall.freebsd.org (gad@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1LKALNS059096; Fri, 21 Feb 2003 12:10:21 -0800 (PST) (envelope-from gad@freefall.freebsd.org) Received: (from gad@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1LKAL5n059092; Fri, 21 Feb 2003 12:10:21 -0800 (PST) Date: Fri, 21 Feb 2003 12:10:21 -0800 (PST) From: Garance A Drosehn Message-Id: <200302212010.h1LKAL5n059092@freefall.freebsd.org> To: gad@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad-bugs@FreeBSD.org Subject: Re: bin/30654: Added ability for newsyslog to archive logs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Added ability for newsyslog to archive logs Responsible-Changed-From-To: freebsd-bugs->gad-bugs Responsible-Changed-By: gad Responsible-Changed-When: Fri Feb 21 12:09:51 PST 2003 Responsible-Changed-Why: I'll look into this, as long as I'm working on some other changes to newsyslog. http://www.freebsd.org/cgi/query-pr.cgi?pr=30654 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 18: 5: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D18FF37B401; Fri, 21 Feb 2003 18:05:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7231943FE1; Fri, 21 Feb 2003 18:05:05 -0800 (PST) (envelope-from gad@FreeBSD.org) Received: from freefall.freebsd.org (gad@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1M255NS050613; Fri, 21 Feb 2003 18:05:05 -0800 (PST) (envelope-from gad@freefall.freebsd.org) Received: (from gad@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1M255AZ050609; Fri, 21 Feb 2003 18:05:05 -0800 (PST) Date: Fri, 21 Feb 2003 18:05:05 -0800 (PST) From: Garance A Drosehn Message-Id: <200302220205.h1M255AZ050609@freefall.freebsd.org> To: gad@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: bin/25070: newsyslog(8) should send signals only once per run Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: newsyslog(8) should send signals only once per run Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: gad Responsible-Changed-When: Fri Feb 21 18:02:44 PST 2003 Responsible-Changed-Why: I will look into this as part of some other newsyslog changes that I am working on. I suspect I will implement it a different way than it is done in this PR (because there's some other reorganization I want to do), but I would definitely like to see it doing only one HUP per daemon. http://www.freebsd.org/cgi/query-pr.cgi?pr=25070 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 18:12:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF6D137B401; Fri, 21 Feb 2003 18:12:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63DDF43FD7; Fri, 21 Feb 2003 18:12:09 -0800 (PST) (envelope-from gad@FreeBSD.org) Received: from freefall.freebsd.org (gad@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1M2C9NS056125; Fri, 21 Feb 2003 18:12:09 -0800 (PST) (envelope-from gad@freefall.freebsd.org) Received: (from gad@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1M2C9Tf056121; Fri, 21 Feb 2003 18:12:09 -0800 (PST) Date: Fri, 21 Feb 2003 18:12:09 -0800 (PST) From: Garance A Drosehn Message-Id: <200302220212.h1M2C9Tf056121@freefall.freebsd.org> To: gad@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: bin/36553: Two new features in newsyslog(8) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Two new features in newsyslog(8) Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: gad Responsible-Changed-When: Fri Feb 21 18:08:15 PST 2003 Responsible-Changed-Why: . I will be looking into these changes while working on some other changes to newsyslog. I definitely want to provide some way to say "do not signal any process when rotating this file". I don't quite understand your other change, but I will also look into it. http://www.freebsd.org/cgi/query-pr.cgi?pr=36553 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Feb 21 23:57:34 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AED9537B407 for ; Fri, 21 Feb 2003 23:57:19 -0800 (PST) Received: from clt88-190-113.carolina.rr.com (clt88-190-113.carolina.rr.com [24.88.190.113]) by mx1.FreeBSD.org (Postfix) with SMTP id 2625543F3F for ; Fri, 21 Feb 2003 23:57:18 -0800 (PST) (envelope-from sbsb@pisem.net) From: Somebody To: Freebsd-bugs Subject: ïðî ìåäèöèíñêèå äîñòèæåíèÿ â îáëàñòè äèàãíîñòèêè m75 MIME-Version: 1.0 Content-type: text/html; charset=Windows-1251 Content-Transfer-Encoding: 8bit Message-Id: <20030222075718.2625543F3F@mx1.FreeBSD.org> Date: Fri, 21 Feb 2003 23:57:18 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Доброго времени суток
Доброго времени суток, наши уважаемые и ужасно занятые читатели!
Тысяча извинений за неожиданное вторжение. Впрочем, если Вам дальше читать не интересно, можете дальше не читать .
Но тогда ни Вы сами, ни Ваши коллеги, родные и друзья, не узнаете о своём здоровье столько, сколько можно узнать, пройдя диагностическое обследование «ОБЕРОН».
Диагностика «ОБЕРОН»  уникальная возможность всего за 1,5 часа получить исчерпывающую информацию о своём здоровье. Вы сможете «увидеть изнутри» свои органы, очаги заболевания, взаимосвязь одной болезни с другой, установить точный, например: язвенную болезнь, миому, кисту, мастопатию, простатит или аденому, дисфункцию щитовидной железы, дисбактериоз, камни внутренних органов, эндокринные нарушения и т.д. без сложных и дорогостоящих исследований.
В план одного обследования входят: 1) сердечно-сосудистая система; 2) желудочно-кишечный тракт; 3) мочеполовая система; 4) опорно-двигательная система (обследование позвоночника, межпозвонковых дисков, суставов); 5) бронхо-лёгочная система; 6) эндокринная система (определение уровня гормонов, состояние щитовидной железы, надпочечников, гипофиза, половых желез, инсулинового аппарата поджелудочной железы); 7) нервная система (головной и спинной мозг, кровоснабжение мозга);
8) зрительный и слуховой аппарат; 9) анализ крови (без её забора) - биохимических показателей, гемоглобина, эритроцитов, лейкоцитов и т.д.; 10) состояние иммунитета, аллергическая предрасположенность; 11), выявление микробов, вирусов, гельминтов (глистов) - хламидий, уреаплазм, стафилококков, стрептококков, лямблий, трихомонад, аскарид и др.;
Метод позволяет выявить индивидуальную предрасположенность к самым серьёзным заболеваниям, таким как: сахарный диабет, атеросклероз, сердечно-сосудистые заболевания, инфаркт, инсульт. Вы сможете узнать не только о заболеваниях на самых ранних стадиях, но и будете проинформированы о зонах, где болезнь может начаться через несколько лет! После обследования вам будут предложены лучшие методы лечения европейской, китайской, тибетской медицины. В наших центрах вы можете сделать УЗИ, ЭКГ, любые лабораторные АНАЛИЗЫ.
Вы в несколько раз экономите время и деньги! После обследования Вам будут преложены эффективные методы лечения европейской и восточной медицины. Также в наших центрах Вы можете пройти узи, ЭКГ, любые лабораторные анализы. При повторном обследовании скидка - 50%! Принимаем корпоративные заявки!
Теперь о нас: Медицинские центры «ДАО-МЕД» www.dao-med.ru
Предварительная запись у администратора с 10.00 до 18.00 без выходных:
· м. Юго-Западная, пр. Вернадского 125 (за «Театром на Юго-Западе»).
Тел:(095)434-3626 или (095)433-1695.
· м. Арбатская, ул.Старый Арбат 23, корпус 2, офис 8.
Тел:(095)995-5147 или (095)291-8224.
 
Отписаться от рассылки можно здесь.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 1:25:27 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 235F637B40B for ; Sat, 22 Feb 2003 01:25:25 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E364B43FE3 for ; Sat, 22 Feb 2003 01:25:23 -0800 (PST) (envelope-from mb@imp.ch) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1M9PLXN093081; Sat, 22 Feb 2003 10:25:21 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 22 Feb 2003 10:28:06 +0100 (CET) From: Martin Blapp To: freebsd-bugs@FreeBSD.org Cc: HiTech Creations Support Subject: Re: kern/39878: mysqld process suddenly runs at 99% CPU without load, and a restart of mysqld is required. Message-ID: <20030222102442.A55282@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, We had this problem too. There are several problems causing this. Some of them are libc_r bugs and some parts of FreeBSD aren't even threadsafe (gethostbyname, realpath) ... You can solve all these problems with: make WITH_LINUXTHREADS=YES and use this patch for mysql: --- sql/violite.c.orig Fri Feb 21 17:02:16 2003 +++ sql/violite.c Fri Feb 21 17:03:38 2003 @@ -110,6 +110,9 @@ vio->sd); #if !defined(___WIN__) && !defined(__EMX__) && !defined(OS2) #if !defined(NO_FCNTL_NONBLOCK) +#if defined(__FreeBSD__) + fcntl(sd, F_SETFL, vio->fcntl_mode); /* Yahoo! FreeBSD patch */ +#endif vio->fcntl_mode = fcntl(sd, F_GETFL); #elif defined(HAVE_SYS_IOCTL_H) /* hpux */ /* Non blocking sockets doesn't work good on HPUX 11.0 */ --- libmysql/violite.c.orig Fri Feb 21 17:02:31 2003 +++ libmysql/violite.c Fri Feb 21 17:04:09 2003 @@ -110,6 +110,9 @@ vio->sd); #if !defined(___WIN__) && !defined(__EMX__) && !defined(OS2) #if !defined(NO_FCNTL_NONBLOCK) +#if defined(__FreeBSD__) + fcntl(sd, F_SETFL, vio->fcntl_mode); /* Yahoo! FreeBSD patch */ +#endif vio->fcntl_mode = fcntl(sd, F_GETFL); #elif defined(HAVE_SYS_IOCTL_H) /* hpux */ /* Non blocking sockets doesn't work good on HPUX 11.0 */ 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 ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 3:24:44 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFF3D37B401; Sat, 22 Feb 2003 03:24:43 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9367543FA3; Sat, 22 Feb 2003 03:24:43 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MBOhNS097928; Sat, 22 Feb 2003 03:24:43 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MBOhgR097924; Sat, 22 Feb 2003 03:24:43 -0800 (PST) Date: Sat, 22 Feb 2003 03:24:43 -0800 (PST) From: Johan Karlsson Message-Id: <200302221124.h1MBOhgR097924@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, brian@FreeBSD.org Subject: Re: bin/48378: [PATCH] User-PPP MTU/MRU - LCP Problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] User-PPP MTU/MRU - LCP Problem Responsible-Changed-From-To: freebsd-bugs->brian Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 03:24:16 PST 2003 Responsible-Changed-Why: Over to ppp maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=48378 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:35:38 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5687A37B401 for ; Sat, 22 Feb 2003 05:35:36 -0800 (PST) Received: from isim.onnet-1a.com (www.tinaztarim.com.tr [213.238.128.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1261043FCB for ; Sat, 22 Feb 2003 05:35:34 -0800 (PST) (envelope-from sanmak@sanmak.net) Received: from d6o1v9 (mstr195175-4490.dial-in.ttnet.net.tr [195.175.97.139]) by isim.onnet-1a.com (8.9.3/8.9.3) with ESMTP id RAA06409 for ; Sat, 22 Feb 2003 17:41:17 +0200 Message-ID: <411-22003262213175230@d6o1v9> X-Priority: 1 X-MSMail-Priority: High Organization: KAVUSANLAR A.S. From: "sanmak" To: "freebsd-bugs@freebsd.org" Subject: introduction Date: Sat, 22 Feb 2003 15:17:52 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=windows-1254 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear Sirs; We are manufactures and exporters company=2E Our firm is founded in 1963 w= hich KAVU=DEANLAR A=2E=DE=2E as a food and agriculture & farm store=2E We = produce milking machines, automated cow watering systems and electric mill= s=2E We study and interest about all kinds of agricultural machines, milk = storing or cooling tanks, water pumps, cream seperators, sprayer machine a= nd fodder splitter=2E We would like to make our company and its products k= nown to you=2E Our products are preffered inside and outside of company due their reliabl= e,hygenic and user friendly structures=2E We are fully dedicated to keep a= high quality service to our customers, with full spare parts quarant, and= broad customer support services=2E Enclosing to send you, our catalogues which gives you general information = about our products=2E If you are interesting, we'll be happy to send you any further information= =2E We may be available in the near future to discuss, the subject with yo= u as well as=2E You can visit our Web address=2E www=2Esanmak=2Enet=20 Thanking for your kind interest=2E We look forward to your reply, we remai= n=2E = Yours faithfully = KAVU=DEANLAR A=2E=DE=2E = Zafer ALGUN = Export Manager ADDRESS__________________: KAVU=DEANLAR GIDA TARIM YEM=20 SAN=2ET=DDC=2EA=2E=DE=2E Demirciler Cd=2ENo:118 M=2EKemalpa=FEa/BURSA/TURKEY TELEPHONE__________________: 0090-224-6132523-6134533-6134303 FAX__________________________: 0090-224-6137585 Web: www=2Esanmak=2Enet = E-mail: sanmak@sanmak=2Enet - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:40: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93C1D37B401 for ; Sat, 22 Feb 2003 05:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A6743FCB for ; Sat, 22 Feb 2003 05:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MDe3NS041793 for ; Sat, 22 Feb 2003 05:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MDe3Nf041792; Sat, 22 Feb 2003 05:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26E4437B401 for ; Sat, 22 Feb 2003 05:36:11 -0800 (PST) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7721543F75 for ; Sat, 22 Feb 2003 05:36:10 -0800 (PST) (envelope-from aperum@root-login.org) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 18mZp4-0002Pu-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 22 Feb 2003 14:36:10 +0100 Received: from [217.83.11.219] (helo=root-login.dyndns.org) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 18mZp3-0000FE-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 22 Feb 2003 14:36:09 +0100 Received: by root-login.dyndns.org (Postfix, from userid 1000) id DFA99774; Sat, 22 Feb 2003 14:35:58 +0100 (CET) Message-Id: <20030222133558.DFA99774@root-login.dyndns.org> Date: Sat, 22 Feb 2003 14:35:58 +0100 (CET) From: Sascha Reply-To: Sascha To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48559: if_rl: Peppercon Realteak devices are not recognized Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48559 >Category: kern >Synopsis: if_rl: Peppercon Realteak devices are not recognized >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 05:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sascha Holzleiter >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD mother.chief.home 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Feb 9 22:00:33 CET 2003 root@mother.chief.home:/usr/obj/usr/src/sys/HOTKERN i386 >Description: Peppercon (Realtek) NICs aren't recognized because they have a seperate Vendor-ID There are also drivers from Peppercon available (http://peppercon.com/support/drivers.html) with support for the ROL-F and a possible watchdog but i think it is enough if the NICs are recognized as rl devices >How-To-Repeat: Insert a Peppercon ROLF NIC and see :) >Fix: Add the appropriate vendor-ids to the realtek drivers: if_rl.c : { PEPPERCON_VENDORID, PEPPERCON_DEVICEID_ROLF, "Peppercon AG ROL/F" }, if_rlreg.h : #define PEPPERCON_VENDORID 0x1743 #define PEPPERCON_DEVICEID_ROLF 0x8139 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:40:28 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 251FB37B401; Sat, 22 Feb 2003 05:40:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34E143FCB; Sat, 22 Feb 2003 05:40:27 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MDeRNS042434; Sat, 22 Feb 2003 05:40:27 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MDeR10042430; Sat, 22 Feb 2003 05:40:27 -0800 (PST) Date: Sat, 22 Feb 2003 05:40:27 -0800 (PST) From: Johan Karlsson Message-Id: <200302221340.h1MDeR10042430@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: misc/47601: Additional subdir targets Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Additional subdir targets Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 05:39:59 PST 2003 Responsible-Changed-Why: Over to our share/mk guru. http://www.freebsd.org/cgi/query-pr.cgi?pr=47601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:43:36 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA40237B401; Sat, 22 Feb 2003 05:43:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7946C43FCB; Sat, 22 Feb 2003 05:43:35 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MDhZNS043714; Sat, 22 Feb 2003 05:43:35 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MDhZ84043710; Sat, 22 Feb 2003 05:43:35 -0800 (PST) Date: Sat, 22 Feb 2003 05:43:35 -0800 (PST) From: Johan Karlsson Message-Id: <200302221343.h1MDhZ84043710@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, qa@FreeBSD.org Subject: Re: bin/47384: sysinstall ignores intended destination disk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysinstall ignores intended destination disk Responsible-Changed-From-To: freebsd-bugs->qa Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 05:42:29 PST 2003 Responsible-Changed-Why: Over to sysinstall miantainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=47384 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:50:17 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5EB337B401 for ; Sat, 22 Feb 2003 05:50:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E5D243FBD for ; Sat, 22 Feb 2003 05:50:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MDoANS049519 for ; Sat, 22 Feb 2003 05:50:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MDoAwb049518; Sat, 22 Feb 2003 05:50:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E72BA37B401; Sat, 22 Feb 2003 05:49:05 -0800 (PST) Received: from atnsmtp92.24on.cc (ATNSMTP92.24on.cc [213.225.2.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C18443FB1; Sat, 22 Feb 2003 05:49:04 -0800 (PST) (envelope-from tilman@arved.de) Received: from 21322530218.direct.eti.at ([213.225.30.218]) by atnsmtp92.24on.cc with Microsoft SMTPSVC(5.5.1877.447.44); Sat, 22 Feb 2003 14:49:21 +0100 Received: from sauna.arved.de (sauna.arved.de [192.168.2.4]) by 21322530218.direct.eti.at (8.12.7/8.12.6) with ESMTP id h1MDp1Qb089654; Sat, 22 Feb 2003 14:51:01 +0100 (CET) (envelope-from tilman@arved.de) Received: from sauna.arved.de (sauna.arved.de [127.0.0.1]) by sauna.arved.de (8.12.7/8.12.7) with ESMTP id h1MDn25w072802; Sat, 22 Feb 2003 14:49:03 +0100 (CET) (envelope-from tilman@sauna.arved.de) Received: (from tilman@localhost) by sauna.arved.de (8.12.7/8.12.7/Submit) id h1MDn2x6072801; Sat, 22 Feb 2003 14:49:02 +0100 (CET) Message-Id: <200302221349.h1MDn2x6072801@sauna.arved.de> Date: Sat, 22 Feb 2003 14:49:02 +0100 (CET) From: Tilman Linneweh Reply-To: Tilman Linneweh To: FreeBSD-gnats-submit@FreeBSD.org Cc: arved@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/48560: Panic in if_vlan.c on CURRENT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48560 >Category: kern >Synopsis: Panic in if_vlan.c on CURRENT >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 05:50:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Tilman Linneweh >Release: FreeBSD 5.0-CURRENT i386 >Organization: BSD Usergroup Austria >Environment: System: FreeBSD sauna.arved.de 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Mon Feb 17 17:47:52 CET 2003 root@sauna.arved.de:/usr/obj/usr/src/sys/SAUNA i386 >Description: I can reproducable panic my CURRENT systems with vlan devices. /usr/src/sys/vm/uma_core.c:1330: could sleep with "inp" locked from /usr/src/sys/netinet/udp_usrreq.c:982/usr/src/sys/vm/uma_core.c:1330: could sleep with "udp" locked from /usr/src/sys/netinet/udp_usrreq.c:976 #7 0xc0336cd8 in calltrap () at {standard input}:96 #8 0xc0248939 in witness_sleep (check_only=1, lock=0x0, file=0xc039d924 "/usr/src/sys/vm/uma_core.c", line=1330) at /usr/src/sys/kern/subr_witness.c:962 #9 0xc031815e in uma_zalloc_arg (zone=0xc083aa20, udata=0x0, flags=0) at /usr/src/sys/vm/uma_core.c:1330 #10 0xc0222f27 in malloc (size=0, type=0xc03e2ec0, flags=0) at /usr/src/sys/kern/kern_malloc.c:185 ---Type to continue, or q to quit--- #11 0xc028dd37 in vlan_setmulti (ifp=0xc1970000) at /usr/src/sys/net/if_vlan.c:171 #12 0xc028e8fb in vlan_ioctl (ifp=0xc1970000, cmd=0, data=0x0) at /usr/src/sys/net/if_vlan.c:771 #13 0xc0284401 in if_delmulti (ifp=0xc1970000, sa=0xc1c95080) at /usr/src/sys/net/if.c:1916 #14 0xc0295cc8 in in_delmulti (inm=0xc18879a0) at #/usr/src/sys/netinet/in.c:888 (kgdb) fr 13 #13 0xc0284401 in if_delmulti (ifp=0xc1970000, sa=0xc1c95080) at /usr/src/sys/net/if.c:1916 1916 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); (kgdb) list 1916 1911 return 0; 1912 } 1913 1914 s = splimp(); 1915 TAILQ_REMOVE(&ifp->if_multiaddrs, ifma, ifma_link); 1916 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); 1917 splx(s); 1918 free(ifma->ifma_addr, M_IFMADDR); 1919 free(sa, M_IFMADDR); 1920 free(ifma, M_IFMADDR); (kgdb) fr 12 #12 0xc028e8fb in vlan_ioctl (ifp=0xc1970000, cmd=0, data=0x0) at /usr/src/sys/net/if_vlan.c:771 771 error = vlan_setmulti(ifp); (kgdb) list 771 766 error = vlan_set_promisc(ifp); 767 break; 768 769 case SIOCADDMULTI: 770 case SIOCDELMULTI: 771 error = vlan_setmulti(ifp); 772 break; 773 default: 774 error = EINVAL; 775 } (kgdb) fr 11 #11 0xc028dd37 in vlan_setmulti (ifp=0xc1970000) at /usr/src/sys/net/if_vlan.c:171 171 mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, 0);(kgdb) list 171 166 167 /* Now program new ones. */ 168 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 169 if (ifma->ifma_addr->sa_family != AF_LINK) 170 continue; 171 mc = malloc(sizeof(struct vlan_mc_entry), M_VLAN, 0); 172 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), 173 (char *)&mc->mc_addr, ETHER_ADDR_LEN); 174 SLIST_INSERT_HEAD(&sc->vlan_mc_listhead, mc, mc_entries); 175 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), (kgdb) fr 10 #10 0xc0222f27 in malloc (size=0, type=0xc03e2ec0, flags=0) at /usr/src/sys/kern/kern_malloc.c:185 185 va = uma_zalloc(zone, flags); (kgdb) list 185 180 indx = kmemsize[size >> KMEM_ZSHIFT]; 181 zone = kmemzones[indx].kz_zone; 182 #ifdef MALLOC_PROFILE 183 krequests[size >> KMEM_ZSHIFT]++; 184 #endif 185 va = uma_zalloc(zone, flags); 186 mtx_lock(&ksp->ks_mtx); 187 if (va == NULL) 188 goto out; 189 (kgdb) fr 9 #9 0xc031815e in uma_zalloc_arg (zone=0xc083aa20, udata=0x0, flags=0) at /usr/src/sys/vm/uma_core.c:1330 1330 WITNESS_SLEEP(1, NULL); (kgdb) list 1330 1325 #endif 1326 1327 if (!(flags & M_NOWAIT)) { 1328 KASSERT(curthread->td_intr_nesting_level == 0, 1329 ("malloc without M_NOWAIT in interrupt context")); 1330 WITNESS_SLEEP(1, NULL); 1331 } 1332 1333 zalloc_restart: 1334 cpu = PCPU_GET(cpuid); >How-To-Repeat: Create some vlan Devices on a CURRENT system. Type: # routed; killall routed >Fix: Jeffrey Hsu suggested changing M_WAITOK in line 171 to M_NOWAIT. This results in the following backtrace: Fatal trap 12: page fault while in kernel mode fault virtual address = 0xdeadc0de #9 0xc0336d18 in calltrap () at {standard input}:96 #10 0xc028dcf7 in vlan_setmulti (ifp=0xc1970000) at /usr/src/sys/net/if_vlan.c:160 ---Type to continue, or q to quit--- #11 0xc028e93b in vlan_ioctl (ifp=0xc1970000, cmd=0, data=0x0) at /usr/src/sys/net/if_vlan.c:777 #12 0xc0284401 in if_delmulti (ifp=0xc1970000, sa=0xc1c97140) at /usr/src/sys/net/if.c:1916 #13 0xc0295d08 in in_delmulti (inm=0xc18874c0) at #/usr/src/sys/netinet/in.c:888 14 0xc029ca41 in ip_freemoptions #(imo=0xc1c85c80) at /usr/src/sys/netinet/ip_output.c:2126 (kgdb) fr 12 #12 0xc0284401 in if_delmulti (ifp=0xc1970000, sa=0xc1c97140) at /usr/src/sys/net/if.c:1916 1916 ifp->if_ioctl(ifp, SIOCDELMULTI, 0); (kgdb) fr 11 #11 0xc028e93b in vlan_ioctl (ifp=0xc1970000, cmd=0, data=0x0) at /usr/src/sys/net/if_vlan.c:777 777 error = vlan_setmulti(ifp); (kgdb) fr 10 #10 0xc028dcf7 in vlan_setmulti (ifp=0xc1970000) at /usr/src/sys/net/if_vlan.c:160 160 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl);(kgdb) list 160 155 156 /* First, remove any existing filter entries. */ 157 while(SLIST_FIRST(&sc->vlan_mc_listhead) != NULL) { 158 mc = SLIST_FIRST(&sc->vlan_mc_listhead); 159 bcopy((char *)&mc->mc_addr, LLADDR(&sdl), ETHER_ADDR_LEN); 160 error = if_delmulti(ifp_p, (struct sockaddr *)&sdl); 161 if (error) 162 return(error); 163 SLIST_REMOVE_HEAD(&sc->vlan_mc_listhead, mc_entries); 164 free(mc, M_VLAN); This may be because of a race condition. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 5:52:57 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B1637B401; Sat, 22 Feb 2003 05:52:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4495843FA3; Sat, 22 Feb 2003 05:52:56 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MDquNS051491; Sat, 22 Feb 2003 05:52:56 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MDquAm051487; Sat, 22 Feb 2003 05:52:56 -0800 (PST) Date: Sat, 22 Feb 2003 05:52:56 -0800 (PST) From: Johan Karlsson Message-Id: <200302221352.h1MDquAm051487@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: i386/39844: PANIC using mount -> atacontrol detach -> ls/cat that device Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: PANIC using mount -> atacontrol detach -> ls/cat that device Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 05:52:15 PST 2003 Responsible-Changed-Why: Over to atacontrol maintainer since submitter mainly suggest changes to atacontrol. http://www.freebsd.org/cgi/query-pr.cgi?pr=39844 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 6:11:34 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60D3037B401; Sat, 22 Feb 2003 06:11:33 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 042E943FCB; Sat, 22 Feb 2003 06:11:33 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MEBWNS060904; Sat, 22 Feb 2003 06:11:32 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MEBWHc060900; Sat, 22 Feb 2003 06:11:32 -0800 (PST) Date: Sat, 22 Feb 2003 06:11:32 -0800 (PST) From: Johan Karlsson Message-Id: <200302221411.h1MEBWHc060900@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: bin/4357: bug in adduser script causes duplicate UIDs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bug in adduser script causes duplicate UIDs Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 06:10:12 PST 2003 Responsible-Changed-Why: Over to adduser.sh author. This report was for the old adduser perl script but it is still a problem with the new sh script. http://www.freebsd.org/cgi/query-pr.cgi?pr=4357 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 8:24:13 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8263E37B401 for ; Sat, 22 Feb 2003 08:24:10 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF08343FAF for ; Sat, 22 Feb 2003 08:24:09 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 4D8A39A; Sat, 22 Feb 2003 10:24:09 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 541C878C3E; Sat, 22 Feb 2003 10:22:45 -0600 (CST) Date: Sat, 22 Feb 2003 10:22:45 -0600 From: "Jacques A. Vidrine" To: freebsd-bugs@freebsd.org Cc: Gabriel Subject: Fwd: [bug-report] Message-ID: <20030222162245.GC33607@madman.celabo.org> Reply-To: freebsd-bugs@freebsd.org Mail-Followup-To: "Jacques A. Vidrine" , freebsd-bugs@freebsd.org, Gabriel Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----- Forwarded message from Gabriel ----- Date: 22 Feb 2003 15:39:31 +0100 From: Gabriel To: security-officer@freebsd.org Subject: bug-report Message-Id: <1045924773.16595.52.camel@delta9> Hello, I'm sorry for sending this e-mail to you, but I have no other way because I don't have the bug-report e-mail and I have no FreeBSD Machine installed (so no send-pr). Could you please forward this message to the correct department. Thank you and again sorry. PS. Why isn't there another way to send bug reports (the web page one isn't working). They should at lease have the e-mail address somewhere. Bug Report : FreeBSD 5.0-RELEASE (GENERIC) #0: Thu Jan 16 22:16:53 GMT 2003 From: gabriel@geneva-robot.ch Reply-To: gabriel@geneva-robot.ch Cc: X-send-pr-version: 3.113 X-GNATS-Notify: >Submitter-Id: current-users >Originator: User & >Organization: >Confidential: no SEND-PR: security officer team (security-officer@freebsd.org) directly. SEND-PR: SEND-PR: advocacy alpha bin conf docs gnu SEND-PR: i386 ia64 java kern misc ports From: gabriel@@geneva-robot.ch Reply-To: gabriel@geneva-robot.ch Cc: X-send-pr-version: 3.113 X-GNATS-Notify: >Submitter-Id: current-users >Originator: Gabriel Rossetti >Organization: >Confidential: no >Synopsis: >Severity: [serious] >Priority: [ medium ] >Category: [kern ; i386] >Class: [ sw-bug ] >Release: FreeBSD 5.0-RELEASE i386 >Environment: System: FreeBSD FreeBSDsrv.dynu.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 GMT 2003 root@hollin.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 Machine : Compaq ProLiant 1500 Controller/Disks : Compaq SMART Array-2/P with 5 x 2GB and 7 x 4GB drives Processor(s) : 2 x 166MHz RAM : 192MB OS : FreeBSD 5.0-RELEASE #0 >Description: I start the installation from either the CD-ROM or the floppy and it just stops responding after this prints on the screen : Cd0: cd present [294818 x 2048 byte records] Mounting root from UFS: /dev/md0 /stand/sysinstall running as init on vty0 I get no error messages. FreeBSD 4.7 works fine this machine. >How-To-Repeat: Try to install again >Fix: None ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 8:35:57 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 883B837B401; Sat, 22 Feb 2003 08:35:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B40143F85; Sat, 22 Feb 2003 08:35:56 -0800 (PST) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MGZuNS054311; Sat, 22 Feb 2003 08:35:56 -0800 (PST) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MGZudO054307; Sat, 22 Feb 2003 08:35:56 -0800 (PST) Date: Sat, 22 Feb 2003 08:35:56 -0800 (PST) From: Johan Karlsson Message-Id: <200302221635.h1MGZudO054307@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: bin/7033: Same process notified multiple times Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Same process notified multiple times Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: johan Responsible-Changed-When: Sat Feb 22 08:34:58 PST 2003 Responsible-Changed-Why: gad expressed some interest in newsyslog. http://www.freebsd.org/cgi/query-pr.cgi?pr=7033 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 8:54: 1 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A81537B401 for ; Sat, 22 Feb 2003 08:54:00 -0800 (PST) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A39143FCB for ; Sat, 22 Feb 2003 08:53:58 -0800 (PST) (envelope-from mb@imp.ch) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.12.6/8.12.3) with ESMTP id h1MGrvXN038482; Sat, 22 Feb 2003 17:53:57 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Sat, 22 Feb 2003 17:56:41 +0100 (CET) From: Martin Blapp To: Simon Cc: "freebsd-bugs@FreeBSD.org" , HiTech Creations Support Subject: Re: kern/39878: mysqld process suddenly runs at 99% CPU without load, and a restart of mysqld is required. In-Reply-To: <200302221536.h1MFauXM030770@mail.imp.ch> Message-ID: <20030222175014.P59307@levais.imp.ch> References: <200302221536.h1MFauXM030770@mail.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, > @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." > @${ECHO} " This is _NOT_ recommended for production" > @${ECHO} " servers. Expect problems when enabled." I know that. It was true until now. > > what is the patch below for? Mysql did not kill it's threads when using WITH_LINUXTHREADS=yes. So you were running out of processes and fd's after some time. Quoting Rick Reed from Yahoo! > The socket on which MySQL listens for new connections on a blocking > socket most of the time but is set to non-blocking during the > accept() of the new connection. Due to a bug in the kernel, the new > socket returned by accept() is a blocking socket but returns the > O_NONBLOCK flag when queried via fcntl(F_GETFL). That is, the file > descriptor and the underlying socket don't agree on the blocking > mode. > > Since MySQL determines via fcntl(F_GETFL) that the socket is > non-blocking, it expects the first read() in my_real_read to not > block, so it doesn't enable the timeout alarm. However, the read > does block, and thus there's no timeout alarm. The thread kill > (which relies on rescheduling the timeout alarm) also does not work > as a consequence. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 8:57:43 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABD7C37B401 for ; Sat, 22 Feb 2003 08:57:41 -0800 (PST) Received: from cobra.acceleratedweb.net (cobra-gw.acceleratedweb.net [207.99.79.37]) by mx1.FreeBSD.org (Postfix) with SMTP id 92AF243FBD for ; Sat, 22 Feb 2003 08:57:40 -0800 (PST) (envelope-from simon@optinet.com) Received: (qmail 98601 invoked by uid 106); 22 Feb 2003 16:58:00 -0000 Received: from 24-90-127-16.nyc.rr.com (HELO win2kpc1) (24.90.127.16) by cobra.acceleratedweb.net with SMTP; 22 Feb 2003 16:58:00 -0000 From: "Simon" To: "Martin Blapp" Cc: "freebsd-bugs@FreeBSD.org" , "HiTech Creations Support" Date: Sat, 22 Feb 2003 11:56:54 -0500 X-Mailer: PMMail 2000 Professional (2.20.2661) For Windows 2000 (5.0.2195;3) In-Reply-To: <20030222175014.P59307@levais.imp.ch> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: kern/39878: mysqld process suddenly runs at 99% CPU without load, and a restart of mysqld is required. Message-Id: <20030222165740.92AF243FBD@mx1.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org So building with "WITH_LINUXTHREADS=yes" is perfectly safe in 4.7-R and later? PS: i'm not sure what you mean by *now*, thus the question. -Simon On Sat, 22 Feb 2003 17:56:41 +0100 (CET), Martin Blapp wrote: > >Hi, > >> @${ECHO} " WITH_LINUXTHREADS=yes Use the linuxthreads pthread library." >> @${ECHO} " This is _NOT_ recommended for production" >> @${ECHO} " servers. Expect problems when enabled." > >I know that. It was true until now. > >> >> what is the patch below for? > >Mysql did not kill it's threads when using WITH_LINUXTHREADS=yes. So >you were running out of processes and fd's after some time. > >Quoting Rick Reed from Yahoo! > >> The socket on which MySQL listens for new connections on a blocking >> socket most of the time but is set to non-blocking during the >> accept() of the new connection. Due to a bug in the kernel, the new >> socket returned by accept() is a blocking socket but returns the >> O_NONBLOCK flag when queried via fcntl(F_GETFL). That is, the file >> descriptor and the underlying socket don't agree on the blocking >> mode. >> >> Since MySQL determines via fcntl(F_GETFL) that the socket is >> non-blocking, it expects the first read() in my_real_read to not >> block, so it doesn't enable the timeout alarm. However, the read >> does block, and thus there's no timeout alarm. The thread kill >> (which relies on rescheduling the timeout alarm) also does not work >> as a consequence. > >Martin > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 10: 5: 6 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC6C37B41C for ; Sat, 22 Feb 2003 10:05:02 -0800 (PST) Received: from bol.com.br (200-163-044-064.cpece7003.dsl.brasiltelecom.net.br [200.163.44.64]) by mx1.FreeBSD.org (Postfix) with SMTP id B98FA43FCB for ; Sat, 22 Feb 2003 10:04:59 -0800 (PST) (envelope-from redacaocoml@bol.com.br) From: "Redação Comercial" To: Subject: Elaboração de cartas comerciais Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Sat, 22 Feb 2003 14:04:53 -0300 Content-Transfer-Encoding: 8bit Message-Id: <20030222180459.B98FA43FCB@mx1.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org COMUNICADO IMPORTANTE!! Estamos lançando o KIT DE CARTAS COMERCIAIS, que sana suas dúvidas na elaboração de: agradecimentos, atestados e declarações, avisos, cartas de cobrança, cartas em inglês, comunicados, convites, contratos, propostas, empregos, solicitações e pedidos, telegramas, cartas por e-mail, etc. Composto de 02 (dois) disquetes com 150 modelos de documentos cada um, mais livreto 20 páginas, com técnicas de redação comercial. Indicado para: secretárias em geral, gerências, Rh, executivos, estudantes e empresas de toda ordem. Este kit possui um preço ínfimo em relação ao que poderá gerar no aperfeiçoamento da comunicação de sua empresa. Acesse nossa Home Page para mais detalhes: http://www.redacaodecartas.ihp.com.br Ps: Caso não queira receber novas mensagens e novidades sobre esse assunto, acesse: http://www.remova-me.ihp.com.br To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 12:10:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68F4A37B401 for ; Sat, 22 Feb 2003 12:10:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69BC843FDD for ; Sat, 22 Feb 2003 12:10:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MKA5NS015342 for ; Sat, 22 Feb 2003 12:10:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MKA58i015341; Sat, 22 Feb 2003 12:10:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6701037B401 for ; Sat, 22 Feb 2003 12:06:54 -0800 (PST) Received: from grosbein.pp.ru (www2.svzserv.kemerovo.su [213.184.65.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53E9843FBD for ; Sat, 22 Feb 2003 12:06:47 -0800 (PST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.6/8.12.6) with ESMTP id h1MK6QaA049705 for ; Sun, 23 Feb 2003 03:06:26 +0700 (KRAT) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.6/8.12.6/Submit) id h1MK0GLK049123; Sun, 23 Feb 2003 03:00:16 +0700 (KRAT) Message-Id: <200302222000.h1MK0GLK049123@grosbein.pp.ru> Date: Sun, 23 Feb 2003 03:00:16 +0700 (KRAT) From: Eugene Grosbein Reply-To: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/48566: [PATCH] /etc/defaults/make.conf stales after repo-copy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48566 >Category: conf >Synopsis: [PATCH] /etc/defaults/make.conf stales after repo-copy >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 12:10:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.7-STABLE i386 >Organization: Svyaz Service JSC >Environment: System: FreeBSD grosbein.pp.ru 4.7-STABLE FreeBSD 4.7-STABLE #4: Sun Feb 9 13:34:37 KRAT 2003 eu@grosbein.pp.ru:/usr/local/obj/usr/local/src/sys/DADV i386 >Description: /etc/defaults/make.conf does not document some things existing in both of RELENG_4 and CURRENT that are documented in CURRENT. >How-To-Repeat: See patch. >Fix: Patch for etc/defaults/make.conf: --- make.conf.orig Sun Feb 23 02:43:34 2003 +++ make.conf Sun Feb 23 02:55:39 2003 @@ -31,8 +31,9 @@ # It may be that certain types of software will become unstable after being # compiled with processor-specific (or higher - see below) optimization flags. # If in doubt, do not set CPUTYPE or CFLAGS to non-default values. +# (?= allows to buildworld for a different CPUTYPE.) # -#CPUTYPE=i686 +#CPUTYPE?=i686 #NO_CPU_CFLAGS= true # Don't add -march= to CFLAGS automatically #NO_CPU_COPTFLAGS=true # Don't add -march= to COPTFLAGS automatically # @@ -53,6 +54,13 @@ # #CXXFLAGS+= -fmemoize-lookups -fsave-memoized # +# MAKE_SHELL controls the shell used internally by make(1) to process the +# command scripts in makefiles. Three shells are supported, sh, ksh, and +# csh. Using sh is most common, and advised. Using ksh *may* work, but is +# not guaranteed to. Using csh is absurd. The default is to use sh. +# +#MAKE_SHELL?=sh +# # BDECFLAGS are a set of gcc warning settings that Bruce Evans has suggested # for use in developing FreeBSD and testing changes. They can be used by # putting "CFLAGS+=${BDECFLAGS}" in /etc/make.conf. -Wconversion is not @@ -88,8 +96,10 @@ # # To avoid building various parts of the base system: #NO_CVS= true # do not build CVS +#NO_CXX= true # do not build C++ and friends #NO_BIND= true # do not build BIND #NO_FORTRAN= true # do not build g77 and related libraries +#NO_GDB= true # do not build GDB #NO_I4B= true # do not build isdn4bsd package #NO_IPFILTER= true # do not build IP Filter package #NO_LPR= true # do not build lpr and related programs @@ -118,6 +128,9 @@ # # The list of modules to build instead of all of them. #MODULES_OVERRIDE= linux ipfw +# +# If you always want to build the Linux ext2fs kernel module. +#WANT_EXT2FS_MODULE=yes # # The following controls building optional IDEA code in libcrypto and # certain ports. Patents are involved - you must not use this unless Eugene Grosbein >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 12:40: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95BED37B401 for ; Sat, 22 Feb 2003 12:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E81543FDD for ; Sat, 22 Feb 2003 12:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MKe3NS021443 for ; Sat, 22 Feb 2003 12:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MKe30b021442; Sat, 22 Feb 2003 12:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 488B337B401 for ; Sat, 22 Feb 2003 12:31:04 -0800 (PST) Received: from grosbein.pp.ru (www2.svzserv.kemerovo.su [213.184.65.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 468DF43F75 for ; Sat, 22 Feb 2003 12:31:00 -0800 (PST) (envelope-from eugen@grosbein.pp.ru) Received: from grosbein.pp.ru (smmsp@localhost [127.0.0.1]) by grosbein.pp.ru (8.12.6/8.12.6) with ESMTP id h1MKTuaA050303 for ; Sun, 23 Feb 2003 03:29:56 +0700 (KRAT) (envelope-from eugen@grosbein.pp.ru) Received: (from eugen@localhost) by grosbein.pp.ru (8.12.6/8.12.6/Submit) id h1MKOCoX049827; Sun, 23 Feb 2003 03:24:12 +0700 (KRAT) Message-Id: <200302222024.h1MKOCoX049827@grosbein.pp.ru> Date: Sun, 23 Feb 2003 03:24:12 +0700 (KRAT) From: Eugene Grosbein Reply-To: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/48569: make.conf misses comments on some options Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48569 >Category: conf >Synopsis: make.conf misses comments on some options >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 12:40:03 PST 2003 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.7-STABLE, 5.0-CURRENT >Organization: Svyaz Service JSC >Environment: System: both of 4-STABLE and CURRENT branches >Description: etc/defaults/make.conf in STABLE and share/examples/etc/make.conf in CURRENT do not document some options that are very useful for minimalistic system like small router without much of disk/flash and RAM space. System-wide: #NOPAM= true # do not build PAM support #NOSHARED= no # build /bin and /sbin dynamically linked - do NOT use # unless you known what are you doing ppp(8) specific: #NOALIAS= true # build user-level ppp(8) without NAT support #NOATM= true # build user-level ppp(8) without ATM support #NONAT= true # another name for NOALIAS #NONETGRAPH= true # build user-level ppp(8) without NETGRAPH support #NORADUIS= true # build user-level ppp(8) without RADUIS support traceroute(8) specific: #NOIPSEC= true # build traceroute(8) without IPSEC support >How-To-Repeat: N/A >Fix: Add above lines to share/examples/etc/make.conf for CURRENT and MFC to etc/defaults/make.conf. Eugene Grosbein >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 15: 4:47 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E79D37B401; Sat, 22 Feb 2003 15:04:47 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EE8843FB1; Sat, 22 Feb 2003 15:04:46 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MN4kNS058869; Sat, 22 Feb 2003 15:04:46 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MN4jQP058865; Sat, 22 Feb 2003 15:04:45 -0800 (PST) Date: Sat, 22 Feb 2003 15:04:45 -0800 (PST) From: Mike Makonnen Message-Id: <200302222304.h1MN4jQP058865@freefall.freebsd.org> To: marck@rinet.ru, mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/33881: adduser additions: selectable crypt scheme; empty passwords Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: adduser additions: selectable crypt scheme; empty passwords State-Changed-From-To: open->closed State-Changed-By: mtm State-Changed-When: Sat Feb 22 15:03:04 PST 2003 State-Changed-Why: The new adduser script wraps pw(8), which uses crypt(3), which gets the crypt type from /etc/auth.conf. http://www.freebsd.org/cgi/query-pr.cgi?pr=33881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 15: 5:40 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B60C337B401; Sat, 22 Feb 2003 15:05:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AB5543F3F; Sat, 22 Feb 2003 15:05:39 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MN5dNS062520; Sat, 22 Feb 2003 15:05:39 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MN5cSW062516; Sat, 22 Feb 2003 15:05:38 -0800 (PST) Date: Sat, 22 Feb 2003 15:05:38 -0800 (PST) From: Mike Makonnen Message-Id: <200302222305.h1MN5cSW062516@freefall.freebsd.org> To: aeonflux@trioptimum.com, mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/40802: adduser ignores password format Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: adduser ignores password format State-Changed-From-To: open->closed State-Changed-By: mtm State-Changed-When: Sat Feb 22 15:04:57 PST 2003 State-Changed-Why: Adduser is now a shell script which wraps pw(8). http://www.freebsd.org/cgi/query-pr.cgi?pr=40802 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 15:35:54 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D922337B401; Sat, 22 Feb 2003 15:35:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ADE243FBD; Sat, 22 Feb 2003 15:35:53 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MNZrNS068568; Sat, 22 Feb 2003 15:35:53 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MNZrhW068564; Sat, 22 Feb 2003 15:35:53 -0800 (PST) Date: Sat, 22 Feb 2003 15:35:53 -0800 (PST) From: Mike Makonnen Message-Id: <200302222335.h1MNZrhW068564@freefall.freebsd.org> To: pepper@rockefeller.edu, mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/38479: sysinstall vs. adduser UID inconsistency Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysinstall vs. adduser UID inconsistency State-Changed-From-To: open->closed State-Changed-By: mtm State-Changed-When: Sat Feb 22 15:33:24 PST 2003 State-Changed-Why: The new adduser in 5.0 is a wrapper around pw(8), and by default lets pw(8) choose the starting uid number, just like sysinstall(8) does. So, they should now behave the same unless explicitly modified by the user. http://www.freebsd.org/cgi/query-pr.cgi?pr=38479 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 15:43:37 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F32B37B401; Sat, 22 Feb 2003 15:43:36 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1259943FBF; Sat, 22 Feb 2003 15:43:36 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MNhZNS070512; Sat, 22 Feb 2003 15:43:35 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MNhZ5V070508; Sat, 22 Feb 2003 15:43:35 -0800 (PST) Date: Sat, 22 Feb 2003 15:43:35 -0800 (PST) From: Mike Makonnen Message-Id: <200302222343.h1MNhZ5V070508@freefall.freebsd.org> To: roelof@eboa.com, mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/24742: send adduser.message before dirs are created Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: send adduser.message before dirs are created State-Changed-From-To: open->closed State-Changed-By: mtm State-Changed-When: Sat Feb 22 15:42:05 PST 2003 State-Changed-Why: The new adduser(8) sends the mail message _after_ creating the user, so this is no longer an issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=24742 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 15:49:17 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E92237B401; Sat, 22 Feb 2003 15:49:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D1E43F85; Sat, 22 Feb 2003 15:49:16 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from freefall.freebsd.org (mtm@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1MNnGNS070591; Sat, 22 Feb 2003 15:49:16 -0800 (PST) (envelope-from mtm@freefall.freebsd.org) Received: (from mtm@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1MNnGpq070587; Sat, 22 Feb 2003 15:49:16 -0800 (PST) Date: Sat, 22 Feb 2003 15:49:16 -0800 (PST) From: Mike Makonnen Message-Id: <200302222349.h1MNnGpq070587@freefall.freebsd.org> To: mtm@FreeBSD.org, freebsd-bugs@FreeBSD.org, mtm@FreeBSD.org Subject: Re: bin/7324: Suggestions for minor modifications to adduser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Suggestions for minor modifications to adduser Responsible-Changed-From-To: freebsd-bugs->mtm Responsible-Changed-By: mtm Responsible-Changed-When: Sat Feb 22 15:47:51 PST 2003 Responsible-Changed-Why: I believe items 1 and 2 are no longer an issue. I'll take care of adding item 3. http://www.freebsd.org/cgi/query-pr.cgi?pr=7324 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:13:45 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAA7E37B401; Sat, 22 Feb 2003 18:13:44 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 552B243F85; Sat, 22 Feb 2003 18:13:44 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2DiNS011317; Sat, 22 Feb 2003 18:13:44 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Diq3011313; Sat, 22 Feb 2003 18:13:44 -0800 (PST) Date: Sat, 22 Feb 2003 18:13:44 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230213.h1N2Diq3011313@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/4782: Under certain conditions, several krsh's in a row to the same destination machine can result in refused connections Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Under certain conditions, several krsh's in a row to the same destination machine can result in refused connections Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:12:47 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=4782 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:13:56 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E877D37B401; Sat, 22 Feb 2003 18:13:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7939E43FDF; Sat, 22 Feb 2003 18:13:55 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2DtNS011368; Sat, 22 Feb 2003 18:13:55 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2DtmY011364; Sat, 22 Feb 2003 18:13:55 -0800 (PST) Date: Sat, 22 Feb 2003 18:13:55 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230213.h1N2DtmY011364@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10107: interlock situation with exec_map and a program binary inode Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: interlock situation with exec_map and a program binary inode Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:13:46 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=10107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:14: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C254137B401; Sat, 22 Feb 2003 18:14:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63BBF43F75; Sat, 22 Feb 2003 18:14:06 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2E6NS011419; Sat, 22 Feb 2003 18:14:06 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2E6gd011415; Sat, 22 Feb 2003 18:14:06 -0800 (PST) Date: Sat, 22 Feb 2003 18:14:06 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230214.h1N2E6gd011415@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/14285: NFS client appears to lose data Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NFS client appears to lose data Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:13:56 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=14285 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:14:17 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E171937B401; Sat, 22 Feb 2003 18:14:16 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8316643F75; Sat, 22 Feb 2003 18:14:16 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2EGNS011470; Sat, 22 Feb 2003 18:14:16 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2EGBD011466; Sat, 22 Feb 2003 18:14:16 -0800 (PST) Date: Sat, 22 Feb 2003 18:14:16 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230214.h1N2EGBD011466@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15707: bad trap in mprotect Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: bad trap in mprotect Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:14:07 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=15707 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:14:28 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 951A837B405; Sat, 22 Feb 2003 18:14:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C13743FCB; Sat, 22 Feb 2003 18:14:26 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2EQNS011537; Sat, 22 Feb 2003 18:14:26 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2EQre011533; Sat, 22 Feb 2003 18:14:26 -0800 (PST) Date: Sat, 22 Feb 2003 18:14:26 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230214.h1N2EQre011533@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/15825: Softupdates gets behind, runs the system out of KVM Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Softupdates gets behind, runs the system out of KVM Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:14:18 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=15825 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:14:36 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE4A37B405; Sat, 22 Feb 2003 18:14:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E910E43FBD; Sat, 22 Feb 2003 18:14:34 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2EYNS011588; Sat, 22 Feb 2003 18:14:34 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2EYbf011584; Sat, 22 Feb 2003 18:14:34 -0800 (PST) Date: Sat, 22 Feb 2003 18:14:34 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230214.h1N2EYbf011584@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/16815: Cannot "rm -rf" for not-existed file on read-only nfs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Cannot "rm -rf" for not-existed file on read-only nfs Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:14:28 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=16815 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15: 4 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2C4D37B4D0; Sat, 22 Feb 2003 18:15:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753FB43FA3; Sat, 22 Feb 2003 18:15:03 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2F3NS011643; Sat, 22 Feb 2003 18:15:03 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2F3J2011639; Sat, 22 Feb 2003 18:15:03 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:03 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2F3J2011639@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/17905: 4.0-SNAP keep on crashing every 3 days Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 4.0-SNAP keep on crashing every 3 days Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:14:37 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=17905 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:14 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E50CE37B401; Sat, 22 Feb 2003 18:15:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8329E43F85; Sat, 22 Feb 2003 18:15:12 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FCNS011700; Sat, 22 Feb 2003 18:15:12 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2FCPD011696; Sat, 22 Feb 2003 18:15:12 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:12 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2FCPD011696@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/18466: install via nfs or ftp media silently truncates long pathname and hence fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: install via nfs or ftp media silently truncates long pathname and hence fails Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:05 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=18466 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:21 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C734837B401; Sat, 22 Feb 2003 18:15:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6881F43FA3; Sat, 22 Feb 2003 18:15:20 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FKNS011754; Sat, 22 Feb 2003 18:15:20 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2FK20011750; Sat, 22 Feb 2003 18:15:20 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:20 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2FK20011750@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/19672: contigmalloc1() oddity for large alignments (race condition) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: contigmalloc1() oddity for large alignments (race condition) Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:14 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=19672 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:29 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B810F37B401; Sat, 22 Feb 2003 18:15:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0710243FD7; Sat, 22 Feb 2003 18:15:28 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FRNS011806; Sat, 22 Feb 2003 18:15:27 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2FRW9011802; Sat, 22 Feb 2003 18:15:27 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:27 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2FRW9011802@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/19909: Problem with NFS client in 4.0-STABLE Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Problem with NFS client in 4.0-STABLE Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:22 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=19909 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:40 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A6AA37B401; Sat, 22 Feb 2003 18:15:39 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE04843FE0; Sat, 22 Feb 2003 18:15:37 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FbNS011871; Sat, 22 Feb 2003 18:15:37 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Fbof011867; Sat, 22 Feb 2003 18:15:37 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:37 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2Fbof011867@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/20609: panic: vm_fault: fault on nofault entry, addr: cc4b3000 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: panic: vm_fault: fault on nofault entry, addr: cc4b3000 Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:29 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=20609 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:47 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4712E37B401; Sat, 22 Feb 2003 18:15:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB5C043FA3; Sat, 22 Feb 2003 18:15:45 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FjNS011922; Sat, 22 Feb 2003 18:15:45 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2FjtJ011918; Sat, 22 Feb 2003 18:15:45 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:45 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2FjtJ011918@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/21222: wrong behavior of concurrent mmap()s on NFS files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: wrong behavior of concurrent mmap()s on NFS files Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:39 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=21222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:15:54 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B29B337B401; Sat, 22 Feb 2003 18:15:53 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06ABB43FDF; Sat, 22 Feb 2003 18:15:53 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FqNS011973; Sat, 22 Feb 2003 18:15:52 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Fq2U011969; Sat, 22 Feb 2003 18:15:52 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:52 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2Fq2U011969@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/26324: Defaults for NFS mounts over TCP are slow Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Defaults for NFS mounts over TCP are slow Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:47 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=26324 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16: 0 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C243737B401; Sat, 22 Feb 2003 18:15:59 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0478F43FCB; Sat, 22 Feb 2003 18:15:59 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2FwNS012025; Sat, 22 Feb 2003 18:15:58 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2FwAV012021; Sat, 22 Feb 2003 18:15:58 -0800 (PST) Date: Sat, 22 Feb 2003 18:15:58 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230215.h1N2FwAV012021@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/26840: process doing mmap() over nfs hangs in vmopar or objtrm Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: process doing mmap() over nfs hangs in vmopar or objtrm Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:15:54 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=26840 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A0CC37B401; Sat, 22 Feb 2003 18:16:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D66A743FA3; Sat, 22 Feb 2003 18:16:04 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2G4NS012076; Sat, 22 Feb 2003 18:16:04 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2G4Il012072; Sat, 22 Feb 2003 18:16:04 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:04 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2G4Il012072@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/28703: Kernel reboot during tape backup of nfs mount Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Kernel reboot during tape backup of nfs mount Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:00 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=28703 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:14 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64C7137B405; Sat, 22 Feb 2003 18:16:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98CA043FD7; Sat, 22 Feb 2003 18:16:11 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GBNS012128; Sat, 22 Feb 2003 18:16:11 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2GBMe012124; Sat, 22 Feb 2003 18:16:11 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:11 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2GBMe012124@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31933: pw can interpret numeric name as userid during userdel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pw can interpret numeric name as userid during userdel Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:06 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=31933 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:22 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CF2137B401; Sat, 22 Feb 2003 18:16:22 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DFC743FD7; Sat, 22 Feb 2003 18:16:20 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GKNS012188; Sat, 22 Feb 2003 18:16:20 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2GK9t012184; Sat, 22 Feb 2003 18:16:20 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:20 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2GK9t012184@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/32659: VM and VNODE leak with vm.swap_idle_enabled=1 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: VM and VNODE leak with vm.swap_idle_enabled=1 Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:14 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=32659 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:33 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB0BB37B405; Sat, 22 Feb 2003 18:16:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 454D443F93; Sat, 22 Feb 2003 18:16:30 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GUNS012258; Sat, 22 Feb 2003 18:16:30 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2GUxC012254; Sat, 22 Feb 2003 18:16:30 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:30 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2GUxC012254@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/33203: "got bad cookie" errors on NFS client Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: "got bad cookie" errors on NFS client Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:22 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=33203 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:39 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A06FD37B401; Sat, 22 Feb 2003 18:16:38 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F38C43FA3; Sat, 22 Feb 2003 18:16:38 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GcNS012309; Sat, 22 Feb 2003 18:16:38 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Gc4Y012305; Sat, 22 Feb 2003 18:16:38 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:38 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2Gc4Y012305@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/33464: soft update inconsistencies after system crash Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: soft update inconsistencies after system crash Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:31 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=33464 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:47 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A532E37B401; Sat, 22 Feb 2003 18:16:46 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA90743FE0; Sat, 22 Feb 2003 18:16:44 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GiNS012360; Sat, 22 Feb 2003 18:16:44 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Gi3I012356; Sat, 22 Feb 2003 18:16:44 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:44 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2Gi3I012356@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/36504: crash/panic vm_object_allocate under file system code w/fix Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: crash/panic vm_object_allocate under file system code w/fix Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:39 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=36504 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:16:58 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E1F837B401; Sat, 22 Feb 2003 18:16:57 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA73B43FE1; Sat, 22 Feb 2003 18:16:55 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from freefall.freebsd.org (keramida@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N2GtNS012411; Sat, 22 Feb 2003 18:16:55 -0800 (PST) (envelope-from keramida@freefall.freebsd.org) Received: (from keramida@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N2Gtii012407; Sat, 22 Feb 2003 18:16:55 -0800 (PST) Date: Sat, 22 Feb 2003 18:16:55 -0800 (PST) From: Giorgos Keramidas Message-Id: <200302230216.h1N2Gtii012407@freefall.freebsd.org> To: keramida@FreeBSD.org, dillon@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/41216: Get "NFS append race" error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Get "NFS append race" error Responsible-Changed-From-To: dillon->freebsd-bugs Responsible-Changed-By: keramida Responsible-Changed-When: Sat Feb 22 18:16:46 PST 2003 Responsible-Changed-Why: Back to the free pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=41216 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 18:21:52 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D2A237B401 for ; Sat, 22 Feb 2003 18:21:51 -0800 (PST) Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0B6943FA3 for ; Sat, 22 Feb 2003 18:21:49 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from gothmog.gr (patr530-a157.otenet.gr [212.205.215.157]) by mailsrv.otenet.gr (8.12.6/8.12.6) with ESMTP id h1N2Ll2O012176 for ; Sun, 23 Feb 2003 04:21:47 +0200 (EET) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.7/8.12.7) with ESMTP id h1N2LlCX088322 for ; Sun, 23 Feb 2003 04:21:47 +0200 (EET) (envelope-from keramida@FreeBSD.org) Received: (from giorgos@localhost) by gothmog.gr (8.12.7/8.12.7/Submit) id h1N2LksD088321 for freebsd-bugs@FreeBSD.ORG; Sun, 23 Feb 2003 04:21:46 +0200 (EET) (envelope-from keramida@FreeBSD.org) Date: Sun, 23 Feb 2003 04:21:46 +0200 From: Giorgos Keramidas To: freebsd-bugs@FreeBSD.org Subject: Re: kern/4782: Under certain conditions, several krsh's in a row to the same destination machine can result in refused connections Message-ID: <20030223022146.GB88132@gothmog.gr> References: <200302230213.h1N2Diq3011313@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <200302230213.h1N2Diq3011313@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2003-02-22 18:13, Giorgos Keramidas wrote: > Synopsis: Under certain conditions, several krsh's in a row to the > same destination machine can result in refused connections > [...] Sorry for the small flood of PR mail everyone. I thought a bit about it, and considered editing the problem reports in place and then regenerating the gnats index to spare you the notices. I chose not to, in order to have the notifications appear in the mailboxen of people who might want to help with the resolution of these PRs. - - Giorgos -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+WDA61g+UGjGGA7YRAgFVAKCJjTufDYvulux2VlWom4Mio42vNACgiVPg +M4OE1YRjlEpUa7PXOksk9Y= =aYjZ -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 19:10:22 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B4D937B406 for ; Sat, 22 Feb 2003 19:10:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 944EB43FBF for ; Sat, 22 Feb 2003 19:10:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N3AENS026388 for ; Sat, 22 Feb 2003 19:10:14 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N3AExD026387; Sat, 22 Feb 2003 19:10:14 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE07337B401 for ; Sat, 22 Feb 2003 19:06:48 -0800 (PST) Received: from shells.linuxfan.org (shells.linuxfan.org [213.137.47.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 182BA43F3F for ; Sat, 22 Feb 2003 19:06:48 -0800 (PST) (envelope-from todor@shells.linuxfan.org) Received: by shells.linuxfan.org (Postfix, from userid 1001) id A453C1CC; Sun, 23 Feb 2003 05:05:44 +0200 (EET) Message-Id: <20030223030544.A453C1CC@shells.linuxfan.org> Date: Sun, 23 Feb 2003 05:05:44 +0200 (EET) From: Todor Dragnev Reply-To: Todor Dragnev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/48576: uin match not work in ipfw Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48576 >Category: bin >Synopsis: uin match not work in ipfw >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 19:10:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Todor Dragnev >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD shells.linuxfan.org 5.0-RELEASE FreeBSD 5.0-RELEASE #4: Sat Feb 22 22:11:15 EET 2003 root@shells.linuxfan.org:/usr/src/sys/i386/compile/NEXUS i386 >Description: I moved from FreeBSD 4.7 to 5.0 and here ipfw uin match not work >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Feb 22 23:15:20 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0DBC37B401; Sat, 22 Feb 2003 23:15:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53DCB43F75; Sat, 22 Feb 2003 23:15:19 -0800 (PST) (envelope-from maxim@FreeBSD.org) Received: from freefall.freebsd.org (maxim@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1N7FJNS091471; Sat, 22 Feb 2003 23:15:19 -0800 (PST) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1N7FIUZ091467; Sat, 22 Feb 2003 23:15:18 -0800 (PST) Date: Sat, 22 Feb 2003 23:15:18 -0800 (PST) From: Maxim Konovalov Message-Id: <200302230715.h1N7FIUZ091467@freefall.freebsd.org> To: todor@shells.linuxfan.org, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/48576: uin match not work in ipfw Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: uin match not work in ipfw State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Sat Feb 22 23:14:33 PST 2003 State-Changed-Why: Already fixed in rev. 1.26 src/sys/netinet/ip_fw2.c. http://www.freebsd.org/cgi/query-pr.cgi?pr=48576 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message