From owner-freebsd-bugs Sun Oct 6 0:30: 7 2002 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 362C737B401 for ; Sun, 6 Oct 2002 00:30:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C579043E4A for ; Sun, 6 Oct 2002 00:30:04 -0700 (PDT) (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 g967U4Co038942 for ; Sun, 6 Oct 2002 00:30:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g967U47V038941; Sun, 6 Oct 2002 00:30:04 -0700 (PDT) Date: Sun, 6 Oct 2002 00:30:04 -0700 (PDT) Message-Id: <200210060730.g967U47V038941@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: Re: bin/4672 rdist botches hardlink counts Reply-To: Lyndon Nerenberg 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/4672; it has been noted by GNATS. From: Lyndon Nerenberg To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/4672 rdist botches hardlink counts Date: Sun, 06 Oct 2002 01:25:22 -0600 The call to remotename() is returning a zero-length filename for the link source, thus rdist is sending the name of the source's directory, and not the complete path to the source file. After reading the code, I can't see the purpose of the remotename() call, since it doesn't appear that lp->src and lp->pathname can ever hold different strings (in the hardlink case). The attached patch fixes the problem described in the pr, and quells a couple of printf argument warnings from a -Wall compile. Index: defs.h =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/defs.h,v retrieving revision 1.6 diff -u -r1.6 defs.h --- defs.h 1998/04/20 06:20:19 1.6 +++ defs.h 2002/10/06 07:15:15 @@ -137,7 +137,7 @@ struct linkbuf { ino_t inum; dev_t devnum; - int count; + u_int count; char pathname[BUFSIZ]; char src[BUFSIZ]; char target[BUFSIZ]; Index: docmd.c =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/docmd.c,v retrieving revision 1.12 diff -u -r1.12 docmd.c --- docmd.c 1999/08/28 01:05:06 1.12 +++ docmd.c 2002/10/06 07:15:15 @@ -194,8 +194,8 @@ nextihead = ihead->nextp; if ((opts & IGNLNKS) || ihead->count == 0) continue; - log(lfp, "%s: Warning: missing links\n", - ihead->pathname); + log(lfp, "%s: Warning: missing links (%u)\n", + ihead->pathname, ihead->count); free(ihead); } } Index: server.c =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/server.c,v retrieving revision 1.10 diff -u -r1.10 server.c --- server.c 1999/08/28 01:05:09 1.10 +++ server.c 2002/10/06 07:15:16 @@ -334,8 +334,7 @@ opts, lp->pathname, rname); else (void) snprintf(buf, sizeof(buf), "k%o %s/%s %s\n", - opts, lp->target, - remotename(lp->pathname, lp->src), rname); + opts, lp->target, lp->pathname, rname); if (debug) { printf("lp->src = %s\n", lp->src); @@ -389,14 +388,16 @@ log(lfp, "%s: no password entry for uid %d \n", target, stb.st_uid); pw = NULL; - (void)snprintf(user, sizeof(user), ":%lu", stb.st_uid); + (void)snprintf(user, sizeof(user), ":%lu", + (unsigned long)stb.st_uid); } if (gr == NULL || gr->gr_gid != stb.st_gid) if ((gr = getgrgid(stb.st_gid)) == NULL) { log(lfp, "%s: no name for group %d\n", - target, stb.st_gid); + target, (unsigned long)stb.st_gid); gr = NULL; - (void)snprintf(group, sizeof(group), ":%lu", stb.st_gid); + (void)snprintf(group, sizeof(group), ":%lu", + (unsigned long)stb.st_gid); } if (u == 1) { if (opts & VERIFY) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 0:50: 8 2002 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 9C0C737B404 for ; Sun, 6 Oct 2002 00:50:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38EDF43E3B for ; Sun, 6 Oct 2002 00:50:04 -0700 (PDT) (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 g967o4Co046412 for ; Sun, 6 Oct 2002 00:50:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g967o45l046411; Sun, 6 Oct 2002 00:50:04 -0700 (PDT) Date: Sun, 6 Oct 2002 00:50:04 -0700 (PDT) Message-Id: <200210060750.g967o45l046411@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: Re: bin/4672 rdist botches hardlink counts (take 2) Reply-To: Lyndon Nerenberg 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/4672; it has been noted by GNATS. From: Lyndon Nerenberg To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/4672 rdist botches hardlink counts (take 2) Date: Sun, 06 Oct 2002 01:42:59 -0600 Of course, my tests had pathname and src reversed, so remotename appeared to be a noop. In fact, it's needed, and the bug is remotename not just returning pathname if it contains no '/' characters. Index: defs.h =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/defs.h,v retrieving revision 1.6 diff -u -r1.6 defs.h --- defs.h 1998/04/20 06:20:19 1.6 +++ defs.h 2002/10/06 07:40:52 @@ -137,7 +137,7 @@ struct linkbuf { ino_t inum; dev_t devnum; - int count; + u_int count; char pathname[BUFSIZ]; char src[BUFSIZ]; char target[BUFSIZ]; Index: docmd.c =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/docmd.c,v retrieving revision 1.12 diff -u -r1.12 docmd.c --- docmd.c 1999/08/28 01:05:06 1.12 +++ docmd.c 2002/10/06 07:40:52 @@ -194,8 +194,8 @@ nextihead = ihead->nextp; if ((opts & IGNLNKS) || ihead->count == 0) continue; - log(lfp, "%s: Warning: missing links\n", - ihead->pathname); + log(lfp, "%s: Warning: missing links (%u)\n", + ihead->pathname, ihead->count); free(ihead); } } Index: server.c =================================================================== RCS file: /home/ncvs/src/usr.bin/rdist/Attic/server.c,v retrieving revision 1.10 diff -u -r1.10 server.c --- server.c 1999/08/28 01:05:09 1.10 +++ server.c 2002/10/06 07:40:53 @@ -315,6 +315,8 @@ int len; cp = pathname; + if (strchr(cp, '/') == NULL) + return cp; len = strlen(src); if (0 == strncmp(pathname, src, len)) cp += len; @@ -389,14 +391,16 @@ log(lfp, "%s: no password entry for uid %d \n", target, stb.st_uid); pw = NULL; - (void)snprintf(user, sizeof(user), ":%lu", stb.st_uid); + (void)snprintf(user, sizeof(user), ":%lu", + (unsigned long)stb.st_uid); } if (gr == NULL || gr->gr_gid != stb.st_gid) if ((gr = getgrgid(stb.st_gid)) == NULL) { log(lfp, "%s: no name for group %d\n", - target, stb.st_gid); + target, (unsigned long)stb.st_gid); gr = NULL; - (void)snprintf(group, sizeof(group), ":%lu", stb.st_gid); + (void)snprintf(group, sizeof(group), ":%lu", + (unsigned long)stb.st_gid); } if (u == 1) { if (opts & VERIFY) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 2:10: 4 2002 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 EDDBF37B401 for ; Sun, 6 Oct 2002 02:10:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9125B43E65 for ; Sun, 6 Oct 2002 02:10:03 -0700 (PDT) (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 g969A3Co096972 for ; Sun, 6 Oct 2002 02:10:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g969A3BB096971; Sun, 6 Oct 2002 02:10:03 -0700 (PDT) Date: Sun, 6 Oct 2002 02:10:03 -0700 (PDT) Message-Id: <200210060910.g969A3BB096971@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Andre Albsmeier Subject: Re: bin/43730: chmod doesn't recognize -h option in 4-STABLE Reply-To: Andre Albsmeier 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/43730; it has been noted by GNATS. From: Andre Albsmeier To: David Magda Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/43730: chmod doesn't recognize -h option in 4-STABLE Date: Sun, 6 Oct 2002 11:09:31 +0200 See PR 41926 which extensively covers the problem: http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/41926 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 2:15: 3 2002 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 6B66C37B401 for ; Sun, 6 Oct 2002 02:15:02 -0700 (PDT) Received: from yahoo.com (r-pd037-4a75.tin.it [62.211.176.75]) by mx1.FreeBSD.org (Postfix) with SMTP id 16E4443E3B for ; Sun, 6 Oct 2002 02:15:01 -0700 (PDT) (envelope-from assirianint@yahoo.com) From: "Assirian Movement" To: 152.163.207.134@FreeBSD.ORG Subject: Basically, I got on the plane with a bomb. Basically, I tried to ignite it. Basically, yeah, I intended to damage the plane. Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Sun, 6 Oct 2002 11.15.42 +0200 Content-Transfer-Encoding: 8bit Message-Id: <20021006091501.16E4443E3B@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 WESTERN PEOPLE, WESTERN GOVERNMENT, DO NOT HELP SADDAM BEING SOFT! IF YOU GO ON WITH YOUR SICK/SOFT UN POLICY YOU WILL FIND THE BOMBERS INSIDE YOUR BUS. WESTERN GOVERNMENT YOUR ELECTORS WILL PUNISH YOU IF YOU HELP SADDAM. SADDAM = WAR TODAY = 100 WARS TOMORROW "Basically, I got on the plane with a bomb. Basically, I tried to ignite it. Basically, yeah, I intended to damage the plane." RICHARD REID Four in U.S. Charged in Post-9/11 Plan to Join Al Qaeda Federal officials said they had broken up a terrorist cell in Portland, Ore., arresting four native-born citizens accused of plotting to join with Al Qaeda and Taliban fighters. Association of assirian countrymen "Bat-Nac" Aims and Tasks of organization: Active contribution to the revival, preservation, development of assirian culture, propaganda among population of historical heritage of assirian people of Iraq and Saudi Arabia. Leader of organization: Bat-Nac Phone: 113 27 27 Date of registration: 05.03.79 This is nor Spam write back to us for removal. Write to assirianint@yahoo.com with 'REMOVE ME PLEASE AS A SUBJECT' Study assirian,Be Proud of being! http://www.acl.edu.au/choose_lang_ass.html Our assirian page went on top of all the searchs consulting the Traffic Security Experts: http://www.msn.com/ + Security Traffic Expert http://search.msn.com/results.asp?q=security+traffic+expert&origq=traffic+ex pert&RS=CHECKED&FORM=SMCRT&v=1&cfg=SMCINITIAL&nosp=0&thr=&submitbutton.x=32& submitbutton.y=16 WESTERN GOVERNMENT: YOUR ELECTORS WILL PUNISH YOU IF YOU HELP SADDAM. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 2:50: 7 2002 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 E059037B401 for ; Sun, 6 Oct 2002 02:50:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9998243E65 for ; Sun, 6 Oct 2002 02:50:05 -0700 (PDT) (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 g969o4Co009187 for ; Sun, 6 Oct 2002 02:50:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g969o46u009186; Sun, 6 Oct 2002 02:50:04 -0700 (PDT) Date: Sun, 6 Oct 2002 02:50:04 -0700 (PDT) Message-Id: <200210060950.g969o46u009186@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Valentin Nechayev Subject: Re: i386/43491: microuptime () went backwards Reply-To: Valentin Nechayev 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 i386/43491; it has been noted by GNATS. From: Valentin Nechayev To: "Bjoern A.Zeeb" Cc: bug-followup@FreeBSD.ORG Subject: Re: i386/43491: microuptime () went backwards Date: Sun, 6 Oct 2002 12:42:45 +0300 Sat, Oct 05, 2002 at 15:10:12, bzeeb (Bjoern A.Zeeb) wrote about "Re: i386/43491: microuptime () went backwards": BAZ> pcib2: at device 1.0 on pci0 [...] BAZ> Oct 5 23:28:23 e0-0 /kernel: microuptime() went backwards (100768.401070 -> 100768.378034) BAZ> Oct 5 23:28:23 e0-0 /kernel: microuptime() went backwards (100768.401070 -> 100768.379457) [...] BAZ> though read that you cannot really fix it there is one thing you might BAZ> want to do: BAZ> remove the time changes from each and every printf so syslog can BAZ> aggregate the messages and simply print BAZ> "last message repeated 490345 times". BAZ> if you need it to be dumped (though you cannot correct anything with BAZ> this information) add a flag for those people who want to see the BAZ> addition information. BAZ> This would at least reduce disc IO and save some bytes ;-) and perhaps BAZ> help to stop the system from misbehaving. You can do it for your particular system. For most systems, it is not such useful. Pity for you but I suggest you to change hardware. VIA Apollo MVP3 has too strange relations with time counting. I saw a system with it setting kern.timecounter.method=1 stopped timer totally; without it, "microuptime went backwards" appeared each minute and I had to run ntpdate every minute. Of course one can argue that total PC time counting is horribly brain-damaged, but it is common place and we should live with it. (Only PIIX4 seems to be correct. But 4.5 secs is too small period.) Change it to Intel chipset based motherboard and you will be satisfied. I don't see a reason to keep this PR open. You may want to open PR to fix total FreeBSD time counting subsystem or simply ask phk@ to describe it in details, but this shall be another PR. /netch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 3:30:11 2002 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 6029637B401 for ; Sun, 6 Oct 2002 03:30:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10D5643E4A for ; Sun, 6 Oct 2002 03:30:08 -0700 (PDT) (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 g96AU7Co025433 for ; Sun, 6 Oct 2002 03:30:07 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96AU7E5025432; Sun, 6 Oct 2002 03:30:07 -0700 (PDT) Date: Sun, 6 Oct 2002 03:30:07 -0700 (PDT) Message-Id: <200210061030.g96AU7E5025432@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Valentin Nechayev Subject: Re: i386/43527: ld-elf.so.1 -> libintl.so.1 not found compiling whatever Reply-To: Valentin Nechayev 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 i386/43527; it has been noted by GNATS. From: Valentin Nechayev To: Ariel Kotliarsky Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: i386/43527: ld-elf.so.1 -> libintl.so.1 not found compiling whatever Date: Sun, 6 Oct 2002 13:23:31 +0300 Mon, Sep 30, 2002 at 08:46:41, arielk (Ariel Kotliarsky) wrote about "i386/43527: ld-elf.so.1 -> libintl.so.1 not found compiling whatever": >>Synopsis: ld-elf.so.1 -> libintl.so.1 not found compiling whatever libintl.so.1 was installed by old gettext port, up to 0.10.35 (don't mix with ports/devel/gettext-old, it sets only binaries, but not library (I don't know why)). If your applications want libintl.so.1 on running, because you upgraded gettext package, you should recompile them - FreeBSD package management system is not too clever to check this. If linker requires it, check /usr/local/lib/libintl.so - possibly it is symlink pointing to libintl.so.1, not current version. (Your synopsis is misleading. Do you compile with gmake built with gettext?) As quick test, say `ldconfig -elf -m /usr/local/lib/compat/pkg', if you use portupgrade tool; this can fix (and can not to fix also). In any case your PR is hardly belonging to i386 category, and most probably is result of your system-administrating actions, not something in system. To fix, install newest gettext and check libintl.so symlink. Recompile gmake if it requires old libintl. For future, use portupgrade - it moves old libs into special directory (/usr/local/lib/compat/pkg), which should be added to ldconfig_paths in /etc/rc.conf. /netch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 3:30:14 2002 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 47BF937B404 for ; Sun, 6 Oct 2002 03:30:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D88E743E4A for ; Sun, 6 Oct 2002 03:30:09 -0700 (PDT) (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 g96AU9Co025441 for ; Sun, 6 Oct 2002 03:30:09 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96AU9Bg025440; Sun, 6 Oct 2002 03:30:09 -0700 (PDT) Date: Sun, 6 Oct 2002 03:30:09 -0700 (PDT) Message-Id: <200210061030.g96AU9Bg025440@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Bjoern A. Zeeb" Subject: Re: i386/43491: microuptime () went backwards Reply-To: "Bjoern A. Zeeb" 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 i386/43491; it has been noted by GNATS. From: "Bjoern A. Zeeb" To: Valentin Nechayev Cc: bug-followup@FreeBSD.ORG Subject: Re: i386/43491: microuptime () went backwards Date: Sun, 6 Oct 2002 10:26:15 +0000 (UTC) On Sun, 6 Oct 2002, Valentin Nechayev wrote: Hi, > You can do it for your particular system. For most systems, it is not such > useful. Pity for you but I suggest you to change hardware. VIA Apollo MVP3 > has too strange relations with time counting. I saw a system with it yeah I heared. I think it was Alan Cox who had fun with it in linux kernel... > Of course one can argue that total PC time counting is horribly brain-damaged, > but it is common place and we should live with it. (Only PIIX4 seems to be > correct. But 4.5 secs is too small period.) Change it to Intel chipset based > motherboard and you will be satisfied. Just to mention: this machine has been running FreeBSD since somewhen in late 1999 (Sep-Dec) (starting with 3.3-REL) and is up almost 24/7/365 and doing really fine. This was the very first issue I had and just to say "change your hardware" is not a point for me. There two things that happend lately I should have mentioned too: a) I turned on softupdates and after installing the 3rd disc had lots of directory tree moving yesterday evening (> 15 GB) before this happened i.e. it started while the last MBs where freed on the original slice minutes after the move had completed (softupdates syncing) b) started to run ntpd with server 127.127.1.0 two days ago (cause of no permanent connection to a timeserver and the system internal clock wasn't off by half a minute in >2 years). Don't know if b) might be realted to this one. Having too few knowledge about the real internals on what is happening there in the kernel (just had a 5 minute look at it yesterday) and what is f%$^ed up with these VIA chips I would say if we did not get a workaround for it in the last two years ... > I don't see a reason to keep this PR open. You may want to open PR to fix ... feel free to close it. If it happens a second time and I can find some minutes I will have a look at it and also check what's going on in HEAD. > total FreeBSD time counting subsystem or simply ask phk@ to describe it > in details, but this shall be another PR. For sure I am not going to open that one in the moment ;-) Thanks -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT 56 69 73 69 74 http://www.zabbadoz.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 3:40:16 2002 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 BAA2A37B404 for ; Sun, 6 Oct 2002 03:40:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC5D343E6E for ; Sun, 6 Oct 2002 03:40:01 -0700 (PDT) (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 g96Ae1Co028217 for ; Sun, 6 Oct 2002 03:40:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96Ae1MY028216; Sun, 6 Oct 2002 03:40:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E20FD37B401 for ; Sun, 6 Oct 2002 03:36:38 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81FEA43E65 for ; Sun, 6 Oct 2002 03:36:38 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g96Aac7R031945 for ; Sun, 6 Oct 2002 03:36:38 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g96Aacoa031944; Sun, 6 Oct 2002 03:36:38 -0700 (PDT) Message-Id: <200210061036.g96Aacoa031944@www.freebsd.org> Date: Sun, 6 Oct 2002 03:36:38 -0700 (PDT) From: Paolo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/43738: Memory corruption in -stable with agp module 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: 43738 >Category: kern >Synopsis: Memory corruption in -stable with agp module >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 06 03:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Paolo >Release: 4.7-rc >Organization: GUFI >Environment: FreeBSD southcross.skynet.org 4.7-RC FreeBSD 4.7-RC #22: Wed Oct 2 12:45:21 CEST 2002 toor@southcross.skynet.org:/usr/obj/usr/src/sys/SOUTHCROSS i386 >Description: Spontaneous reboot of the system ONLY if i load the agp kernel module >How-To-Repeat: load the agp module, and simply use the system: after a bit and depending on your luck, the system will reboot >Fix: none >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 Oct 6 4:10:24 2002 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 A2F3B37B406 for ; Sun, 6 Oct 2002 04:10:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4352643E9E for ; Sun, 6 Oct 2002 04:10:05 -0700 (PDT) (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 g96BA5Co045855 for ; Sun, 6 Oct 2002 04:10:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96BA5nu045854; Sun, 6 Oct 2002 04:10:05 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C36937B401 for ; Sun, 6 Oct 2002 04:01:16 -0700 (PDT) Received: from mailx.mediabase-gmbh.de (pD9E969A3.dip.t-dialin.net [217.233.105.163]) by mx1.FreeBSD.org (Postfix) with SMTP id 43CD243E3B for ; Sun, 6 Oct 2002 04:00:24 -0700 (PDT) (envelope-from woerner@mediabase-gmbh.de) Message-Id: <20021006110024.43CD243E3B@mx1.FreeBSD.org> Date: Sun, 6 Oct 2002 04:00:24 -0700 (PDT) From: Arne Woerner To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/43739: cannot open file without obvious reason 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: 43739 >Category: kern >Synopsis: cannot open file without obvious reason >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 Oct 06 04:10:04 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Arne Woerner >Release: FreeBSD 5.0-CURRENT-20020917-JPSNAP i386 >Organization: mediaBase GmbH, MUC, BY, FRG >Environment: System: FreeBSD actionman.local.mediabase-gmbh.de 5.0-CURRENT-20020917-JPSNAP Fr eeBSD 5.0-CURRENT-20020917-JPSNAP #1: Sat Sep 28 09:44:55 GMT 2002 aw@houston.lo cal.mediabase-gmbh.de:/usr/src/sys/i386/compile/RIDDICK i386 >Description: I connected from a FreeBSD box to another FreeBSD box X via ssh and used some 'cat', 'lockf', 'tail', 'date' and 'mv' calls and did the same locally on the box X. After some time (75 cycles (local/remote initiated cycles)) both sides have problems with opening files (error messages: 1. /usr/libexec/ld-elf.so.1: Cannot open "/usr/lib/libc.so.5" 2. ./ICanDo.sh: Pipe call failed: Too many open files in system 3. cat: num: Too many open files in system 4. lockf: cannot open gaga: Too many open files in system 'netstat' and 'ps' do not show something special (at most 2 lockf)... Not many tcp connections: tcp4 0 0 localhost.x11-ssh *.* LISTEN tcp4 0 64 newark.ssh gargano.19859 ESTABLISHED udp4 0 0 localhost.ntp *.* udp4 0 0 newark.ntp *.* The problem remains for at least 10 minutes. This looks a little bit funny... :) >How-To-Repeat: The script is called ICanDo.sh and contains the following lines: #!/bin/sh script is called ICanDo.sh and contains the following lines: #!/bin/sh # $Id$ if [ "$1" = "" ] ;then lockf gaga $0 DoIt $2 exit 0 fi if [ "$2" != "" ] ;then sleep 5 fi num=`cat num` if [ "$num" = "" ] ;then num=0 fi num=`expr $num + 1` echo $num > num echo ${SSH_CLIENT}: ${num}: `date +%Y%m%d%H%M%S` >> dada2 tail -100000 < dada2 > dada2.tmp mv dada2.tmp dada2 The command line on the remote box was: ( repeat 1000000000 ssh cyclops ./ICanDo.sh ) < /dev/null & The command line on the box X was: ( repeat 1000000000 ./ICanDo.sh "" gaga ) & >Fix: rebooting 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 Oct 6 8:40: 7 2002 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 1D27B37B401 for ; Sun, 6 Oct 2002 08:40:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEDBF43E4A for ; Sun, 6 Oct 2002 08:40:05 -0700 (PDT) (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 g96Fe5Co062612 for ; Sun, 6 Oct 2002 08:40:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96Fe5C1062610; Sun, 6 Oct 2002 08:40:05 -0700 (PDT) Date: Sun, 6 Oct 2002 08:40:05 -0700 (PDT) Message-Id: <200210061540.g96Fe5C1062610@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Maxim Konovalov Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). (fwd) Reply-To: Maxim Konovalov 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 conf/43733; it has been noted by GNATS. From: Maxim Konovalov To: bug-followup@FreeBSD.org Cc: Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). (fwd) Date: Sun, 6 Oct 2002 19:30:34 +0400 (MSD) Add to the audit trail. ---------- Forwarded message ---------- Date: Sun, 6 Oct 2002 10:44:02 -0400 From: ayimsi1 To: Maxim Konovalov Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). Hi Maxim, Thanks for fast reply, >===== Original Message From Maxim Konovalov ===== >[...] >> >How-To-Repeat: >> (1) Follow the instruction to setup NAT in the handbook > >Do you have > > options IPFIREWALL > options IPDIVERT > >in your kernel config file? Yes I did. > >Did you recompile and reinstall your kernel? No I did not. I though that I have above option in my config file, so I did not recompile and reinstall the kernel. > >Did you reboot your computer? Yes I did. By the way, do I have to reboot the computer after I change network configuration? Can I just run "/etc/netstart" to reconfig network? > >-- >Maxim Konovalov, maxim@FreeBSD.org I will recompile kernel and I will let you know. Thanks again. Anocha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 9:20:13 2002 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 22AEA37B401 for ; Sun, 6 Oct 2002 09:20:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 697FC43E97 for ; Sun, 6 Oct 2002 09:20:11 -0700 (PDT) (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 g96GKBCo085962 for ; Sun, 6 Oct 2002 09:20:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96GKB2T085961; Sun, 6 Oct 2002 09:20:11 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F3AA37B401 for ; Sun, 6 Oct 2002 09:13:40 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA8543E4A for ; Sun, 6 Oct 2002 09:13:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g96GDc7R012230 for ; Sun, 6 Oct 2002 09:13:38 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g96GDcmk012229; Sun, 6 Oct 2002 09:13:38 -0700 (PDT) Message-Id: <200210061613.g96GDcmk012229@www.freebsd.org> Date: Sun, 6 Oct 2002 09:13:38 -0700 (PDT) From: Barnaba Marcello To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43745: Cannot use pppctl(8) on a ppp socket opened before an unclean reboot 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: 43745 >Category: misc >Synopsis: Cannot use pppctl(8) on a ppp socket opened before an unclean reboot >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 Oct 06 09:20:09 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Barnaba Marcello >Release: 4.6-STABLE >Organization: Azzurra.org >Environment: FreeBSD punkhouse.vejnet.org 4.7-PRERELEASE FreeBSD 4.7-PRERELEASE #2: Mon Sep 16 18:42:34 CEST 2002 root@punkhouse.vejnet.org:/usr/obj/usr/src/sys/PARADOX i386 >Description: When the system is rebooted uncleanly (e.g., power failure), and you configured ppp(8) with set server=/path/to/ppp_socket, this socket won`t be unlinked by ppp. So, when you power on the machine, the socket is already in place, ppp can`t bind it (Address already in use) and you cannot use pppctl, unless you manually remove the socket and restart ppp. >How-To-Repeat: * Add this line in your ppp.conf: set server=/etc/ppp/pppctl * Start ppp. * Unplug the power cable of the machine. * When you restart it and run ppp, it will be unable to bind the socket. >Fix: Add this line to /etc/rc.network:279 rm -f /etc/ppp/pppctl A better solution would be to put PPP_SOCKET=/etc/ppp/pppctl in /etc/rc.conf and rm -f $PPP_SOCKET in /etc/rc.network:279 >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 Oct 6 10: 0:26 2002 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 B36B037B401 for ; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7228243E3B for ; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) (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 g96H0OCo001612 for ; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96H0NZq001601; Sun, 6 Oct 2002 10:00:23 -0700 (PDT) Date: Sun, 6 Oct 2002 10:00:23 -0700 (PDT) Message-Id: <200210061700.g96H0NZq001601@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Maxim Konovalov Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). (fwd) Reply-To: Maxim Konovalov 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 conf/43733; it has been noted by GNATS. From: Maxim Konovalov To: bug-followup@FreeBSD.org Cc: Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). (fwd) Date: Sun, 6 Oct 2002 20:53:39 +0400 (MSD) ---------- Forwarded message ---------- Date: Sun, 6 Oct 2002 12:49:58 -0400 From: ayimsi1 To: Maxim Konovalov Subject: RE: conf/43733: ipfw add divert problem (also related to NAT). Thanks Maxim, After config a new kernel, it works fine now. Anocha >===== Original Message From Maxim Konovalov ===== >[...] >> >How-To-Repeat: >> (1) Follow the instruction to setup NAT in the handbook > >Do you have > > options IPFIREWALL > options IPDIVERT > >in your kernel config file? > >Did you recompile and reinstall your kernel? > >Did you reboot your computer? > >-- >Maxim Konovalov, maxim@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 Oct 6 10: 0:28 2002 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 A1DE037B404 for ; Sun, 6 Oct 2002 10:00:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3DBA43E65 for ; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) (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 g96H0OCo001629 for ; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96H0OOx001628; Sun, 6 Oct 2002 10:00:24 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9825837B401 for ; Sun, 6 Oct 2002 09:56:53 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CB1043E81 for ; Sun, 6 Oct 2002 09:56:53 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g96Gur7R015274 for ; Sun, 6 Oct 2002 09:56:53 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g96Gur2o015273; Sun, 6 Oct 2002 09:56:53 -0700 (PDT) Message-Id: <200210061656.g96Gur2o015273@www.freebsd.org> Date: Sun, 6 Oct 2002 09:56:53 -0700 (PDT) From: Alex To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43747: Apache2 port 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 >Number: 43747 >Category: misc >Synopsis: Apache2 port error >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 06 10:00:24 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alex >Release: 4.6.2 >Organization: >Environment: FreeBSD Intranet.kruij557.speed.planet.nl 4.6.2-RELEASE-p2 FreeBSD 4.6.2-RELEASE-p2 #0: Wed Sep 18 13:45:18 CEST 2002 alex@Intranet.kruij557.speed.planet.nl:/disk1/obj/usr/src/sys/INTRANET i386 >Description: I updated the apache2 port with portupgrade. It was not posible to restart the webserver was afther that. Afther this i updated my sources againg and forced a install througth the port system. Same result. Intranet# apachectl restart httpd: module "sapi_apache2.c" is not compatible with this version of Apache (found 20020628, need 20020903). Please contact the vendor for the correct version. >How-To-Repeat: Update your sources and update a apache2 sw then try to restart the sw. >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 Oct 6 10: 1:53 2002 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 4966837B401; Sun, 6 Oct 2002 10:01:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0CA443E3B; Sun, 6 Oct 2002 10:01:52 -0700 (PDT) (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 g96H1qCo002205; Sun, 6 Oct 2002 10:01:52 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96H1qG8002201; Sun, 6 Oct 2002 10:01:52 -0700 (PDT) Date: Sun, 6 Oct 2002 10:01:52 -0700 (PDT) From: Maxim Konovalov Message-Id: <200210061701.g96H1qG8002201@freefall.freebsd.org> To: tawtao@tawtao.com, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/43733: ipfw add divert problem (also related to NAT). 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: ipfw add divert problem (also related to NAT). State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Sun Oct 6 10:01:22 PDT 2002 State-Changed-Why: Configuration error. http://www.freebsd.org/cgi/query-pr.cgi?pr=43733 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 12:40: 6 2002 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 EA31937B401 for ; Sun, 6 Oct 2002 12:40:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 915C243E6E for ; Sun, 6 Oct 2002 12:40:05 -0700 (PDT) (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 g96Je5Co008547 for ; Sun, 6 Oct 2002 12:40:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96Je5Dl008546; Sun, 6 Oct 2002 12:40:05 -0700 (PDT) Date: Sun, 6 Oct 2002 12:40:05 -0700 (PDT) Message-Id: <200210061940.g96Je5Dl008546@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: Re: misc/37399 rsh does not work from Win 2k to freeBSD Reply-To: Lyndon Nerenberg 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/37399; it has been noted by GNATS. From: Lyndon Nerenberg To: freebsd-gnats-submit@freebsd.org, jmedlen@verisign.com Cc: Subject: Re: misc/37399 rsh does not work from Win 2k to freeBSD Date: Sun, 06 Oct 2002 13:34:32 -0600 I just tested this from Win/XP to FreeBSD 4.7-RC and it works fine. Is this still a problem for you? --lyndon http://www.freebsd.org/cgi/query-pr.cgi?pr=misc/37399 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 12:50: 5 2002 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 B699A37B401 for ; Sun, 6 Oct 2002 12:50:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 732B843E4A for ; Sun, 6 Oct 2002 12:50:04 -0700 (PDT) (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 g96Jo4Co011417 for ; Sun, 6 Oct 2002 12:50:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96Jo4oK011416; Sun, 6 Oct 2002 12:50:04 -0700 (PDT) Date: Sun, 6 Oct 2002 12:50:04 -0700 (PDT) Message-Id: <200210061950.g96Jo4oK011416@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Reply-To: Lyndon Nerenberg 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/39329; it has been noted by GNATS. From: Lyndon Nerenberg To: freebsd-gnats-submit@freebsd.org, svdb@stack.nl Cc: Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Date: Sun, 06 Oct 2002 13:45:58 -0600 While this behaviour is non-intuitive, it has existed in UNIX going back to at least 1984. I've seen it in BSD and SVR[0123] systems, and I suspect the kernel has behaved this way since the beginning. Because of this legacy I don't think this can be called a bug, and therefore this PR should be closed. It might be worth adding a note to mount(2), though. --lyndon http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/39329 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 13:20: 6 2002 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 E085537B401 for ; Sun, 6 Oct 2002 13:20:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F65F43E77 for ; Sun, 6 Oct 2002 13:20:04 -0700 (PDT) (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 g96KK4Co025131 for ; Sun, 6 Oct 2002 13:20:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96KK4Jm025129; Sun, 6 Oct 2002 13:20:04 -0700 (PDT) Date: Sun, 6 Oct 2002 13:20:04 -0700 (PDT) Message-Id: <200210062020.g96KK4Jm025129@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: bin/39671 mknetid segfaults on default /etc/master pwd file Reply-To: Lyndon Nerenberg 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/39671; it has been noted by GNATS. From: Lyndon Nerenberg To: freebsd-gnats-submit@freebsd.org, dirkx@covalent.net Cc: Subject: bin/39671 mknetid segfaults on default /etc/master pwd file Date: Sun, 06 Oct 2002 14:16:02 -0600 This patch to /usr/src/libexec/mknetid/mknetid.c fixes the problem. --lyndon http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/39671 Index: mknetid.c =================================================================== RCS file: /home/ncvs/src/libexec/mknetid/mknetid.c,v retrieving revision 1.11 diff -u -r1.11 mknetid.c --- mknetid.c 1999/08/28 00:09:41 1.11 +++ mknetid.c 2002/10/06 20:11:30 @@ -182,6 +182,8 @@ * group information we just stored if necessary. */ while(fgets(readbuf, LINSIZ, pfp)) { + if (readbuf[0] == '#') + continue; /* ignore comment lines */ if ((ptr = strchr(readbuf, ':')) == NULL) warnx("bad passwd file entry: %s", readbuf); *ptr = '\0'; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 14: 0: 8 2002 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 4880937B401 for ; Sun, 6 Oct 2002 14:00:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A502843E4A for ; Sun, 6 Oct 2002 14:00:05 -0700 (PDT) (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 g96L05Co037560 for ; Sun, 6 Oct 2002 14:00:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96L05gD037559; Sun, 6 Oct 2002 14:00:05 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C29A637B401 for ; Sun, 6 Oct 2002 13:53:03 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84BF443E65 for ; Sun, 6 Oct 2002 13:53:03 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g96Kr37R041991 for ; Sun, 6 Oct 2002 13:53:03 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g96Kr3M5041990; Sun, 6 Oct 2002 13:53:03 -0700 (PDT) Message-Id: <200210062053.g96Kr3M5041990@www.freebsd.org> Date: Sun, 6 Oct 2002 13:53:03 -0700 (PDT) From: Jun Han Jo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43751: FreeBSD4.6R panic during installation 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: 43751 >Category: misc >Synopsis: FreeBSD4.6R panic during installation >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 06 14:00:04 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Jun Han Jo >Release: 4.6 >Organization: n/a >Environment: n/a(Since I do not have up-and-running FreeBSD) i386 CPU : PIII 533MZ MEM : 192 MB First Master : Maxtor5307U6 HD First Slave : Sony CDU4811 IDE CDROM Second Master : WDC WD153BA HD Second Slave : Quantium fireballp LM10.2 VGA : Maxtor G400 Sound Card : Sound blaster AWE64 Mother Board : ASUS P3C2000 >Description: During Installation I got Probing Devices, please wait(this can take a while) Then Panic=page fault syncing disks... 1 1 1 1 1 1 1 1 1 1 giving up on 1 buffers Uptime:56s Autoreboot. then reboot...... >How-To-Repeat: Might be system dependent problem.... >Fix: Don't know............... >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 Oct 6 15:10: 4 2002 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 DAC9537B401 for ; Sun, 6 Oct 2002 15:10:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BADE43E75 for ; Sun, 6 Oct 2002 15:10:01 -0700 (PDT) (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 g96MA1Co078475 for ; Sun, 6 Oct 2002 15:10:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96MA1Ub078474; Sun, 6 Oct 2002 15:10:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 402B237B401 for ; Sun, 6 Oct 2002 15:03:17 -0700 (PDT) Received: from h24-78-88-208.vc.shawcable.net (h24-78-88-208.vc.shawcable.net [24.78.88.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87E0543E3B for ; Sun, 6 Oct 2002 15:03:16 -0700 (PDT) (envelope-from jhanna@h24-78-88-208.vc.shawcable.net) Received: from h24-78-88-208.vc.shawcable.net (localhost [127.0.0.1]) by h24-78-88-208.vc.shawcable.net (8.12.6/8.12.6) with ESMTP id g96M3GSH010432 for ; Sun, 6 Oct 2002 15:03:16 -0700 (PDT) (envelope-from jhanna@h24-78-88-208.vc.shawcable.net) Received: (from jhanna@localhost) by h24-78-88-208.vc.shawcable.net (8.12.6/8.12.6/Submit) id g96M3FTk010431; Sun, 6 Oct 2002 15:03:15 -0700 (PDT) (envelope-from jhanna) Message-Id: <200210062203.g96M3FTk010431@h24-78-88-208.vc.shawcable.net> Date: Sun, 6 Oct 2002 15:03:15 -0700 (PDT) From: Jonathan Hanna Reply-To: Jonathan Hanna To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/43752: [PATCH] find -not is 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: 43752 >Category: bin >Synopsis: [PATCH] find -not is not >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 Oct 06 15:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Jonathan Hanna >Release: FreeBSD 4.7-RC i386 >Organization: >Environment: System: FreeBSD cub.pangolin-systems.com 4.7-RC FreeBSD 4.7-RC #3: Fri Sep 20 18:47:23 PDT 2002 root@:/usr/obj/usr/src/sys/CUB i386 Stable and Current >Description: "-not" was fairly recently added to find(1), but not at the correct place in a table that must be ordered lexically. >How-To-Repeat: find . -not -type f -print >Fix: --- option.c 2002/10/06 21:23:24 1.1 +++ option.c 2002/10/06 21:23:52 @@ -109,8 +109,8 @@ { "-newermm", c_newer, f_newer, 0 }, { "-newermt", c_newer, f_newer, F_TIME2_T }, { "-nogroup", c_nogroup, f_nogroup, 0 }, - { "-nouser", c_nouser, f_nouser, 0 }, { "-not", c_simple, f_not, 0 }, + { "-nouser", c_nouser, f_nouser, 0 }, { "-o", c_simple, f_or, 0 }, { "-ok", c_exec, f_exec, F_NEEDOK }, { "-okdir", c_exec, f_exec, F_NEEDOK | F_EXECDIR }, >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 Oct 6 15:30: 6 2002 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 1E86E37B401 for ; Sun, 6 Oct 2002 15:30:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF48D43E3B for ; Sun, 6 Oct 2002 15:30:04 -0700 (PDT) (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 g96MU4Co088660 for ; Sun, 6 Oct 2002 15:30:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g96MU4XW088659; Sun, 6 Oct 2002 15:30:04 -0700 (PDT) Date: Sun, 6 Oct 2002 15:30:04 -0700 (PDT) Message-Id: <200210062230.g96MU4XW088659@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Serge van den Boom Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Reply-To: Serge van den Boom 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/39329; it has been noted by GNATS. From: Serge van den Boom To: Lyndon Nerenberg Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Date: Mon, 7 Oct 2002 00:24:00 +0200 (CEST) On Sun, 6 Oct 2002, Lyndon Nerenberg wrote: > While this behaviour is non-intuitive, it has existed in UNIX going back > to at least 1984. I've seen it in BSD and SVR[0123] systems, and I > suspect the kernel has behaved this way since the beginning. Because of > this legacy I don't think this can be called a bug, and therefore this > PR should be closed. > > It might be worth adding a note to mount(2), though. If things would never be changed because "they always behaved this way", nothing would ever change. A historical bug is still a bug. That being said, whether this is or is not a bug is still a matter of what is defined as the "correct behavior". Unless there has somewhere in the past been made some concious decision in either direction, I would think there is still room for discussion. My arguments in favour of considering this as incorrect behaviour: - It is inconsistent. You access everything else in the dir by the permissions of the mounted dir, while '..' is accessed by the permissions of the mountpoint. - It is counter-intuitive. Together with the previous point, this is probably the reason I thought it was a bug in the first place. - It's very unlikely changing this behaviour will break anything. After all, only '..' is effected, and generally accessing '..' would only be possible in more cases now. This isn't a security risk either, as you can in the currect situation always address the dir as an absolute path in the cases you could read '..' after the change. - If you want to change the permissions of '..' as it is now, you would need to unmount and remount the device. I don't think the issue is very important as the "feature" is easilly worked around once you know it's there. But I consider it wrong nonetheless. I'll gladly hear what you decide. Greetings, Serge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 17:30: 4 2002 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 C1DD837B401 for ; Sun, 6 Oct 2002 17:30:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BA8A43E6A for ; Sun, 6 Oct 2002 17:30:03 -0700 (PDT) (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 g970U3Co031383 for ; Sun, 6 Oct 2002 17:30:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g970U3NO031382; Sun, 6 Oct 2002 17:30:03 -0700 (PDT) Date: Sun, 6 Oct 2002 17:30:03 -0700 (PDT) Message-Id: <200210070030.g970U3NO031382@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dylan Carlson Subject: Re: kern/43573: 4-STABLE kernel build fails on netinet6/in6_rmx.c Reply-To: Dylan Carlson 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/43573; it has been noted by GNATS. From: Dylan Carlson To: freebsd-gnats-submit@FreeBSD.org, absinthe@pobox.com Cc: Subject: Re: kern/43573: 4-STABLE kernel build fails on netinet6/in6_rmx.c Date: Sun, 6 Oct 2002 20:29:47 -0400 Please close. I have no idea why, but it failed in a different spot after a 2nd try, and finally after a reboot and a 3rd try, it compiled fine. Strange behavior. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 19:10: 6 2002 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 40E5237B401 for ; Sun, 6 Oct 2002 19:10:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46F2C43E97 for ; Sun, 6 Oct 2002 19:10:04 -0700 (PDT) (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 g972A3Co070079 for ; Sun, 6 Oct 2002 19:10:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g972A3Sx070078; Sun, 6 Oct 2002 19:10:03 -0700 (PDT) Date: Sun, 6 Oct 2002 19:10:03 -0700 (PDT) Message-Id: <200210070210.g972A3Sx070078@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Lyndon Nerenberg Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Reply-To: Lyndon Nerenberg 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/39329; it has been noted by GNATS. From: Lyndon Nerenberg To: Serge van den Boom Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/39329 '..' at mountpoint is subject to the permissions of the shadowed dir Date: Sun, 06 Oct 2002 20:08:32 -0600 I don't disagree with you. I, too, think the behaviour is a bit strange. However, it has survived through at least one complete re-implementation of namei and the filesystems (i.e. BSD), which makes me wonder if there is a valid reason for the behaviour. Kirk McKusick is probably one of the few people who can answer that question. --lyndon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 20:10:42 2002 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 A91CD37B401 for ; Sun, 6 Oct 2002 20:10:41 -0700 (PDT) Received: from nic.upatras.gr (nic.upatras.gr [150.140.129.30]) by mx1.FreeBSD.org (Postfix) with SMTP id 395A743E77 for ; Sun, 6 Oct 2002 20:10:40 -0700 (PDT) (envelope-from keramida@freebsd.org) Received: (qmail 3161 invoked from network); 7 Oct 2002 03:03:41 -0000 Received: from upnet-dialinpool-84.upatras.gr (HELO hades.hell.gr) (@150.140.128.170) by nic.upatras.gr with SMTP; 7 Oct 2002 03:03:41 -0000 Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.6/8.12.6) with ESMTP id g973Ag6d009472; Mon, 7 Oct 2002 06:10:42 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost) by hades.hell.gr (8.12.6/8.12.6/Submit) id g972r5Fs006368; Mon, 7 Oct 2002 05:53:05 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Mon, 7 Oct 2002 05:53:04 +0300 From: Giorgos Keramidas To: Dylan Carlson Cc: freebsd-bugs@freebsd.org Subject: Re: kern/43573: 4-STABLE kernel build fails on netinet6/in6_rmx.c Message-ID: <20021007025304.GC6263@hades.hell.gr> References: <200210070030.g970U3NO031382@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200210070030.g970U3NO031382@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 On 2002-10-06 17:30, Dylan Carlson wrote: > Please close. > > I have no idea why, but it failed in a different spot after a 2nd > try, and finally after a reboot and a 3rd try, it compiled fine. > Strange behavior. This looks a lot like a hardware problem. You might want to perform an exchaustive check of your physical memory using memtest (from the ports, or the bootable CD-ROM version distributed from memtest's homepage on the Web). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 6 21:12: 3 2002 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 0FB8F37B401; Sun, 6 Oct 2002 21:12:02 -0700 (PDT) Received: from badboy.mail.pas.earthlink.net (badboy.mail.pas.earthlink.net [207.217.120.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8883743E77; Sun, 6 Oct 2002 21:12:01 -0700 (PDT) (envelope-from absinthe@pobox.com) Received: from scaup.mail.pas.earthlink.net (scaup.mail.pas.earthlink.net [207.217.120.49]) by badboy.mail.pas.earthlink.net (8.11.6+Sun/8.11.6) with ESMTP id g973oGE01702; Sun, 6 Oct 2002 20:50:16 -0700 (PDT) Received: from dhcp068-64-151-24.nt01-c4.cpe.charter-ne.com ([24.151.64.68] helo=laredo.retrovertigo.com) by scaup.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 17yOsq-0005hr-00; Sun, 06 Oct 2002 20:48:40 -0700 Content-Type: text/plain; charset="iso-8859-1" From: Dylan Carlson Reply-To: absinthe@pobox.com To: Giorgos Keramidas Subject: Re: kern/43573: 4-STABLE kernel build fails on netinet6/in6_rmx.c Date: Sun, 6 Oct 2002 23:48:38 -0400 User-Agent: KMail/1.4.3 Cc: freebsd-bugs@freebsd.org References: <200210070030.g970U3NO031382@freefall.freebsd.org> <20021007025304.GC6263@hades.hell.gr> In-Reply-To: <20021007025304.GC6263@hades.hell.gr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200210062348.38690.absinthe@pobox.com> 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 Sunday 06 October 2002 10:53pm, Giorgos Keramidas wrote: > On 2002-10-06 17:30, Dylan Carlson wrote: > > Please close. > > > > I have no idea why, but it failed in a different spot after a 2nd > > try, and finally after a reboot and a 3rd try, it compiled fine. > > Strange behavior. > > This looks a lot like a hardware problem. You might want to perform > an exchaustive check of your physical memory using memtest (from the > ports, or the bootable CD-ROM version distributed from memtest's > homepage on the Web). I did all of that, to no avail. Nothing wrong with the hardware AFAIK. I took a drive out of another system running BSD, dropped it in the system and that worked (and compiled a new kernel) fine. No clue. Several sups/make worlds/kernels later... still having problems. I noticed that ports were intermittently failing during compiles as well as the kernel was. Anyhow, I backed up my data, and reinstalled and it's working fine... (with the 4.6.2 release, I haven't supped yet.) It's unfortunate because I had that freebsd instance running for several years... :-( Cheers, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 7 1:30: 5 2002 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 9F5F537B401 for ; Mon, 7 Oct 2002 01:30:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CEF243E77 for ; Mon, 7 Oct 2002 01:30:04 -0700 (PDT) (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 g978U3Co014292 for ; Mon, 7 Oct 2002 01:30:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g978U3Ju014291; Mon, 7 Oct 2002 01:30:03 -0700 (PDT) Date: Mon, 7 Oct 2002 01:30:03 -0700 (PDT) Message-Id: <200210070830.g978U3Ju014291@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Harry Oosterman Subject: Re: misc/43747: Apache2 port error Reply-To: Harry Oosterman 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/43747; it has been noted by GNATS. From: Harry Oosterman To: freebsd-gnats-submit@FreeBSD.org, akruijff@dds.nl Cc: Subject: Re: misc/43747: Apache2 port error Date: Mon, 07 Oct 2002 10:28:42 +0200 After the portupgrade of apache2, I upgraded mod_php4. That fixed the problem. So check all modules installed separate from apache2. A portupgrade -r will probabely fix this problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 7 3:10: 7 2002 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 3A59A37B401 for ; Mon, 7 Oct 2002 03:10:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6778243E7B for ; Mon, 7 Oct 2002 03:10:02 -0700 (PDT) (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 g97AA2Co052574 for ; Mon, 7 Oct 2002 03:10:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g97AA2Cv052572; Mon, 7 Oct 2002 03:10:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E196737B401 for ; Mon, 7 Oct 2002 03:03:40 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F9343E75 for ; Mon, 7 Oct 2002 03:03:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g97A3d7R056211 for ; Mon, 7 Oct 2002 03:03:39 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g97A3dRF056210; Mon, 7 Oct 2002 03:03:39 -0700 (PDT) Message-Id: <200210071003.g97A3dRF056210@www.freebsd.org> Date: Mon, 7 Oct 2002 03:03:39 -0700 (PDT) From: Chris Smith To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/43762: cd9660 process hangs on mounting ATA CDROM on Compaq Professional Workstation 5000 (SMP ppro 200) 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: 43762 >Category: i386 >Synopsis: cd9660 process hangs on mounting ATA CDROM on Compaq Professional Workstation 5000 (SMP ppro 200) >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 Oct 07 03:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Chris Smith >Release: 4.6.2-RELEASE >Organization: personal >Environment: dmesg: Copyright (c) 1992-2002 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 4.6.2-RELEASE #0: Tue Sep 24 01:47:04 BST 2002 chris@shodan.mine.nu:/usr/src/sys/compile/SHODAN Timecounter "i8254" frequency 1193182 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping = 7 Features=0xfbffreal memory = 67108864 (65536K bytes) avail memory = 62119936 (60664K bytes) APIC_IO: MP table broken: 8259->APIC entry missing! Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 8, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc032d000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc032d09c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard IOAPIC #0 intpin 16 -> irq 2 pci0: on pcib0 pcib1: at device 6.0 on pci0 IOAPIC #0 intpin 20 -> irq 11 IOAPIC #0 intpin 21 -> irq 16 pci1: on pcib1 tl0: port 0x1400-0x140f mem 0x40100000-0x4010000f irq 11 at device 11.0 on pci1tl0: Ethernet address: 00:80:5f:0d:f5:4d miibus0: on tl0 nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto tlphy0: on miibus0 tlphy0: 10base2/BNC, 10base5/AUI sym0: <875> port 0x1000-0x10ff mem 0x40000000-0x40000fff,0x40080000-0x400800ff irq 16 at device 12.0 on pci1sym0: No NVRAM, ID 7, Fast-20, SE, parity checking pci0: at 11.0 irq 2 isab0: at device 20.0 on pci0 isa0: on isab0 atapci0: port 0x2000-0x200f,0-0x3,0-0x7,0-0x3,0-0x7 irq 15 at device 20.1 on pci0ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 orm0: >Fix: I have backportet the drivers from CURRENT. Files ported: from rev. src/sys/dev/bge/if_bge.c (1.24) src/sys/dev/bge/if_bgereg.h (1.9) src/sys/dev/mii/miidevs (1.21) src/sys/dev/mii/miidevs.h (1.19) src/sys/dev/mii/brgphy.c (1.14) Added support for Broadcom 5703x in RELENG_4 Sincerely yours Michael Hembo hembo@micron.dk -- Patches -- --- src/sys/dev/mii/brgphy.c.org Thu Apr 4 08:12:48 2002 +++ src/sys/dev/mii/brgphy.c Thu Oct 10 15:17:13 2002 @@ -122,6 +122,12 @@ return(0); } + if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_xxBROADCOM && + MII_MODEL(ma->mii_id2) == MII_MODEL_xxBROADCOM_BCM5703) { + device_set_desc(dev, MII_STR_xxBROADCOM_BCM5703); + return(0); + } + return(ENXIO); } --- src/sys/dev/bge/if_bge.c.org Thu Oct 10 18:02:33 2002 +++ src/sys/dev/bge/if_bge.c Fri Oct 11 19:04:25 2002 @@ -141,6 +141,8 @@ "Broadcom BCM5701 Gigabit Ethernet" }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5702X, "Broadcom BCM5702X Gigabit Ethernet" }, + { BCOM_VENDORID, BCOM_DEVICEID_BCM5703X, + "Broadcom BCM5703X Gigabit Ethernet" }, { SK_VENDORID, SK_DEVICEID_ALTIMA, "SysKonnect Gigabit Ethernet" }, { ALTIMA_VENDORID, ALTIMA_DEVICE_AC1000, @@ -484,8 +486,12 @@ sc = device_get_softc(dev); ifp = &sc->arpcom.ac_if; - if (sc->bge_asicrev == BGE_ASICREV_BCM5701_B5 && phy != 1) + if (phy != 1) + switch(sc->bge_asicrev) { + case BGE_ASICREV_BCM5701_B5: + case BGE_ASICREV_BCM5703_A2: return(0); + } CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_READ|BGE_MICOMM_BUSY| BGE_MIPHY(phy)|BGE_MIREG(reg)); @@ -1040,7 +1046,6 @@ bge_chipinit(sc) struct bge_softc *sc; { - u_int32_t cachesize; int i; /* Set endianness before we access any non-PCI registers. */ @@ -1098,53 +1103,11 @@ BGE_MODECTL_NO_RX_CRC|BGE_MODECTL_TX_NO_PHDR_CSUM| BGE_MODECTL_RX_NO_PHDR_CSUM); - /* Get cache line size. */ - cachesize = pci_read_config(sc->bge_dev, BGE_PCI_CACHESZ, 1); - /* - * Avoid violating PCI spec on certain chip revs. + * Disable memory write invalidate. Apparently it is not supported + * properly by these devices. */ - if (pci_read_config(sc->bge_dev, BGE_PCI_CMD, 4) & PCIM_CMD_MWIEN) { - switch(cachesize) { - case 1: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_16BYTES, 4); - break; - case 2: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_32BYTES, 4); - break; - case 4: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_64BYTES, 4); - break; - case 8: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_128BYTES, 4); - break; - case 16: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_256BYTES, 4); - break; - case 32: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_512BYTES, 4); - break; - case 64: - PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, - BGE_PCI_WRITE_BNDRY_1024BYTES, 4); - break; - default: - /* Disable PCI memory write and invalidate. */ - if (bootverbose) - printf("bge%d: cache line size %d not " - "supported; disabling PCI MWI\n", - sc->bge_unit, cachesize); - PCI_CLRBIT(sc->bge_dev, BGE_PCI_CMD, - PCIM_CMD_MWIEN, 4); - break; - } - } + PCI_CLRBIT(sc->bge_dev, BGE_PCI_CMD, PCIM_CMD_MWIEN, 4); #ifdef __brokenalpha__ /* @@ -1153,7 +1116,8 @@ * restriction on some ALPHA platforms with early revision * 21174 PCI chipsets, such as the AlphaPC 164lx */ - PCI_SETBIT(sc, BGE_PCI_DMA_RW_CTL, BGE_PCI_READ_BNDRY_1024, 4); + PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL, + BGE_PCI_READ_BNDRY_1024BYTES, 4); #endif /* Set the timer prescaler (always 66Mhz) */ @@ -1556,6 +1520,7 @@ struct ifnet *ifp; struct bge_softc *sc; u_int32_t hwcfg = 0; + u_int32_t mac_addr = 0; int unit, error = 0, rid; s = splimp(); @@ -1581,7 +1546,7 @@ rid = BGE_PCI_BAR0; sc->bge_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, - 0, ~0, 1, RF_ACTIVE); + 0, ~0, 1, RF_ACTIVE|PCI_RF_DENSE); if (sc->bge_res == NULL) { printf ("bge%d: couldn't map memory\n", unit); @@ -1593,22 +1558,6 @@ sc->bge_bhandle = rman_get_bushandle(sc->bge_res); sc->bge_vhandle = (vm_offset_t)rman_get_virtual(sc->bge_res); - /* - * XXX FIXME: rman_get_virtual() on the alpha is currently - * broken and returns a physical address instead of a kernel - * virtual address. Consequently, we need to do a little - * extra mangling of the vhandle on the alpha. This should - * eventually be fixed! The whole idea here is to get rid - * of platform dependencies. - */ -#ifdef __alpha__ - if (pci_cvt_to_bwx(sc->bge_vhandle)) - sc->bge_vhandle = pci_cvt_to_bwx(sc->bge_vhandle); - else - sc->bge_vhandle = pci_cvt_to_dense(sc->bge_vhandle); - sc->bge_vhandle = ALPHA_PHYS_TO_K0SEG(sc->bge_vhandle); -#endif - /* Allocate interrupt */ rid = 0; @@ -1645,7 +1594,16 @@ /* * Get station address from the EEPROM. */ - if (bge_read_eeprom(sc, (caddr_t)&sc->arpcom.ac_enaddr, + mac_addr = bge_readmem_ind(sc, 0x0c14); + if ((mac_addr >> 16) == 0x484b) { + sc->arpcom.ac_enaddr[0] = (u_char)(mac_addr >> 8); + sc->arpcom.ac_enaddr[1] = (u_char)mac_addr; + mac_addr = bge_readmem_ind(sc, 0x0c18); + sc->arpcom.ac_enaddr[2] = (u_char)(mac_addr >> 24); + sc->arpcom.ac_enaddr[3] = (u_char)(mac_addr >> 16); + sc->arpcom.ac_enaddr[4] = (u_char)(mac_addr >> 8); + sc->arpcom.ac_enaddr[5] = (u_char)mac_addr; + } else if (bge_read_eeprom(sc, (caddr_t)&sc->arpcom.ac_enaddr, BGE_EE_MAC_OFFSET + 2, ETHER_ADDR_LEN)) { printf("bge%d: failed to read station address\n", unit); bge_release_resources(sc); --- src/sys/dev/bge/if_bgereg.h.org Thu Oct 10 18:02:33 2002 +++ src/sys/dev/bge/if_bgereg.h Fri Oct 11 19:13:51 2002 @@ -202,9 +202,9 @@ #define BGE_PCIMISCCTL_ASICREV 0xFFFF0000 #define BGE_BIGENDIAN_INIT \ - (BGE_BGE_PCIMISCCTL_ENDIAN_BYTESWAP| \ + (BGE_PCIMISCCTL_ENDIAN_BYTESWAP| \ BGE_PCIMISCCTL_ENDIAN_WORDSWAP|BGE_PCIMISCCTL_CLEAR_INTA| \ - BGE_PCIMISCCTL_INDIRECT_ACCESS|PCIMISCCTL_MASK_PCI_INTR) + BGE_PCIMISCCTL_INDIRECT_ACCESS|BGE_PCIMISCCTL_MASK_PCI_INTR) #define BGE_LITTLEENDIAN_INIT \ (BGE_PCIMISCCTL_CLEAR_INTA|BGE_PCIMISCCTL_MASK_PCI_INTR| \ @@ -221,6 +221,9 @@ #define BGE_ASICREV_BCM5701_B0 0x01000000 #define BGE_ASICREV_BCM5701_B2 0x01020000 #define BGE_ASICREV_BCM5701_B5 0x01050000 +#define BGE_ASICREV_BCM5703_A0 0x10000000 +#define BGE_ASICREV_BCM5703_A1 0x10010000 +#define BGE_ASICREV_BCM5703_A2 0x10020000 /* shorthand one */ #define BGE_ASICREV_BCM5700 0x71000000 @@ -1782,6 +1785,7 @@ #define BCOM_DEVICEID_BCM5700 0x1644 #define BCOM_DEVICEID_BCM5701 0x1645 #define BCOM_DEVICEID_BCM5702X 0x16A6 +#define BCOM_DEVICEID_BCM5703X 0x16A7 /* * Alteon AceNIC PCI vendor/device ID. --- src/sys/dev/mii/miidevs.org Thu Apr 11 09:03:27 2002 +++ src/sys/dev/mii/miidevs Thu Oct 10 15:10:59 2002 @@ -109,6 +109,7 @@ model xxBROADCOM BCM5401 0x0005 BCM5401 10/100/1000baseTX PHY model xxBROADCOM BCM5411 0x0007 BCM5411 10/100/1000baseTX PHY model xxBROADCOM BCM5701 0x0011 BCM5701 10/100/1000baseTX PHY +model xxBROADCOM BCM5703 0x0016 BCM5703 10/100/1000baseTX PHY /* Davicom Semiconductor PHYs */ model xxDAVICOM DM9101 0x0000 DM9101 10/100 media interface --- src/sys/dev/mii/miidevs.h.org Thu Apr 11 09:04:02 2002 +++ src/sys/dev/mii/miidevs.h Thu Oct 10 15:28:53 2002 @@ -125,6 +125,8 @@ #define MII_STR_xxBROADCOM_BCM5411 "BCM5411 10/100/1000baseTX PHY" #define MII_MODEL_xxBROADCOM_BCM5701 0x0011 #define MII_STR_xxBROADCOM_BCM5701 "BCM5701 10/100/1000baseTX PHY" +#define MII_MODEL_xxBROADCOM_BCM5703 0x0016 +#define MII_STR_xxBROADCOM_BCM5703 "BCM5703 10/100/1000baseTX PHY" /* Davicom Semiconductor PHYs */ #define MII_MODEL_xxDAVICOM_DM9101 0x0000 >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 Oct 11 20:10: 5 2002 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 4D10837B404 for ; Fri, 11 Oct 2002 20:10:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C72A43E3B for ; Fri, 11 Oct 2002 20:10:02 -0700 (PDT) (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 g9C3A1Co003572 for ; Fri, 11 Oct 2002 20:10:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C3A1UO003567; Fri, 11 Oct 2002 20:10:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC8FA37B401 for ; Fri, 11 Oct 2002 20:03:31 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E2E43E75 for ; Fri, 11 Oct 2002 20:03:31 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9C33V7R073371 for ; Fri, 11 Oct 2002 20:03:31 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9C33Veq073370; Fri, 11 Oct 2002 20:03:31 -0700 (PDT) Message-Id: <200210120303.g9C33Veq073370@www.freebsd.org> Date: Fri, 11 Oct 2002 20:03:31 -0700 (PDT) From: zhaifeng To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43954: nfs-blocked process can't return or be interrupted or be killed 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: 43954 >Category: misc >Synopsis: nfs-blocked process can't return or be interrupted or be killed >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 11 20:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: zhaifeng >Release: freebsd 4.6,freebsd 4.5,freebsd 3.4,freebsd 3.5 >Organization: xinnet >Environment: reeBSD mail-2-g2.chinadns.com 4.5-RELEASE-p20 FreeBSD 4.5-RELEASE-p20 #1: Tue Sep 17 20:39:16 CST 2002 root@103.chinadns.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: i have a nfs server and a client,server is running linux,client is running freebsd.I find when server is busy or not available,some process on client will block because of nfs.these process be marked with 'D' or 'DL' when i run command 'ps ax'.i try to kill them using command 'kill -9',but not work,even though reboot system,the system can not reboot automaticly because some process cann't teminate.i also try to mount client with options intr,soft and so on,but problem is as before.how >How-To-Repeat: my nfs server(IP:10.0.0.1) is a RedHat 7.3 with kernel of 2.4.19 version,my nfs client(IP:10.0.0.2) is freebsd 4.5 10.0.0.2: mount_nfs -i -R 1 -s 10.0.0.1:/home /usr/home cp a_big_file /usr/home in the course of doing this,i disabled network between these two machine by using iptables in 10.0.0.1 /sbin/iptables -I INPUT -p udp -s 10.0.0.2 -j DROP so the process 'cp' in 10.0.0.2 is blocked,I can't kill or interrupt it in any way.According to mount_nfs's manual ,it should failed and return in a few minutes because i set -R equal to 1 and set interruptalbe,but the fact is not. >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 Fri Oct 11 21:50: 8 2002 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 38EFA37B401 for ; Fri, 11 Oct 2002 21:50:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0638043E8A for ; Fri, 11 Oct 2002 21:50:01 -0700 (PDT) (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 g9C4o0Co031197 for ; Fri, 11 Oct 2002 21:50:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C4o0tM031196; Fri, 11 Oct 2002 21:50:00 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7FDA37B401 for ; Fri, 11 Oct 2002 21:41:20 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1F743E6E for ; Fri, 11 Oct 2002 21:41:20 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9C4fJ7R078699 for ; Fri, 11 Oct 2002 21:41:19 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9C4fJhC078697; Fri, 11 Oct 2002 21:41:19 -0700 (PDT) Message-Id: <200210120441.g9C4fJhC078697@www.freebsd.org> Date: Fri, 11 Oct 2002 21:41:19 -0700 (PDT) From: D Kindlund To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/43955: [4.7] make buildworld fails: gperf (key-list.cc gcc compiler 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 >Number: 43955 >Category: bin >Synopsis: [4.7] make buildworld fails: gperf (key-list.cc gcc compiler error) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 11 21:50:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: D Kindlund >Release: Upgrading: 4.6.2-RELEASE -> 4.7-RELEASE >Organization: >Environment: FreeBSD ceti 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #0: Mon Aug 26 07:33:31 EDT 2002 root@ceti:/usr/obj/usr/src/sys/CTI-08262002 i386 >Description: Setup: - Ran CVSUP on: Sat Oct 5 05:03:29 EDT 2002 #cat /etc/cvsupfile *default host=cvsup.FreeBSD.org *default base=/usr *default prefix=/usr *default release=cvs *default tag=RELENG_4 *default delete use-rel-suffix src-all ports-all doc-all # Command to update /usr/src: #/usr/local/bin/cvsup -g -L 2 /etc/cvsupfile > /var/log/cvsup-src-all.log CVSID of /usr/src/UPDATING: $FreeBSD: src/UPDATING,v 1.73.2.75 2002/10/10 16:20:52 bmah Exp $ Machine CVSUP'd from: cvsup.FreeBSD.org (198.104.69.57) GCC Version: 2.95.3 Once cvsup has ran, type the following commands: #cd /usr/obj #rm -rf * #cd /usr/src #make buildworld -------------------------------------------------------------- >How-To-Repeat: Follow the commands detailed in the "Full Description" section. >Fix: Unknown; presumably the maintainer of gperf will need to be contacted, as it appears that this build has been broken directly or indirectly. >Release-Note: >Audit-Trail: >Unformatted: >>> Rebuilding the temporary build tree -------------------------------------------------------------- rm -rf /usr/obj/usr/src/i386 mkdir -p /usr/obj/usr/src/i386/usr/bin mkdir -p /usr/obj/usr/src/i386/usr/lib/compat/aout mkdir -p /usr/obj/usr/src/i386/usr/games mkdir -p /usr/obj/usr/src/i386/usr/libdata/ldscripts mkdir -p /usr/obj/usr/src/i386/usr/libexec/elf mkdir -p /usr/obj/usr/src/i386/usr/sbin mkdir -p /usr/obj/usr/src/i386/usr/share/misc mkdir -p /usr/obj/usr/src/i386/usr/share/dict mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devX100 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devX100-12 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devX75 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devX75-12 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devascii mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devcp1047 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devdvi mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devhtml mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devkoi8-r mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devlatin1 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devlbp mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devlj4 mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devps mkdir -p /usr/obj/usr/src/i386/usr/share/groff_font/devutf8 mkdir -p /usr/obj/usr/src/i386/usr/share/tmac/mdoc mkdir -p /usr/obj/usr/src/i386/usr/share/tmac/mm mkdir -p /usr/obj/usr/src/i386/usr/include/arpa mkdir -p /usr/obj/usr/src/i386/usr/include/dev mkdir -p /usr/obj/usr/src/i386/usr/include/fs mkdir -p /usr/obj/usr/src/i386/usr/include/g++/std mkdir -p /usr/obj/usr/src/i386/usr/include/isc mkdir -p /usr/obj/usr/src/i386/usr/include/isofs mkdir -p /usr/obj/usr/src/i386/usr/include/libmilter mkdir -p /usr/obj/usr/src/i386/usr/include/objc mkdir -p /usr/obj/usr/src/i386/usr/include/openssl mkdir -p /usr/obj/usr/src/i386/usr/include/protocols mkdir -p /usr/obj/usr/src/i386/usr/include/readline mkdir -p /usr/obj/usr/src/i386/usr/include/rpc mkdir -p /usr/obj/usr/src/i386/usr/include/rpcsvc mkdir -p /usr/obj/usr/src/i386/usr/include/security mkdir -p /usr/obj/usr/src/i386/usr/include/ufs ln -sf /usr/src/sys /usr/obj/usr/src/i386 -------------------------------------------------------------- >>> stage 1: bootstrap tools -------------------------------------------------------------- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj/usr/src/i386 DESTDIR= INSTALL="sh /usr/src/tools/install.sh" make -f Makefile.inc1 -DBOOTSTRAPPING -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED -DNO_WERROR bootstrap-tools echo "===> games/fortune/strfile"; cd /usr/src/games/fortune/strfile; make DIRPRFX=games/fortune/strfile/ obj; make DIRPRFX=games/fortune/strfile/ depend; make DIRPRFX=games/fortune/strfile/ all; make DIRPRFX=games/fortune/strfile/ DESTDIR=/usr/obj/ usr/src/i386 install ===> games/fortune/strfile /usr/obj/usr/src/i386/usr/src/games/fortune/strfile created for /usr/src/games/fortune/strfile rm -f .depend mkdep -f .depend -a -D__FBSDID=__RCSID /usr/src/games/fortune/strfile/strfile.c echo strfile: /usr/lib/libc.a >> .depend cc -O -pipe -Wall -D__FBSDID=__RCSID -c /usr/src/games/fortune/strfile/strfile.c cc -O -pipe -Wall -D__FBSDID=__RCSID -static -o strfile strfile.o sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 strfile /usr/obj/usr/src/i386/usr/games echo "===> usr.bin/yacc"; cd /usr/src/usr.bin/yacc; make DIRPRFX=usr.bin/yacc/ obj; make DIRPRFX=usr.bin/yacc/ depend; make DIRPRFX=usr.bin/yacc/ all; make DIRPRFX=usr.bin/yacc/ DESTDIR=/usr/obj/usr/src/i386 install ===> usr.bin/yacc /usr/obj/usr/src/i386/usr/src/usr.bin/yacc created for /usr/src/usr.bin/yacc rm -f .depend mkdep -f .depend -a -D__FBSDID=__RCSID /usr/src/usr.bin/yacc/closure.c /usr/src/usr.bin/yacc/error.c /usr/src/usr.bin/yacc/lalr.c /usr/src/usr.bin/yacc/lr0.c /usr/src/usr.bin/yacc/main.c /usr/src/usr.bin/yacc/mkpar.c /usr/src/usr.bin/yacc/output.c /u sr/src/usr.bin/yacc/reader.c /usr/src/usr.bin/yacc/skeleton.c /usr/src/usr.bin/yacc/symtab.c /usr/src/usr.bin/yacc/verbose.c /usr/src/usr.bin/yacc/warshall.c echo yacc: /usr/lib/libc.a >> .depend cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/closure.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/error.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/lalr.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/lr0.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/main.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/mkpar.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/output.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/reader.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/skeleton.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/symtab.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/verbose.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/yacc/warshall.c cc -O -pipe -D__FBSDID=__RCSID -static -o yacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 yacc /usr/obj/usr/src/i386/usr/bin sh /usr/src/tools/install.sh -o root -g wheel -m 555 /usr/src/usr.bin/yacc/yyfix.sh /usr/obj/usr/src/i386/usr/bin/yyfix /usr/obj/usr/src/i386/usr/bin/byacc -> /usr/obj/usr/src/i386/usr/bin/yacc echo "===> usr.bin/colldef"; cd /usr/src/usr.bin/colldef; make DIRPRFX=usr.bin/colldef/ obj; make DIRPRFX=usr.bin/colldef/ depend; make DIRPRFX=usr.bin/colldef/ all; make DIRPRFX=usr.bin/colldef/ DESTDIR=/usr/obj/usr/src/i386 install ===> usr.bin/colldef /usr/obj/usr/src/i386/usr/src/usr.bin/colldef created for /usr/src/usr.bin/colldef yacc -d /usr/src/usr.bin/colldef/parse.y cp y.tab.c parse.c lex -t -8 -i /usr/src/usr.bin/colldef/scan.l > scan.c rm -f .depend mkdep -f .depend -a -I. -I/usr/src/usr.bin/colldef -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE_DEBUG -DYY_NO_UNPUT -D__FBSDID=__RCSID parse.c scan.c echo colldef: /usr/lib/libc.a /usr/lib/libl.a >> .depend cc -O -pipe -I. -I/usr/src/usr.bin/colldef -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE_DEBUG -DYY_NO_UNPUT -D__FBSDID=__RCSID -c parse.c In file included from /usr/src/usr.bin/colldef/parse.y:32: /usr/include/arpa/inet.h:89: warning: parameter has incomplete type /usr/include/arpa/inet.h:92: warning: parameter has incomplete type /usr/include/arpa/inet.h:96: warning: parameter has incomplete type cc -O -pipe -I. -I/usr/src/usr.bin/colldef -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE_DEBUG -DYY_NO_UNPUT -D__FBSDID=__RCSID -c scan.c cc -O -pipe -I. -I/usr/src/usr.bin/colldef -I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE_DEBUG -DYY_NO_UNPUT -D__FBSDID=__RCSID -static -o colldef parse.o scan.o -ll sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 colldef /usr/obj/usr/src/i386/usr/bin echo "===> usr.bin/uudecode"; cd /usr/src/usr.bin/uudecode; make DIRPRFX=usr.bin/uudecode/ obj; make DIRPRFX=usr.bin/uudecode/ depend; make DIRPRFX=usr.bin/uudecode/ all; make DIRPRFX=usr.bin/uudecode/ DESTDIR=/usr/obj/usr/src/i386 install ===> usr.bin/uudecode /usr/obj/usr/src/i386/usr/src/usr.bin/uudecode created for /usr/src/usr.bin/uudecode rm -f .depend mkdep -f .depend -a -D__FBSDID=__RCSID /usr/src/usr.bin/uudecode/uudecode.c echo uudecode: /usr/lib/libc.a >> .depend cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/uudecode/uudecode.c cc -O -pipe -D__FBSDID=__RCSID -static -o uudecode uudecode.o sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 uudecode /usr/obj/usr/src/i386/usr/bin echo "===> usr.bin/xinstall"; cd /usr/src/usr.bin/xinstall; make DIRPRFX=usr.bin/xinstall/ obj; make DIRPRFX=usr.bin/xinstall/ depend; make DIRPRFX=usr.bin/xinstall/ all; make DIRPRFX=usr.bin/xinstall/ DESTDIR=/usr/obj/usr/src/i386 install ===> usr.bin/xinstall /usr/obj/usr/src/i386/usr/src/usr.bin/xinstall created for /usr/src/usr.bin/xinstall rm -f .depend mkdep -f .depend -a -D__FBSDID=__RCSID /usr/src/usr.bin/xinstall/xinstall.c /usr/src/usr.bin/xinstall/../../lib/libc/gen/strtofflags.c echo xinstall: /usr/lib/libc.a >> .depend cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/xinstall/xinstall.c cc -O -pipe -D__FBSDID=__RCSID -c /usr/src/usr.bin/xinstall/../../lib/libc/gen/strtofflags.c cc -O -pipe -D__FBSDID=__RCSID -static -o xinstall xinstall.o strtofflags.o sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 xinstall /usr/obj/usr/src/i386/usr/bin/install echo "===> usr.sbin/config"; cd /usr/src/usr.sbin/config; make DIRPRFX=usr.sbin/config/ obj; make DIRPRFX=usr.sbin/config/ depend; make DIRPRFX=usr.sbin/config/ all; make DIRPRFX=usr.sbin/config/ DESTDIR=/usr/obj/usr/src/i386 install ===> usr.sbin/config /usr/obj/usr/src/i386/usr/src/usr.sbin/config created for /usr/src/usr.sbin/config yacc -d /usr/src/usr.sbin/config/config.y cp y.tab.c config.c lex -t /usr/src/usr.sbin/config/lang.l > lang.c rm -f .depend mkdep -f .depend -a -I. -I/usr/src/usr.sbin/config -D__FBSDID=__RCSID config.c /usr/src/usr.sbin/config/main.c lang.c /usr/src/usr.sbin/config/mkioconf.c /usr/src/usr.sbin/config/mkmakefile.c /usr/src/usr.sbin/config/mkheaders.c /usr/src/usr.sbin/con fig/mkoptions.c echo config: /usr/lib/libc.a /usr/lib/libl.a >> .depend cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c config.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c /usr/src/usr.sbin/config/main.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c lang.c /usr/src/usr.sbin/config/lang.l:1027: warning: `yy_flex_realloc' defined but not used cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c /usr/src/usr.sbin/config/mkioconf.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c /usr/src/usr.sbin/config/mkmakefile.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c /usr/src/usr.sbin/config/mkheaders.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -c /usr/src/usr.sbin/config/mkoptions.c cc -O -pipe -I. -I/usr/src/usr.sbin/config -Wall -Wunused -Wmissing-prototypes -Wredundant-decls -D__FBSDID=__RCSID -static -o config config.o main.o lang.o mkioconf.o mkmakefile.o mkheaders.o mkoptions.o -ll sh /usr/src/tools/install.sh -s -o root -g wheel -m 555 config /usr/obj/usr/src/i386/usr/sbin echo "===> gnu/usr.bin/gperf"; cd /usr/src/gnu/usr.bin/gperf; make DIRPRFX=gnu/usr.bin/gperf/ obj; make DIRPRFX=gnu/usr.bin/gperf/ depend; make DIRPRFX=gnu/usr.bin/gperf/ all; make DIRPRFX=gnu/usr.bin/gperf/ DESTDIR=/usr/obj/usr/src/i386 install ===> gnu/usr.bin/gperf /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/gperf created for /usr/src/gnu/usr.bin/gperf ===> gnu/usr.bin/gperf/doc /usr/obj/usr/src/i386/usr/src/gnu/usr.bin/gperf/doc created for /usr/src/gnu/usr.bin/gperf/doc rm -f .depend mkdep -f .depend -a -D__FBSDID=__RCSID /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib/getopt.c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib/getopt1.c mkdep -f .depend -a -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/bool-array.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen- perf.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hash-table.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gp erf/src/list-node.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/main.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/options.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/g perf/src/read-line.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/trace.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/vectors.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/version.cc /usr/src/ gnu/ usr.bin/gperf/../../../contrib/gperf/lib/hash.cc echo gperf: /usr/lib/libc.a >> .depend echo gperf: /usr/lib/libstdc++.a >> .depend ===> gnu/usr.bin/gperf/doc c++ -O -pipe -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/bool-array.cc c++ -O -pipe -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.cc c++ -O -pipe -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/hash-table.cc c++ -O -pipe -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/iterator.cc c++ -O -pipe -D__FBSDID=__RCSID -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib -I/usr/src/gnu/usr.bin/gperf -c /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc: In method `const char * Key_List::get_special_input(char)': /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc:79: implicit declaration of function `int getchar(...)' /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc: In function `void output_string(const char *, int)': /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.cc:818: implicit declaration of function `int putchar(...)' *** Error code 1 Stop in /usr/src/gnu/usr.bin/gperf. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 11 22: 0:15 2002 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 1D71F37B406 for ; Fri, 11 Oct 2002 22:00:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEBD043E6A for ; Fri, 11 Oct 2002 22:00:13 -0700 (PDT) (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 g9C50DCo033826 for ; Fri, 11 Oct 2002 22:00:13 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C50DY5033825; Fri, 11 Oct 2002 22:00:13 -0700 (PDT) Date: Fri, 11 Oct 2002 22:00:13 -0700 (PDT) Message-Id: <200210120500.g9C50DY5033825@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nate Lawson Subject: RE: kern/41494: static routes set with interface address as gateway are (fwd) Reply-To: Nate Lawson 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/41494; it has been noted by GNATS. From: Nate Lawson To: freebsd-gnats-submit@freebsd.org Cc: Subject: RE: kern/41494: static routes set with interface address as gateway are (fwd) Date: Fri, 11 Oct 2002 21:59:46 -0700 (PDT) ---------- Forwarded message ---------- Date: Fri, 23 Aug 2002 17:52:42 -0700 From: Qing Li To: Nate Lawson , freebsd-bugs@freebsd.org Subject: RE: kern/41494: static routes set with interface address as gateway are I have sent a detailed description email to freebsd-net and freebsd-hackers before submitting the PR. I received only one reply. This behavior is by design but I believe it should be corrected. The analogy to my reasoning is ICMP redirect. I am not sure how to carry this discussion forward. Please advise. -- Qing To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 11 22:11:41 2002 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 15CB137B401; Fri, 11 Oct 2002 22:11:41 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A908043E75; Fri, 11 Oct 2002 22:10:20 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from freefall.freebsd.org (njl@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9C5AKCo042160; Fri, 11 Oct 2002 22:10:20 -0700 (PDT) (envelope-from njl@freefall.freebsd.org) Received: (from njl@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C5907E041581; Fri, 11 Oct 2002 22:09:00 -0700 (PDT) Date: Fri, 11 Oct 2002 22:09:00 -0700 (PDT) From: Nate Lawson Message-Id: <200210120509.g9C5907E041581@freefall.freebsd.org> To: gospos@tekkom.pl, njl@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/41065: time counters gives negative time, system hang-up 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: time counters gives negative time, system hang-up State-Changed-From-To: feedback->closed State-Changed-By: njl State-Changed-When: Fri Oct 11 22:08:44 PDT 2002 State-Changed-Why: Workaround was successful for user. http://www.freebsd.org/cgi/query-pr.cgi?pr=41065 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 11 22:20: 5 2002 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 F3E7737B401 for ; Fri, 11 Oct 2002 22:20:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF56843E7B for ; Fri, 11 Oct 2002 22:20:03 -0700 (PDT) (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 g9C5K3Co044172 for ; Fri, 11 Oct 2002 22:20:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C5K38c044171; Fri, 11 Oct 2002 22:20:03 -0700 (PDT) Date: Fri, 11 Oct 2002 22:20:03 -0700 (PDT) Message-Id: <200210120520.g9C5K38c044171@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nate Lawson Subject: RE: kern/41065: time counters gives negative time, system hang-up Reply-To: Nate Lawson 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/41065; it has been noted by GNATS. From: Nate Lawson To: =?iso-8859-2?Q?Marcin_Liwi=F1ski?= Cc: freebsd-gnats-submit@freebsd.org Subject: RE: kern/41065: time counters gives negative time, system hang-up Date: Fri, 11 Oct 2002 22:08:40 -0700 (PDT) All I know is that the HPT366 hangs and times out in UDMA66 mode but not UDMA33. This may be timing dependent and adding another CPU changes the timing. This is just a guess. In any case, the workaround is sufficient for me to run a BP6 in -STABLE and now works for you. -Nate On Thu, 5 Sep 2002, [iso-8859-2] Marcin Liwiñski wrote: > hi, > > it works for now, but i wonder: why this problem apear just after i added > the second cpu ? > > -- > with best rgrds, GoSPoS. > The BOFH. > > > > -----Original Message----- > > From: Nate Lawson [mailto:njl@FreeBSD.org] > > Sent: Wednesday, September 04, 2002 12:30 AM > > To: gospos@tekkom.pl; njl@FreeBSD.org; freebsd-bugs@FreeBSD.org > > Subject: Re: kern/41065: time counters gives negative time, system > > hang-up > > > > > > Synopsis: time counters gives negative time, system hang-up > > > > State-Changed-From-To: open->feedback > > State-Changed-By: njl > > State-Changed-When: Tue Sep 3 15:27:51 PDT 2002 > > State-Changed-Why: > > The HPT366 controller on bp6 mobos has known problems. Please disable > > dma mode and see if the problem persists. The controller should work > > in udma33 mode but not udma66. > > Workaround: add hw.ata.ata_dma=0 to /etc/sysctl.conf > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=41065 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 0:33:46 2002 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 8866037B404; Sat, 12 Oct 2002 00:33:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3870943EAA; Sat, 12 Oct 2002 00:33:45 -0700 (PDT) (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 g9C7XjCo085999; Sat, 12 Oct 2002 00:33:45 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C7Xj2o085995; Sat, 12 Oct 2002 00:33:45 -0700 (PDT) Date: Sat, 12 Oct 2002 00:33:45 -0700 (PDT) From: Maxim Konovalov Message-Id: <200210120733.g9C7Xj2o085995@freefall.freebsd.org> To: maxim@FreeBSD.org, arr@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/28247: ATM/HARP driver for IDT and ForeLE ATM cards available. 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: ATM/HARP driver for IDT and ForeLE ATM cards available. Responsible-Changed-From-To: arr->freebsd-bugs Responsible-Changed-By: maxim Responsible-Changed-When: Sat Oct 12 00:33:07 PDT 2002 Responsible-Changed-Why: Arr's gone. http://www.freebsd.org/cgi/query-pr.cgi?pr=28247 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 1: 0:14 2002 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 4AA0437B406 for ; Sat, 12 Oct 2002 01:00:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A9B743EB7 for ; Sat, 12 Oct 2002 01:00:10 -0700 (PDT) (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 g9C80ACo091036 for ; Sat, 12 Oct 2002 01:00:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C809Yt091035; Sat, 12 Oct 2002 01:00:09 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6D7A37B401 for ; Sat, 12 Oct 2002 00:55:07 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id A575043E91 for ; Sat, 12 Oct 2002 00:55:07 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9C7sH7R004814 for ; Sat, 12 Oct 2002 00:54:17 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9C7sHGV004813; Sat, 12 Oct 2002 00:54:17 -0700 (PDT) Message-Id: <200210120754.g9C7sHGV004813@www.freebsd.org> Date: Sat, 12 Oct 2002 00:54:17 -0700 (PDT) From: Zong Li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43957: The "date" command takes invalid input when it is used to set system date or clock. 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: 43957 >Category: misc >Synopsis: The "date" command takes invalid input when it is used to set system date or clock. >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: Sat Oct 12 01:00:09 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Zong Li >Release: FreeBSD 4.6-RELEASE >Organization: Redlinenetworks >Environment: FreeBSD 4.6-RELEASE FreeBSD 4.6-RELEASE #2: Mon Jul 15 11:30:11 PDT 2002 root@FreeBSD:/usr/src/sys/compile/MYKERNEL i386 >Description: Due to some date input formats simply use numbers (02 for Feb., 08 for Aug. etc.), a typo in date input may cause the system set to an incorrect date. This may cause some confusion or potential problem in applications that tightly relied or related to system date/clock settings. >How-To-Repeat: If I want to set the system date/clock to be March 31, 2002, 12:45, but typoed as the following: FreeBSD# date 0202311245 Sun Mar 3 12:45:00 PST 2002 <<<< It was set to March 3, 2002. FreeBSD# date 0211311245 <<< typoed Dec. (12) as Nov (11) Sun Dec 1 12:45:00 PST 2002 FreeBSD# date Sun Dec 1 12:45:05 PST 2002 <<<< It was set to Dec 1, 2002. FreeBSD# >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 Oct 12 1: 0:17 2002 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 4AD6D37B407 for ; Sat, 12 Oct 2002 01:00:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F2F43EC5 for ; Sat, 12 Oct 2002 01:00:10 -0700 (PDT) (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 g9C80ACo091049 for ; Sat, 12 Oct 2002 01:00:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C80AEB091048; Sat, 12 Oct 2002 01:00:10 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E63F37B401 for ; Sat, 12 Oct 2002 00:55:41 -0700 (PDT) Received: from www.freebsd.org (unknown [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id E321143E8A for ; Sat, 12 Oct 2002 00:55:40 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9C7rw7R004806 for ; Sat, 12 Oct 2002 00:53:58 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9C7rw8G004805; Sat, 12 Oct 2002 00:53:58 -0700 (PDT) Message-Id: <200210120753.g9C7rw8G004805@www.freebsd.org> Date: Sat, 12 Oct 2002 00:53:58 -0700 (PDT) From: Zong Li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43958: The "date" command takes invalid input when it is used to set system date or clock. 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: 43958 >Category: misc >Synopsis: The "date" command takes invalid input when it is used to set system date or clock. >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: Sat Oct 12 01:00:10 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Zong Li >Release: FreeBSD 4.6-RELEASE >Organization: Redlinenetworks >Environment: FreeBSD 4.6-RELEASE FreeBSD 4.6-RELEASE #2: Mon Jul 15 11:30:11 PDT 2002 root@FreeBSD:/usr/src/sys/compile/MYKERNEL i386 >Description: Due to some date input formats simply use numbers (02 for Feb., 08 for Aug. etc.), a typo in date input may cause the system set to an incorrect date. This may cause some confusion or potential problem in applications that tightly relied or related to system date/clock settings. >How-To-Repeat: If I want to set the system date/clock to be March 31, 2002, 12:45, but typoed as the following: FreeBSD# date 0202311245 Sun Mar 3 12:45:00 PST 2002 <<<< It was set to March 3, 2002. FreeBSD# date 0211311245 <<< typoed Dec. (12) as Nov (11) Sun Dec 1 12:45:00 PST 2002 FreeBSD# date Sun Dec 1 12:45:05 PST 2002 <<<< It was set to Dec 1, 2002. FreeBSD# >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 Oct 12 1:20: 5 2002 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 CB29F37B401 for ; Sat, 12 Oct 2002 01:20:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 740E743E91 for ; Sat, 12 Oct 2002 01:20:04 -0700 (PDT) (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 g9C8K4Co099747 for ; Sat, 12 Oct 2002 01:20:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9C8K446099745; Sat, 12 Oct 2002 01:20:04 -0700 (PDT) Date: Sat, 12 Oct 2002 01:20:04 -0700 (PDT) Message-Id: <200210120820.g9C8K446099745@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Charles Sprickman Subject: Re: kern/40003: Panic on boot w/4.6 and 4.6-stable from 6/28 Reply-To: Charles Sprickman 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/40003; it has been noted by GNATS. From: Charles Sprickman To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/40003: Panic on boot w/4.6 and 4.6-stable from 6/28 Date: Sat, 12 Oct 2002 03:51:01 -0400 (EDT) Just another followup: Have had no luck contacting developer. Issue persists with 4.7-RELEASE and 5.0-DP1. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 4: 0:24 2002 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 C202337B406 for ; Sat, 12 Oct 2002 04:00:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A2E943E8A for ; Sat, 12 Oct 2002 04:00:22 -0700 (PDT) (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 g9CB0MCo050706 for ; Sat, 12 Oct 2002 04:00:22 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CB0MUJ050699; Sat, 12 Oct 2002 04:00:22 -0700 (PDT) Date: Sat, 12 Oct 2002 04:00:22 -0700 (PDT) Message-Id: <200210121100.g9CB0MUJ050699@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Darien Kindlund Subject: Re: bin/43955: [4.7] make buildworld fails: gperf (key-list.cc gcc compiler error) Reply-To: Darien Kindlund 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/43955; it has been noted by GNATS. From: Darien Kindlund To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/43955: [4.7] make buildworld fails: gperf (key-list.cc gcc compiler error) Date: Sat, 12 Oct 2002 06:57:24 -0400 (EDT) I just noticed -- that timestamp is incorrect; the correct timestamp when cvsup was performed is: Fri Oct 11 18:32:00 EDT 2002 -- Darien Kindlund freebsd@kindlund.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 5:30: 5 2002 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 4D26037B401 for ; Sat, 12 Oct 2002 05:30:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A06643EAC for ; Sat, 12 Oct 2002 05:30:02 -0700 (PDT) (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 g9CCU2Co087044 for ; Sat, 12 Oct 2002 05:30:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CCU2XO087043; Sat, 12 Oct 2002 05:30:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 253A037B401 for ; Sat, 12 Oct 2002 05:22:34 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id B146F43EA3 for ; Sat, 12 Oct 2002 05:22:33 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CCMX7R075219 for ; Sat, 12 Oct 2002 05:22:33 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9CCMXNg075185; Sat, 12 Oct 2002 05:22:33 -0700 (PDT) Message-Id: <200210121222.g9CCMXNg075185@www.freebsd.org> Date: Sat, 12 Oct 2002 05:22:33 -0700 (PDT) From: Frerich Raabe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/43972: Update port: devel/distcc to 0.12 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: 43972 >Category: gnu >Synopsis: Update port: devel/distcc to 0.12 >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 Oct 12 05:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Frerich Raabe >Release: FreeBSD 4.7 i386 >Organization: >Environment: FreeBSD daedalus.lan 4.7-STABLE FreeBSD 4.7-STABLE #6: Fri Oct 11 18:41:41 CEST 2002 root@daedalus.lan:/usr/obj/usr/src/sys/MINOTAUR i386 >Description: This patch updates the port devel/distcc to version 0.12. No files have been added or removed. >How-To-Repeat: >Fix: diff -ruN distcc.orig/Makefile distcc/Makefile --- distcc.orig/Makefile Sat Oct 12 14:12:20 2002 +++ distcc/Makefile Sat Oct 12 14:12:44 2002 @@ -6,7 +6,7 @@ # PORTNAME= distcc -PORTVERSION= 0.11 +PORTVERSION= 0.12 CATEGORIES= devel MASTER_SITES= http://distcc.samba.org/ftp/distcc/ diff -ruN distcc.orig/distinfo distcc/distinfo --- distcc.orig/distinfo Sat Oct 12 14:12:20 2002 +++ distcc/distinfo Sat Oct 12 14:13:53 2002 @@ -1 +1 @@ -MD5 (distcc-0.11.tar.gz) = b985678ef3c237c6373a4f80cf37db0e +MD5 (distcc-0.12.tar.gz) = 4fa9d4f77bbaeaa615e3872bb4688ba3 >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 Oct 12 7:20: 5 2002 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 602F537B401 for ; Sat, 12 Oct 2002 07:20:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A45243EAA for ; Sat, 12 Oct 2002 07:20:02 -0700 (PDT) (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 g9CEK2Co032391 for ; Sat, 12 Oct 2002 07:20:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CEK2i9032390; Sat, 12 Oct 2002 07:20:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD07737B401 for ; Sat, 12 Oct 2002 07:13:30 -0700 (PDT) Received: from webedge2.chello.se (webedge2.chello.se [193.150.195.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D0443EB3 for ; Sat, 12 Oct 2002 07:13:30 -0700 (PDT) (envelope-from girgen@smtp.chello.se) Received: from palle.girgensohn.se (c213-89-136-93.cm-upc.chello.se [213.89.136.93]) by webedge2.chello.se (Postfix) with ESMTP id 7D2B426651 for ; Sat, 12 Oct 2002 16:12:56 +0200 (MEST) Received: from palle.girgensohn.se (localhost [127.0.0.1]) by palle.girgensohn.se (8.12.6/8.12.6) with ESMTP id g9CEDS3i041612 for ; Sat, 12 Oct 2002 16:13:28 +0200 (CEST) (envelope-from girgen@palle.girgensohn.se) Received: (from girgen@localhost) by palle.girgensohn.se (8.12.6/8.12.6/Submit) id g9CEDRFK041611; Sat, 12 Oct 2002 16:13:27 +0200 (CEST) Message-Id: <200210121413.g9CEDRFK041611@palle.girgensohn.se> Date: Sat, 12 Oct 2002 16:13:27 +0200 (CEST) From: Palle Girgensohn Reply-To: Palle Girgensohn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/43975: share/sendmail/Makefile uses ${INSTALL} -d, breaks with -C 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: 43975 >Category: bin >Synopsis: share/sendmail/Makefile uses ${INSTALL} -d, breaks with -C >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 12 07:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 4.7-RELEASE i386 >Organization: PING PONG >Environment: System: FreeBSD palle.girgensohn.se 4.7-RC FreeBSD 4.7-RC #0: Sun Sep 29 17:21:22 CEST 2002 root@palle.girgensohn.se:/usr/local/obj/usr/src/sys/STORDATAN i386 also applies to CURRENT, afaik. >Description: src/share/sendmail/Makefile uses ${INSTALL} ... -d src/etc/default/make.conf recommends setting INSTALL/install -C , which I find a good thing. Now, since fbsd-4.5.something (?), install -C -d ... fails (previously it silently ignored the `-C'). So, using ${INSTALL} -d in src and ports cannot be allowed anymore; instead we must either not use the INSTALL var, i.e. `install -C', or do the mkdir; chmod; chown troika. >How-To-Repeat: # echo 'INSTALL=install -C' >> /etc/make.conf # cd /usr/src # make installworld the only thing that fails is share/sendmail >Fix: This patch would be much appreciated: Index: Makefile =================================================================== RCS file: /usr/local/ncvs/src/share/sendmail/Makefile,v retrieving revision 1.1.2.6 diff -u -u -r1.1.2.6 Makefile --- Makefile 7 Aug 2002 16:31:51 -0000 1.1.2.6 +++ Makefile 12 Oct 2002 13:57:40 -0000 @@ -23,7 +23,9 @@ copies:: .for dir in ${CFDIRS} - ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir} + ${MKDIR} ${DDIR}/${dir} + ${CHMOD} 755 ${DDIR}/${dir} + ${CHOWN} ${BINOWN}:${BINGRP} ${DDIR}/${dir} .endfor .for file in ${CFFILES} ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 ${SENDMAIL_DIR}/${file} ${DDIR}/${file} >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 Oct 12 8: 0: 6 2002 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 1182B37B401 for ; Sat, 12 Oct 2002 08:00:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33E6543EB7 for ; Sat, 12 Oct 2002 08:00:04 -0700 (PDT) (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 g9CF04Co049887 for ; Sat, 12 Oct 2002 08:00:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CF03OY049886; Sat, 12 Oct 2002 08:00:03 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ACD937B401 for ; Sat, 12 Oct 2002 07:57:39 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EFB43EAC for ; Sat, 12 Oct 2002 07:57:39 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CEvc7R007041 for ; Sat, 12 Oct 2002 07:57:38 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9CEvcu2007040; Sat, 12 Oct 2002 07:57:38 -0700 (PDT) Message-Id: <200210121457.g9CEvcu2007040@www.freebsd.org> Date: Sat, 12 Oct 2002 07:57:38 -0700 (PDT) From: Brian Candler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43976: Binary upgrade to 4.7R fails if package 'freetype2' or 'imake' is already installed 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: 43976 >Category: misc >Synopsis: Binary upgrade to 4.7R fails if package 'freetype2' or 'imake' is already installed >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 12 08:00:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: 4.7-RELEASE >Organization: >Environment: >Description: I just tried to upgrade a 4.4 system to 4.7, and it failed because I had package freetype2-2.0.4 installed. In fact, after informing me of this fact, it then told me that "we couldn't even extract the bin distribution. This upgrade should be considered a failure and started from the beginning, sorry! The system will reboot now". That probably makes it seem more catastrophic than it actually was :-) After rebooting, removing that package, and reinstalling, I got the same thing again, but this time because of package "imake". After removing that it was OK. It seems that somewhere between 4.4 and 4.7, X moved into the package system (ah yes, I just found it in the release notes for 4.6). However it's maybe worth keeping a note in the errata or upgrade instructions, since normally I wouldn't expect the existence of any package in /usr/local to break a system upgrade. >How-To-Repeat: >Fix: Perhaps worth adding a note to the 4.7R errata For future, change sysinstall to be able to replace a previously installed but older version of the same package? >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 Oct 12 8:20: 6 2002 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 80BAF37B401 for ; Sat, 12 Oct 2002 08:20:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C80B143EBE for ; Sat, 12 Oct 2002 08:20:02 -0700 (PDT) (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 g9CFK2Co058945 for ; Sat, 12 Oct 2002 08:20:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CFK28t058944; Sat, 12 Oct 2002 08:20:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6423237B401 for ; Sat, 12 Oct 2002 08:19:44 -0700 (PDT) Received: from odyssey.apana.org.au (odyssey.apana.org.au [203.11.114.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D32B043EAF for ; Sat, 12 Oct 2002 08:19:42 -0700 (PDT) (envelope-from dean@odyssey.apana.org.au) Received: (from dean@localhost) by odyssey.apana.org.au (8.9.3/8.9.3) id XAA37128; Sat, 12 Oct 2002 23:19:41 +0800 (WST) Message-Id: <200210121519.XAA37128@mail.wa.apana.org.au> Date: Sat, 12 Oct 2002 23:19:41 +0800 (WST) From: Dean Hollister Reply-To: Dean Hollister To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/43978: Kernel Panics in 4.7-STABLE with 486 CPUs 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: 43978 >Category: i386 >Synopsis: Kernel Panics in 4.7-STABLE with 486 CPUs >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 12 08:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Dean Hollister >Release: FreeBSD 4.7-STABLE i386 >Organization: Australian Public Access Network Association Inc >Environment: System: FreeBSD odyssey.apana.org.au 4.7-STABLE FreeBSD 4.7-STABLE #0: Sat Oct 12 12:02:04 WST 2002 root@odyssey.apana.org.au:/usr/src/sys/compile/ODYSSEY i386 >Description: Booting a 4.7-STABLE kernel within a 486 CPU generates the following kernel panics: 486DX4-100, 20MB RAM: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc02247a4 stack pointer = 0x10:0xc02fef1c frame pointer = 0x10:0xc02fef24 code segment = base 0x0, limit 0xffffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) interrupt mask = net tty bio cam trap number = 12 panic: page fault 486DX-120, 50MB RAM: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc0227ee4 stack pointer = 0x10:0xc0302f1c frame pointer = 0x10:0xc0302f24 code segment = base 0x0, limit 0xffffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) interrupt mask = net tty bio cam trap number = 12 panic: page fault These kernel panics even ocurr if the GENERIC kernel is compiled and booted. This fault/bug has been commented on the STABLE mailing list and is suspected to be related to recent vm changes. >How-To-Repeat: cd /usr/src/sys/i386/conf config GENERIC cd ../../compile/GENERIC make depend make make install reboot [kernel panic ocurrs before any devices are probed] >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 Oct 12 8:37:14 2002 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 2A42F37B401; Sat, 12 Oct 2002 08:37:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE85843EBE; Sat, 12 Oct 2002 08:37:13 -0700 (PDT) (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 g9CFbDCo065464; Sat, 12 Oct 2002 08:37:13 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CFbDrs065460; Sat, 12 Oct 2002 08:37:13 -0700 (PDT) Date: Sat, 12 Oct 2002 08:37:13 -0700 (PDT) From: Johan Karlsson Message-Id: <200210121537.g9CFbDrs065460@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, trhodes@FreeBSD.org Subject: Re: bin/43730: chmod doesn't recognize -h option in 4-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: chmod doesn't recognize -h option in 4-STABLE Responsible-Changed-From-To: freebsd-bugs->trhodes Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 12 08:34:08 PDT 2002 Responsible-Changed-Why: Reminder for Tom to either back out the -h description from the manpage or MFC the code change and the documentation change for the -h option. http://www.freebsd.org/cgi/query-pr.cgi?pr=43730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 8:40: 8 2002 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 F222D37B404 for ; Sat, 12 Oct 2002 08:40:06 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7952343EA9 for ; Sat, 12 Oct 2002 08:40:06 -0700 (PDT) (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 g9CFe6Co065640 for ; Sat, 12 Oct 2002 08:40:06 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CFe5jC065627; Sat, 12 Oct 2002 08:40:05 -0700 (PDT) Date: Sat, 12 Oct 2002 08:40:05 -0700 (PDT) Message-Id: <200210121540.g9CFe5jC065627@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: aida-s@jcom.home.ne.jp Subject: Re: misc/43547: ppp will not connect to att worldnet over dialup Reply-To: aida-s@jcom.home.ne.jp 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/43547; it has been noted by GNATS. From: aida-s@jcom.home.ne.jp To: freebsd-gnats-submit@FreeBSD.org, paulwm2001@msn.com Cc: Subject: Re: misc/43547: ppp will not connect to att worldnet over dialup Date: Sun, 13 Oct 2002 00:39:56 +0900 (JST) Dear Paul Mason, It seems that simply a wrong username or password is sent, whether you input your username/password correctly or not. Doesn't it include '$', '\' or '~'? If so, you might have encountered docs/42762 problem. To escape these characters might help you. AIDA Shinra To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 8:41:17 2002 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 E865B37B404; Sat, 12 Oct 2002 08:41:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82E1D43ECF; Sat, 12 Oct 2002 08:41:16 -0700 (PDT) (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 g9CFfGCo067559; Sat, 12 Oct 2002 08:41:16 -0700 (PDT) (envelope-from maxim@freefall.freebsd.org) Received: (from maxim@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CFfGZa067543; Sat, 12 Oct 2002 08:41:16 -0700 (PDT) Date: Sat, 12 Oct 2002 08:41:16 -0700 (PDT) From: Maxim Konovalov Message-Id: <200210121541.g9CFfGZa067543@freefall.freebsd.org> To: zong.li@attbi.com, maxim@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/43958: The "date" command takes invalid input when it is used to set system date or clock. 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: The "date" command takes invalid input when it is used to set system date or clock. State-Changed-From-To: open->closed State-Changed-By: maxim State-Changed-When: Sat Oct 12 08:40:38 PDT 2002 State-Changed-Why: Duplicate of misc/43957. http://www.freebsd.org/cgi/query-pr.cgi?pr=43958 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 9:10: 5 2002 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 04FCA37B401 for ; Sat, 12 Oct 2002 09:10:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 390A143EB7 for ; Sat, 12 Oct 2002 09:10:02 -0700 (PDT) (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 g9CGA2Co095590 for ; Sat, 12 Oct 2002 09:10:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CGA2c8095589; Sat, 12 Oct 2002 09:10:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BDA37B401 for ; Sat, 12 Oct 2002 09:03:32 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DE7D43EB3 for ; Sat, 12 Oct 2002 09:03:32 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CG3V7R012486 for ; Sat, 12 Oct 2002 09:03:31 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9CG3VvL012485; Sat, 12 Oct 2002 09:03:31 -0700 (PDT) Message-Id: <200210121603.g9CG3VvL012485@www.freebsd.org> Date: Sat, 12 Oct 2002 09:03:31 -0700 (PDT) From: Brian Candler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/43979: After a binary upgrade, kernel with ipf fails to build because of stale /usr/include/netinet/ip_fil.h 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: 43979 >Category: misc >Synopsis: After a binary upgrade, kernel with ipf fails to build because of stale /usr/include/netinet/ip_fil.h >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: Sat Oct 12 09:10:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Brian Candler >Release: 4.7-RELEASE >Organization: >Environment: >Description: After binary-upgrading a machine from 4.4 to 4.7, then trying to compile a kernel with 'options IPFILTER', the compile fails: cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I/usr/include -I../../contrib/ipfilter -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2 ../../contrib/ipfilter/netinet/fil.c ./../contrib/ipfilter/netinet/fil.c: In function 'fr-Makefrip': ./../contrib/ipfilter/netinet/fil.c:267: structure has no member named 'fin_misc' ./../contrib/ipfilter/netinet/fil.c:287: 'ICMP6_MINLEN' undeclared (first use in this function) ./../contrib/ipfilter/netinet/fil.c: In function 'fr_check': ./../contrib/ipfilter/netinet/fil.c:1082: too few arguments to function 'ipfw_newfrag' ./../contrib/ipfilter/netinet/fil.c:1092: too many arguments to function 'fr_addstate' *** Error code 1 Problem is due to a stale file /usr/include/netinet/ip_fil.h which takes precedence over the correct version, due to the sequence of -I flags. I was able to fix the problem by rm -rf /usr/include and untarring /usr/include from bin.??, crypto.??, krb4.?? and krb5.?? >How-To-Repeat: >Fix: (1) Re-order the flags on the cc command line so that -I../../contrib/ipfilter comes before -I/usr/include ? (2) During binary upgrade, have a list of files which were known to belong to previous versions of FreeBSD but no longer exist, and remove or rename them??? >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 Oct 12 10:19:39 2002 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 81C0C37B401; Sat, 12 Oct 2002 10:19:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4283543EAC; Sat, 12 Oct 2002 10:19:38 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from freefall.freebsd.org (schweikh@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CHJbCo033406; Sat, 12 Oct 2002 10:19:38 -0700 (PDT) (envelope-from schweikh@freefall.freebsd.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CHJbiW033402; Sat, 12 Oct 2002 10:19:37 -0700 (PDT) Date: Sat, 12 Oct 2002 10:19:37 -0700 (PDT) From: Jens Schweikhardt Message-Id: <200210121719.g9CHJbiW033402@freefall.freebsd.org> To: zong.li@attbi.com, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/43957: The "date" command takes invalid input when it is used to set system date or clock. 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: The "date" command takes invalid input when it is used to set system date or clock. State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Oct 12 10:12:57 PDT 2002 State-Changed-Why: Not a bug. You specify an invalid date (Nov 31). Technically this is a case of "undefined behavior". In particular, turning Nov 31 to Dec 1 could even be regarded as a feature: it is consistent with the normalization done by mktime(3): The original values of the tm_wday and tm_yday components of the struc- ture are ignored, and the original values of the other components are not restricted to their normal ranges, and will be normalized if needed. For example, October 40 is changed into November 9, a tm_hour of -1 means 1 hour before midnight, tm_mday of 0 means the day preceding the current month, and tm_mon of -2 means 2 months before January of tm_year. http://www.freebsd.org/cgi/query-pr.cgi?pr=43957 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 10:21:36 2002 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 B052837B401; Sat, 12 Oct 2002 10:21:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6009343EBE; Sat, 12 Oct 2002 10:21:35 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from freefall.freebsd.org (schweikh@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CHLZCo035530; Sat, 12 Oct 2002 10:21:35 -0700 (PDT) (envelope-from schweikh@freefall.freebsd.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CHLZ9s035526; Sat, 12 Oct 2002 10:21:35 -0700 (PDT) Date: Sat, 12 Oct 2002 10:21:35 -0700 (PDT) From: Jens Schweikhardt Message-Id: <200210121721.g9CHLZ9s035526@freefall.freebsd.org> To: schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: conf/43931: New pccard entry for Netgear CF Wireless card MA701 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: New pccard entry for Netgear CF Wireless card MA701 Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: schweikh Responsible-Changed-When: Sat Oct 12 10:21:02 PDT 2002 Responsible-Changed-Why: Over to Warner, our pccard.conf maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=43931 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 10:27:33 2002 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 1208F37B401; Sat, 12 Oct 2002 10:27:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72B9B43E97; Sat, 12 Oct 2002 10:27:32 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from freefall.freebsd.org (schweikh@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CHRWCo035712; Sat, 12 Oct 2002 10:27:32 -0700 (PDT) (envelope-from schweikh@freefall.freebsd.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CHRS3q035700; Sat, 12 Oct 2002 10:27:28 -0700 (PDT) Date: Sat, 12 Oct 2002 10:27:28 -0700 (PDT) From: Jens Schweikhardt Message-Id: <200210121727.g9CHRS3q035700@freefall.freebsd.org> To: rcmeza@gmx.net, schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/43940: Crear usuarios 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: Crear usuarios State-Changed-From-To: open->closed State-Changed-By: schweikh State-Changed-When: Sat Oct 12 10:23:15 PDT 2002 State-Changed-Why: My Spanish is nonexisting, but I figure you are trying to create/add a user. This is unlikely to be buggy, so I suggest you try asking about your particular problem in a mailinglist, e.g. freebsd-questions@freebsd.org. Please submit future reports in English, so they can be addressed by a wide audience. Gracias! http://www.freebsd.org/cgi/query-pr.cgi?pr=43940 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 10:31:31 2002 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 491D937B401; Sat, 12 Oct 2002 10:31:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2D9943EAA; Sat, 12 Oct 2002 10:31:30 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from freefall.freebsd.org (schweikh@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CHVUCo037894; Sat, 12 Oct 2002 10:31:30 -0700 (PDT) (envelope-from schweikh@freefall.freebsd.org) Received: (from schweikh@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CHVUug037890; Sat, 12 Oct 2002 10:31:30 -0700 (PDT) Date: Sat, 12 Oct 2002 10:31:30 -0700 (PDT) From: Jens Schweikhardt Message-Id: <200210121731.g9CHVUug037890@freefall.freebsd.org> To: schweikh@FreeBSD.org, freebsd-bugs@FreeBSD.org, gshapiro@FreeBSD.org Subject: Re: bin/43975: share/sendmail/Makefile uses ${INSTALL} -d, breaks with -C 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: share/sendmail/Makefile uses ${INSTALL} -d, breaks with -C Responsible-Changed-From-To: freebsd-bugs->gshapiro Responsible-Changed-By: schweikh Responsible-Changed-When: Sat Oct 12 10:29:10 PDT 2002 Responsible-Changed-Why: Let our sendmail liaison Gregory have a look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=43975 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 11: 0:14 2002 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 7AFA437B401 for ; Sat, 12 Oct 2002 11:00:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F211443EB7 for ; Sat, 12 Oct 2002 11:00:12 -0700 (PDT) (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 g9CI0CCo043113 for ; Sat, 12 Oct 2002 11:00:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CI0Con043109; Sat, 12 Oct 2002 11:00:12 -0700 (PDT) Date: Sat, 12 Oct 2002 11:00:12 -0700 (PDT) Message-Id: <200210121800.g9CI0Con043109@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Pete French Subject: Re: kern/27834: Cannot warm-reboot Compaq AP400 due to SCSI problems Reply-To: Pete French 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/27834; it has been noted by GNATS. From: Pete French To: nate@root.org Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/27834: Cannot warm-reboot Compaq AP400 due to SCSI problems Date: Sat, 12 Oct 2002 18:58:32 +0100 > Just a hunch, but try changing your BIOS to "Reset ESCD: yes" (Sometimes > called "Reset configuration data"). If that doesn't work, try "PNP OS: > no". What was the exact release (or better, date) where this started > occurring? Ive now passed the machine on to someone else so I dont have it to hand. I will ask him about this though. There is no 'PNP OS' setting in the Compaq BIOS unfortunately, I am not sure about the ESCD stuff, I dont recall it, but it might be there. The exact release ? This has never worked with any releases as far as I am aware - but I think I have only tried 4.X on the machine. Thanks for continuing to work on this by the way, I know its a rather obscure problem! -Pete. PS: The replacement Compaq wont warm reboot either, but for completely different reasons. Maybe I should stop buying such odd machine :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 12:20: 9 2002 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 9138837B406 for ; Sat, 12 Oct 2002 12:20:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DD1143EC2 for ; Sat, 12 Oct 2002 12:20:04 -0700 (PDT) (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 g9CJK3Co072835 for ; Sat, 12 Oct 2002 12:20:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CJK30r072834; Sat, 12 Oct 2002 12:20:03 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDC6437B401 for ; Sat, 12 Oct 2002 12:13:27 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96B8C43EAC for ; Sat, 12 Oct 2002 12:13:27 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CJDR7R037486 for ; Sat, 12 Oct 2002 12:13:27 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9CJDRcN037485; Sat, 12 Oct 2002 12:13:27 -0700 (PDT) Message-Id: <200210121913.g9CJDRcN037485@www.freebsd.org> Date: Sat, 12 Oct 2002 12:13:27 -0700 (PDT) From: Charles Sprickman To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/43984: rp driver does not support multiple PCI cards 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: 43984 >Category: kern >Synopsis: rp driver does not support multiple PCI cards >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 Oct 12 12:20:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Charles Sprickman >Release: 4.7-RELEASE >Organization: >Environment: FreeBSD synapse.fasttrackmonkey.com 4.7-RELEASE FreeBSD 4.7-RELEASE #3: Fri Oct 11 22:26:54 EDT 2002 spork@synapse.fasttrackmonkey.com:/usr/obj/usr/src/sys/SYNAPSE i386 >Description: With two Comtrol RocketPort PCI-8J cards installed, both cards are probed and detected: rp0: port 0xe400-0xe43f irq 10 at device 18.0 on pci0 RocketPort0 = 8 ports rp0: driver is using old-style compatibility shims rp1: port 0xe800-0xe83f irq 11 at device 19.0 on pci0 RocketPort1 = 8 ports WARNING: "rp" is usurping "rp"'s cdevsw[] rp1: driver is using old-style compatibility shims All ports on rp0 function, but on rp1 it seems only tx traffic makes it out the port. Swapping cards makes no difference. Have tested with numberous methods, using cu, kermit, minicom and simply cat'ing and echo'ing data from port to port. Searching -hackers, -stable, and -questions reveals a number of people with the same problem. Additionally, I have downloaded, compiled, and tested a module that was backported from -current. See: http://people.freebsd.org/~gallatin/rp.tgz This driver probes and detects both cards: rp0: port 0xe400-0xe43f irq 10 at device 18.0 on pci0 RocketPort0 (Version 3.02) 8 ports. rp1: port 0xe800-0xe83f irq 11 at device 19.0 on pci0 RocketPort1 (Version 3.02) 8 ports. And with this driver, both cards do function. But there seems to be another problem as text in/out of the card is scrambled. Same cable/connection with the old driver did not exhibit this problem. >How-To-Repeat: Install two PCI RocketPort cards. >Fix: It seems the best bet might be to start with the backported -current driver. The person who ported it ported for the alpha, so perhaps the quirks I'm seeing are due to an oversight in that area. The url again: http://people.freebsd.org/~gallatin/rp.tgz >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 Oct 12 16: 0:26 2002 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 38EB437B404 for ; Sat, 12 Oct 2002 16:00:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF5D343EB7 for ; Sat, 12 Oct 2002 16:00:15 -0700 (PDT) (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 g9CN0FCo039469 for ; Sat, 12 Oct 2002 16:00:15 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CN0FcO039468; Sat, 12 Oct 2002 16:00:15 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF79437B401 for ; Sat, 12 Oct 2002 15:54:27 -0700 (PDT) Received: from knast.camelot.de (knast.camelot.de [217.19.167.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 172A643E6A for ; Sat, 12 Oct 2002 15:54:27 -0700 (PDT) (envelope-from danielt@knast.camelot.de) Received: from knast.camelot.de (danielt@localhost [127.0.0.1]) by knast.camelot.de (8.12.6/8.12.6) with ESMTP id g9CMsPbF020812 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 13 Oct 2002 00:54:25 +0200 (CEST) (envelope-from danielt@knast.camelot.de) Received: (from danielt@localhost) by knast.camelot.de (8.12.6/8.12.6/Submit) id g9CMsPBm020811; Sun, 13 Oct 2002 00:54:25 +0200 (CEST) (envelope-from danielt) Message-Id: <200210122254.g9CMsPBm020811@knast.camelot.de> Date: Sun, 13 Oct 2002 00:54:25 +0200 (CEST) From: Danijel Tasov Reply-To: Danijel Tasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/43989: missing tabs in calendarfiles 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: 43989 >Category: misc >Synopsis: missing tabs in calendarfiles >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: Sat Oct 12 16:00:14 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Danijel Tasov >Release: FreeBSD 4.7-RELEASE i386 >Organization: <> >Environment: System: FreeBSD knast 4.7-RELEASE FreeBSD 4.7-RELEASE #9: Fri Oct 11 12:56:36 CEST 2002 knarf@knast:/usr/obj/usr/src/sys/KNAST i386 irrelevant >Description: Some german calendar files in /usr/share/calendar/de_DE.ISO8859-1/ are improperly formatted, which cause i.e. calendar -f /usr/share/calendar/de_DE.ISO8859-1/calendar.all -t 12.10 to output Schuhen auf den Tisch, 1960 instead of 12 Okt Chruschtschow schlägt während einer Rede in der UNO mit den Schuhen auf den Tisch, 1960 >How-To-Repeat: calendar -f /usr/share/calendar/de_DE.ISO8859-1/calendar.all -t 12.10 >Fix: diff -u de_DE.ISO8859-1.old/calendar.geschichte de_DE.ISO8859-1/calendar.geschichte --- de_DE.ISO8859-1.old/calendar.geschichte Fri Oct 11 13:04:08 2002 +++ de_DE.ISO8859-1/calendar.geschichte Sun Oct 13 00:33:45 2002 @@ -22,7 +22,7 @@ LANG=de_DE.ISO8859-1 /* 1800-1933 */ -07/11 Gründung der Rheinbundes, 1806 +07/11 Gründung der Rheinbundes, 1806 10/14 Doppelschlacht bei Jena und Auerstedt, 1806 10/16 Völkerschlacht bei Leipzig, 1813 06/18 Niederlage Napoleons bei Waterloo, 1815 @@ -105,9 +105,9 @@ Hauptkriegsverbrecherprozeß, 1946 02/25 Auflösung der Landes Preußen durch den Kontrollrat, 1947 08/06 erster Atombombenabwurf auf Hiroshima, 1945 -08/08 Atombombenabwurf auf Nagasaki, 1945 -04/19 Warschauer Ghetto Aufstand, 1943 -12/07 Japan bombardiert Pearl Harbor, 1941 +08/08 Atombombenabwurf auf Nagasaki, 1945 +04/19 Warschauer Ghetto Aufstand, 1943 +12/07 Japan bombardiert Pearl Harbor, 1941 /* Deutschland nach dem 2. Weltkrieg */ 04/11 Attentat auf Dutschke, Studentenunruhen, 1968 @@ -161,10 +161,10 @@ 01/08 Eröffnung der olympischen Spiele in Berlin, 1936 01/20 Wannseekonferenz, 1942 04/30 Selbstmord Hitlers, 1945 -07/29 Mussolini geboren, 1883 +07/29 Mussolini geboren, 1883 /* Sozialismus */ -01/21 Lenin gestorben, 1924 +01/21 Lenin gestorben, 1924 06 Gründung des Bundes der Kommunisten in London durch Marx+Engels, 1847 05/23 Gründung des Allgemeinen Deutschen Arbeitervereins in Leipzig unter Führung von Ferdinand Lassalles, 1863 @@ -188,10 +188,10 @@ 10/14 Kuba-Krise, 1962 10/18 Ablösung von Erich Honecker als SED-Generalsekretär, 1989 11/09 Fall der Berliner Mauer, 1989 -09/09 Mao Tse-Tung gestorben im Alter von 82 Jahren, 1976 -11/10 Sowjetischer Präsident Leonid Breschnew gestorben, Alter 75, 1982 -03/27 Chruschtschow wird sowjetischer Präsident, 1958 -10/12 Chruschtschow schlägt während einer Rede in der UNO mit den +09/09 Mao Tse-Tung gestorben im Alter von 82 Jahren, 1976 +11/10 Sowjetischer Präsident Leonid Breschnew gestorben, Alter 75, 1982 +03/27 Chruschtschow wird sowjetischer Präsident, 1958 +10/12 Chruschtschow schlägt während einer Rede in der UNO mit den Schuhen auf den Tisch, 1960 #endif /* _de_DE_ISO8859_1_geschichte_ */ diff -u de_DE.ISO8859-1.old/calendar.kirche de_DE.ISO8859-1/calendar.kirche --- de_DE.ISO8859-1.old/calendar.kirche Fri Oct 11 13:04:08 2002 +++ de_DE.ISO8859-1/calendar.kirche Sun Oct 13 00:34:36 2002 @@ -26,7 +26,7 @@ 12/26 2. Weihnachtstag /* Evangelische Kirche */ -11/10 Martin Luther geboren in Eisleben, 1483 -10/31 95 Thesen von Luther, Wittenberg, 1517 +11/10 Martin Luther geboren in Eisleben, 1483 +10/31 95 Thesen von Luther, Wittenberg, 1517 #endif /* !_de_DE_ISO8859_1_kirche_ */ diff -u de_DE.ISO8859-1.old/calendar.literatur de_DE.ISO8859-1/calendar.literatur --- de_DE.ISO8859-1.old/calendar.literatur Fri Oct 11 13:04:08 2002 +++ de_DE.ISO8859-1/calendar.literatur Sun Oct 13 00:34:55 2002 @@ -19,10 +19,10 @@ Schiller */ -01/04 Jakob Grimm geboren, 1785 -04/22 Kant geboren, 1724 -07/03 Franz Kafka geboren, 1883 -08/12 Thomas Mann gestorben, 1955 +01/04 Jakob Grimm geboren, 1785 +04/22 Kant geboren, 1724 +07/03 Franz Kafka geboren, 1883 +08/12 Thomas Mann gestorben, 1955 /* Verlage */ diff -u de_DE.ISO8859-1.old/calendar.musik de_DE.ISO8859-1/calendar.musik --- de_DE.ISO8859-1.old/calendar.musik Fri Oct 11 13:04:08 2002 +++ de_DE.ISO8859-1/calendar.musik Sun Oct 13 00:35:20 2002 @@ -10,15 +10,15 @@ LANG=de_DE.ISO8859-1 /* Klassik */ -02/23 Händel geboren, 1685 -03/21 Johann Sebastian Bach geboren in Eisenach, 1685 -05/07 Johannes Brahms geboren in Hamburg, 1833 -07/28 Johann Sebastian Bach gestorben in Leipzig, 1750 -10/22 Franz Liszt geboren, 1811 -12/05 Mozart gestorben, 1791 -12/16 Beethoven gestorben, 1770 +02/23 Händel geboren, 1685 +03/21 Johann Sebastian Bach geboren in Eisenach, 1685 +05/07 Johannes Brahms geboren in Hamburg, 1833 +07/28 Johann Sebastian Bach gestorben in Leipzig, 1750 +10/22 Franz Liszt geboren, 1811 +12/05 Mozart gestorben, 1791 +12/16 Beethoven gestorben, 1770 /* Pop */ -09/18 Jimi Hendrix gestorben, 1970 +09/18 Jimi Hendrix gestorben, 1970 #endif /* !_de_DE_ISO8859_1_musik_ */ diff -u de_DE.ISO8859-1.old/calendar.wissenschaft de_DE.ISO8859-1/calendar.wissenschaft --- de_DE.ISO8859-1.old/calendar.wissenschaft Fri Oct 11 13:04:08 2002 +++ de_DE.ISO8859-1/calendar.wissenschaft Sun Oct 13 00:35:53 2002 @@ -9,10 +9,10 @@ LANG=de_DE.ISO8859-1 -04/12 erster Mann im All, Juri Gagarin, 1961 -04/18 Einstein gestorben, 1955 +04/12 erster Mann im All, Juri Gagarin, 1961 +04/18 Einstein gestorben, 1955 06/22 Konrad Zuse geboren, 1919, Berlin -10/04 Sputnik 1, erster Satellit im Weltraum, 1957 +10/04 Sputnik 1, erster Satellit im Weltraum, 1957 12/18 Konrad Zuse gestorben, 1995, Hünfeld >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 Oct 12 16: 5:51 2002 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 6EFA537B401; Sat, 12 Oct 2002 16:05:50 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D42243E97; Sat, 12 Oct 2002 16:05:50 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Received: from freefall.freebsd.org (dannyboy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9CN5nCo046046; Sat, 12 Oct 2002 16:05:50 -0700 (PDT) (envelope-from dannyboy@freefall.freebsd.org) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9CN5nvZ046042; Sat, 12 Oct 2002 16:05:49 -0700 (PDT) Date: Sat, 12 Oct 2002 16:05:49 -0700 (PDT) From: Daniel Harris Message-Id: <200210122305.g9CN5nvZ046042@freefall.freebsd.org> To: frerich.raabe@gmx.de, dannyboy@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: ports/43972: Update port: devel/distcc to 0.12 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: Update port: devel/distcc to 0.12 State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Sat Oct 12 16:05:29 PDT 2002 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=43972 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 17:20: 7 2002 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 E248837B404 for ; Sat, 12 Oct 2002 17:20:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32F3B43EA9 for ; Sat, 12 Oct 2002 17:20:04 -0700 (PDT) (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 g9D0K4Co067707 for ; Sat, 12 Oct 2002 17:20:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D0K4Uj067705; Sat, 12 Oct 2002 17:20:04 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D797137B401 for ; Sat, 12 Oct 2002 17:18:18 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97BCE43E9E for ; Sat, 12 Oct 2002 17:18:18 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9D0II7R059944 for ; Sat, 12 Oct 2002 17:18:18 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9D0IIM1059943; Sat, 12 Oct 2002 17:18:18 -0700 (PDT) Message-Id: <200210130018.g9D0IIM1059943@www.freebsd.org> Date: Sat, 12 Oct 2002 17:18:18 -0700 (PDT) From: alex To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/43991: Missing shared object "libintl.so.4" 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: 43991 >Category: bin >Synopsis: Missing shared object "libintl.so.4" >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 Oct 12 17:20:03 PDT 2002 >Closed-Date: >Last-Modified: >Originator: alex >Release: 4.6.2 >Organization: >Environment: FreeBSD Intranet.kruij557.speed.planet.nl 4.6.2-RELEASE-p2 FreeBSD 4.6.2-RELEASE-p2 #0: Wed Sep 18 13:45:18 CEST 2002 alex@Intranet.kruij557.speed.planet.nl:/disk1/obj/usr/src/sys/INTRANET i386 >Description: configure: creating ./config.status config.status: creating unix-cc.mk config.status: creating unix-def.mk config.status: creating freetype-config config.status: creating ftconfig.h /usr/libexec/ld-elf.so.1: Shared object "libintl.so.4" not found *** Error code 1 Stop in /usr/ports/print/freetype2. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries. *** Error code 1 Stop in /usr/ports/x11/XFree86-4. [1] Exit 1 make clean install clean >How-To-Repeat: Install any port requering libintl.so.4 (i.e. /usr/ports/x11/XFree86-4). >Fix: My quess is that the file libint1.so.4 simply is missing from the fs, so putting the source back for this file could fix the problem. >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 Oct 12 17:40: 5 2002 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 517B037B404 for ; Sat, 12 Oct 2002 17:40:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98E1343EAA for ; Sat, 12 Oct 2002 17:40:01 -0700 (PDT) (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 g9D0e1Co072323 for ; Sat, 12 Oct 2002 17:40:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D0e1aP072322; Sat, 12 Oct 2002 17:40:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0B3137B401 for ; Sat, 12 Oct 2002 17:36:21 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70BDC43EB1 for ; Sat, 12 Oct 2002 17:36:21 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9D0aL7R092597 for ; Sat, 12 Oct 2002 17:36:21 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9D0aLJw092596; Sat, 12 Oct 2002 17:36:21 -0700 (PDT) Message-Id: <200210130036.g9D0aLJw092596@www.freebsd.org> Date: Sat, 12 Oct 2002 17:36:21 -0700 (PDT) From: alex To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/43992: fetch package wrong dir 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: 43992 >Category: bin >Synopsis: fetch package wrong dir >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 Oct 12 17:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: alex >Release: 4.6.2 >Organization: >Environment: FreeBSD Intranet.kruij557.speed.planet.nl 4.6.2-RELEASE-p2 FreeBSD 4.6.2-RELEASE-p2 #0: Wed Sep 18 13:45:18 CEST 2002 alex@Intranet.kruij557.speed.planet.nl:/disk1/obj/usr/src/sys/INTRANET i386 >Description: When using 'pkg_add -r XFree86-4' the fetch part doesn't work because the directory packages-4.6.2-release-4.6.2-release doesn't exit but is called. Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.6.2-release/Latest/XFree86-4.tgz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch `ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.6.2-release/Latest/XFree86-4.tgz' by URL >How-To-Repeat: >Fix: Some options: 1) ln -sv /pub/FreeBSD/port/i386/packages packages-4.6.2-release-4.6.2-release 2) mv /pub/FreeBSD/port/i386/packages /pub/FreeBSD/port/i386/packages-4.6.2-release-4.6.2-release 3) modify the fetch procedure. >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 Oct 12 20: 0:15 2002 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 ECEF337B401 for ; Sat, 12 Oct 2002 20:00:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 594E643EB2 for ; Sat, 12 Oct 2002 20:00:10 -0700 (PDT) (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 g9D30ACo012883 for ; Sat, 12 Oct 2002 20:00:10 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D30AUc012882; Sat, 12 Oct 2002 20:00:10 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 038D337B401 for ; Sat, 12 Oct 2002 19:59:42 -0700 (PDT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25FE43E91 for ; Sat, 12 Oct 2002 19:59:41 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.6/8.12.6) with ESMTP id g9D2xf7R002433 for ; Sat, 12 Oct 2002 19:59:41 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.6/8.12.6/Submit) id g9D2xfLk002432; Sat, 12 Oct 2002 19:59:41 -0700 (PDT) Message-Id: <200210130259.g9D2xfLk002432@www.freebsd.org> Date: Sat, 12 Oct 2002 19:59:41 -0700 (PDT) From: Naoyuki Tai To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/43993: /usr/sbin/usbd does not handle an usb event with multiple devices 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: 43993 >Category: bin >Synopsis: /usr/sbin/usbd does not handle an usb event with multiple devices >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 Oct 12 20:00:09 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Naoyuki Tai >Release: 4.6 STABLE >Organization: N/A >Environment: FreeBSD nile.camelsoft.com 4.6-STABLE FreeBSD 4.6-STABLE #4: Fri Jul 12 15:20:13 EDT 2002 ntai@nile.camelsoft.com:/usr/obj/usr/src/sys/NILE i386 >Description: When there is a usb event that consists of multiple devices, the usbd only handles the first device and ignores the rest. So, if you connect a USB hub or USB KVM with multiple devices already attached to the hub, to the host, usbd handles only one device and drops the rest. For example, if a hub is connected to a usb keyboard and mouse, and the hub is then connected to the machine, usbd handles the keyboard or the mouse but not both. >How-To-Repeat: Connect multiple USB devices to a hub. Disconnect and reconnect the hub. If the hub is capable of sending an usb event with multiple devices, the problem appears. >Fix: Following patch to /usr/src/usr.sbin/usbd/usbd.c fixed the problem for me. But, I'm not sure that the patch is neat. *** usbd.c.orig Sun Feb 24 09:23:13 2002 --- usbd.c Sat Oct 12 22:43:14 2002 *************** *** 826,831 **** --- 826,835 ---- int error; int len; action_match_t action_match; + int i; + struct usb_event one_event; + struct usb_device_info *one_devinfo; + struct usb_device_info *devinfo; for (;;) { len = read(fd, &event, sizeof(event)); *************** *** 851,888 **** if (verbose) print_event(&event); ! /* handle the event appropriately */ ! switch (event.ue_type) { ! case USB_EVENT_ATTACH: ! case USB_EVENT_DETACH: ! if (find_action(&event.ue_device, &action_match) == 0) ! /* nothing found */ break; ! if (verbose >= 2) ! print_action(action_match.action, 0); - if (action_match.devname) { if (verbose >= 2) ! printf("%s: Setting DEVNAME='%s'\n", __progname, action_match.devname); ! error = setenv("DEVNAME", action_match.devname, 1); ! if (error) ! fprintf(stderr, "%s: setenv(\"DEVNAME\", \"%s\",1) failed, %s\n", ! __progname, action_match.devname, strerror(errno)); } - - if (event.ue_type == USB_EVENT_ATTACH && action_match.action->attach) - execute_command(action_match.action->attach); - if (event.ue_type == USB_EVENT_DETACH && action_match.action->detach) - execute_command(action_match.action->detach); - - break; - default: - printf("Unknown USB event %d\n", event.ue_type); } ! } } --- 855,903 ---- if (verbose) print_event(&event); ! devinfo = &event.ue_device; ! ! for (i = 0; i < MAXDEVNAMES; i++) { ! if (devinfo->udi_devnames[i][0] == '\0') break; ! memcpy(&one_event, &event, sizeof(one_event)); ! one_devinfo = &one_event.ue_device; ! memcpy(&one_devinfo->udi_devnames[0], &devinfo->udi_devnames[i], sizeof(one_devinfo->udi_devnames[0])); ! one_devinfo->udi_devnames[1][0] = '\0'; ! ! /* handle the event appropriately */ ! switch (one_event.ue_type) { ! case USB_EVENT_ATTACH: ! case USB_EVENT_DETACH: ! if (find_action(&one_event.ue_device, &action_match) == 0) ! /* nothing found */ ! break; if (verbose >= 2) ! print_action(action_match.action, 0); ! ! if (action_match.devname) { ! if (verbose >= 2) ! printf("%s: Setting DEVNAME='%s'\n", __progname, action_match.devname); ! error = setenv("DEVNAME", action_match.devname, 1); ! if (error) ! fprintf(stderr, "%s: setenv(\"DEVNAME\", \"%s\",1) failed, %s\n", ! __progname, action_match.devname, strerror(errno)); ! } ! ! if (one_event.ue_type == USB_EVENT_ATTACH && action_match.action->attach) ! execute_command(action_match.action->attach); ! if (one_event.ue_type == USB_EVENT_DETACH && action_match.action->detach) ! execute_command(action_match.action->detach); ! break; ! default: ! printf("Unknown USB event %d\n", one_event.ue_type); } } ! } } >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 Oct 12 20:30: 5 2002 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 9A3E237B401 for ; Sat, 12 Oct 2002 20:30:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEB0A43EA3 for ; Sat, 12 Oct 2002 20:30:01 -0700 (PDT) (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 g9D3U1Co024290 for ; Sat, 12 Oct 2002 20:30:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D3U1r9024289; Sat, 12 Oct 2002 20:30:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54F7F37B401 for ; Sat, 12 Oct 2002 20:21:24 -0700 (PDT) Received: from topaz.mdcc.cx (topaz.mdcc.cx [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8D1243E77 for ; Sat, 12 Oct 2002 20:21:23 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from k7.mavetju (topaz.mdcc.cx [212.204.230.141]) by topaz.mdcc.cx (Postfix) with ESMTP id 254072B678 for ; Sun, 13 Oct 2002 05:21:21 +0200 (CEST) Received: by k7.mavetju (Postfix, from userid 1001) id 8AB716A712B; Sun, 13 Oct 2002 13:21:18 +1000 (EST) Message-Id: <20021013032118.8AB716A712B@k7.mavetju> Date: Sun, 13 Oct 2002 13:21:18 +1000 (EST) From: Edwin Groothuis Reply-To: Edwin Groothuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/43994: sshd gives fatal while logging off 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: 43994 >Category: bin >Synopsis: sshd gives fatal while logging off >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: Sat Oct 12 20:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 4.7-RELEASE i386 >Organization: - >Environment: System: FreeBSD friet47.mavetju 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Wed Oct 9 15:08:34 GMT 2002 root@builder.freebsdmall.com:/usr/obj/usr/src/sys/GENERIC i386 Running under VMWare. OS is straight out of the box, no modifications regarding nything yet. >Description: When logging off I see this message coming up on the console: Oct 12 16:32:43 friet47 sshd[122]: fatal: msg_send: write Oct 12 16:32:55 friet47 sshd[7310]: fatal: msg_send: write Running sshd in debug mode (triple -d) I get: debug1: Received SIGCHLD. debug2: notify_done: reading debug1: End of interactive session; stdin 3, stdout (read 2037, sent 2037), stderr 0 bytes. debug1: channel_free: channel 0: auth socket, nchannels 1 debug3: channel_free: status: The following connections are open: debug3: channel_close_fds: channel 0: r 9 w 9 e -1 debug1: Command exited with status 1. debug1: Received exit confirmation. debug1: session_close: session 0 pid 9095 debug1: session_pty_cleanup: session 0 release /dev/ttyp0 debug1: restore_uid Closing connection to 192.168.0.1 debug3: msg_send: type 7 msg_send: write debug1: Calling cleanup 0x805ec88(0x0) debug1: Calling cleanup 0x804d72c(0x0) This is the write in msg.c line 43 (the first one). After some debugging, it's caused by these lines: static void * pam_child(struct pam_ctxt *ctxt) { Buffer buffer; struct pam_conv pam_conv = { pam_child_conv, ctxt }; pam_handle_t *pamh; int pam_err; buffer_init(&buffer); setproctitle("%s [pam]", ctxt->pam_user); pam_err = pam_start("sshd", ctxt->pam_user, &pam_conv, &pamh); if (pam_err != PAM_SUCCESS) goto auth_fail; pam_err = pam_authenticate(pamh, 0); [ pam_err is 19 here: PAM_CONV_ERR: Conversation error ] if (pam_err != PAM_SUCCESS) goto auth_fail; pam_err = pam_acct_mgmt(pamh, 0); >How-To-Repeat: Install a clean 4.7-RELEASE, log in via ssh -1 and logoff. Check the console. >Fix: Beyond my capabilities. Workaround are - ignore it and loose some account management information. - set ChallengeResponseAuthentication to no in /etc/ssh/sshd_config >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 Oct 12 20:50: 5 2002 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 5325F37B401 for ; Sat, 12 Oct 2002 20:50:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0987143EAA for ; Sat, 12 Oct 2002 20:50:03 -0700 (PDT) (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 g9D3o2Co029832 for ; Sat, 12 Oct 2002 20:50:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D3o2fa029831; Sat, 12 Oct 2002 20:50:02 -0700 (PDT) Date: Sat, 12 Oct 2002 20:50:02 -0700 (PDT) Message-Id: <200210130350.g9D3o2fa029831@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: bin/43992: fetch package wrong dir Reply-To: Edwin Groothuis 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/43992; it has been noted by GNATS. From: Edwin Groothuis To: alex Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/43992: fetch package wrong dir Date: Sun, 13 Oct 2002 13:41:32 +1000 On Sat, Oct 12, 2002 at 05:36:21PM -0700, alex wrote: > > >Number: 43992 > >Category: bin > >Synopsis: fetch package wrong dir > >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 Oct 12 17:40:01 PDT 2002 > >Closed-Date: > >Last-Modified: > >Originator: alex > >Release: 4.6.2 > >Organization: > >Environment: > FreeBSD Intranet.kruij557.speed.planet.nl 4.6.2-RELEASE-p2 FreeBSD 4.6.2-RELEASE-p2 #0: Wed Sep 18 13:45:18 CEST 2002 alex@Intranet.kruij557.speed.planet.nl:/disk1/obj/usr/src/sys/INTRANET i386 > >Description: > When using 'pkg_add -r XFree86-4' the fetch part doesn't work because the directory packages-4.6.2-release-4.6.2-release doesn't exit but is called. > > Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.6.2-release/Latest/XFree86-4.tgz: File unavailable (e.g., file not found, no access) > pkg_add: unable to fetch `ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.6.2-release/Latest/XFree86-4.tgz' by URL > >How-To-Repeat: Actually, it does exist: [~] edwin@k7>ftp -a ftp.freebsd.org Connected to ftp.beastie.tdk.net. 220 ftp.beastie.tdk.net FTP server (Version 6.00LS) ready. [...] ftp> cd /pub/FreeBSD/ports/i386/packages-4.6.2-release/Latest/ 250 CWD command successful. The file you're looking for is XFree86 instead of XFree86-4. Edwin -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php bash$ :(){ :|:&};: | Interested in MUDs? http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sat Oct 12 21:10: 3 2002 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 A344237B401 for ; Sat, 12 Oct 2002 21:10:01 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9EC043E7B for ; Sat, 12 Oct 2002 21:10:00 -0700 (PDT) (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 g9D4A0Co039080 for ; Sat, 12 Oct 2002 21:10:00 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D4A0CJ039079; Sat, 12 Oct 2002 21:10:00 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF0A837B401 for ; Sat, 12 Oct 2002 21:01:41 -0700 (PDT) Received: from idiom.com (idiom.com [216.240.32.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CE8843ED1 for ; Sat, 12 Oct 2002 21:01:41 -0700 (PDT) (envelope-from muir@idiom.com) Received: from idiom.com (localhost [127.0.0.1]) by idiom.com (8.12.5/8.12.6) with ESMTP id g9D41fEH007399 for ; Sat, 12 Oct 2002 21:01:41 -0700 (PDT) (envelope-from muir@idiom.com) Received: (from muir@localhost) by idiom.com (8.12.5/8.12.6/Submit) id g9D41fHe007398; Sat, 12 Oct 2002 21:01:41 -0700 (PDT) (envelope-from muir) Message-Id: <200210130401.g9D41fHe007398@idiom.com> Date: Sat, 12 Oct 2002 21:01:41 -0700 (PDT) From: David Muir Sharnoff Reply-To: David Muir Sharnoff To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/43995: ls -B isn't complete 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: 43995 >Category: bin >Synopsis: ls -B isn't complete >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 Oct 12 21:10:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: David Muir Sharnoff >Release: FreeBSD 4.7-RELEASE i386 >Organization: Idiom >Environment: System: FreeBSD idiom.com 4.7-RELEASE FreeBSD 4.7-RELEASE #8: Thu Oct 10 22:07:09 PDT 2002 muir@staid.idiom.com:/build/obj/build/src/sys/IDIOM i386 >Description: The ls(1) man page describes the -B option: -B Force printing of non-printable characters (as defined by ctype(3) and current locale settings) in file names as \xxx, where xxx is the numeric value of the character in octal. When you do a recursive listing (ls -R) ls will print out the directory name followed by a colon. Eg: /usr/bin: total 28322 etc. If there are non-printable characters in the directory name, they are printed rather than escaped. >How-To-Repeat: % mkdir /tmp/foo % cd /tmp/foo % mkdir ' ibebad:\ ha ha' % ls -BoTnilR >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 Oct 12 21:30: 3 2002 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 9F43637B401 for ; Sat, 12 Oct 2002 21:30:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4885D43EA9 for ; Sat, 12 Oct 2002 21:30:02 -0700 (PDT) (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 g9D4U2Co043940 for ; Sat, 12 Oct 2002 21:30:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9D4U1Q6043939; Sat, 12 Oct 2002 21:30:01 -0700 (PDT) Date: Sat, 12 Oct 2002 21:30:01 -0700 (PDT) Message-Id: <200210130430.g9D4U1Q6043939@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Muir Sharnoff Subject: Re: bin/43995: ls -B isn't complete Reply-To: David Muir Sharnoff 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/43995; it has been noted by GNATS. From: David Muir Sharnoff To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/43995: ls -B isn't complete Date: Sat, 12 Oct 2002 21:24:03 -0700 I would like to note that Linux's ls has a -b flag that is analogous to FreeBSD ls's -B. The Linux version is not broken. This leads to a query: why are the Linux & FreeBSD ls programs so different? For reference, I was looking at Debian with a 2.4.19 kernel. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message