From owner-freebsd-bugs Sun Nov 17 5: 0:10 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 1EA6737B401 for ; Sun, 17 Nov 2002 05:00:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C117A43E8A for ; Sun, 17 Nov 2002 05:00:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHD06x3007501 for ; Sun, 17 Nov 2002 05:00:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHD06uI007498; Sun, 17 Nov 2002 05:00:06 -0800 (PST) Date: Sun, 17 Nov 2002 05:00:06 -0800 (PST) Message-Id: <200211171300.gAHD06uI007498@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Philipp Mergenthaler Subject: Re: i386/40132: Enabling the joystick interface on es137x pci sound cards Reply-To: Philipp Mergenthaler 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/40132; it has been noted by GNATS. From: Philipp Mergenthaler To: freebsd-gnats-submit@FreeBSD.org, rombios@acedsl.com Cc: Subject: Re: i386/40132: Enabling the joystick interface on es137x pci sound cards Date: Sun, 17 Nov 2002 13:55:50 +0100 Could somebody please commit the patch from this PR? I can confirm that it works (i.e. makes the joystick usable), at least on es1371-compatible sound cards. Also, I think kern/20297 could then be closed, too. (That patch is only for es1370 and is slightly different in that it sets the flag CTRL_UART_EN, too. I don't see why that should be necessary and Linux's driver for the es1370 doesn't seem to do it either.) The original patch from this PR, which is for -stable, doesn't apply cleanly to -current and there's also a trailing blank. Below is a cleaned up version of "rombios"'s patch for -current. Thanks, Philipp Index: es137x.c =================================================================== RCS file: /ncvs/src/sys/dev/sound/pci/es137x.c,v retrieving revision 1.42 diff -c -r1.42 es137x.c *** es137x.c 28 Apr 2002 22:38:23 -0000 1.42 --- es137x.c 17 Nov 2002 12:09:07 -0000 *************** *** 470,476 **** static int es1370_init(struct es_info *es) { ! es->ctrl = CTRL_CDC_EN | CTRL_SERR_DIS | (DAC2_SRTODIV(DSP_DEFAULT_SPEED) << CTRL_SH_PCLKDIV); bus_space_write_4(es->st, es->sh, ES1370_REG_CONTROL, es->ctrl); --- 470,476 ---- static int es1370_init(struct es_info *es) { ! es->ctrl = CTRL_CDC_EN | CTRL_JYSTK_EN | CTRL_SERR_DIS | (DAC2_SRTODIV(DSP_DEFAULT_SPEED) << CTRL_SH_PCLKDIV); bus_space_write_4(es->st, es->sh, ES1370_REG_CONTROL, es->ctrl); *************** *** 498,504 **** if (debug > 0) printf("es_init\n"); es->num = 0; ! es->ctrl = 0; es->sctrl = 0; /* initialize the chips */ if ((devid == ES1371_PCI_ID && revid == ES1371REV_ES1373_8) || --- 498,504 ---- if (debug > 0) printf("es_init\n"); es->num = 0; ! es->ctrl = CTRL_JYSTK_EN; es->sctrl = 0; /* initialize the chips */ if ((devid == ES1371_PCI_ID && revid == ES1371REV_ES1373_8) || *************** *** 516,524 **** bus_space_write_4(es->st, es->sh, ES1370_REG_SERIAL_CONTROL, es->sctrl); bus_space_write_4(es->st, es->sh, ES1371_REG_LEGACY, 0); /* AC'97 warm reset to start the bitclk */ ! bus_space_write_4(es->st, es->sh, ES1371_REG_LEGACY, es->ctrl | ES1371_SYNC_RES); DELAY(2000); ! bus_space_write_4(es->st, es->sh, ES1370_REG_SERIAL_CONTROL, es->ctrl); /* Init the sample rate converter */ bus_space_write_4(es->st, es->sh, ES1371_REG_SMPRATE, ES1371_DIS_SRC); for (idx = 0; idx < 0x80; idx++) --- 516,525 ---- bus_space_write_4(es->st, es->sh, ES1370_REG_SERIAL_CONTROL, es->sctrl); bus_space_write_4(es->st, es->sh, ES1371_REG_LEGACY, 0); /* AC'97 warm reset to start the bitclk */ ! bus_space_write_4(es->st, es->sh, ES1370_REG_CONTROL, es->ctrl); /*added CTRL_JYSTK_EN*/ ! bus_space_write_4(es->st, es->sh, ES1371_REG_LEGACY,ES1371_SYNC_RES); DELAY(2000); ! bus_space_write_4(es->st, es->sh, ES1370_REG_SERIAL_CONTROL, es->sctrl); /* Init the sample rate converter */ bus_space_write_4(es->st, es->sh, ES1371_REG_SMPRATE, ES1371_DIS_SRC); for (idx = 0; idx < 0x80; idx++) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 7: 0:10 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 F1CE537B401 for ; Sun, 17 Nov 2002 07:00:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25D6F43E4A for ; Sun, 17 Nov 2002 07:00:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHF04x3080272 for ; Sun, 17 Nov 2002 07:00:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHF0404080271; Sun, 17 Nov 2002 07:00:04 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A4437B401 for ; Sun, 17 Nov 2002 06:55:07 -0800 (PST) Received: from mta.progon.net (mta.progon.net [62.65.155.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E4A943E75 for ; Sun, 17 Nov 2002 06:55:05 -0800 (PST) (envelope-from wiwi@thor.progon.net) Received: from thor.progon.net (localhost [127.0.0.1]) by mta.progon.net (8.12.5/8.12.0.Beta12) with ESMTP id gAHEse9P067854 for ; Sun, 17 Nov 2002 14:54:40 GMT Received: (from wiwi@localhost) by thor.progon.net (8.12.5/8.12.0.Beta12) id gAHEseEC067853; Sun, 17 Nov 2002 14:54:40 GMT Message-Id: <200211171454.gAHEseEC067853@thor.progon.net> Date: Sun, 17 Nov 2002 14:54:40 GMT From: wiwi@progon.net Reply-To: wiwi@progon.net To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/45373: softupdate / fs damaged after loss of power / CG 8: Bad Magic Number 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: 45373 >Category: kern >Synopsis: softupdate / fs damaged after loss of power / CG 8: Bad Magic Number >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 Nov 17 07:00:04 PST 2002 >Closed-Date: >Last-Modified: >Originator: wiwi@progon.net >Release: FreeBSD 4.7-STABLE i386 >Organization: progon network engineering >Environment: System: FreeBSD heimdall.progon.net 4.7-STABLE FreeBSD 4.7-STABLE #4: Mon Nov 11 01:14:25 CET 2002 root@heimdall.progon.net:/usr/src/sys/compile/heimdall i386 >Description: After a loss of power I often get the following error message when the system restarts. The problem mostly happens on my logging slice (/var/log) but the root slice was also stuck from this problem. /dev/ad0s1e: CG 8: BAD MAGIC NUMBER /dev/ad0s1e: UNEXPECTED SOFTUPDATE INCONSITENCY; RUN fsck MANUALLY Some files *are* damaged after fsck, contents are lost (or are replaced by random data). This happend to three indepent computer at our site, however all of these three PCs were Compaq Evo D51s/2.4Ghz. heimdall# tunefs -p /dev/ad0s1e (/var/log) tunefs: soft updates: (-n) enabled tunefs: maximum contiguous block count: (-a) 7 tunefs: rotational delay between contiguous blocks: (-d) 0 ms tunefs: maximum blocks per file in a cylinder group: (-e) 4096 tunefs: average file size: (-f) 16384 tunefs: average number of files in a directory: (-s) 64 tunefs: minimum percentage of free space: (-m) 8% tunefs: optimization preference: (-o) time - heimdall# tunefs -p /dev/ad0s1a (/) tunefs: soft updates: (-n) enabled tunefs: maximum contiguous block count: (-a) 7 tunefs: rotational delay between contiguous blocks: (-d) 0 ms tunefs: maximum blocks per file in a cylinder group: (-e) 4096 tunefs: average file size: (-f) 16384 tunefs: average number of files in a directory: (-s) 64 tunefs: minimum percentage of free space: (-m) 8% tunefs: optimization preference: (-o) time - uname -a: FreeBSD heimdall.progon.net 4.7-STABLE FreeBSD 4.7-STABLE #2: Mon Oct 21 12:02:42 GMT 2002 wiwi@heimdall.progon.net:/usr/src/sys /compile/heimdall i386 - tail /log/messages: Nov 11 08:56:59 heimdall Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Nov 11 08:56:59 heimdall The Regents of the University of California. All rights reserved. Nov 11 08:56:59 heimdall FreeBSD 4.7-STABLE #2: Mon Oct 21 12:02:42 GMT 2002 Nov 11 08:56:59 heimdall wiwi@heimdall.progon.net:/usr/src/sys/compile/heimdall Nov 11 08:56:59 heimdall Timecounter "i8254" frequency 1193182 Hz Nov 11 08:56:59 heimdall CPU: Pentium 4 (2392.04-MHz 686-class CPU) Nov 11 08:56:59 heimdall Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Nov 11 08:56:59 heimdall Features=0x3febfbff,ACC> Nov 11 08:56:59 heimdall real memory = 260046848 (253952K bytes) Nov 11 08:56:59 heimdall avail memory = 249626624 (243776K bytes) Nov 11 08:56:59 heimdall Preloaded elf kernel "kernel" at 0xc035b000. Nov 11 08:56:59 heimdall Pentium Pro MTRR support enabled Nov 11 08:56:59 heimdall md0: Malloc disk Nov 11 08:56:59 heimdall Using $PIR table, 10 entries at 0xc00ecef0 Nov 11 08:56:59 heimdall npx0: on motherboard Nov 11 08:56:59 heimdall npx0: INT 16 interface Nov 11 08:56:59 heimdall pcib0: on motherboard Nov 11 08:56:59 heimdall pci0: on pcib0 Nov 11 08:56:59 heimdall pci0: at 2.0 irq 5 Nov 11 08:56:59 heimdall uhci0: port 0x2440-0x245f irq 5 at device 29.0 on pci0 Nov 11 08:56:59 heimdall usb0: on uhci0 Nov 11 08:56:59 heimdall usb0: USB revision 1.0 Nov 11 08:56:59 heimdall uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 11 08:56:59 heimdall uhub0: 2 ports with 2 removable, self powered Nov 11 08:56:59 heimdall uhci1: port 0x2460-0x247f irq 11 at device 29.1 on pci0 Nov 11 08:56:59 heimdall usb1: on uhci1 Nov 11 08:56:59 heimdall usb1: USB revision 1.0 Nov 11 08:56:59 heimdall uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 11 08:56:59 heimdall uhub1: 2 ports with 2 removable, self powered Nov 11 08:56:59 heimdall pci0: at 29.7 irq 5 Nov 11 08:56:59 heimdall pcib1: at device 30.0 on pci0 Nov 11 08:56:59 heimdall pci5: on pcib1 Nov 11 08:56:59 heimdall fxp0: port 0x1000-0x103f mem 0xfc500000-0xfc500fff irq 10 at device 8.0 on pci5 Nov 11 08:56:59 heimdall fxp0: Ethernet address 00:08:02:a8:92:fa Nov 11 08:56:59 heimdall inphy0: on miibus0 Nov 11 08:56:59 heimdall inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 11 08:56:59 heimdall isab0: at device 31.0 on pci0 Nov 11 08:56:59 heimdall isa0: on isab0 Nov 11 08:56:59 heimdall atapci0: port 0x24a0-0x24af,0x24c4-0x24c7,0x24b8-0x24bf,0x24c0-0x24c3,0x24b0 -0x24b7 irq 10 at device 31.1 on pci0 Nov 11 08:56:59 heimdall ata0: at 0x1f0 irq 14 on atapci0 Nov 11 08:56:59 heimdall ata1: at 0x170 irq 15 on atapci0 Nov 11 08:56:59 heimdall pci0: (vendor=0x8086, dev=0x24c5) at 31.5 irq 5 Nov 11 08:56:59 heimdall fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 Nov 11 08:56:59 heimdall fdc0: FIFO enabled, 8 bytes threshold Nov 11 08:56:59 heimdall fd0: <1440-KB 3.5" drive> on fdc0 drive 0 Nov 11 08:56:59 heimdall atkbdc0: at port 0x60,0x64 on isa0 Nov 11 08:56:59 heimdall atkbd0: flags 0x1 irq 1 on atkbdc0 Nov 11 08:56:59 heimdall kbd0 at atkbd0 Nov 11 08:56:59 heimdall psm0: irq 12 on atkbdc0 Nov 11 08:56:59 heimdall psm0: model IntelliMouse, device ID 3 Nov 11 08:56:59 heimdall vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Nov 11 08:56:59 heimdall sc0: at flags 0x100 on isa0 Nov 11 08:56:59 heimdall sc0: VGA <16 virtual consoles, flags=0x300> Nov 11 08:56:59 heimdall sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 Nov 11 08:56:59 heimdall sio0: type 16550A Nov 11 08:56:59 heimdall sio1 at port 0x2f8-0x2ff irq 3 on isa0 Nov 11 08:56:59 heimdall sio1: type 16550A Nov 11 08:56:59 heimdall ppc0: at port 0x378-0x37f irq 7 on isa0 Nov 11 08:56:59 heimdall ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode Nov 11 08:56:59 heimdall ppc0: FIFO with 16/16/13 bytes threshold Nov 11 08:56:59 heimdall ppi0: on ppbus0 Nov 11 08:56:59 heimdall lpt0: on ppbus0 Nov 11 08:56:59 heimdall lpt0: Interrupt-driven port Nov 11 08:56:59 heimdall IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 999 packets/entry by default Nov 11 08:56:59 heimdall IPv6 packet filtering initialized, default to accept, logging limited to 999 packets/entry Nov 11 08:56:59 heimdall IPsec: Initialized Security Association Processing. Nov 11 08:56:59 heimdall ad0: 38166MB [77545/16/63] at ata0-master UDMA100 Nov 11 08:56:59 heimdall acd0: DVD-ROM at ata1-master PIO4 Nov 11 08:56:59 heimdall Mounting root from ufs:/dev/ad0s1a Nov 11 08:56:59 heimdall VESA: v3.0, 8000k memory, flags:0x1, mode table:0xc13702a0 (1000040) Nov 11 08:56:59 heimdall VESA: Brookdale-G Graphics Chip Accelerated VGA BIOS Nov 11 08:56:59 heimdall WARNING: pseudo-random number generator used for IPsec processing Nov 11 08:56:59 heimdall squid[134]: Configuring Sibling pb.us.ircache.net/3128/3130 Nov 11 08:56:59 heimdall squid[134]: Configuring Sibling sj.us.ircache.net/3128/3130 Nov 11 08:57:46 heimdall su: wiwi to root on /dev/ttyp0 Nov 11 08:57:48 heimdall ntpd[138]: kernel time discipline status change 2041 Nov 11 09:13:14 heimdall squid[134]: Detected DEAD Sibling: sj.us.ircache.net/3128/3130 Nov 11 09:13:15 heimdall squid[134]: Detected REVIVED Sibling: sj.us.ircache.net/3128/3130 >How-To-Repeat: >Fix: unknown >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 Nov 17 7:39:56 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 47F5337B401; Sun, 17 Nov 2002 07:39:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAA7C43E75; Sun, 17 Nov 2002 07:39:54 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHFdsx3026314; Sun, 17 Nov 2002 07:39:54 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHFdr4V026148; Sun, 17 Nov 2002 07:39:53 -0800 (PST) Date: Sun, 17 Nov 2002 07:39:53 -0800 (PST) From: Mike Barcroft Message-Id: <200211171539.gAHFdr4V026148@freefall.freebsd.org> To: rse@engelschall.com, mike@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/44377: multiple declaration of __mbstate_t (sys/_types.h & machine/ansi.h) breaks gcc 3.2 building 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: multiple declaration of __mbstate_t (sys/_types.h & machine/ansi.h) breaks gcc 3.2 building State-Changed-From-To: open->closed State-Changed-By: mike State-Changed-When: Sun Nov 17 07:32:06 PST 2002 State-Changed-Why: machine/ansi.h is a stale header; it was deleted from cvs when sys/_types.h was added. Unfortunately there's no standard system to delete stale headers with installworld. GCC 3.2 and earlier need hacks to cope with hacks about knowing FreeBSD implementation details. You can apply rev 1.16 gcc/gcc/ginclude/stddef.h (GCC CVS) to older versions of GCC or do something like rev 1.4 of ports/lang/gcc32/files/patch-va (FreeBSD CVS). http://www.freebsd.org/cgi/query-pr.cgi?pr=44377 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 7:59: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 ABE0C37B401; Sun, 17 Nov 2002 07:59:35 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E9DE43E75; Sun, 17 Nov 2002 07:59:35 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHFxZx3053451; Sun, 17 Nov 2002 07:59:35 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHFxVKm053440; Sun, 17 Nov 2002 07:59:31 -0800 (PST) Date: Sun, 17 Nov 2002 07:59:31 -0800 (PST) From: Mike Barcroft Message-Id: <200211171559.gAHFxVKm053440@freefall.freebsd.org> To: gdc@iki.fi, mike@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/37347: _POSIX_THREADS defined but sysconf(_SC_THREADS) fails to compile 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: _POSIX_THREADS defined but sysconf(_SC_THREADS) fails to compile State-Changed-From-To: open->closed State-Changed-By: mike State-Changed-When: Sun Nov 17 07:58:49 PST 2002 State-Changed-Why: This issue has been fixed in -current. http://www.freebsd.org/cgi/query-pr.cgi?pr=37347 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 8:17: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 9FAE637B401; Sun, 17 Nov 2002 08:17:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5144743E3B; Sun, 17 Nov 2002 08:17:32 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHGHWx3067010; Sun, 17 Nov 2002 08:17:32 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHGHWq3067005; Sun, 17 Nov 2002 08:17:32 -0800 (PST) Date: Sun, 17 Nov 2002 08:17:32 -0800 (PST) From: Mike Barcroft Message-Id: <200211171617.gAHGHWq3067005@freefall.freebsd.org> To: mike@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-standards@FreeBSD.org Subject: Re: bin/43426: mlockall and munlockall system calls are missing from FreeBSD 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: mlockall and munlockall system calls are missing from FreeBSD Responsible-Changed-From-To: freebsd-bugs->freebsd-standards Responsible-Changed-By: mike Responsible-Changed-When: Sun Nov 17 08:16:03 PST 2002 Responsible-Changed-Why: Standards issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=43426 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 8:40:12 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 5390337B401; Sun, 17 Nov 2002 08:40:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03CF043E3B; Sun, 17 Nov 2002 08:40:11 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHGeAx3075274; Sun, 17 Nov 2002 08:40:10 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHGeAOm075270; Sun, 17 Nov 2002 08:40:10 -0800 (PST) Date: Sun, 17 Nov 2002 08:40:10 -0800 (PST) From: Mike Barcroft Message-Id: <200211171640.gAHGeAOm075270@freefall.freebsd.org> To: durian@boogie.com, mike@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/43270: select(2) man page missing 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: select(2) man page missing State-Changed-From-To: open->closed State-Changed-By: mike State-Changed-When: Sun Nov 17 08:37:41 PST 2002 State-Changed-Why: Fixed in -current by removing 's dependency on bcopy() and bzero(), and by documenting as the appropriate include for select(). http://www.freebsd.org/cgi/query-pr.cgi?pr=43270 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 8:57:45 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 4952737B401; Sun, 17 Nov 2002 08:57:45 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFA4B43E6E; Sun, 17 Nov 2002 08:57:44 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHGvix3083668; Sun, 17 Nov 2002 08:57:44 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHGvi70083664; Sun, 17 Nov 2002 08:57:44 -0800 (PST) Date: Sun, 17 Nov 2002 08:57:44 -0800 (PST) From: Mike Barcroft Message-Id: <200211171657.gAHGvi70083664@freefall.freebsd.org> To: mike@FreeBSD.org, freebsd-bugs@FreeBSD.org, wollman@FreeBSD.org Subject: Re: kern/28260: UIO_MAXIOV needs to be made public 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: UIO_MAXIOV needs to be made public Responsible-Changed-From-To: freebsd-bugs->wollman Responsible-Changed-By: mike Responsible-Changed-When: Sun Nov 17 08:56:50 PST 2002 Responsible-Changed-Why: Over to Garrett as MFC reminder. http://www.freebsd.org/cgi/query-pr.cgi?pr=28260 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 9: 4:56 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 4286137B401; Sun, 17 Nov 2002 09:04:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E929643E3B; Sun, 17 Nov 2002 09:04:55 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHH4tx3087724; Sun, 17 Nov 2002 09:04:55 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHH4s9s087720; Sun, 17 Nov 2002 09:04:54 -0800 (PST) Date: Sun, 17 Nov 2002 09:04:54 -0800 (PST) From: Mike Barcroft Message-Id: <200211171704.gAHH4s9s087720@freefall.freebsd.org> To: dwhedon@gordian.com, mike@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/23366: mmap() non conforming Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: mmap() non conforming State-Changed-From-To: patched->closed State-Changed-By: mike State-Changed-When: Sun Nov 17 09:04:09 PST 2002 State-Changed-Why: I don't plan to MFC this, so there isn't much point in keeping it open. http://www.freebsd.org/cgi/query-pr.cgi?pr=23366 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 14: 0:20 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 A576137B401 for ; Sun, 17 Nov 2002 14:00:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9938443E77 for ; Sun, 17 Nov 2002 14:00:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHM0Gx3005923 for ; Sun, 17 Nov 2002 14:00:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHM0GUP005921; Sun, 17 Nov 2002 14:00:16 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7188A37B401 for ; Sun, 17 Nov 2002 13:54:07 -0800 (PST) Received: from alo.louko.com (x1.louko.com [195.218.71.106]) by mx1.FreeBSD.org (Postfix) with SMTP id ECD2143E3B for ; Sun, 17 Nov 2002 13:54:05 -0800 (PST) (envelope-from alo@alo.louko.com) Received: (qmail 28053 invoked by uid 406); 17 Nov 2002 21:54:03 -0000 Message-Id: <20021117215403.28052.qmail@alo.louko.com> Date: 17 Nov 2002 21:54:03 -0000 From: Antti Louko Reply-To: Antti Louko To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/45376: Coding error in /usr/src/contrib/bind/bin/dig/dig.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: 45376 >Category: bin >Synopsis: Coding error in /usr/src/contrib/bind/bin/dig/dig.c >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 Nov 17 14:00:12 PST 2002 >Closed-Date: >Last-Modified: >Originator: Antti Louko >Release: FreeBSD 4.6.2-RELEASE i386 >Organization: >Environment: System: FreeBSD xxxx.louko.com 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #4: Tue Oct 22 21:29:10 EEST 2002 root@alo.louko.com:/u9/src/sys/compile/ALO i386 >Description: Coding error in /usr/src/contrib/bind/bin/dig/dig.c: static void reverse6(char *domain, struct in6_addr *in6) { sprintf(domain, "%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.ip6.arpa", in6->s6_addr[15] & 0x0f, (in6->s6_addr[15] >> 4) & 0x0f, in6->s6_addr[14] & 0x0f, (in6->s6_addr[14] >> 4) & 0x0f, in6->s6_addr[13] & 0x0f, (in6->s6_addr[13] >> 4) & 0x0f, in6->s6_addr[12] & 0x0f, (in6->s6_addr[12] >> 4) & 0x0f, in6->s6_addr[11] & 0x0f, (in6->s6_addr[11] >> 4) & 0x0f, in6->s6_addr[10] & 0x0f, (in6->s6_addr[10] >> 4) & 0x0f, in6->s6_addr[9] & 0x0f, (in6->s6_addr[9] >> 4) & 0x0f, in6->s6_addr[8] & 0x0f, (in6->s6_addr[8] >> 4) & 0x0f, in6->s6_addr[7] & 0x0f, (in6->s6_addr[7] >> 4) & 0x0f, in6->s6_addr[6] & 0x0f, (in6->s6_addr[6] >> 4) & 0x0f, in6->s6_addr[5] & 0x0f, (in6->s6_addr[5] >> 4) & 0x0f, in6->s6_addr[4] & 0x0f, (in6->s6_addr[4] >> 4) & 0x0f, in6->s6_addr[6] & 0x0f, (in6->s6_addr[3] >> 4) & 0x0f, in6->s6_addr[2] & 0x0f, (in6->s6_addr[2] >> 4) & 0x0f, in6->s6_addr[1] & 0x0f, (in6->s6_addr[1] >> 4) & 0x0f, in6->s6_addr[0] & 0x0f, (in6->s6_addr[0] >> 4) & 0x0f); } dig doesn't work with -x option and IPv6 aadresses. >How-To-Repeat: See wrong ip6.arpa address in ;; QUERY SECTION: % dig -x 2001:638:a00::2 any ; <<>> DiG 8.3 <<>> -x any ;; res options: init recurs defnam dnsrch ;; got answer: ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 2 ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 ;; QUERY SECTION: ;; 2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.a.0.0.3.6.0.1.0.0.2.ip6.arpa, type = ANY, class = IN >Fix: Change line in6->s6_addr[6] & 0x0f, (in6->s6_addr[3] >> 4) & 0x0f, into in6->s6_addr[3] & 0x0f, (in6->s6_addr[3] >> 4) & 0x0f, Report the bug to ISC, too, as it is still in the latest BIND 8 release. >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 Nov 17 14:40: 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 0E28A37B401 for ; Sun, 17 Nov 2002 14:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC0D843E3B for ; Sun, 17 Nov 2002 14:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHMe3x3019555 for ; Sun, 17 Nov 2002 14:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHMe3ui019554; Sun, 17 Nov 2002 14:40:03 -0800 (PST) Date: Sun, 17 Nov 2002 14:40:03 -0800 (PST) Message-Id: <200211172240.gAHMe3ui019554@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Heiko Weber" Subject: Re: kern/44950: SMP kernel crash in vm_page_free: freeing wired page Reply-To: "Heiko Weber" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/44950; it has been noted by GNATS. From: "Heiko Weber" To: , Cc: Subject: Re: kern/44950: SMP kernel crash in vm_page_free: freeing wired page Date: Sun, 17 Nov 2002 23:37:22 +0100 Hmm, I just found the bug report #29295 told about the same problem. Maybe this helps, too. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 15:34:22 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 AB69437B401; Sun, 17 Nov 2002 15:34:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CC4743E88; Sun, 17 Nov 2002 15:34:21 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from freefall.freebsd.org (luigi@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHNYLx3036491; Sun, 17 Nov 2002 15:34:21 -0800 (PST) (envelope-from luigi@freefall.freebsd.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHNYLCS036487; Sun, 17 Nov 2002 15:34:21 -0800 (PST) Date: Sun, 17 Nov 2002 15:34:21 -0800 (PST) From: Luigi Rizzo Message-Id: <200211172334.gAHNYLCS036487@freefall.freebsd.org> To: luigi@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: kern/43769: ipfw kernel panic 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 kernel panic Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: luigi Responsible-Changed-When: Sun Nov 17 15:33:51 PST 2002 Responsible-Changed-Why: remember to look at it (though it is probably fixed on recent -current and -stable) http://www.freebsd.org/cgi/query-pr.cgi?pr=43769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 15:35:50 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 514A837B401; Sun, 17 Nov 2002 15:35:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77B5643E3B; Sun, 17 Nov 2002 15:35:48 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from freefall.freebsd.org (luigi@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHNZmx3036586; Sun, 17 Nov 2002 15:35:48 -0800 (PST) (envelope-from luigi@freefall.freebsd.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHNZmjB036582; Sun, 17 Nov 2002 15:35:48 -0800 (PST) Date: Sun, 17 Nov 2002 15:35:48 -0800 (PST) From: Luigi Rizzo Message-Id: <200211172335.gAHNZmjB036582@freefall.freebsd.org> To: luigi@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: kern/43352: ipfw aborts processing file/pipe when deletes nonexistent rule 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 aborts processing file/pipe when deletes nonexistent rule Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: luigi Responsible-Changed-When: Sun Nov 17 15:35:26 PST 2002 Responsible-Changed-Why: remember to look at it. http://www.freebsd.org/cgi/query-pr.cgi?pr=43352 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 15:37:30 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 DDBDC37B401; Sun, 17 Nov 2002 15:37:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E09243E6E; Sun, 17 Nov 2002 15:37:29 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from freefall.freebsd.org (luigi@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAHNbTx3036657; Sun, 17 Nov 2002 15:37:29 -0800 (PST) (envelope-from luigi@freefall.freebsd.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAHNbT8f036653; Sun, 17 Nov 2002 15:37:29 -0800 (PST) Date: Sun, 17 Nov 2002 15:37:29 -0800 (PST) From: Luigi Rizzo Message-Id: <200211172337.gAHNbT8f036653@freefall.freebsd.org> To: luigi@FreeBSD.org, freebsd-bugs@FreeBSD.org, luigi@FreeBSD.org Subject: Re: kern/44417: ipfw layer2 rules are not checked for ether_output_frame() on bridged interface 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 layer2 rules are not checked for ether_output_frame() on bridged interface Responsible-Changed-From-To: freebsd-bugs->luigi Responsible-Changed-By: luigi Responsible-Changed-When: Sun Nov 17 15:37:15 PST 2002 Responsible-Changed-Why: need to look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=44417 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 16:22:55 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 AD1A437B401; Sun, 17 Nov 2002 16:22:52 -0800 (PST) Received: from chat.ru (d036.p9.col.ru [212.248.7.36]) by mx1.FreeBSD.org (Postfix) with SMTP id 7142D43E4A; Sun, 17 Nov 2002 16:22:42 -0800 (PST) (envelope-from 123@123.ru) From: 123@123.ru <123@123.ru> Subject: Офисная техника, продажа, ремонт и обслуживание. X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Mon, 18 Nov 2002 03:22:51 +0300 Message-Id: <20021118002242.7142D43E4A@mx1.FreeBSD.org> To: undisclosed-recipients: ; Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Уважаемые господа! Фирма "Техника для офиса", работающая на рынке более 10 лет, официальный дилер SHARP, экстра - реселлер XEROX, предлагает Вам долгосрочное сотрудничество в области комплексного обслуживания, поставок офисной оргтехники и всего необходимого оборудования оптом и в розницу. Мы предлагаем : 1. Ремонт копировальных аппаратов, принтеров, факсов, заправку картриджей. Возможен выезд инженера. 2. Поставку копиров SHARP, XEROX, CANON, принтеров XEROX, факсов SHARP, PANASONIC, ламинаторов GMP, пишущих машинок CANON, OPTIMA, OLIVETTI, брошюровщиков RENZ, уничтожителей документов HSM, SHRED-ED, BLS, калькуляторов CITIZEN. 3. Поставку расходных материалов для этих и других марок техники. По интересующим Вас вопросам обращайтесь: по телефону: (095) 200-41-08, 925-61-43, 299-47-18. Предъявителю данного письма- скидка! -------------------------------------------------------------------------------------------------------------------------------------------------------------------- Извините, если это письмо доставило Вам неудобство. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 20:39:15 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 E256337B401; Sun, 17 Nov 2002 20:39:09 -0800 (PST) Received: from relay.kiev.sovam.com (relay.kiev.sovam.com [212.109.32.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE5243E88; Sun, 17 Nov 2002 20:39:09 -0800 (PST) (envelope-from vsevolod_s@mail.ru) Received: from [62.64.118.56] (helo=312271) by relay.kiev.sovam.com with smtp (Exim 3.34 #1) id 18Ddge-000I5x-00; Mon, 18 Nov 2002 06:39:04 +0200 From: "gs kurator" To: "50" Subject: Golden Stream - Дополнение! Reply-To: kurator_gs@torba.com X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Organization: GS Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Thu, 19 Dec 2002 06:37:03 +0200 Message-Id: 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 Кому надоел - прошу простить! Тем, кто заинтересовался GS - пишите на stegel@hotmail.com или на любой из ранее указанных адресов, кроме yahoo - его уже нет. С уважением. ==================================================================== Рассылка произведена в соответствии с ч.4 ст.29 Конституции РФ, является разовой, и не навязывает платных услуг. Ваш электронный адрес получен из открытых источников. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 21: 3:34 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 3D1A737B401; Sun, 17 Nov 2002 21:03:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E259B43E75; Sun, 17 Nov 2002 21:03:33 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from freefall.freebsd.org (bde@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAI53Xx3027540; Sun, 17 Nov 2002 21:03:33 -0800 (PST) (envelope-from bde@freefall.freebsd.org) Received: (from bde@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAI53Xb7027536; Sun, 17 Nov 2002 21:03:33 -0800 (PST) Date: Sun, 17 Nov 2002 21:03:33 -0800 (PST) From: Bruce Evans Message-Id: <200211180503.gAI53Xb7027536@freefall.freebsd.org> To: sa2c@sa2c.net, bde@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/41528: better stack alignment patch for lib/csu/i386-elf/ 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: better stack alignment patch for lib/csu/i386-elf/ State-Changed-From-To: open->closed State-Changed-By: bde State-Changed-When: Sun Nov 17 21:02:01 PST 2002 State-Changed-Why: Fixed in revs.1.10 (-current) and 1.4.2.2 (RELENG_4) of crt1.c. http://www.freebsd.org/cgi/query-pr.cgi?pr=41528 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 21:15:49 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 F25F537B401; Sun, 17 Nov 2002 21:15:48 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EEB543E4A; Sun, 17 Nov 2002 21:15:48 -0800 (PST) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (dougb@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAI5Fmx3034456; Sun, 17 Nov 2002 21:15:48 -0800 (PST) (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAI5FlXq034452; Sun, 17 Nov 2002 21:15:47 -0800 (PST) Date: Sun, 17 Nov 2002 21:15:47 -0800 (PST) From: Doug Barton Message-Id: <200211180515.gAI5FlXq034452@freefall.freebsd.org> To: alo@iki.fi, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, dougb@FreeBSD.org Subject: Re: bin/45376: Coding error in /usr/src/contrib/bind/bin/dig/dig.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: Coding error in /usr/src/contrib/bind/bin/dig/dig.c State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Nov 17 21:13:45 PST 2002 State-Changed-Why: Duplicate of bin/41388. Please take a look at that PR for the solution. Responsible-Changed-From-To: freebsd-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Sun Nov 17 21:13:45 PST 2002 Responsible-Changed-Why: I closed bin/41388 too. http://www.freebsd.org/cgi/query-pr.cgi?pr=45376 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Nov 17 21: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 9D5FE37B404 for ; Sun, 17 Nov 2002 21:40:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B66A643E88 for ; Sun, 17 Nov 2002 21:40:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAI5e1x3038620 for ; Sun, 17 Nov 2002 21:40:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAI5e13x038619; Sun, 17 Nov 2002 21:40:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D06DF37B401 for ; Sun, 17 Nov 2002 21:37:55 -0800 (PST) Received: from ws1-6.us4.outblaze.com (205-158-62-53.outblaze.com [205.158.62.53]) by mx1.FreeBSD.org (Postfix) with SMTP id 5345243E75 for ; Sun, 17 Nov 2002 21:37:49 -0800 (PST) (envelope-from gadothaah@programmer.net) Received: (qmail 18279 invoked by uid 1001); 18 Nov 2002 05:37:48 -0000 Received: from [195.46.110.1] by ws1-6.us4.outblaze.com with http for gadothaah@programmer.net; Mon, 18 Nov 2002 00:37:48 -0500 Message-Id: <20021118053748.18278.qmail@mail.com> Date: Mon, 18 Nov 2002 00:37:48 -0500 From: "Vadim Stanovov" To: FreeBSD-gnats-submit@FreeBSD.org Subject: i386/45383: Failed installation FreeBSD 4.7-RELEASE and 4.7-STABLE with disks attached to Mylex AcceleRAID 170 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: 45383 >Category: i386 >Synopsis: Failed installation FreeBSD 4.7-RELEASE and 4.7-STABLE with disks attached to Mylex AcceleRAID 170 >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 Nov 17 21:40:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Vadim Stanovov >Release: FreeBSD 4.7-STABLE i386 >Organization: >Environment: System: FreeBSD bsdnew.xxxxx.ru 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Nov 17 18:5:50 GMT 2002 user@gogogo.xxxxx.ru:/usr/obj/usr/src/sys/GENERIC i386 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.7-STABLE #0: Sun Nov 17 18:25:50 GMT 2002 root@gogogo.xxxxx.ru:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: Pentium 4 (1893.87-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf12 Stepping = 2 Features=0x3febfbff,ACC> real memory = 1073479680 (1048320K bytes) avail memory = 1039671296 (1015304K bytes) Preloaded elf kernel "kernel" at 0xc0514000. Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 13 entries at 0xc00f2cd0 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib2: at device 30.0 on pci0 pci2: on pcib2 fxp0: port 0xdf00-0xdf3f mem 0xfeae7000-0xfeae7fff irq 11 at device 8.0 on pci2 fxp0: Ethernet address 00:03:47:d3:5c:34 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: port 0xde80-0xdebf mem 0xfe900000-0xfe9fffff,0xfeae6000-0xfeae6fff irq 9 at device 9.0 on pci2 fxp1: Ethernet address 00:02:b3:24:6d:32 inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto mly0: mem 0xe8000000-0xebffffff irq 10 at device 10.0 on pci2 mly0: AcceleRAID 170 , 1 channel, firmware 7.01-0-00 (20020418), 64MB RAM pci2: at 11.0 irq 11 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xef40-0xef5f irq 9 at device 31.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: (vendor=0x8086, dev=0x2443) at 31.3 irq 15 uhci1: port 0xef80-0xef9f irq 11 at device 31.4 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhub2: Intel product 0x1122, class 9/0, rev 1.10/0.00, addr 2 device_probe_and_attach: uhub2 attach returned 6 uhub2: Intel product 0x1122, class 9/0, rev 1.10/0.00, addr 2 device_probe_and_attach: uhub2 attach returned 6 pci0: (vendor=0x8086, dev=0x2445) at 31.5 irq 15 orm0:
TiNives Custom Shop provides specialty handle coatings, inlay of preciuos metals, and titanium contoured handles with a variety of texturing. Blade material consist of an assortment of Devin Thomas damascus, Damasteel damascu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 3: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 256B237B401 for ; Thu, 21 Nov 2002 03:50:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5AC243E9E for ; Thu, 21 Nov 2002 03:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALBo3x3074575 for ; Thu, 21 Nov 2002 03:50:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALBo3ek074574; Thu, 21 Nov 2002 03:50:03 -0800 (PST) Date: Thu, 21 Nov 2002 03:50:03 -0800 (PST) Message-Id: <200211211150.gALBo3ek074574@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tom Hukins Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Tom Hukins 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/45493; it has been noted by GNATS. From: Tom Hukins To: FreeBSD-gnats-submit@freebsd.org, Kevin Oberman , Bruce Evans Cc: Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 11:42:56 +0000 I'd appreciate your feedback on this patch which fixes the ambiguous adjkerntz(8) statement in /etc/crontab and generally tidies up the grammar used in comments. Thanks, Tom Index: crontab =================================================================== RCS file: /home/ncvs/src/etc/crontab,v retrieving revision 1.31 diff -u -r1.31 crontab --- crontab 19 Feb 2001 02:47:41 -0000 1.31 +++ crontab 21 Nov 2002 10:09:19 -0000 @@ -10,18 +10,17 @@ # */5 * * * * root /usr/libexec/atrun # -# save some entropy so that /dev/random can reseed on boot +# Save some entropy so that /dev/random can reseed on boot. */11 * * * * operator /usr/libexec/save-entropy # -# rotate log files every hour, if necessary +# Rotate log files every hour, if necessary. 0 * * * * root newsyslog # -# do daily/weekly/monthly maintenance +# Perform daily/weekly/monthly maintenance. 1 3 * * * root periodic daily 15 4 * * 6 root periodic weekly 30 5 1 * * root periodic monthly # -# time zone change adjustment for wall cmos clock, -# does nothing, if you have UTC cmos clock. -# See adjkerntz(8) for details. +# Timezone adjustment for wall CMOS clock. Does nothing for UTC CMOS +# clock. See adjkerntz(8) for details. 1,31 0-5 * * * root adjkerntz -a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 4: 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 C419837B404 for ; Thu, 21 Nov 2002 04:00:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 636F243E9E for ; Thu, 21 Nov 2002 04:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALC03x3081005 for ; Thu, 21 Nov 2002 04:00:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALC03pd081004; Thu, 21 Nov 2002 04:00:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F213D37B401 for ; Thu, 21 Nov 2002 03:52:35 -0800 (PST) Received: from pat.uio.no (pat.uio.no [129.240.130.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C785E43E6E for ; Thu, 21 Nov 2002 03:52:31 -0800 (PST) (envelope-from niklasjs@ifi.uio.no) Received: from fimm.ifi.uio.no ([129.240.65.205]) by pat.uio.no with esmtp (Exim 2.12 #7) id 18Epsg-0001lR-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 21 Nov 2002 12:52:26 +0100 Received: from localhost (niklasjs@localhost) by fimm.ifi.uio.no ; Thu, 21 Nov 2002 12:52:26 +0100 (MET) Message-Id: Date: Thu, 21 Nov 2002 12:52:26 +0100 (MET) From: Niklas Johannes Saers To: FreeBSD-gnats-submit@FreeBSD.org Subject: i386/45558: mdconfig and msdosfs make fs writes hang 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: 45558 >Category: i386 >Synopsis: mdconfig and msdosfs make fs writes hang >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 21 04:00:03 PST 2002 >Closed-Date: >Last-Modified: >Originator: Niklas Saers >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD my.home.saers.com 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Nov 20 09:19:35 GMT 2002 root@my.home.saers.com:/usr/src/sys/i386/compile/my i386 Athlon 1,33/512, FreeBSD 5.0-DP2 >Description: See How-To-Repeat to get the precise thing I've done time and time again to get this happening. The problem does not happen when the image is on an ffs partition, so I suspect it's having some problems msdos-to-msdos or such. All subsequent writes to ffs partitions will stall, yet writes to the same msdos partition will go through. All processes that hang have the STATE (from 'top') set to wdrain They never come out of that state >How-To-Repeat: su cd /mnt/msdos dd if=/dev/zero bs=1024 count=760000 of=7 mdconfig -a -t vnode -u 7 -f 7 disklabel -r -w md7 auto newfs /dev/md7c mount /dev/md7c /mnt/7 chown me:mygroup /mnt/7 logout cd /mnt/msdos/dump_to_cd_dir mv * /mnt/7 >Fix: Computer cannot be shut down and power has to be taken manually >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 4:11:41 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 CA3A137B401; Thu, 21 Nov 2002 04:11:39 -0800 (PST) Received: from wec.teleline.ru (wec.teleline.ru [81.18.138.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D4AD43E4A; Thu, 21 Nov 2002 04:11:39 -0800 (PST) (envelope-from info@ruspost.ru) Received: from Sender (unknown [192.168.0.64]) by wec.teleline.ru (Postfix) with SMTP id DF41D4629E; Thu, 21 Nov 2002 12:35:08 +0300 (MSK) From: Ruspost To: "Добрый друг!" <> Subject: Руспост - бумажное письмо через интернет Organization: Ruspost Reply-To: info@ruspost.ru X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-Priority: 3 X-MSMail-Priority: Normal Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Date: Thu, 21 Nov 2002 12:36:21 +0300 Message-Id: <20021121093508.DF41D4629E@wec.teleline.ru> 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 www.ruspost.ru - отправь бумажное письмо родным и друзьям, не отходя от компьютера! "Киберписьмо" - дешевле телеграммы, быстрее обычной почты! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 4: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 C112537B401 for ; Thu, 21 Nov 2002 04:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8005F43E6E for ; Thu, 21 Nov 2002 04:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALCU3x3005907 for ; Thu, 21 Nov 2002 04:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALCU3bM005904; Thu, 21 Nov 2002 04:30:03 -0800 (PST) Date: Thu, 21 Nov 2002 04:30:03 -0800 (PST) Message-Id: <200211211230.gALCU3bM005904@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Giorgos Keramidas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/45493; it has been noted by GNATS. From: Giorgos Keramidas To: Tom Hukins Cc: bug-followup@freebsd.org Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 14:29:13 +0200 On 2002-11-21 03:50, Tom Hukins wrote: > I'd appreciate your feedback on this patch which fixes the ambiguous > adjkerntz(8) statement in /etc/crontab and generally tidies up the > grammar used in comments. It looks fine, except for one minor detail. The following is still a bit strange, since "Does nothing for UTC CMOS clock." is not a valid, complete sentence. > +# Timezone adjustment for wall CMOS clock. Does nothing for UTC CMOS > +# clock. See adjkerntz(8) for details. "This does nothing..." "It does nothing..." "adjkerntz(8) does nothing..." You can pick whichever you like :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 5: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 D497D37B404 for ; Thu, 21 Nov 2002 05:10:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75D1943E4A for ; Thu, 21 Nov 2002 05:10:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALDA5x3026420 for ; Thu, 21 Nov 2002 05:10:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALDA5Dr026412; Thu, 21 Nov 2002 05:10:05 -0800 (PST) Date: Thu, 21 Nov 2002 05:10:05 -0800 (PST) Message-Id: <200211211310.gALDA5Dr026412@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tom Hukins Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Tom Hukins 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/45493; it has been noted by GNATS. From: Tom Hukins To: Giorgos Keramidas Cc: bug-followup@freebsd.org Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 13:02:57 +0000 On Thu, Nov 21, 2002 at 02:29:13PM +0200, Giorgos Keramidas wrote: > On 2002-11-21 03:50, Tom Hukins wrote: > > The following is still a bit strange, since "Does nothing for UTC > CMOS clock." is not a valid, complete sentence. > > > +# Timezone adjustment for wall CMOS clock. Does nothing for UTC CMOS > > +# clock. See adjkerntz(8) for details. Yes, on reflection "Adjust the time zone only if the CMOS clock keeps local time. See adjkerntz(8) for details." seems clearer to me. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 5: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 A51D337B401 for ; Thu, 21 Nov 2002 05:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04BD143E97 for ; Thu, 21 Nov 2002 05:20:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALDK2x3028569 for ; Thu, 21 Nov 2002 05:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALDK2JX028568; Thu, 21 Nov 2002 05:20:02 -0800 (PST) Date: Thu, 21 Nov 2002 05:20:02 -0800 (PST) Message-Id: <200211211320.gALDK2JX028568@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ceri Davies Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Ceri Davies 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/45493; it has been noted by GNATS. From: Ceri Davies To: Tom Hukins Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 13:16:10 +0000 On Thu, Nov 21, 2002 at 05:10:05AM -0800, Tom Hukins wrote: > Yes, on reflection "Adjust the time zone only if the CMOS clock keeps > local time. See adjkerntz(8) for details." seems clearer to me. What other time does it keep? ;) "Adjust the time zone only if local time is kept by the CMOS clock" ? Ceri -- By the gems of the blood, you shall meet your end! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 5: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 A762E37B401 for ; Thu, 21 Nov 2002 05:30:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D82843E42 for ; Thu, 21 Nov 2002 05:30:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALDU3x3033346 for ; Thu, 21 Nov 2002 05:30:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALDU3kS033342; Thu, 21 Nov 2002 05:30:03 -0800 (PST) Date: Thu, 21 Nov 2002 05:30:03 -0800 (PST) Message-Id: <200211211330.gALDU3kS033342@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tom Hukins Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Tom Hukins 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/45493; it has been noted by GNATS. From: Tom Hukins To: Ceri Davies , freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 13:29:40 +0000 On Thu, Nov 21, 2002 at 01:16:10PM +0000, Ceri Davies wrote: > On Thu, Nov 21, 2002 at 05:10:05AM -0800, Tom Hukins wrote: > > > Yes, on reflection "Adjust the time zone only if the CMOS clock keeps > > local time. See adjkerntz(8) for details." seems clearer to me. > > What other time does it keep? ;) "Adjust the time zone if the CMOS clock keeps local time, as opposed to UTC time." Third time lucky? Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 5: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 7792537B401 for ; Thu, 21 Nov 2002 05:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33F1C43E4A for ; Thu, 21 Nov 2002 05:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALDe4x3036543 for ; Thu, 21 Nov 2002 05:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALDe4bR036542; Thu, 21 Nov 2002 05:40:04 -0800 (PST) Date: Thu, 21 Nov 2002 05:40:04 -0800 (PST) Message-Id: <200211211340.gALDe4bR036542@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Giorgos Keramidas Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Giorgos Keramidas Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/45493; it has been noted by GNATS. From: Giorgos Keramidas To: Ceri Davies , Tom Hukins Cc: bug-followup@freebsd.org Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 15:30:58 +0200 On 2002-11-21 05:20, Ceri Davies wrote: > On Thu, Nov 21, 2002 at 05:10:05AM -0800, Tom Hukins wrote: > > Yes, on reflection "Adjust the time zone only if the CMOS clock keeps > > local time. See adjkerntz(8) for details." seems clearer to me. > > What other time does it keep? ;) UTC obviously. > "Adjust the time zone only if local time is kept by the CMOS clock" ? This is equivalent to the one Tom suggested. It doesn't add or remove anything to the meaning. It also uses a passive form that is sometimes considered to be bad style :p If the comment needs to describe two cases, there should be two simpler sentences instead of one that doesn't quite cut it. I'd probably prefer this written as: # Adjust the time zone. See adjkerntz(8) for details. If your CMOS # clock is set to UTC instead of the local time, this does nothing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 5: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 CB92437B401 for ; Thu, 21 Nov 2002 05:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64D4543E6E for ; Thu, 21 Nov 2002 05:50:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALDo3x3041083 for ; Thu, 21 Nov 2002 05:50:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALDo3gp041080; Thu, 21 Nov 2002 05:50:03 -0800 (PST) Date: Thu, 21 Nov 2002 05:50:03 -0800 (PST) Message-Id: <200211211350.gALDo3gp041080@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Ceri Davies Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: Ceri Davies 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/45493; it has been noted by GNATS. From: Ceri Davies To: Giorgos Keramidas Cc: freebsd-gnats-submit@FreeBSD.org, tom@FreeBSD.org Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 13:44:39 +0000 On Thu, Nov 21, 2002 at 05:40:04AM -0800, Giorgos Keramidas wrote: > The following reply was made to PR misc/45493; it has been noted by GNATS. > > On 2002-11-21 05:20, Ceri Davies wrote: > > On Thu, Nov 21, 2002 at 05:10:05AM -0800, Tom Hukins wrote: > > > Yes, on reflection "Adjust the time zone only if the CMOS clock keeps > > > local time. See adjkerntz(8) for details." seems clearer to me. > > > > What other time does it keep? ;) > > UTC obviously. OK, you got me. > If the comment needs to describe two cases, there should be two > simpler sentences instead of one that doesn't quite cut it. I'd > probably prefer this written as: > > # Adjust the time zone. See adjkerntz(8) for details. If your CMOS > # clock is set to UTC instead of the local time, this does nothing. Good. Ceri -- The stalwart Urgrosh has come! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 6: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 C794437B401 for ; Thu, 21 Nov 2002 06:10:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4593943ECD for ; Thu, 21 Nov 2002 06:10:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALEA2x3057440 for ; Thu, 21 Nov 2002 06:10:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALEA2Z3057439; Thu, 21 Nov 2002 06:10:02 -0800 (PST) Date: Thu, 21 Nov 2002 06:10:02 -0800 (PST) Message-Id: <200211211410.gALEA2Z3057439@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Kevin Oberman" Subject: Re: misc/45493: Confusing comment in /etc/crontab Reply-To: "Kevin Oberman" 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/45493; it has been noted by GNATS. From: "Kevin Oberman" To: Tom Hukins Cc: FreeBSD-gnats-submit@freebsd.org, Bruce Evans Subject: Re: misc/45493: Confusing comment in /etc/crontab Date: Thu, 21 Nov 2002 06:04:59 -0800 > Date: Thu, 21 Nov 2002 11:42:56 +0000 > From: Tom Hukins > > I'd appreciate your feedback on this patch which fixes the ambiguous > adjkerntz(8) statement in /etc/crontab and generally tidies up the > grammar used in comments. > > Thanks, > Tom I'd suggest one extremely minor change. If you can't spot it, I hyphenated te word "re-seed". R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Index: crontab =================================================================== RCS file: /home/ncvs/src/etc/crontab,v retrieving revision 1.31 diff -u -r1.31 crontab --- crontab 19 Feb 2001 02:47:41 -0000 1.31 +++ crontab 21 Nov 2002 14:03:42 -0000 @@ -10,18 +10,17 @@ # */5 * * * * root /usr/libexec/atrun # -# save some entropy so that /dev/random can reseed on boot +# Save some entropy so that /dev/random can re-seed on boot. */11 * * * * operator /usr/libexec/save-entropy # -# rotate log files every hour, if necessary +# Rotate log files every hour, if necessary. 0 * * * * root newsyslog # -# do daily/weekly/monthly maintenance +# Perform daily/weekly/monthly maintenance. 1 3 * * * root periodic daily 15 4 * * 6 root periodic weekly 30 5 1 * * root periodic monthly # -# time zone change adjustment for wall cmos clock, -# does nothing, if you have UTC cmos clock. -# See adjkerntz(8) for details. +# Timezone adjustment for wall CMOS clock. Does nothing for UTC CMOS +# clock. See adjkerntz(8) for details. 1,31 0-5 * * * root adjkerntz -a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 6: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 E6BBA37B401 for ; Thu, 21 Nov 2002 06:50:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DDF643E6E for ; Thu, 21 Nov 2002 06:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALEo2x3077451 for ; Thu, 21 Nov 2002 06:50:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALEo2gU077450; Thu, 21 Nov 2002 06:50:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84C5937B401 for ; Thu, 21 Nov 2002 06:42:31 -0800 (PST) Received: from vault.chamber.ee (vault.chamber.ee [195.50.209.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id A900D43E42 for ; Thu, 21 Nov 2002 06:42:28 -0800 (PST) (envelope-from exile@vault.chamber.ee) Received: from vault.chamber.ee (vault [195.50.209.91]) by vault.chamber.ee (8.12.5/8.12.5) with ESMTP id gALEijhG043903 for ; Thu, 21 Nov 2002 16:44:45 +0200 (EET) (envelope-from exile@vault.chamber.ee) Received: (from exile@localhost) by vault.chamber.ee (8.12.5/8.12.5/Submit) id gALEifDJ043894; Thu, 21 Nov 2002 16:44:41 +0200 (EET) Message-Id: <200211211444.gALEifDJ043894@vault.chamber.ee> Date: Thu, 21 Nov 2002 16:44:41 +0200 (EET) From: Sten Poldma Reply-To: Sten Poldma To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/45565: sysinstall: write error, filesystem full 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: 45565 >Category: i386 >Synopsis: sysinstall: write error, filesystem full >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 21 06:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Sten Poldma >Release: FreeBSD 5.0 SNAPSHOT-20021119 i386 >Organization: >Environment: cold climate >Description: Problems when installing 5.0 SNAPSHOT-20021119 over FTP. After inserting network settings the nslookup fails for any server. Restarting the sysinstall (Ctrl-C -> restart) at this point and re-entering all the data resolves the nslookup thing but Then after retrieving the first chunk, a write error, filesystem full error is given. The sysinstall restart seems to fix the nslookup but does seem to break other things (dosen't the filesystem get mounted properly anymore?) A roundabout to the problem is to specify the ftp as an IP for the first time, if the sysinstall is not restarted, the filesystem error problem does not occur. Groups google'ing: (Related problem) http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8& frame=right&th=67664c8a786d7597& seekm=ajk5lt%24d17%241%40FreeBSD.csie.NCTU.edu.tw Sorry if this is duplicate but could not find it from gnats and the google story was for 4.6.2 problem >How-To-Repeat: 1. Boot from floppies 2. Standard installation 3. Select FTP as medium 4. Enter network data (including dns) 5. Try to install from any ftp nslookup for the site should hang 6. Press CTRL-C and select Restart 7. repeat steps 2-5 nslookup should not fail this time and the installation should continue to download packets but after the first chunk is received an write error is reported that filesystem is full. >Fix: No idea, roundabout -> specify FTP from URL and enter address as IP number, DO NOT RESTART the sysinstall from CTRL-C >Release-Note: >Audit-Trail: >Unformatted: >System: Intel Celeron based, 256MB RAM, 4GB and 40GB hd's tried To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 6:50:34 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 AFF2A37B401; Thu, 21 Nov 2002 06:50:33 -0800 (PST) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E21A743E88; Thu, 21 Nov 2002 06:50:32 -0800 (PST) (envelope-from jerrymc@clunix.cl.msu.edu) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.11.6+Sun/8.11.6) id gALEoV824013; Thu, 21 Nov 2002 09:50:31 -0500 (EST) From: Jerry McAllister Message-Id: <200211211450.gALEoV824013@clunix.cl.msu.edu> Subject: Re: misc/45493: Confusing comment in /etc/crontab To: ceri@FreeBSD.ORG Date: Thu, 21 Nov 2002 09:50:31 -0500 (EST) Cc: freebsd-bugs@FreeBSD.ORG In-Reply-To: <200211211350.gALDo3gp041080@freefall.freebsd.org> from "Ceri Davies" at Nov 21, 2002 05:50:03 AM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > > > If the comment needs to describe two cases, there should be two > > simpler sentences instead of one that doesn't quite cut it. I'd > > probably prefer this written as: > > > > # Adjust the time zone. See adjkerntz(8) for details. If your CMOS > > # clock is set to UTC instead of the local time, this does nothing. This is the best yet!! ////jerry > > Good. > > Ceri > -- > The stalwart Urgrosh has come! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 8: 6:31 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 A195437B401 for ; Thu, 21 Nov 2002 08:06:30 -0800 (PST) Received: from proxy.centtech.com (moat.centtech.com [207.200.51.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8E243E97 for ; Thu, 21 Nov 2002 08:06:28 -0800 (PST) (envelope-from anderson@centtech.com) Received: from sprint.centtech.com (sprint.centtech.com [10.177.173.31]) by proxy.centtech.com (8.11.6+Sun/8.11.6) with ESMTP id gALG6Dc04767; Thu, 21 Nov 2002 10:06:13 -0600 (CST) Received: (from root@localhost) by sprint.centtech.com (8.11.6+Sun/8.11.6) id gALG6Dv11992; Thu, 21 Nov 2002 10:06:13 -0600 (CST) Received: from centtech.com (electron [204.177.173.173]) by sprint.centtech.com (8.11.6+Sun/8.11.6) with ESMTP id gALG69X11985; Thu, 21 Nov 2002 10:06:10 -0600 (CST) Message-ID: <3DDD046F.1050907@centtech.com> Date: Thu, 21 Nov 2002 10:06:07 -0600 From: Eric Anderson User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Malone Cc: freebsd-bugs@freebsd.org Subject: Re: misc/35151: High NFSD load in FreeBSD 4.5R References: <200211181920.gAIJK2Ph090856@freefall.freebsd.org> <20021118203941.GA80645@walton.maths.tcd.ie> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS perl-11 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 David Malone wrote: > On Mon, Nov 18, 2002 at 11:20:02AM -0800, Eric Anderson wrote: > >>The following reply was made to PR misc/35151; it has been noted by GNATS. >> >>From: Eric Anderson >>To: freebsd-gnats-submit@freebsd.org, anderson@centtech.com >>Cc: >>Subject: Re: misc/35151: High NFSD load in FreeBSD 4.5R >>Date: Mon, 18 Nov 2002 13:18:52 -0600 >> >> I guess no one knows the answer to my previous question on this, so this >> PR can be closed. > > > Would it be possible to get a packet trace with tcpdump? It isn't > immediately clear to me why things would change with -h... > > David. Not anytime soon - I'm swamped. I posted one to -CHAT about a month ago, to Terry Lambert actually. You might be able to find it in the archives. If you can't let me know and I'll dig it up. Eric -- ------------------------------------------------------------------ Eric Anderson Systems Administrator Centaur Technology Beware the fury of a patient man. ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 8:22:55 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 3D57837B401; Thu, 21 Nov 2002 08:22:54 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDE6343E91; Thu, 21 Nov 2002 08:22:53 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALGMrx3047751; Thu, 21 Nov 2002 08:22:53 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALGMpwk047747; Thu, 21 Nov 2002 08:22:51 -0800 (PST) Date: Thu, 21 Nov 2002 08:22:51 -0800 (PST) From: Ruslan Ermilov Message-Id: <200211211622.gALGMpwk047747@freefall.freebsd.org> To: freebsd@kindlund.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: 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 Synopsis: [4.7] make buildworld fails: gperf (key-list.cc gcc compiler error) State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Nov 21 08:18:54 PST 2002 State-Changed-Why: The breakage happens at the stage (build-tools) that uses host environment (compiler, binutils, headers and libraries) to build things. As could be seen from the provided output, compiler complains about putchar() and getchar() being implicitly defined -- but the source file in question does include where these get defined, so the most likely cause of the problem is damaged /usr/include/stdio.h. http://www.freebsd.org/cgi/query-pr.cgi?pr=43955 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 8:26:56 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 77BE337B401; Thu, 21 Nov 2002 08:26:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24C3143E42; Thu, 21 Nov 2002 08:26:55 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALGQtx3048047; Thu, 21 Nov 2002 08:26:55 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALGQpiR048038; Thu, 21 Nov 2002 08:26:51 -0800 (PST) Date: Thu, 21 Nov 2002 08:26:51 -0800 (PST) From: Ruslan Ermilov Message-Id: <200211211626.gALGQpiR048038@freefall.freebsd.org> To: simon@comsys.ntu-kpi.kiev.ua, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/44148: installworld in 4.7-STABLE does not install IP Filter related header files Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: installworld in 4.7-STABLE does not install IP Filter related header files State-Changed-From-To: open->suspended State-Changed-By: ru State-Changed-When: Thu Nov 21 08:24:09 PST 2002 State-Changed-Why: Installing IP Filter headers is incompatible with the SHARED=symlinks feature of src/include/Makefile. I see three options here: 1. Desupport the SHARED=symlinks option. 2. Get rid of src/sys/contrib/. 3. Create a port that installs these headers somewhere. http://www.freebsd.org/cgi/query-pr.cgi?pr=44148 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 8:29:27 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 8A79137B401; Thu, 21 Nov 2002 08:29:26 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B0D243E6E; Thu, 21 Nov 2002 08:29:26 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from freefall.freebsd.org (obrien@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALGTQx3048241; Thu, 21 Nov 2002 08:29:26 -0800 (PST) (envelope-from obrien@freefall.freebsd.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALGTQk9048237; Thu, 21 Nov 2002 08:29:26 -0800 (PST) Date: Thu, 21 Nov 2002 08:29:26 -0800 (PST) From: "David E. O'Brien" Message-Id: <200211211629.gALGTQk9048237@freefall.freebsd.org> To: kargl@troutmask.apl.washington.edu, obrien@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: gnu/44426: Internal 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 Synopsis: Internal compiler error State-Changed-From-To: open->closed State-Changed-By: obrien State-Changed-When: Thu Nov 21 08:29:15 PST 2002 State-Changed-Why: Fixed in later import. http://www.freebsd.org/cgi/query-pr.cgi?pr=44426 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 8:31: 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 5131837B401; Thu, 21 Nov 2002 08:31:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFEC743E88; Thu, 21 Nov 2002 08:31:05 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALGV5x3050196; Thu, 21 Nov 2002 08:31:05 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALGV4M6050192; Thu, 21 Nov 2002 08:31:04 -0800 (PST) Date: Thu, 21 Nov 2002 08:31:04 -0800 (PST) From: Ruslan Ermilov Message-Id: <200211211631.gALGV4M6050192@freefall.freebsd.org> To: gospos@tekkom.pl, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/41064: can't make world: ===> share/doc/papers/kernmalloc, vgrind: permission denied, error code 126 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: can't make world: ===> share/doc/papers/kernmalloc, vgrind: permission denied, error code 126 State-Changed-From-To: feedback->closed State-Changed-By: ru State-Changed-When: Thu Nov 21 08:29:21 PST 2002 State-Changed-Why: Not reproduceable, and got no feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=41064 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 10:12: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 5859137B406; Thu, 21 Nov 2002 10:12:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06C1F43E8A; Thu, 21 Nov 2002 10:12:14 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALICDx3082463; Thu, 21 Nov 2002 10:12:13 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALICDwE082459; Thu, 21 Nov 2002 10:12:13 -0800 (PST) Date: Thu, 21 Nov 2002 10:12:13 -0800 (PST) From: Ruslan Ermilov Message-Id: <200211211812.gALICDwE082459@freefall.freebsd.org> To: mbm+freebsd@colondot.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/41338: make buildworld dependencies potentially in the wrong order 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: make buildworld dependencies potentially in the wrong order State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Thu Nov 21 10:11:53 PST 2002 State-Changed-Why: FWIW, h2ph is not called during buildworld at all. http://www.freebsd.org/cgi/query-pr.cgi?pr=41338 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 10:16:50 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 CB81537B401; Thu, 21 Nov 2002 10:16:49 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A14143E9E; Thu, 21 Nov 2002 10:16:49 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from freefall.freebsd.org (ru@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALIGnx3082680; Thu, 21 Nov 2002 10:16:49 -0800 (PST) (envelope-from ru@freefall.freebsd.org) Received: (from ru@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALIGe4h082676; Thu, 21 Nov 2002 10:16:40 -0800 (PST) Date: Thu, 21 Nov 2002 10:16:40 -0800 (PST) From: Ruslan Ermilov Message-Id: <200211211816.gALIGe4h082676@freefall.freebsd.org> To: rafaelr@cpd.ufsm.br, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/41818: Problem in make buildworld with 4.6.2 source sinchronized. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Problem in make buildworld with 4.6.2 source sinchronized. State-Changed-From-To: feedback->closed State-Changed-By: ru State-Changed-When: Thu Nov 21 10:15:28 PST 2002 State-Changed-Why: Check that you have the /usr/src/etc/sendmail/freebsd.mc file. http://www.freebsd.org/cgi/query-pr.cgi?pr=41818 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 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 63F1537B401 for ; Thu, 21 Nov 2002 12:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F15C643E42 for ; Thu, 21 Nov 2002 12:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALKo2x3030896 for ; Thu, 21 Nov 2002 12:50:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALKo2JB030894; Thu, 21 Nov 2002 12:50:02 -0800 (PST) Date: Thu, 21 Nov 2002 12:50:02 -0800 (PST) Message-Id: <200211212050.gALKo2JB030894@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Peter Edwards" Subject: Re: kern/44336: NFSv3 client broken - security problem with attribute caching Reply-To: "Peter Edwards" 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/44336; it has been noted by GNATS. From: "Peter Edwards" To: freebsd-gnats-submit@FreeBSD.org, mlelstv@dev.de.cw.net Cc: Subject: Re: kern/44336: NFSv3 client broken - security problem with attribute caching Date: Thu, 21 Nov 2002 20:38:51 +0000 Interesting. My reading of the code produces the following understanding: Basically, there's a separate "access" cache, and an "attributes" cache. A "setattr" command doesn't clear the "access" cache. (Actually, I don't know how it flushes the "attribute" cache either, but I haven't studied the code enough to say that it doesn't.) I think the intention here is to keep the notion of accessibilty removed from the notions of attributes and ownership: eg, when user IDs are remapped by the server, the client can't assume it can access a file based on process user Id. It's also more useful for servers that don't have a UFS-style filesystem underlying the server. A quick scan of RFC1813 seems to confirm this. My naiive fix (reproduced below) stops this problem happening on my box: It's reasonable to expect that modifying the mode on a file will affect its accessibility (although I suppose its not neccessarily definite). The patch merely invalidates the access cache in the node, forcing the server to refetch if it needs it. E&OE. Don't take these as words of wisdom: I'm not an NFS hacker by any stretch of the imagination: I was just curious enough to look at the source and partially understand what was going on. BTW: I don't know if this is a major security concern, generally. If you had the file open and someone changes the mode, it doesn't prevent you from accessing it via the open handle (which I assume is similar to how the NFS server is getting away with it). And the updates will always be reasonably timely. It certainly breaks POLA in this case though. Index: nfs_vnops.c =================================================================== RCS file: /pub/FreeBSD/development/FreeBSD-CVS/src/sys/nfs/Attic/nfs_vnops.c,v retrieving revision 1.150.2.5 diff -u -r1.150.2.5 nfs_vnops.c --- nfs_vnops.c 20 Dec 2001 19:56:28 -0000 1.150.2.5 +++ nfs_vnops.c 21 Nov 2002 20:36:57 -0000 @@ -743,6 +743,13 @@ (error = nfs_vinvalbuf(vp, V_SAVE, ap->a_cred, ap->a_p, 1)) == EINTR) return (error); + + /* + * It's likely that changing the file's mode will affect it's + * accessibilty: invalidate access cache + */ + if (vap->va_mode != (mode_t)VNOVAL) + np->n_modestamp = 0; error = nfs_setattrrpc(vp, vap, ap->a_cred, ap->a_p); if (error && vap->va_size != VNOVAL) { np->n_size = np->n_vattr.va_size = tsize; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 13:18:56 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 8FE0137B401; Thu, 21 Nov 2002 13:18:55 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 410A043E3B; Thu, 21 Nov 2002 13:18:55 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from freefall.freebsd.org (silby@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALLItx3042659; Thu, 21 Nov 2002 13:18:55 -0800 (PST) (envelope-from silby@freefall.freebsd.org) Received: (from silby@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALLItT5042655; Thu, 21 Nov 2002 13:18:55 -0800 (PST) Date: Thu, 21 Nov 2002 13:18:55 -0800 (PST) From: Mike Silbersack Message-Id: <200211212118.gALLItT5042655@freefall.freebsd.org> To: silby@FreeBSD.org, freebsd-bugs@FreeBSD.org, silby@FreeBSD.org Subject: Re: kern/45353: Trivial local DoS via file table exhaustion 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: Trivial local DoS via file table exhaustion Responsible-Changed-From-To: freebsd-bugs->silby Responsible-Changed-By: silby Responsible-Changed-When: Thu Nov 21 13:17:50 PST 2002 Responsible-Changed-Why: I'll look into committing this after 5.0-release is out the door. http://www.freebsd.org/cgi/query-pr.cgi?pr=45353 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 13: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 4C68737B401 for ; Thu, 21 Nov 2002 13:40:04 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C8F743E9C for ; Thu, 21 Nov 2002 13:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gALLe3x3047512 for ; Thu, 21 Nov 2002 13:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gALLe3a4047511; Thu, 21 Nov 2002 13:40:03 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1440E37B401; Thu, 21 Nov 2002 13:33:13 -0800 (PST) Received: from leeloo.intern.geht.de (pD952722E.dip.t-dialin.net [217.82.114.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF4C43EB3; Thu, 21 Nov 2002 13:33:01 -0800 (PST) (envelope-from marc@leeloo.intern.geht.de) Received: by leeloo.intern.geht.de (Postfix, from userid 1001) id 66F213988E; Thu, 21 Nov 2002 22:32:57 +0100 (CET) Message-Id: <20021121213257.66F213988E@leeloo.intern.geht.de> Date: Thu, 21 Nov 2002 22:32:57 +0100 (CET) From: Marc Recht Reply-To: Marc Recht To: FreeBSD-gnats-submit@FreeBSD.org Cc: rwatson@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/45574: No console (term) if smbus is enable in the kernel 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: 45574 >Category: kern >Synopsis: No console (term) if smbus is enable in the kernel >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 21 13:40:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Marc Recht >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD leeloo.intern.geht.de 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Nov 21 21:17:48 CET 2002 root@:/usr/src/sys/i386/compile/LEELOO i386 >Description: If I build a kernel with these devices, I don't have a console/term at the next boot. Remote login with SSH works. device smbus device viapm device smb >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 16:36:55 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 9EE5637B406 for ; Thu, 21 Nov 2002 16:36:52 -0800 (PST) Received: from zzn.com (ADSL131-131.advancedsl.com.ar [200.63.131.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 9C5EC43EA3 for ; Thu, 21 Nov 2002 16:36:47 -0800 (PST) (envelope-from publi@zzn.com) From: "publicc" To: Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 21 Nov 2002 21:28:28 -0300 Reply-To: "publicc" Content-Transfer-Encoding: 8bit Message-Id: <20021122003647.9C5EC43EA3@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 PUBLICC SOLUCIONES INFORMATICAS Los invitamos a visitar nuestro sitio web en: www.publiccsoluciones.com.ar Para conocer todas nuestras bases de datos de e-mail y las nuevas ofertas del mes. (Agregamos nuevos programas para envio de mails) Noviembre: 20.600 mails Educaciуn (escuelas privadas y estatales docentes ,universidades ,personal jerбrquico, etc) 8.200 mails Industria Grбfica (imprentas ,editoriales diseсadores, calcografнa ,etc) 90.000 mails Clase ABC1 (Profesionales , Comerciantes dueсos de empresas, gerentes ) 5.100 mails Empresas con nombre, cuit, telйfono cantidad de empleados, fax, responsable, cargo, rubro. 104.000 mails Empresas categorizadas por rubros 13.300 mails Salud (mйdicos ,odontуlogos ,psicуlogos sanatorios , hospitales, laboratorios ,farmacias) 14.200 mails Constructoras ,Arquitectos y Afines 7.000 mails Medios de comunicaciуn (diarios, radios, revistas, etc) 4.000 mails Ferreterнas, Buloneras y Pinturerнas 15.100 mails Empresas y Profesionales de la Computaciуn 1.900 mails Consultoras de RR HH y otras бreas 5.500 mails Abogados y estudios jurнdicos. 9.100 mails Agropecuarios (cooperativas ,productores estancias ,alimentos ,Ingenieros Agrуnomos, veterinarias 16.200 mails Turismo (agencias , hoteles empresas de transporte ,restaurantes, lнneas aйreas ) 42.000 mails Capital Federal (empresas y particulares ,zonificada) 40.000 mails Provincia de Buenos Aires 7000 mails Provincia de Cуrdoba (empresas y particulares ,por localidades ) 11000 mails Provincia de Santa Fe (empresas y particulares ,por localidades ) 5800 mails Zona Cuyana (Mendoza y San Juan: empresas y particulares ,por localidades ) 11000 mails Patagonia: (Neuquen, Rнo Negro, Santa Cruz, Chubut Tierra del Fuego: empresas y particulares ,por localidades ) 4000 mails Litoral ( Entre Rнos , Corrientes , Misiones : empresas y particulares ,por localidades ) 3000 mails Noroeste (Salta , Jujuy , Formosa , Chaco ,La Rioja , Catamarca: empresas y particulares ,por localidades ) 3000 mails Centro (La Pampa , San Luis , Tucumбn Santiago del Estero: empresas y particulares ,por localidades ) 10000 mails Municipios y Organizaciones Gubernamentales MAILS DE AMERICA LATINA Y RESTO DEL MUNDO 5600 mails Bolivia (clasificados por rubros) 63000 mails Chile (clasificados por rubros con nombres y ciudades) 235000 mails Brasil (clasificados por rubros) 35000 mails Centro Amйrica (clasificados por rubros) 240000 mails Colombia (clasificados por rubros con nombres y ciudades 8300 mails Paraguay (clasificados por rubros) 5500 mails Ecuador (clasificados por rubros) 280000 mails Perъ (clasificados por rubros con nombres y ciudades 11000 mails Uruguay (clasificados por rubros) 50000 mails Venezuela (clasificados por rubros) 180000 mails Espaсa (clasificados por rubros) 467000 mails Mйxico (clasificados por rubros) 650000 mails Resto del Mundo (clasificados por paнses ) 15.000.000 mails Estados Unidos SOLICITE YA TODAS ESTAS BASES POR SOLO $100 Y ADEMAS TODO EL SOFTWARE PARA ENVIAR LA PUBLICIDAD. EN ESTA OPORTUNIDAD OFRECEMOS DE REGALO UN PROGRAMA NUEVO DE ENVIO DE MAILS QUE OCULTA LA DIRECCION DE IP DE LA MAQUINA REMITENTE. informes@publiccsoluciones.com.ar O AL TELEFONO 54 11 4942 0093 www.publiccsoluciones.com.ar Para no recibir mas publicidad: remover@publiccsoluciones.com.ar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 17:50: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 1782337B401 for ; Thu, 21 Nov 2002 17:50:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DB3443E91 for ; Thu, 21 Nov 2002 17:50:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAM1o2x3018202 for ; Thu, 21 Nov 2002 17:50:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAM1o2TI018201; Thu, 21 Nov 2002 17:50:02 -0800 (PST) Date: Thu, 21 Nov 2002 17:50:02 -0800 (PST) Message-Id: <200211220150.gAM1o2TI018201@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Archie Cobbs Subject: Re: kern/38554: changing interface ipaddress doesn't seem to work Reply-To: Archie Cobbs 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/38554; it has been noted by GNATS. From: Archie Cobbs To: freebsd-gnats-submit@FreeBSD.org, Guido.Laubner@gmx.de Cc: Subject: Re: kern/38554: changing interface ipaddress doesn't seem to work Date: Thu, 21 Nov 2002 17:49:40 -0800 (PST) Here's a patch to -current that seems to fix the problem. I chose EADDRNOTAVAIL as the error code because: (a) The phrase "Can't assign requested address" seems most appropriate (b) It's consistent with what happens when you try to use an IP address that never existed in the first place, e.g., with IP_SENDSRCADDR. (c) You don't normally get this error from a send/write, which is when you'll get it -Archie __________________________________________________________________________ Archie Cobbs * Packet Design * http://www.packetdesign.com Index: sys/netinet/in.c =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/in.c,v retrieving revision 1.67 diff -u -r1.67 in.c --- sys/netinet/in.c 22 Oct 2002 22:50:38 -0000 1.67 +++ sys/netinet/in.c 22 Nov 2002 01:27:58 -0000 @@ -422,6 +422,11 @@ */ in_ifadown(&ia->ia_ifa, 1); /* + * Mark the interface address as no longer valid. + * Sockets that are bound to it should notice. + */ + ia->ia_ifa.ifa_flags |= RTF_REJECT; + /* * XXX horrible hack to detect that we are being called * from if_detach() */ Index: sys/netinet/in_pcb.c =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/in_pcb.c,v retrieving revision 1.114 diff -u -r1.114 in_pcb.c --- sys/netinet/in_pcb.c 8 Nov 2002 23:50:32 -0000 1.114 +++ sys/netinet/in_pcb.c 22 Nov 2002 01:27:58 -0000 @@ -57,6 +57,7 @@ #include #include #include +#include #include #include @@ -199,14 +200,17 @@ anonport = inp->inp_lport == 0 && (nam == NULL || ((struct sockaddr_in *)nam)->sin_port == 0); error = in_pcbbind_setup(inp, nam, &inp->inp_laddr.s_addr, - &inp->inp_lport, td); + &inp->inp_lport, &inp->inp_locia, td); if (error) return (error); if (in_pcbinshash(inp) != 0) { inp->inp_laddr.s_addr = INADDR_ANY; inp->inp_lport = 0; + inp->inp_locia = NULL; return (EAGAIN); } + if (inp->inp_locia != NULL) + IFAREF(&inp->inp_locia->ia_ifa); if (anonport) inp->inp_flags |= INP_ANONPORT; return (0); @@ -215,24 +219,29 @@ /* * Set up a bind operation on a PCB, performing port allocation * as required, but do not actually modify the PCB. Callers can - * either complete the bind by setting inp_laddr/inp_lport and - * calling in_pcbinshash(), or they can just use the resulting + * either complete the bind by setting inp_laddr/inp_lport/inp_locia + * and calling in_pcbinshash(), or they can just use the resulting * port and address to authorise the sending of a once-off packet. * - * On error, the values of *laddrp and *lportp are not changed. + * If iap is not NULL, *iap is set to the interface address corresponding + * to *laddrp, if any, but no new reference to it has been added. + * + * On error, the values of *laddrp, *lportp, and *iap are not changed. */ int -in_pcbbind_setup(inp, nam, laddrp, lportp, td) +in_pcbbind_setup(inp, nam, laddrp, lportp, iap, td) struct inpcb *inp; struct sockaddr *nam; in_addr_t *laddrp; u_short *lportp; + struct in_ifaddr **iap; struct thread *td; { struct socket *so = inp->inp_socket; unsigned short *lastport; struct sockaddr_in *sin; struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; + struct in_ifaddr *ia = NULL; struct in_addr laddr; u_short lport = 0; int wild = 0, reuseport = (so->so_options & SO_REUSEPORT); @@ -280,7 +289,8 @@ } else if (sin->sin_addr.s_addr != INADDR_ANY) { sin->sin_port = 0; /* yech... */ bzero(&sin->sin_zero, sizeof(sin->sin_zero)); - if (ifa_ifwithaddr((struct sockaddr *)sin) == 0) + if ((ia = (struct in_ifaddr *)ifa_ifwithaddr( + (struct sockaddr *)sin)) == 0) return (EADDRNOTAVAIL); } laddr = sin->sin_addr; @@ -403,6 +413,8 @@ return (EINVAL); *laddrp = laddr.s_addr; *lportp = lport; + if (iap != NULL) + *iap = ia; return (0); } @@ -420,13 +432,14 @@ { u_short lport, fport; in_addr_t laddr, faddr; + struct in_ifaddr *locia; int anonport, error; lport = inp->inp_lport; laddr = inp->inp_laddr.s_addr; anonport = (lport == 0); error = in_pcbconnect_setup(inp, nam, &laddr, &lport, &faddr, &fport, - NULL, td); + NULL, &locia, td); if (error) return (error); @@ -444,6 +457,9 @@ /* Commit the remaining changes. */ inp->inp_lport = lport; inp->inp_laddr.s_addr = laddr; + inp->inp_locia = locia; + if (inp->inp_locia != NULL) + IFAREF(&inp->inp_locia->ia_ifa); inp->inp_faddr.s_addr = faddr; inp->inp_fport = fport; in_pcbrehash(inp); @@ -457,7 +473,9 @@ * On entry, *laddrp and *lportp should contain the current local * address and port for the PCB; these are updated to the values * that should be placed in inp_laddr and inp_lport to complete - * the connect. + * the connect. If iap is not NULL, *iap is set to the interface + * address corresponding to *laddrp, if any, but no new reference + * to it has been added. * * On success, *faddrp and *fportp will be set to the remote address * and port. These are not updated in the error case. @@ -468,7 +486,7 @@ * is set to NULL. */ int -in_pcbconnect_setup(inp, nam, laddrp, lportp, faddrp, fportp, oinpp, td) +in_pcbconnect_setup(inp, nam, laddrp, lportp, faddrp, fportp, oinpp, iap, td) register struct inpcb *inp; struct sockaddr *nam; in_addr_t *laddrp; @@ -476,10 +494,11 @@ in_addr_t *faddrp; u_short *fportp; struct inpcb **oinpp; + struct in_ifaddr **iap; struct thread *td; { struct sockaddr_in *sin = (struct sockaddr_in *)nam; - struct in_ifaddr *ia; + struct in_ifaddr *ia = NULL; struct sockaddr_in sa; struct ucred *cred; struct inpcb *oinp; @@ -506,7 +525,7 @@ sa.sin_len = sizeof(sa); sa.sin_family = AF_INET; error = in_pcbbind_setup(inp, (struct sockaddr *)&sa, - &laddr.s_addr, &lport, td); + &laddr.s_addr, &lport, &ia, td); if (error) return (error); } @@ -608,7 +627,8 @@ return (EADDRINUSE); } if (lport == 0) { - error = in_pcbbind_setup(inp, NULL, &laddr.s_addr, &lport, td); + error = in_pcbbind_setup(inp, NULL, &laddr.s_addr, &lport, + &ia, td); if (error) return (error); } @@ -616,6 +636,8 @@ *lportp = lport; *faddrp = faddr.s_addr; *fportp = fport; + if (iap != NULL) + *iap = ia; return (0); } @@ -649,6 +671,8 @@ (void)m_free(inp->inp_options); if (inp->inp_route.ro_rt) rtfree(inp->inp_route.ro_rt); + if (inp->inp_locia != NULL) + IFAFREE(&inp->inp_locia->ia_ifa); ip_freemoptions(inp->inp_moptions); inp->inp_vflag = 0; INP_LOCK_DESTROY(inp); Index: sys/netinet/in_pcb.h =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/in_pcb.h,v retrieving revision 1.57 diff -u -r1.57 in_pcb.h --- sys/netinet/in_pcb.h 12 Nov 2002 20:44:38 -0000 1.57 +++ sys/netinet/in_pcb.h 22 Nov 2002 01:27:58 -0000 @@ -75,6 +75,7 @@ struct in_endpoints { u_int16_t ie_fport; /* foreign port */ u_int16_t ie_lport; /* local port */ + struct in_ifaddr *ie_locia; /* locally bound address */ /* protocol dependent part, local and foreign addr */ union { /* foreign host table entry */ @@ -113,6 +114,7 @@ #define inc_isipv6 inc_flags /* temp compatability */ #define inc_fport inc_ie.ie_fport #define inc_lport inc_ie.ie_lport +#define inc_locia inc_ie.ie_locia #define inc_faddr inc_ie.ie_faddr #define inc_laddr inc_ie.ie_laddr #define inc_route inc_dependroute.inc4_route @@ -151,6 +153,7 @@ } inp_depend4; #define inp_fport inp_inc.inc_fport #define inp_lport inp_inc.inc_lport +#define inp_locia inp_inc.inc_locia #define inp_faddr inp_inc.inc_faddr #define inp_laddr inp_inc.inc_laddr #define inp_route inp_inc.inc_route @@ -315,6 +318,8 @@ #define INP_CHECK_SOCKAF(so, af) (INP_SOCKAF(so) == af) #ifdef _KERNEL +struct in_ifaddr; + extern int ipport_lowfirstauto; extern int ipport_lowlastauto; extern int ipport_firstauto; @@ -329,11 +334,11 @@ int in_pcballoc(struct socket *, struct inpcbinfo *, struct thread *); int in_pcbbind(struct inpcb *, struct sockaddr *, struct thread *); int in_pcbbind_setup(struct inpcb *, struct sockaddr *, in_addr_t *, - u_short *, struct thread *); + u_short *, struct in_ifaddr **, struct thread *); int in_pcbconnect(struct inpcb *, struct sockaddr *, struct thread *); int in_pcbconnect_setup(struct inpcb *, struct sockaddr *, in_addr_t *, u_short *, in_addr_t *, u_short *, struct inpcb **, - struct thread *); + struct in_ifaddr **, struct thread *); void in_pcbdetach(struct inpcb *); void in_pcbdisconnect(struct inpcb *); int in_pcbinshash(struct inpcb *); Index: sys/netinet/tcp_output.c =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/tcp_output.c,v retrieving revision 1.73 diff -u -r1.73 tcp_output.c --- sys/netinet/tcp_output.c 16 Oct 2002 19:16:33 -0000 1.73 +++ sys/netinet/tcp_output.c 22 Nov 2002 01:27:58 -0000 @@ -53,12 +53,15 @@ #include #include +#include +#include #include #include #include #include #include +#include #ifdef INET6 #include #include @@ -686,6 +689,16 @@ /* this picks up the pseudo header (w/o the length) */ tcp_fillheaders(tp, ip, th); } + + /* + * Check that our local (source) IP address is still valid. + */ + if (tp->t_inpcb->inp_locia != NULL + && (tp->t_inpcb->inp_locia->ia_ifa.ifa_flags & RTF_REJECT) != 0) { + error = EADDRNOTAVAIL; + m_freem(m); + goto out; + } /* * Fill in fields, remembering maximum advertised Index: sys/netinet/tcp_usrreq.c =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/tcp_usrreq.c,v retrieving revision 1.84 diff -u -r1.84 tcp_usrreq.c --- sys/netinet/tcp_usrreq.c 24 Oct 2002 02:02:34 -0000 1.84 +++ sys/netinet/tcp_usrreq.c 22 Nov 2002 01:27:58 -0000 @@ -54,6 +54,7 @@ #include #include +#include #include #include @@ -849,6 +850,7 @@ struct socket *so = inp->inp_socket; struct tcpcb *otp; struct rmxp_tao *taop; + struct in_ifaddr *locia; struct rmxp_tao tao_noncached; struct in_addr laddr; u_short lport; @@ -867,8 +869,9 @@ */ laddr = inp->inp_laddr; lport = inp->inp_lport; + locia = inp->inp_locia; error = in_pcbconnect_setup(inp, nam, &laddr.s_addr, &lport, - &inp->inp_faddr.s_addr, &inp->inp_fport, &oinp, td); + &inp->inp_faddr.s_addr, &inp->inp_fport, &oinp, &locia, td); if (error && oinp == NULL) return error; if (oinp) { @@ -883,6 +886,11 @@ return EADDRINUSE; } inp->inp_laddr = laddr; + if (inp->inp_locia != NULL) + IFAFREE(&inp->inp_locia->ia_ifa); + inp->inp_locia = locia; + if (inp->inp_locia != NULL) + IFAREF(&inp->inp_locia->ia_ifa); in_pcbrehash(inp); /* Compute window scaling to request. */ Index: sys/netinet/udp_usrreq.c =================================================================== RCS file: /home/cvs/freebsd/src/sys/netinet/udp_usrreq.c,v retrieving revision 1.130 diff -u -r1.130 udp_usrreq.c --- sys/netinet/udp_usrreq.c 20 Nov 2002 19:00:54 -0000 1.130 +++ sys/netinet/udp_usrreq.c 22 Nov 2002 01:27:58 -0000 @@ -688,6 +688,7 @@ { register struct udpiphdr *ui; register int len = m->m_pkthdr.len; + struct in_ifaddr *locia; struct in_addr faddr, laddr; struct cmsghdr *cm; struct sockaddr_in *sin, src; @@ -754,13 +755,14 @@ goto release; laddr = inp->inp_laddr; lport = inp->inp_lport; + locia = inp->inp_locia; if (src.sin_addr.s_addr != INADDR_ANY) { if (lport == 0) { error = EINVAL; goto release; } error = in_pcbbind_setup(inp, (struct sockaddr *)&src, - &laddr.s_addr, &lport, td); + &laddr.s_addr, &lport, &locia, td); if (error) goto release; } @@ -774,7 +776,7 @@ goto release; } error = in_pcbconnect_setup(inp, addr, &laddr.s_addr, &lport, - &faddr.s_addr, &fport, NULL, td); + &faddr.s_addr, &fport, NULL, &locia, td); if (error) goto release; @@ -797,6 +799,15 @@ goto release; } } + + /* + * Check that the local (source) IP address is valid. + */ + if (locia != NULL && (locia->ia_ifa.ifa_flags & RTF_REJECT) != 0) { + error = EADDRNOTAVAIL; + goto release; + } + /* * Calculate data length and get a mbuf * for UDP and IP headers. @@ -1009,6 +1020,10 @@ s = splnet(); in_pcbdisconnect(inp); inp->inp_laddr.s_addr = INADDR_ANY; + if (inp->inp_locia != NULL) { + IFAFREE(&inp->inp_locia->ia_ifa); + inp->inp_locia = NULL; + } INP_UNLOCK(inp); INP_INFO_WUNLOCK(&udbinfo); splx(s); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 20: 0:10 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 C28B337B404 for ; Thu, 21 Nov 2002 20:00:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1026743E97 for ; Thu, 21 Nov 2002 20:00:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAM405x3055445 for ; Thu, 21 Nov 2002 20:00:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAM40519055444; Thu, 21 Nov 2002 20:00:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87BCE37B401 for ; Thu, 21 Nov 2002 19:54:56 -0800 (PST) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0776843E6E for ; Thu, 21 Nov 2002 19:54:54 -0800 (PST) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 1224D51915; Fri, 22 Nov 2002 14:24:51 +1030 (CST) Message-Id: <20021122035451.1224D51915@wantadilla.lemis.com> Date: Fri, 22 Nov 2002 14:24:51 +1030 (CST) From: grog@lemis.com (Greg 'groggy' Lehey) To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/45579: Panic from USB stack after device detach 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: 45579 >Category: kern >Synopsis: Panic from USB stack after device detach >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 21 20:00:05 PST 2002 >Closed-Date: >Last-Modified: >Originator: Greg Lehey >Release: FreeBSD 4.7-STABLE i386 >Organization: LEMIS SA Pty Ltd >Environment: System: FreeBSD ler.ri.cox.net 4.7-STABLE FreeBSD 4.7-STABLE #8: Thu Nov 21 19:19:36 EST 2002 root@ler.ri.cox.net:/usr/o bj/usr/src/sys/usbkern i386 Standard install of 4.7, probably not release-specific. >Description: The USB stack removes devices without checking whether they are still open. If a process subsequently accesses the device, it will crash on dereferencing the devsw. >How-To-Repeat: This occurs while testing the pilot-xfer port. In the case in point, I set a breakpoint in code which reads from a Palm Pilot. During this process, the device timed out and was removed. On resumption of the program, we get the following backtrace: (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:487 #1 0xc0148f7f in boot (howto=256) at /usr/src/sys/kern/kern_shutdown.c:316 #2 0xc01493a4 in poweroff_wait (junk=0xc0276fcc, howto=-1071158545) at /usr/src/sys/kern/kern_shutdown.c:595 #3 0xc023f026 in trap_fatal (frame=0xc610acfc, eva=20) at /usr/src/sys/i386/i386/trap.c:974 #4 0xc023ecf9 in trap_pfault (frame=0xc610acfc, usermode=0, eva=20) at /usr/src/sys/i386/i386/trap.c:867 #5 0xc023e8e3 in trap (frame={tf_fs = -1064173552, tf_es = 16, tf_ds = 16, tf_edi = 4, tf_esi = -1063855872, tf_ebp = -971985580, tf_isp = -971985624, tf_ebx = -971985540, tf_edx = -971985540, tf_ecx = 18, tf_eax = 0, tf_trapno = 12, tf_err = 0, tf_eip = -1072162193, tf_cs = 8, tf_eflags = 66195, tf_esp = -1063855872, tf_ss = 64}) at /usr/src/sys/i386/i386/trap.c:466 #6 0xc0181a6f in spec_poll (ap=0xc610ad7c) at /usr/src/sys/miscfs/specfs/spec_vnops.c:323 #7 0xc0181775 in spec_vnoperate (ap=0xc610ad7c) at /usr/src/sys/miscfs/specfs/spec_vnops.c:119 #8 0xc01f5315 in ufs_vnoperatespec (ap=0xc610ad7c) at /usr/src/sys/ufs/ufs/ufs_vnops.c:2440 #9 0xc017e09b in vn_poll (fp=0xc09e8680, events=64, cred=0xc09cf800, p=0xc5736a00) at vnode_if.h:458 #10 0xc0158a53 in selscan (p=0xc5736a00, ibits=0xc610ae1c, obits=0xc610ae10, nfd=5) at /usr/src/sys/sys/file.h:1 92 #11 0xc01587ad in select (p=0xc5736a00, uap=0xc610af80) at /usr/src/sys/kern/sys_generic.c:746 #12 0xc023f2d5 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 10, tf_esi = 0, tf_ebp = -107794 1216, tf_isp = -971984940, tf_ebx = 671701380, tf_edx = 5, tf_ecx = 0, tf_eax = 93, tf_trapno = 10, tf_err = 2, tf_eip = 672352128, tf_cs = 31, tf_eflags = 519, tf_esp = -1077941452, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1175 (kgdb) f 6 #6 0xc0181a6f in spec_poll (ap=0xc610ad7c) at /usr/src/sys/miscfs/specfs/spec_vnops.c:323 323 return (*devsw(dev)->d_poll)(dev, ap->a_events, ap->a_p); (kgdb) p/x *dev $4 = { si_flags = 0x0, si_udev = 0x8a80, si_hash = { le_next = 0xc0964400, le_prev = 0xc02a23fc }, si_hlist = { slh_first = 0xc6064600 }, si_name = {0x75, 0x63, 0x6f, 0x6d, 0x30, 0x0 }, si_drv1 = 0x0, si_drv2 = 0x0, si_devsw = 0x0, si_iosize_max = 0x10000, __si_u = { __si_tty = { __sit_tty = 0xc09f8900 }, __si_disk = { __sid_disk = 0xc09f8900, __sid_mountpoint = 0x0, __sid_bsize_phys = 0x0, __sid_bsize_best = 0x0 } } } >Fix: Maintain a per-device open flag and check it before detaching the devices. Set sc_dying in any case, and check this flag before any I/O operation. >Release-Note: >Audit-Trail: >Unformatted: Panic from USB stack after device detach From: Greg Lehey Reply-To: Greg Lehey cc: X-send-pr-version: 3.113 X-GNATS-Notify: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 23:33:35 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 7DFD837B401 for ; Thu, 21 Nov 2002 23:33:31 -0800 (PST) Received: from zoncna.ibp.cz (zoncna.ibp.cz [195.178.68.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89FFC43EA9 for ; Thu, 21 Nov 2002 23:33:30 -0800 (PST) (envelope-from jjursa@zoncna.ibp.cz) Received: from localhost (jjursa@localhost) by zoncna.ibp.cz (8.11.6/8.10.1) with ESMTP id gAM7XI006806 for ; Fri, 22 Nov 2002 08:33:19 +0100 (CET) Date: Fri, 22 Nov 2002 08:33:18 +0100 (CET) From: Josef Jursa To: freebsd-bugs@FreeBSD.org Subject: AIC 7902 on Super Micro P4DP8 G2 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I have problems with the Adaptec AIC 7902 integrated on Super Micro P4DP8 G2 manboard in FReeFSD 4.7. (Hardware is O.K. - it is running under RedHat 7.3.) There is ahd compiled into the kernel, but it is not running. I am adding the dmesg. I would appreciate very much if somebody could help me. Replay to jjursa@ibp.cz please. Best regards, Josef Jursa P.S. All PCI slots are free. 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.7-RELEASE-p2 #0: Mon Nov 18 16:29:42 CET 2002 root@orel.ibp.cz:/usr/src/sys/compile/IVO Timecounter "i8254" frequency 1193182 Hz CPU: Pentium 4 (2399.74-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff,ACC> real memory = 536346624 (523776K bytes) avail memory = 513404928 (501372K bytes) Preloaded elf kernel "kernel" at 0xc0820000. Preloaded mfs_root "/mfsroot" at 0xc082009c. Pentium Pro MTRR support enabled md0: Preloaded image 4423680 bytes at 0xc03e6e0c md1: Malloc disk Using $PIR table, 29 entries at 0xc00fddf0 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: (vendor=0x8086, dev=0x2541) at 0.1 pcib1: at device 2.0 on pci0 pci1: on pcib1 pci1: (vendor=0x8086, dev=0x1461) at 28.0 pcib2: at device 29.0 on pci1 pci2: on pcib2 pci1: (vendor=0x8086, dev=0x1461) at 30.0 pcib3: at device 31.0 on pci1 pci3: on pcib3 em0: port 0x3000-0x303f mem 0xfc200000-0xfc21ffff irq 11 at device 2.0 on pci3 em0: Speed:100 Mbps Duplex:Full em1: port 0x3040-0x307f mem 0xfc220000-0xfc23ffff irq 11 at device 2.1 on pci3 em1: Speed:N/A Duplex:N/A pcib4: at device 3.0 on pci0 pci4: on pcib4 pci4: (vendor=0x8086, dev=0x1461) at 28.0 pcib5: at device 29.0 on pci4 pci5: on pcib5 pci4: (vendor=0x8086, dev=0x1461) at 30.0 pcib6: at device 31.0 on pci4 pci6: on pcib6 ahd0: port 0x4000-0x40ff,0x4400-0x44ff mem 0xfc400000-0xfc401fff irq 11 at device 2.0 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 ahd0: port 0x4800-0x48ff,0x4c00-0x4cff mem 0xfc402000-0xfc403fff irq 11 at device 2.1 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 uhci0: port 0x2000-0x201f irq 11 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered . . . ahd0: port 0x4000-0x40ff,0x4400-0x44ff mem 0xfc400000-0xfc401fff irq 11 at device 2.0 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 ahd0: port 0x4800-0x48ff,0x4c00-0x4cff mem 0xfc402000-0xfc403fff irq 11 at device 2.1 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 module_register: module pci/mlx already exists! linker_file_sysinit "mlx.ko" failed to register! 17 module_register: module pci/amr already exists! linker_file_sysinit "amr.ko" failed to register! 17 module_register: module pci/twe already exists! linker_file_sysinit "twe.ko" failed to register! 17 module_register: module pci/mly already exists! linker_file_sysinit "mly.ko" failed to register! 17 ahd0: port 0x4000-0x40ff,0x4400-0x44ff mem 0xfc400000-0xfc401fff irq 11 at device 2.0 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 ahd0: port 0x4800-0x48ff,0x4c00-0x4cff mem 0xfc402000-0xfc403fff irq 11 at device 2.1 on pci6 ahd0: scb size = 0x4c, hscb size - 0x40 ahd0: WARNING - Failed chip reset! Trying to initialize anyway. ahd0: Primary Auto-Term Sensing failed! Using Defaults. ahd0: Secondary Auto-Term Sensing failed! Using Defaults. ahd0: Unable to set termination settings! ahd0: No SCB space found device_probe_and_attach: ahd0 attach returned 12 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Nov 21 23:59: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 8B19237B401; Thu, 21 Nov 2002 23:59:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39C1E43E42; Thu, 21 Nov 2002 23:59:27 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAM7xRx3022207; Thu, 21 Nov 2002 23:59:27 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAM7xQHZ022203; Thu, 21 Nov 2002 23:59:26 -0800 (PST) Date: Thu, 21 Nov 2002 23:59:26 -0800 (PST) From: Peter Pentchev Message-Id: <200211220759.gAM7xQHZ022203@freefall.freebsd.org> To: marc@informatik.uni-bremen.de, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/45574: No console (term) if smbus is enable in the kernel 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: No console (term) if smbus is enable in the kernel State-Changed-From-To: open->feedback State-Changed-By: roam State-Changed-When: Thu Nov 21 23:58:24 PST 2002 State-Changed-Why: Could you post the output of 'dmesg -a' after booting up from the kernel without a console terminal? http://www.freebsd.org/cgi/query-pr.cgi?pr=45574 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Nov 22 0:40:12 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 A766A37B401 for ; Fri, 22 Nov 2002 00:40:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11F3E43E6E for ; Fri, 22 Nov 2002 00:40:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAM8e3x3034750 for ; Fri, 22 Nov 2002 00:40:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAM8e3Pj034749; Fri, 22 Nov 2002 00:40:03 -0800 (PST) Date: Fri, 22 Nov 2002 00:40:03 -0800 (PST) Message-Id: <200211220840.gAM8e3Pj034749@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Gilbert Gong" Subject: Re: i386/40274: "fxp: device timeout" errors during heavy, sustained network activity Reply-To: "Gilbert Gong" 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/40274; it has been noted by GNATS. From: "Gilbert Gong" To: Cc: Subject: Re: i386/40274: "fxp: device timeout" errors during heavy, sustained network activity Date: Thu, 21 Nov 2002 19:57:27 -0800 I saw this problem today, on a dual cpu 4.7 RELEASE box w/ 2 nics as well. It was basically a fresh clean install, with a few apps installed. I can't get much info, as it's a production box, and I quickly reverted to a single CPU kernel once I saw the problem occur twice in a row. My problem also appeared to be triggered by samba traffic. This happened twice at least before I switched back to the CPU kernel. The machine become unreachable (would not respond to pings), and console response was extremely slow (I sat for a while even waiting for a password prompt to show up after typing in a username). It happened very quickly once I started a large samba copy. The machine works fine when using a single CPU kernel, and does not show the timeout problem at all in any way shape or form. I have yet to remove the 2nd nic (as it is removable) and see if the dual CPU kernel will work without fault. It is connected to a Cisco 3548 switch. This history of this box (in case ppl are wondering if it happened in prior versions) is that it was a Windows 2k box up until yesterday (I'm still somewhat surprised my boss let me migrate it to FreeBSD after the machine was compromised). Gilbert (dmesg equivalent output) Nov 21 11:15:33 ion /kernel: Copyright (c) 1992-2002 The FreeBSD Project. Nov 21 11:15:33 ion /kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Nov 21 11:15:33 ion /kernel: The Regents of the University of California. All rights reserved. Nov 21 11:15:33 ion /kernel: FreeBSD 4.7-RELEASE #0: Thu Nov 21 10:08:19 PST 2002 Nov 21 11:15:33 ion /kernel: root@ion.lithium.com:/usr/src/sys/compile/ION Nov 21 11:15:33 ion /kernel: Timecounter "i8254" frequency 1193182 Hz Nov 21 11:15:33 ion /kernel: CPU: Pentium III/Pentium III Xeon/Celeron (448.88-MHz 686-class CPU) Nov 21 11:15:33 ion /kernel: Origin = "GenuineIntel" Id = 0x673 Stepping = 3 Nov 21 11:15:33 ion /kernel: Features=0x387fbff Nov 21 11:15:33 ion /kernel: real memory = 1073676288 (1048512K bytes) Nov 21 11:15:33 ion /kernel: avail memory = 1041670144 (1017256K bytes) Nov 21 11:15:33 ion /kernel: Programming 24 pins in IOAPIC #0 Nov 21 11:15:33 ion /kernel: IOAPIC #0 intpin 2 -> irq 0 Nov 21 11:15:33 ion /kernel: FreeBSD/SMP: Multiprocessor motherboard Nov 21 11:15:33 ion /kernel: cpu0 (BSP): apic id: 1, version: 0x00040011, at 0xfee00000 Nov 21 11:15:33 ion /kernel: cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 Nov 21 11:15:33 ion /kernel: io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Nov 21 11:15:33 ion /kernel: Preloaded elf kernel "kernel" at 0xc0358000. Nov 21 11:15:33 ion /kernel: Pentium Pro MTRR support enabled Nov 21 11:15:33 ion /kernel: md0: Malloc disk Nov 21 11:15:33 ion /kernel: Using $PIR table, 8 entries at 0xc00fdf40 Nov 21 11:15:33 ion /kernel: npx0: on motherboard Nov 21 11:15:33 ion /kernel: npx0: INT 16 interface Nov 21 11:15:33 ion /kernel: pcib0: on motherboard Nov 21 11:15:33 ion /kernel: pci0: on pcib0 Nov 21 11:15:33 ion /kernel: pcib1: at device 11.0 on pci0 Nov 21 11:15:33 ion /kernel: pci1: on pcib1 Nov 21 11:15:33 ion /kernel: mlx0: mem 0xfa206000-0xfa207fff irq 11 at devi ce 11.1 on pci0 Nov 21 11:15:33 ion /kernel: mlx0: DAC960PG, 3 channels, firmware 4.08-0-33, 8MB RAM Nov 21 11:15:33 ion /kernel: mlxd0: on mlx0 Nov 21 11:15:33 ion /kernel: mlxd0: 8748MB (17915904 sectors) RAID 1 (online) Nov 21 11:15:33 ion /kernel: mlxd1: on mlx0 Nov 21 11:15:33 ion /kernel: mlxd1: 70004MB (143368192 sectors) RAID 5 (online) Nov 21 11:15:33 ion /kernel: fxp0: port 0x1080-0x10bf mem 0xfa000000-0xfa0 fffff,0xfa200000-0xfa200fff irq 11 at device 12.0 on pci0 Nov 21 11:15:33 ion /kernel: fxp0: Ethernet address 00:90:27:91:a0:db Nov 21 11:15:33 ion /kernel: inphy0: on miibus0 Nov 21 11:15:33 ion /kernel: inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 21 11:15:33 ion /kernel: sym0: <875> port 0x1400-0x14ff mem 0xfa201000-0xfa201fff,0xfa205000-0xfa2050ff irq 10 at device 13.0 on pci0 Nov 21 11:15:33 ion /kernel: sym0: No NVRAM, ID 7, Fast-20, SE, parity checking Nov 21 11:15:33 ion /kernel: sym1: <875> port 0x1800-0x18ff mem 0xfa202000-0xfa202fff,0xfa205400-0xfa2054ff irq 5 at device 13.1 on pci0 Nov 21 11:15:33 ion /kernel: sym1: No NVRAM, ID 7, Fast-20, SE, parity checking Nov 21 11:15:33 ion /kernel: ahc0: port 0x2000-0x20ff mem 0xfa203000-0xfa2 03fff irq 11 at device 14.0 on pci0 Nov 21 11:15:33 ion /kernel: aic7880: Ultra Wide Channel A, SCSI Id=7, 16/253 SCBs Nov 21 11:15:33 ion /kernel: fxp1: port 0x1060-0x107f mem 0xfa100000-0xfa1 Nov 21 11:15:33 ion /kernel: inphy1: on miibus1 Nov 21 11:15:33 ion /kernel: inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Nov 21 11:15:33 ion /kernel: isab0: at device 18.0 on pci0 Nov 21 11:15:33 ion /kernel: isa0: on isab0 Nov 21 11:15:33 ion /kernel: atapci0: port 0x1050-0x105f at device 18.1 on pc i0 Nov 21 11:15:33 ion /kernel: ata0: at 0x1f0 irq 14 on atapci0 Nov 21 11:15:34 ion /kernel: ata1: at 0x170 irq 15 on atapci0 Nov 21 11:15:34 ion /kernel: uhci0: port 0x10c0-0x10df irq 5 at de vice 18.2 on pci0 Nov 21 11:15:34 ion /kernel: usb0: on uhci0 Nov 21 11:15:34 ion /kernel: usb0: USB revision 1.0 Nov 21 11:15:34 ion /kernel: uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 11:15:34 ion /kernel: uhub0: 2 ports with 2 removable, self powered Nov 21 11:15:34 ion /kernel: Timecounter "PIIX" frequency 3579545 Hz Nov 21 11:15:34 ion /kernel: chip1: port 0x1040-0x104f at device 18.3 on pci0 Nov 21 11:15:34 ion /kernel: pci0: at 20.0 Nov 21 11:15:34 ion /kernel: orm0: