From owner-freebsd-stable@FreeBSD.ORG Thu Jan 1 02:42:31 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7505F106566B for ; Thu, 1 Jan 2009 02:42:31 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail15.syd.optusnet.com.au (mail15.syd.optusnet.com.au [211.29.132.196]) by mx1.freebsd.org (Postfix) with ESMTP id 05FA38FC14 for ; Thu, 1 Jan 2009 02:42:30 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (c122-106-215-175.belrs3.nsw.optusnet.com.au [122.106.215.175]) by mail15.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n012gSt3016013 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 1 Jan 2009 13:42:29 +1100 X-Bogosity: Ham, spamicity=0.000000 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.3/8.14.3) with ESMTP id n012gSqY046676 for ; Thu, 1 Jan 2009 13:42:28 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.3/8.14.3/Submit) id n012gSLc046675 for freebsd-stable@freebsd.org; Thu, 1 Jan 2009 13:42:28 +1100 (EST) (envelope-from peter) Date: Thu, 1 Jan 2009 13:42:28 +1100 From: Peter Jeremy To: freebsd-stable@freebsd.org Message-ID: <20090101024228.GF87057@server.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3Pql8miugIZX0722" Content-Disposition: inline X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Interval timers firing early X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2009 02:42:31 -0000 --3Pql8miugIZX0722 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I have some code that uses setitimer() to generate one-shot timers of ~60s (the intent is to fire ~10msec before the minute boundary). On my amd64 laptop running 7.0-stable from mid-March the SIGALRM arrives at the expected time. On a system running a recent amd64 -current, the SIGALRM arrives about 10msec late (which I'm not too fussed about). On two i386 systems running 7.1-PRE (from mid-Oct) and a fresh 7.1-RC2 install, the SIGALRM arrives early - ~11msec for the 7.1-PRE system and ~5msec for the 7.1-RC2 system. All systems are running HZ=3D1000. Two of the systems (the one running 7.1-PRE and the one running -current) are running BOINC. All systems are otherwise unloaded. I've looked at the timer code and can't quickly see anything that would explain this. Does anyone have any ideas? The relevant code looks like the following: while (1) { struct timeval now; struct itimerval it; int usecs; if (gettimeofday(&now, NULL) < 0) { syslog(LOG_ERR, "gettimeofday: %m"); exit(1); } /* Set timer for just before next minute */ it.it_interval.tv_sec =3D 0; it.it_interval.tv_usec =3D 0; usecs =3D 59990000 - ((now.tv_sec % 60) * 1000000 + now.tv_usec); if (usecs < 10000) /* allow 10msec slop */ usecs +=3D 60000000; it.it_value.tv_sec =3D usecs / 1000000; it.it_value.tv_usec =3D usecs % 1000000; if (setitimer(ITIMER_REAL, &it, NULL) < 0) { syslog(LOG_ERR, "setitimer: %m"); exit(1); } printf("%d.%06ld %2d.%06ld %d\n", now.tv_sec, now.tv_usec, it.it_value.tv_sec, it.it_value.tv_usec, usecs); /* do stuff here which is interrupted by SIGALRM */ } On the 7.1-PRE system, I get output like: 1230776939.991464 59.998536 59998536 1230776999.978991 0.011009 11009 1230776999.991996 59.998004 59998004 1230777059.979532 0.010468 10468 1230777059.991538 59.998462 59998462 1230777119.979058 0.010942 10942 1230777119.991065 59.998935 59998935 1230777179.978597 0.011403 11403 1230777179.991610 59.998390 59998390 1230777239.979139 0.010861 10861 1230777239.991142 59.998858 59998858 --=20 Peter Jeremy Please excuse any delays as the result of my ISP's inability to implement an MTA that is either RFC2821-compliant or matches their claimed behaviour. --3Pql8miugIZX0722 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAklcLZQACgkQ/opHv/APuIcdcgCeMZ5vG4YUhueb4tKBBsy8Gtsb gn0AoJA7N2cDOXNNq3+5bonKcVeypAgw =0nDU -----END PGP SIGNATURE----- --3Pql8miugIZX0722-- From owner-freebsd-stable@FreeBSD.ORG Thu Jan 1 06:31:23 2009 Return-Path: Delivered-To: FreeBSD-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1FEB106566C for ; Thu, 1 Jan 2009 06:31:22 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from cp-out1.libero.it (cp-out1.libero.it [212.52.84.101]) by mx1.freebsd.org (Postfix) with ESMTP id 673638FC0C for ; Thu, 1 Jan 2009 06:31:22 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from wmail32 (172.31.0.220) by cp-out1.libero.it (8.5.016.1) id 495844B60029DE9C; Thu, 1 Jan 2009 07:31:19 +0100 Message-ID: <9459365.789371230791479265.JavaMail.defaultUser@defaultHost> Date: Thu, 1 Jan 2009 07:31:19 +0100 (CET) From: Barbara To: , MIME-Version: 1.0 Content-Type: text/plain;charset="UTF-8" Content-Transfer-Encoding: 7bit X-SenderIP: 79.19.240.204 Cc: Subject: RE: Lock enabling onboard lan (Attansic L1 GbE) on 7.1-PRERELEASE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Barbara List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2009 06:31:23 -0000 >> Today I decided to give it a try. >> But if I try loading the if_age module, the >> system prints the following lines and then it freezes. > > > >Could you please print the full dmesg / uname (build date) output? > > >Thanks. > > >--- >Kevin K. >Systems Administrator >www.linux-vps-servers.com > Sure! /usr/src has been synced right before starting the buildworld. # uname -a FreeBSD satanasso.local.net 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #0: Wed Dec 31 03:55: 33 CET 2008 root@satanasso.local.net:/usr/obj/usr/src/sys/SATANASSO i386 If I load age adding it in my kernconf or with the loader, the system freezes so the relevant part on dmesg should be the following two lines: pci4: on pcib5 pci4: at device 0.0 (no driver attached) Here comes the full dmesg output. Unfortunately the web client of my mail provider, does something stupid with the text, so I know it could be confused. If asked I can send it via email as attachment. # dmesg Copyright (c) 1992- 2009 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 is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-PRERELEASE #0: Wed Dec 31 03:55:33 CET 2008 root@satanasso. local.net:/usr/obj/usr/src/sys/SATANASSO Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ (2499.74-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x60fb1 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Cores per package: 2 real memory = 2147155968 (2047 MB) avail memory = 2087157760 (1990 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard ioapic1 irqs 24-47 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7ff00000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib2: irq 27 at device 2.0 on pci0 pci2: on pcib2 vgapci0: port 0xdc00-0xdc7f mem 0xfa000000- 0xfaffffff,0xd0000000-0xdfffffff,0xf8000000-0xf9ffffff irq 24 at device 0.0 on pci2 nvidia0: on vgapci0 vgapci0: child nvidia0 requested pci_enable_busmaster vgapci0: child nvidia0 requested pci_enable_io nvidia0: [GIANT-LOCKED] nvidia0: [ITHREAD] pcib3: irq 31 at device 3.0 on pci0 pci6: on pcib3 pcib4: irq 35 at device 3.1 on pci0 pci5: on pcib4 pcib5: irq 39 at device 3.2 on pci0 pci4: on pcib5 pci4: at device 0.0 (no driver attached) pcib6: irq 43 at device 3.3 on pci0 pci3: on pcib6 atapci0: port 0xcc00-0xcc07,0xc880-0xc883,0xc800-0xc807, 0xc480-0xc483,0xc400-0xc40f,0xc000-0xc0ff irq 21 at device 15.0 on pci0 atapci0: [ITHREAD] ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 15.1 on pci0 ata0: on atapci1 ata0: [ITHREAD] ata1: on atapci1 ata1: [ITHREAD] uhci0: port 0xb480-0xb49f irq 20 at device 16.0 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xb800-0xb81f irq 22 at device 16.1 on pci0 uhci1: [GIANT-LOCKED] uhci1: [ITHREAD] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xb880-0xb89f irq 21 at device 16.2 on pci0 uhci2: [GIANT-LOCKED] uhci2: [ITHREAD] usb2: on uhci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered uhci3: port 0xbc00-0xbc1f irq 23 at device 16.3 on pci0 uhci3: [GIANT-LOCKED] uhci3: [ITHREAD] usb3: on uhci3 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered ehci0: mem 0xf7fffc00-0xf7fffcff irq 21 at device 16.4 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb4: EHCI version 1.0 usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4: on ehci0 usb4: USB revision 2.0 uhub4: on usb4 uhub4: 8 ports with 8 removable, self powered isab0: at device 17.0 on pci0 isa0: on isab0 pcib7: at device 19.0 on pci0 pci128: on pcib7 pcm0: mem 0xfbffc000-0xfbffffff irq 17 at device 1.0 on pci128 pcm0: [ITHREAD] pcib8: at device 19.1 on pci0 pci7: on pcib8 rl0: port 0xe800-0xe8ff mem 0xfbeffc00-0xfbeffcff irq 19 at device 9.0 on pci7 miibus0: on rl0 rlphy0: PHY 0 on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: Ethernet address: 00:08:a1:27: 1f:bb rl0: [ITHREAD] acpi_button0: on acpi0 acpi_button1: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model IntelliMouse Explorer, device ID 4 cpu0: on acpi0 acpi_throttle0: on cpu0 powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 pmtimer0 on isa0 orm0: at iomem 0xcd000-0xcdfff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode ppbus0: on ppc0 ppbus0: [ITHREAD] plip0: on ppbus0 plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] ppc0: [ITHREAD] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled Timecounters tick every 1.000 msec ad0: 152627MB at ata0-master UDMA100 ad1: 117246MB at ata0-slave UDMA133 acd0: DVDR at ata1-master UDMA66 ad4: 238475MB at ata2-master SATA150 pcm0: pcm0: SMP: AP CPU #1 Launched! GEOM_LABEL: Label for provider ad0s3 is ext2fs//boot. GEOM_LABEL: Label for provider ad0s6 is ext2fs//. Trying to mount root from ufs:/dev/ad4s3a Thank you and happy new year. From owner-freebsd-stable@FreeBSD.ORG Thu Jan 1 06:36:28 2009 Return-Path: Delivered-To: FreeBSD-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 834C8106566B for ; Thu, 1 Jan 2009 06:36:28 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from cp-out1.libero.it (cp-out1.libero.it [212.52.84.101]) by mx1.freebsd.org (Postfix) with ESMTP id 469FD8FC0C for ; Thu, 1 Jan 2009 06:36:28 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from wmail32 (172.31.0.220) by cp-out1.libero.it (8.5.016.1) id 495844B60029E0FD; Thu, 1 Jan 2009 07:36:26 +0100 Message-ID: <23818446.789391230791785972.JavaMail.defaultUser@defaultHost> Date: Thu, 1 Jan 2009 07:36:25 +0100 (CET) From: Barbara To: , MIME-Version: 1.0 Content-Type: text/plain;charset="UTF-8" Content-Transfer-Encoding: 7bit X-SenderIP: 79.19.240.204 Cc: Subject: RE: Lock enabling onboard lan (Attansic L1 GbE) on 7.1-PRERELEASE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Barbara List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2009 06:36:28 -0000 >>> Today I decided to give it a try. >>> But if I try loading the if_age module, >the >>> system prints the following lines and then it freezes. >> >> >> >>Could you >please print the full dmesg / uname (build date) output? >> >> >>Thanks. >> >> >>--- > >>Kevin K. >>Systems Administrator >>www.linux-vps- servers.com >> > Maybe this is better: http://pastebin.ca/1297510 From owner-freebsd-stable@FreeBSD.ORG Thu Jan 1 15:59:47 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE5D1106566C for ; Thu, 1 Jan 2009 15:59:47 +0000 (UTC) (envelope-from ericlin@tamama.org) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.28]) by mx1.freebsd.org (Postfix) with ESMTP id AF6168FC1B for ; Thu, 1 Jan 2009 15:59:47 +0000 (UTC) (envelope-from ericlin@tamama.org) Received: by yx-out-2324.google.com with SMTP id 8so2772836yxb.13 for ; Thu, 01 Jan 2009 07:59:47 -0800 (PST) Received: by 10.150.51.6 with SMTP id y6mr32609394yby.172.1230825586909; Thu, 01 Jan 2009 07:59:46 -0800 (PST) Received: by 10.151.68.13 with HTTP; Thu, 1 Jan 2009 07:59:46 -0800 (PST) Message-ID: <47713ee10901010759v9cf328pff89d0e678361053@mail.gmail.com> Date: Thu, 1 Jan 2009 23:59:46 +0800 From: "Lin Jui-Nan Eric" To: stable@freebsd.org In-Reply-To: <20081229180508.GA78494@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47713ee10812220844r7889d286l3a98f294d780ccc0@mail.gmail.com> <6eb82e0812260202m1d8816c5mc7b0991514f83853@mail.gmail.com> <47713ee10812261117o6f772843o53ec9542bc773141@mail.gmail.com> <47713ee10812270105o5866aa27u9998539dc127e549@mail.gmail.com> <20081229103916.GA29184@hub.freebsd.org> <20081229180508.GA78494@dragon.NUXI.org> Cc: Subject: Re: amd(8) cores dump when load high X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2009 15:59:48 -0000 Update: After we add -S flag to "amd_flags" in /etc/rc.conf, amd does not core dump. I think it is a workaround solution. Thank you all guys! From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 03:24:39 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0947106564A for ; Fri, 2 Jan 2009 03:24:39 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from proxy3.bredband.net (proxy3.bredband.net [195.54.101.73]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1DC8FC0C for ; Fri, 2 Jan 2009 03:24:39 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from ironport2.bredband.com (195.54.101.122) by proxy3.bredband.net (7.3.127) id 492A9CFF00D604EA for freebsd-stable@freebsd.org; Fri, 2 Jan 2009 04:24:38 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AuIzAGEYXUlT412MPGdsb2JhbACBbJIEAQEBATW2Q4Vy Received: from c-8c5de353.649-1-64736c10.cust.bredbandsbolaget.se (HELO c210.a119.gbg.bahnhof.net) ([83.227.93.140]) by ironport2.bredband.com with SMTP; 02 Jan 2009 04:24:37 +0100 Received: (qmail 78283 invoked from network); 2 Jan 2009 03:25:04 -0000 Received: from unknown (HELO ?192.168.10.204?) (192.168.10.204) by ns.birch.se with SMTP; 2 Jan 2009 03:25:04 -0000 Message-ID: <495D88B9.6060408@sydnet.net> Date: Fri, 02 Jan 2009 04:23:37 +0100 From: =?ISO-8859-1?Q?Mattias_Bj=F6rk?= User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 03:24:40 -0000 Hello everybody, First of all, my bad if this get sent two times. I have a compile error/problem when building world. My uname -a output is: FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 My make.conf looks like: # added by use.perl 2008-12-03 00:58:09 PERL_VER=5.8.8 PERL_VERSION=5.8.8 WRKDIRPREFIX=/var/tmp The options.h file in /usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/options.h Here are the output of options.h from pastebin: http://pastebin.com/m254dfedf When I run "make -j1 buildworld" i get the error is as following: http://pastebin.com/m57738677 I don't know much of programming (if any), but I have tried to change things in (remove OPT_w from both places) options.h and runned "make -j1 -DNOCLEAN buildworld" But that have not solve anything of this, perhaps some can shine some light on this or have I missed something trivial? I can build ports and so on without any problems. Thank you. From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 03:29:28 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4387B1065670 for ; Fri, 2 Jan 2009 03:29:28 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from proxy1.bredband.net (proxy1.bredband.net [195.54.101.71]) by mx1.freebsd.org (Postfix) with ESMTP id 014B78FC17 for ; Fri, 2 Jan 2009 03:29:27 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from ironport2.bredband.com (195.54.101.122) by proxy1.bredband.net (7.3.127) id 494BF21C00319F72 for freebsd-stable@freebsd.org; Fri, 2 Jan 2009 04:09:12 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AuIzALATXUlT412MPGdsb2JhbACBbJIEAQEBATW2OoVy Received: from c-8c5de353.649-1-64736c10.cust.bredbandsbolaget.se (HELO c210.a119.gbg.bahnhof.net) ([83.227.93.140]) by ironport2.bredband.com with SMTP; 02 Jan 2009 04:09:12 +0100 Received: (qmail 69531 invoked from network); 2 Jan 2009 03:09:35 -0000 Received: from unknown (HELO ?192.168.10.204?) (192.168.10.204) by ns.birch.se with SMTP; 2 Jan 2009 03:09:35 -0000 Message-ID: <495D8516.1080109@sydnet.net> Date: Fri, 02 Jan 2009 04:08:06 +0100 From: =?ISO-8859-1?Q?Mattias_Bj=F6rk?= User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 03:29:28 -0000 Hello everybody, I have a compile error/problem when building world. My uname -a output is: FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 My make.conf looks like: # added by use.perl 2008-12-03 00:58:09 PERL_VER=5.8.8 PERL_VERSION=5.8.8 WRKDIRPREFIX=/var/tmp The options.h file in /usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/options.h Here are the output of options.h from pastebin: http://pastebin.com/m254dfedf When I run "make -j1 buildworld" i get the error is as following: http://pastebin.com/m57738677 I don't know much of programming (if any), but I have tried to change things in (remove OPT_w from both places) options.h and runned "make -j1 -DNOCLEAN buildworld" But that have not solve anything of this, perhaps some can shine some light on this or have I missed something trivial? I can build ports and so on without any problems. Thank you. From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 05:50:36 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F97F106566B for ; Fri, 2 Jan 2009 05:50:36 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id 53E528FC18 for ; Fri, 2 Jan 2009 05:50:35 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by an-out-0708.google.com with SMTP id c2so2240283anc.13 for ; Thu, 01 Jan 2009 21:50:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:references:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:cc:x-mailer; bh=Rc7Lesjl/6av616cE0qte27FJMLPw2wXeBSQLKFXW0M=; b=kf2zwNtiYLp4nq3J9zGe3PWw7WTjnZ1k1bBpGUwDtTuS8bVbczMEb2w/9LLoe3O2Zc uAnXsRt623Yu7+zobQyHj1VETOOhT8m5xjwWPEqSpBs2wDWVRcRbkACdNJtoLJ93oEj+ Y5G19wYnUb8KZg4iGb9fgXaEGpRdHKKDtCcso= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=references:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:cc:x-mailer; b=Gfa4UFYasfvzM/8O5HmJACbqdbkDqJ6uNGo7IBuz/PYzIZscHJLhRP+hzGdqXYr+jw FgJ6unH6hJsIi74NPuX1LnDDqs3aoMpj2mw5Fy+iHz13nT9lzxwLqiwPm1CQWKXFhR/H 6z1CvDe1xr5u7gWrhDUU+ODXVfnNXIRql0/bA= Received: by 10.100.125.9 with SMTP id x9mr1625759anc.139.1230875435450; Thu, 01 Jan 2009 21:50:35 -0800 (PST) Received: from ?10.85.178.4? ([32.154.25.6]) by mx.google.com with ESMTPS id c14sm5674545ana.58.2009.01.01.21.50.32 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 01 Jan 2009 21:50:34 -0800 (PST) References: <495D88B9.6060408@sydnet.net> Message-Id: <2D7731A8-9AAC-4F8C-B3A0-01DFBC84E407@gmail.com> From: Garrett Cooper To: =?utf-8?Q?Mattias_Bj=C3=B6rk?= In-Reply-To: <495D88B9.6060408@sydnet.net> Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (iPhone Mail 5G77) Date: Thu, 1 Jan 2009 21:46:35 -0800 X-Mailer: iPhone Mail (5G77) Cc: "freebsd-stable@freebsd.org" Subject: Re: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 05:50:36 -0000 On Jan 1, 2009, at 19:23, Mattias Bj=C3=B6rk =20= wrote: > Hello everybody, > > First of all, my bad if this get sent two times. > > I have a compile error/problem when building world. > > My uname -a output is: > > FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 =20 > 20:52:35 > CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 > > My make.conf looks like: > > # added by use.perl 2008-12-03 00:58:09 > PERL_VER=3D5.8.8 > PERL_VERSION=3D5.8.8 > WRKDIRPREFIX=3D/var/tmp > > > The options.h file in /usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/=20 > options.h > > Here are the output of options.h from pastebin: > > http://pastebin.com/m254dfedf > > > When I run "make -j1 buildworld" i get the error is as following: > > http://pastebin.com/m57738677 > > I don't know much of programming (if any), but I have tried to change > things in (remove OPT_w from both places) options.h and runned > "make -j1 -DNOCLEAN buildworld" > > But that have not solve anything of this, perhaps some can shine some > light on this or have I missed something trivial? > I can build ports and so on without any problems. > > Thank you. Not enough data. Please send a full compressed version of the log to me. Thanks! -Garrett= From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 06:49:29 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4C431065673; Fri, 2 Jan 2009 06:49:29 +0000 (UTC) (envelope-from ericlin@tamama.org) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id 96CEA8FC13; Fri, 2 Jan 2009 06:49:29 +0000 (UTC) (envelope-from ericlin@tamama.org) Received: by yx-out-2324.google.com with SMTP id 8so2842707yxb.13 for ; Thu, 01 Jan 2009 22:49:29 -0800 (PST) Received: by 10.150.135.2 with SMTP id i2mr33862606ybd.229.1230878968920; Thu, 01 Jan 2009 22:49:28 -0800 (PST) Received: by 10.151.68.13 with HTTP; Thu, 1 Jan 2009 22:49:28 -0800 (PST) Message-ID: <47713ee10901012249w65c659bbp3366e4d8ef25c59d@mail.gmail.com> Date: Fri, 2 Jan 2009 14:49:28 +0800 From: "Lin Jui-Nan Eric" To: freebsd-net@freebsd.org, stable@freebsd.org In-Reply-To: <47713ee10901012147k1f25c31bn512dd29b2b294ad5@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47713ee10812301206j12b35264o715976c154080a1b@mail.gmail.com> <47713ee10901012147k1f25c31bn512dd29b2b294ad5@mail.gmail.com> Cc: Subject: Re: TCP packet out-of-order problem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 06:49:30 -0000 Dear All listers, After running "netstat -s -p tcp", we found that lots of packets are discarded due to memory problems. We googled for it, and found that sysctl oid "net.inet.tcp.reass.maxsegments" became 0, therefore packets never reassembled. Then we checked our /boot/loader.conf and /etc/sysctl.conf, and found that setting kern.ipc.nmbclusters="0" makes net.inet.tcp.reass.maxsegments=0. After setting net.inet.tcp.reass.maxsegments="1600" in /boot/loader.conf, the network works perfectly now. Thank you all for the help! From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 07:50:51 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1157106564A for ; Fri, 2 Jan 2009 07:50:51 +0000 (UTC) (envelope-from kometen@gmail.com) Received: from mail-bw0-f19.google.com (mail-bw0-f19.google.com [209.85.218.19]) by mx1.freebsd.org (Postfix) with ESMTP id 26A6A8FC1A for ; Fri, 2 Jan 2009 07:50:50 +0000 (UTC) (envelope-from kometen@gmail.com) Received: by bwz12 with SMTP id 12so16891273bwz.19 for ; Thu, 01 Jan 2009 23:50:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=3RIkqQrBonFZRLpeMCYLpCWHyM6OFr0pmRM1TL2nTwM=; b=coNVRwbizYf368Yf33KZKSuu0eOG3cJDLbt2/52ZFH5Xp1ZFfzQ32FEroU+hn9eLs9 TAOHNR5/XEO8D3NLmnqoARuD9sREox4DQ+vM41x9BvyECBnacvMy8qqqmeFN9TT4wG5J 3nGJDJEzw+WPThEn2h1TFK13ug1tLuY+F+bys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=r474nCK7zJdF1DvOiaENB1fB4KQNxIJNwXbXUsnYt4UTG4y46WCrGBscwjZxPv5OX1 njY6Bc/BQQYQCAcDWFTRtn4VuknBHV93Z811xtKcjJQKvP9SsSLXL7+aucT4V+C9aL9O ucfqAujkPlZCimYnXtSftAPgJKkn8+P5jhEwo= Received: by 10.103.160.9 with SMTP id m9mr6268868muo.96.1230881035289; Thu, 01 Jan 2009 23:23:55 -0800 (PST) Received: by 10.102.244.13 with HTTP; Thu, 1 Jan 2009 23:23:55 -0800 (PST) Message-ID: Date: Fri, 2 Jan 2009 08:23:55 +0100 From: "Claus Guttesen" To: "=?ISO-8859-1?Q?Mattias_Bj=F6rk?=" In-Reply-To: <495D88B9.6060408@sydnet.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <495D88B9.6060408@sydnet.net> Cc: freebsd-stable@freebsd.org Subject: Re: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 07:50:51 -0000 > I have a compile error/problem when building world. > > My uname -a output is: > > FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 > CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 Sync the time on your computer and try the buildworld again. -- regards Claus When lenity and cruelty play for a kingdom, the gentler gamester is the soonest winner. Shakespeare From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 15:48:58 2009 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CD8F106568B for ; Fri, 2 Jan 2009 15:48:58 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.freebsd.org (Postfix) with ESMTP id 0FA888FC1F for ; Fri, 2 Jan 2009 15:48:58 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.3/8.14.3) with ESMTP id n02FYtdx027553 for ; Fri, 2 Jan 2009 07:34:55 -0800 (PST) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.3/8.14.3/Submit) id n02FYt6W027552 for stable@freebsd.org; Fri, 2 Jan 2009 07:34:55 -0800 (PST) (envelope-from david) Date: Fri, 2 Jan 2009 07:34:55 -0800 From: David Wolfskill To: stable@freebsd.org Message-ID: <20090102153455.GR4100@albert.catwhisker.org> Mail-Followup-To: David Wolfskill , stable@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mV+g5V4x6ti+sJEm" Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: Subject: newfs(8) parameters from "dumpfs -m" have bad -s value? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 15:48:58 -0000 --mV+g5V4x6ti+sJEm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I have a requirement to be able to re-create a largish file system on occasion. The file system was created with some non-default newfs(8) parameters. Once I found about it, it seemed that the output of "dumpfs -m" would be ideal to use in the script that performs the analysis & (if appropriate) re-creation. But I found that that output (in this case, at least) includes a rather bogus "-s" parameter. A circumvention is to interpose a sed(1) invocation to elide the parameter, but that seems a tad ... ugly (though admittedly effective). I'm running 7.1-RC1 on the systems in question. Here's the supporting evidence: We start with one of the file systems in question as it is supposed to be: pool10(7.1-RC1)[32] df -ki /dev/da1s1d Filesystem 1024-blocks Used Avail Capacity iused ifree %iused Mo= unted on /dev/da1s1d 1702753030 4 1566532784 0% 2 220046332 0% /b pool10(7.1-RC1)[33]=20 Here's what dumpfs(8) says: pool10(7.1-RC1)[36] dumpfs -m /dev/da1s1d # newfs command for /dev/da1s1d (/dev/da1s1d) newfs -O 2 -U -a 8 -b 16384 -d 16384 -e 2048 -f 2048 -g 16384 -h 64 -m 8 -o= time -s 879031908 /dev/da1s1d=20 pool10(7.1-RC1)[37]=20 I then unmount the file system & re-create it naively: pool10(7.1-RC1)[37] umount /dev/da1s1d pool10(7.1-RC1)[38] dumpfs -m /dev/da1s1d | sh /dev/da1s1d: 429214.8MB (879031908 sectors) block size 16384, fragment size= 2048 using 2336 cylinder groups of 183.77MB, 11761 blks, 23552 inodes. with soft updates super-block backups (for fsck -b #) at: 160, 376512, 752864, 1129216, 1505568, 1881920, 2258272, 2634624, 3010976, =2E.. 876523968, 876900320, 877276672, 877653024, 878029376, 878405728, 878782080 pool10(7.1-RC1)[39] df -ki /dev/da1s1d Filesystem 1024-blocks Used Avail Capacity iused ifree= %iused Mounted on /dev/da1s1d 425686716 4 391631776 0% 2 55017468= 0% =20 pool10(7.1-RC1)[40]=20 The file system had been 1702753030 KB; it is now 425686716 KB -- 25% of its intended size. By eliding the -s parameter, we get: pool10(7.1-RC1)[40] dumpfs -m /b | sed -Ee 's/ -s [0-9]+ / /' | sh /dev/da1s1d: 1716859.2MB (3516127632 sectors) block size 16384, fragment si= ze 2048 using 9343 cylinder groups of 183.77MB, 11761 blks, 23552 inodes. with soft updates super-block backups (for fsck -b #) at: 160, 376512, 752864, 1129216, 1505568, 1881920, 2258272, 2634624, 3010976, =2E.. 3513622432, 3513998784, 3514375136, 3514751488, 3515127840, 3515504192, 3515880544 pool10(7.1-RC1)[41] df -ki /dev/da1s1d Filesystem 1024-blocks Used Avail Capacity iused ifree= %iused Mounted on /dev/da1s1d 1702753030 4 1566532784 0% 2 2200463= 32 0% =20 pool10(7.1-RC1)[42]=20 [Sorry about the long lines....] Is dumpfs(8) actually behaving as expected (or correctly) in this case? Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --mV+g5V4x6ti+sJEm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkleNB4ACgkQmprOCmdXAD1fAwCfcWjJaUJYn6I8Ski9gUffbX7n OosAnRgOiAbZ5j+MNqo5gJ7RyAsmE1yC =gkZ8 -----END PGP SIGNATURE----- --mV+g5V4x6ti+sJEm-- From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 19:52:33 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97990106566C for ; Fri, 2 Jan 2009 19:52:33 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from proxy2.bredband.net (proxy2.bredband.net [195.54.101.72]) by mx1.freebsd.org (Postfix) with ESMTP id 4DABA8FC08 for ; Fri, 2 Jan 2009 19:52:33 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from ironport2.bredband.com (195.54.101.122) by proxy2.bredband.net (7.3.127) id 494BF3020035E99F for freebsd-stable@freebsd.org; Fri, 2 Jan 2009 20:52:32 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AicyAD3/XUlT412MPGdsb2JhbACBbJIGAQEBATW2S4Vy Received: from c-8c5de353.649-1-64736c10.cust.bredbandsbolaget.se (HELO c210.a119.gbg.bahnhof.net) ([83.227.93.140]) by ironport2.bredband.com with SMTP; 02 Jan 2009 20:52:31 +0100 Received: (qmail 85658 invoked from network); 2 Jan 2009 19:52:59 -0000 Received: from unknown (HELO ?192.168.10.204?) (192.168.10.204) by ns.birch.se with SMTP; 2 Jan 2009 19:52:59 -0000 Message-ID: <495E703F.5050805@sydnet.net> Date: Fri, 02 Jan 2009 20:51:27 +0100 From: =?UTF-8?B?TWF0dGlhcyBCasO2cms=?= User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Garrett Cooper References: <495D88B9.6060408@sydnet.net> <2D7731A8-9AAC-4F8C-B3A0-01DFBC84E407@gmail.com> In-Reply-To: <2D7731A8-9AAC-4F8C-B3A0-01DFBC84E407@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: "freebsd-stable@freebsd.org" Subject: Re: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 19:52:33 -0000 Hello Garret, Garrett Cooper wrote: > On Jan 1, 2009, at 19:23, Mattias Björk wrote: > >> Hello everybody, >> >> First of all, my bad if this get sent two times. >> >> I have a compile error/problem when building world. >> >> My uname -a output is: >> >> FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 >> CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 >> >> My make.conf looks like: >> >> # added by use.perl 2008-12-03 00:58:09 >> PERL_VER=5.8.8 >> PERL_VERSION=5.8.8 >> WRKDIRPREFIX=/var/tmp >> >> >> The options.h file in /usr/obj/usr/src/gnu/usr.bin/cc/cc_tools/options.h >> >> Here are the output of options.h from pastebin: >> >> http://pastebin.com/m254dfedf >> >> >> When I run "make -j1 buildworld" i get the error is as following: >> >> http://pastebin.com/m57738677 >> >> I don't know much of programming (if any), but I have tried to change >> things in (remove OPT_w from both places) options.h and runned >> "make -j1 -DNOCLEAN buildworld" >> >> But that have not solve anything of this, perhaps some can shine some >> light on this or have I missed something trivial? >> I can build ports and so on without any problems. >> >> Thank you. > > Not enough data. Please send a full compressed version of the log to me. > Thanks! No thank you, :) I will send it to you directly. > -Garrett_______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 20:05:55 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90671106566C for ; Fri, 2 Jan 2009 20:05:55 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from proxy1.bredband.net (proxy1.bredband.net [195.54.101.71]) by mx1.freebsd.org (Postfix) with ESMTP id 4665F8FC18 for ; Fri, 2 Jan 2009 20:05:47 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from ironport2.bredband.com (195.54.101.122) by proxy1.bredband.net (7.3.127) id 494BF21C00342F99 for freebsd-stable@freebsd.org; Fri, 2 Jan 2009 21:05:46 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AicyAIQCXklT412MPGdsb2JhbACBbJIGAQEBATW2TIVy Received: from c-8c5de353.649-1-64736c10.cust.bredbandsbolaget.se (HELO c210.a119.gbg.bahnhof.net) ([83.227.93.140]) by ironport2.bredband.com with SMTP; 02 Jan 2009 21:05:46 +0100 Received: (qmail 7934 invoked from network); 2 Jan 2009 20:06:14 -0000 Received: from unknown (HELO ?192.168.10.204?) (192.168.10.204) by ns.birch.se with SMTP; 2 Jan 2009 20:06:14 -0000 Message-ID: <495E735A.7060707@sydnet.net> Date: Fri, 02 Jan 2009 21:04:42 +0100 From: =?ISO-8859-1?Q?Mattias_Bj=F6rk?= User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) MIME-Version: 1.0 To: Claus Guttesen References: <495D88B9.6060408@sydnet.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 20:05:55 -0000 Hello Claus, Claus Guttesen wrote: >> I have a compile error/problem when building world. >> >> My uname -a output is: >> >> FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 >> CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 > > Sync the time on your computer and try the buildworld again. > I have tried that several times, even removed /usr/src/* entirely and started from scratch. And tried a couple of other cvsup.XX.freebsd.org servers. Still no go Claus :( Any more suggestions ? Thanks so far. From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 20:09:51 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49C641065673 for ; Fri, 2 Jan 2009 20:09:51 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: from mail-bw0-f19.google.com (mail-bw0-f19.google.com [209.85.218.19]) by mx1.freebsd.org (Postfix) with ESMTP id B6BBE8FC12 for ; Fri, 2 Jan 2009 20:09:50 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: by bwz12 with SMTP id 12so17544277bwz.19 for ; Fri, 02 Jan 2009 12:09:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=zN5wuPaR50Wv2rKlVjkJa52bmpl9kFNXT8+BQ8OTmlo=; b=C94E6KP3WH9w9koBchPrqu8fmUf8Cmv8zDv/v2eSzmZFYsY7hslBBhRNF7Mam6ffov j5M9WGQXdrtQmRHEPxzRjYHEiOkWRwlMTLgRMeSlcKbg5qoZFEtEmLD1+RsyE2n6dRSW iIlumkoyaTCPAm+d0C9XiI1SgVAGwss6rNun8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type :content-transfer-encoding:content-disposition; b=bMIhjZwVK2jalBwypgakr+jQFU621frdF14jeTP3ZIS0whfYuE5zZSpkyUjHs6tj5G SX34Dseh2xFK4gI+DqH5LAwcHckR3a76LiHAgwWS4gZ3ElLrlV9lhkoMTcW8u+CAmbhM aICcvBFAZwpqMnQxGyJfFdGOsWtCldJq7BTUY= Received: by 10.103.221.5 with SMTP id y5mr6490615muq.66.1230926987544; Fri, 02 Jan 2009 12:09:47 -0800 (PST) Received: by 10.103.193.6 with HTTP; Fri, 2 Jan 2009 12:09:47 -0800 (PST) Message-ID: <6101e8c40901021209g1eb6ca88wda79bd62823268bb@mail.gmail.com> Date: Fri, 2 Jan 2009 21:09:47 +0100 From: "Oliver Pinter" To: "freebsd-stable@freebsd.org" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: kensmith@cse.buffalo.edu Subject: FreeBSD 7.1 svn186551 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 20:09:51 -0000 Hi All! I have the question, why reverted the ICH10 support from 7.1? This is the svn commit: http://svnweb.freebsd.org/viewvc/base/releng/?pathrev=186551 What is the PR number of the base of this commit or what is the problem description? I have a motherboard with ich10r with 3 sata2 disc (hitachi) + 1 sata dvd-rw (samsung), without any problem. Sorry for bad spelling or english From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 21:03:02 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4C7810656C6 for ; Fri, 2 Jan 2009 21:03:02 +0000 (UTC) (envelope-from veldy71@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.240]) by mx1.freebsd.org (Postfix) with ESMTP id 8D9208FC13 for ; Fri, 2 Jan 2009 21:03:02 +0000 (UTC) (envelope-from veldy71@gmail.com) Received: by an-out-0708.google.com with SMTP id c2so2315072anc.13 for ; Fri, 02 Jan 2009 13:03:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=AbFRBn+WsnoP6c/OiOnsIonxnlw0QSZPsu1+pRJS2h8=; b=etaSXgC1c3tidkj0kZNxpzmp/KmjTJGVxK5uEe83FaPE9Pg8sssHkr5y/n75tJRiI+ mpiOy288rYi0cKvJVnlSnxjnpGnMNsROua/WANCbbBG1IGnHvvr4znQXsKd19iQiItV3 fg4rGtxZRncNTNsnF/UrV9A2TVey4KyTwlzo0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=IFnadeRUP7/lUp3WL/BA+Ui+2hpHoHjd6TpV1TbNYhRKIrhim7jhSkuHzW8BS/bioY nITJkR3cFj8rynVgC9vCv8wrQMIqImcFyJgP0PPQpPozKidE7t+i2yVfux27WUekaROL RSZwXNlvQu0lDo+b5+tmbFlMRbWVmGgtMOVO8= Received: by 10.65.132.20 with SMTP id j20mr14088798qbn.43.1230928375082; Fri, 02 Jan 2009 12:32:55 -0800 (PST) Received: from ?192.168.1.100? (c-71-63-141-31.hsd1.mn.comcast.net [71.63.141.31]) by mx.google.com with ESMTPS id k7sm43996656qba.6.2009.01.02.12.32.54 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 02 Jan 2009 12:32:54 -0800 (PST) Message-ID: <495E79EF.8000601@gmail.com> Date: Fri, 02 Jan 2009 14:32:47 -0600 From: "Thomas T. Veldhouse" User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Update ports on 6.3 or update OS to 7.1(RC2) and update ports? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 21:03:03 -0000 I have a machine where several of my installed applications are getting way behind. It is not a mission critical server, but I need it to be stable (I have all fairly old well supported hardware, nothing special). Since updating and rebuilding all the ports is pretty much mandatory for the upgrade to 7.x and I plan to take that path soon, would most people consider 7.1RC2 stable enough for a move now? The machine is a home server that provides several services on my network, but is rarely under any load. I know this is rather vague question, so I will be happy with any vague answers; just positive or negative experiences with well supported hardware (old Dell 8250 P4 3.0GHz 1.5GB 1066 RAMBUS). Thanks in advance, Tom Veldhouse From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 21:08:25 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24739106566B for ; Fri, 2 Jan 2009 21:08:25 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from phoebe.cse.buffalo.edu (phoebe.cse.buffalo.edu [128.205.32.89]) by mx1.freebsd.org (Postfix) with ESMTP id D76C78FC16 for ; Fri, 2 Jan 2009 21:08:24 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from [192.168.1.101] (cpe-74-77-179-53.buffalo.res.rr.com [74.77.179.53]) (authenticated bits=0) by phoebe.cse.buffalo.edu (8.14.1/8.13.7) with ESMTP id n02L8HGA043548 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 2 Jan 2009 16:08:18 -0500 (EST) (envelope-from kensmith@cse.buffalo.edu) From: Ken Smith To: Oliver Pinter In-Reply-To: <6101e8c40901021209g1eb6ca88wda79bd62823268bb@mail.gmail.com> References: <6101e8c40901021209g1eb6ca88wda79bd62823268bb@mail.gmail.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-E9WCCIS7ZAkcUzUHaqO0" Date: Fri, 02 Jan 2009 16:08:12 -0500 Message-Id: <1230930492.12517.15.camel@neo.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port X-DCC-Buffalo.EDU-Metrics: phoebe.cse.buffalo.edu 1336; Body=0 Fuz1=0 Fuz2=0 X-Spam-Status: No, score=1.7 required=5.0 tests=RCVD_IN_SORBS_DUL, RDNS_DYNAMIC autolearn=no version=3.2.3 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on phoebe.cse.buffalo.edu Cc: "freebsd-stable@freebsd.org" Subject: Re: FreeBSD 7.1 svn186551 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 21:08:25 -0000 --=-E9WCCIS7ZAkcUzUHaqO0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2009-01-02 at 21:09 +0100, Oliver Pinter wrote: > Hi All! >=20 > I have the question, why reverted the ICH10 support from 7.1? > This is the svn commit: > http://svnweb.freebsd.org/viewvc/base/releng/?pathrev=3D186551 >=20 > What is the PR number of the base of this commit or what is the > problem description? >=20 > I have a motherboard with ich10r with 3 sata2 disc (hitachi) + 1 sata > dvd-rw (samsung), without any problem. >=20 > Sorry for bad spelling or english Unfortunately most of the email traffic related to this was off-list. There was one message here on list from Greg Miller saying his system locked up and giving a date for when the problem got introduced which was between 7.1-RC1 and 7.1-RC2 so it had been a regression that snuck in while we were in the RC phase. It turned out the MFC that brought in support for that chip was pulling in pieces of ATA from head that had been intertwined with other work and it seemed likely the MFC wasn't complete - more of the ATA pieces from head would need to be pulled in to stabilize it. Since we were already so far behind on getting 7.1 out we opted to back out the change rather than try to work out what else needed to be MFCed (which would have definitely required RC3 if we tried to do that). Sorry, it will just need to wait for 7.3 (though hopefully this plus the extra stuff needed to stabilize it will work its way into 7-STABLE in the not too distant future). --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-E9WCCIS7ZAkcUzUHaqO0 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEABECAAYFAklegjwACgkQ/G14VSmup/aH1ACfTVhhV6Pg6y0HkCG8EVqufPEf czoAnjpfOy5hS5RjC2ETu10l7PIXi0tI =miJt -----END PGP SIGNATURE----- --=-E9WCCIS7ZAkcUzUHaqO0-- From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 21:27:38 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2617106567D for ; Fri, 2 Jan 2009 21:27:38 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: from mail-fx0-f11.google.com (mail-fx0-f11.google.com [209.85.220.11]) by mx1.freebsd.org (Postfix) with ESMTP id 41E678FC0C for ; Fri, 2 Jan 2009 21:27:38 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: by fxm4 with SMTP id 4so1194378fxm.19 for ; Fri, 02 Jan 2009 13:27:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=1bVo+9ESY9TyuAohKUs4iX3gikGvoLLeWfi21/qFaO8=; b=DXkOuVIIIMdDJkmn+p0doBFvqRZ2sDnPcjSXjYCPeDFIkaL/xVhqgVIFpDBBYYwthD yRswg0EpqiunUQg9X/VmCHGbUf1fK1GKrrq2QYz393djlJ3YqlhivsloUeEOvNfNjaVx 54XAywvpuaV1VYLVxAH5T7VACXBS7BOS5p+eg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=iEFFuXSNX/gEyJsmmwt8skqIu6XtOx0mUmcGICZ2ETLrOibzvhO8kUZSrnic0FMzyg D/e85ekNguAS3PN2/vL12tR78wRf0AcIStasHKPjX2URWqQ31hSI9mScOuJxkptdyG45 O1E5eHvH3uf1kQLjfq5A9B5WxG0lGInKVhAUw= Received: by 10.103.172.9 with SMTP id z9mr6520108muo.39.1230931656282; Fri, 02 Jan 2009 13:27:36 -0800 (PST) Received: by 10.103.193.6 with HTTP; Fri, 2 Jan 2009 13:27:36 -0800 (PST) Message-ID: <6101e8c40901021327g7b976032hbe3ce935fbf15a5c@mail.gmail.com> Date: Fri, 2 Jan 2009 22:27:36 +0100 From: "Oliver Pinter" To: "Ken Smith" In-Reply-To: <1230930492.12517.15.camel@neo.cse.buffalo.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6101e8c40901021209g1eb6ca88wda79bd62823268bb@mail.gmail.com> <1230930492.12517.15.camel@neo.cse.buffalo.edu> Cc: "freebsd-stable@freebsd.org" Subject: Re: FreeBSD 7.1 svn186551 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 21:27:39 -0000 Thanks the problem description, then I revert the reverted patch in my local tree. I had a similar problem between 7.1-PRERELEASE and 7.1-RC1, it presentdes only 1 week long, under heavy load (csup / kernel compile) crashed the system, but after RC1 the system is very stable (more than 2 week uptime, and ooo3 and kde build, every day several times csup, etc etc..) On 1/2/09, Ken Smith wrote: > On Fri, 2009-01-02 at 21:09 +0100, Oliver Pinter wrote: >> Hi All! >> >> I have the question, why reverted the ICH10 support from 7.1? >> This is the svn commit: >> http://svnweb.freebsd.org/viewvc/base/releng/?pathrev=186551 >> >> What is the PR number of the base of this commit or what is the >> problem description? >> >> I have a motherboard with ich10r with 3 sata2 disc (hitachi) + 1 sata >> dvd-rw (samsung), without any problem. >> >> Sorry for bad spelling or english > > Unfortunately most of the email traffic related to this was off-list. > There was one message here on list from Greg Miller saying his system > locked up and giving a date for when the problem got introduced which > was between 7.1-RC1 and 7.1-RC2 so it had been a regression that snuck > in while we were in the RC phase. It turned out the MFC that brought in > support for that chip was pulling in pieces of ATA from head that had > been intertwined with other work and it seemed likely the MFC wasn't > complete - more of the ATA pieces from head would need to be pulled in > to stabilize it. Since we were already so far behind on getting 7.1 out > we opted to back out the change rather than try to work out what else > needed to be MFCed (which would have definitely required RC3 if we tried > to do that). > > Sorry, it will just need to wait for 7.3 (though hopefully this plus the > extra stuff needed to stabilize it will work its way into 7-STABLE in > the not too distant future). > > -- > Ken Smith > - From there to here, from here to | kensmith@cse.buffalo.edu > there, funny things are everywhere. | > - Theodore Geisel | > From owner-freebsd-stable@FreeBSD.ORG Fri Jan 2 22:54:39 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECC2E106566C for ; Fri, 2 Jan 2009 22:54:39 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id 98D2B8FC08 for ; Fri, 2 Jan 2009 22:54:39 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so2929921yxb.13 for ; Fri, 02 Jan 2009 14:54:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:references:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:cc; bh=lZuwatB/LXXdZsni4TJDTiARHhxiYHk4UdBQ7dGf3io=; b=bqC8Ed1frO9rdEx3P+O/9p5wCz2BJo92WgFTqp/qYXRqDbiojtHq4SJ722jcBURBCd 1CTIQ9ErMCbdeKcuzLBBzE8bideIZqmOYSTJUWajYNp0Knk68TNkaCd18h/Ndpqz7/Z1 Poxsy4W8tqLhb54nEhifmvgezAvbKmFYjiNLk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=references:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date:cc; b=urpOCM3WmcbI9KaFfGQVimYu6IdE8FOIYwJKEAen/WDkcECXtxnHaka02PCAfCkbgO yZ8jDyOsMDWBtMQ1U2P5c4yQ0lv9DHaJKSv5/jA7bfJRRaXB1/bEPPPIXAbJIyNwkH6k pnPxyW0lRDTlO4xCe8+EmnVDva2IQyDBPQ4DI= Received: by 10.100.107.3 with SMTP id f3mr10050683anc.28.1230936878920; Fri, 02 Jan 2009 14:54:38 -0800 (PST) Received: from ?10.91.47.150? ([32.157.237.237]) by mx.google.com with ESMTPS id c28sm24142902anc.47.2009.01.02.14.54.36 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 02 Jan 2009 14:54:38 -0800 (PST) References: <495E79EF.8000601@gmail.com> Message-Id: From: Garrett Cooper To: "Thomas T. Veldhouse" In-Reply-To: <495E79EF.8000601@gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (5G77) Mime-Version: 1.0 (iPhone Mail 5G77) Date: Fri, 2 Jan 2009 14:54:29 -0800 Cc: "freebsd-stable@freebsd.org" Subject: Re: Update ports on 6.3 or update OS to 7.1(RC2) and update ports? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2009 22:54:40 -0000 On Jan 2, 2009, at 12:32, "Thomas T. Veldhouse" wrote: > I have a machine where several of my installed applications are > getting way behind. It is not a mission critical server, but I need > it to be stable (I have all fairly old well supported hardware, > nothing special). > > Since updating and rebuilding all the ports is pretty much mandatory > for the upgrade to 7.x and I plan to take that path soon, would most > people consider 7.1RC2 stable enough for a move now? The machine is > a home server that provides several services on my network, but is > rarely under any load. > > I know this is rather vague question, so I will be happy with any > vague answers; just positive or negative experiences with well > supported hardware (old Dell 8250 P4 3.0GHz 1.5GB 1066 RAMBUS). > > Thanks in advance, > > Tom Veldhouse Tom, Based on my experimentation, I'd say 7.1 rc2 is stable enough for your hardware. More bleeding edge hardware appears to be a problem with the rc version. Cheers, -Garrett From owner-freebsd-stable@FreeBSD.ORG Sat Jan 3 06:50:59 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9503B106564A for ; Sat, 3 Jan 2009 06:50:59 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from proxy3.bredband.net (proxy3.bredband.net [195.54.101.73]) by mx1.freebsd.org (Postfix) with ESMTP id 4EFEE8FC16 for ; Sat, 3 Jan 2009 06:50:59 +0000 (UTC) (envelope-from mattias.bjork@sydnet.net) Received: from ironport.bredband.com (195.54.101.120) by proxy3.bredband.net (7.3.127) id 492A9CFF00D99219 for freebsd-stable@freebsd.org; Sat, 3 Jan 2009 07:50:57 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ans0AGaZXklT412MPGdsb2JhbACBa5IHAQEBATU5tXuFcg Received: from c-8c5de353.649-1-64736c10.cust.bredbandsbolaget.se (HELO c210.a119.gbg.bahnhof.net) ([83.227.93.140]) by ironport1.bredband.com with SMTP; 03 Jan 2009 07:50:57 +0100 Received: (qmail 81817 invoked from network); 3 Jan 2009 06:51:25 -0000 Received: from unknown (HELO ?192.168.10.204?) (192.168.10.204) by ns.birch.se with SMTP; 3 Jan 2009 06:51:25 -0000 Message-ID: <495F0A8F.60400@sydnet.net> Date: Sat, 03 Jan 2009 07:49:51 +0100 From: =?ISO-8859-1?Q?Mattias_Bj=F6rk?= User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: "freebsd-stable@freebsd.org" References: <495D88B9.6060408@sydnet.net> <495E735A.7060707@sydnet.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: Make world builderror on 7.1-BETA2 with latest cvsup X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jan 2009 06:50:59 -0000 Hello again :) Claus Guttesen wrote: > Hello Mattias. > > On Fri, Jan 2, 2009 at 9:04 PM, Mattias Björk wrote: >> Hello Claus, >> >> Claus Guttesen wrote: >>>> I have a compile error/problem when building world. >>>> >>>> My uname -a output is: >>>> >>>> FreeBSD barabolaptop 7.1-BETA2 FreeBSD 7.1-BETA2 #0: Thu Dec 4 20:52:35 >>>> CET 2008 root@barabolaptop:/usr/obj/usr/src/sys/BARABOLAPTOP i386 >>> Sync the time on your computer and try the buildworld again. >>> >> >> I have tried that several times, even removed /usr/src/* entirely and >> started from scratch. And tried a couple of other cvsup.XX.freebsd.org >> servers. Still no go Claus :( >> >> Any more suggestions ? >> >> Thanks so far. > > Unfortunately not. :-/ The only times I've had problems recently > building world was because the time on my computer was (way) > incorrect. Well I don't think anything is incorrect on the computer, can build everything else fine and it goes on and on. > You can try removing /usr/obj as well before doing a new buildworld. > AFAIK you don't have to alter options.h to make a buildworld run > smoothly. I have tried too make clean ; make clean ; make cleandir ; make cleandir and then rm -rf /usr/obj. Still the same problem I'm afraid. > HTH. >