RE: freebsd-current Digest, Vol 194, Issue 6

From: Tino Engel <tino.engel_at_hotmail.com>
Date: Fri, 4 May 2007 13:26:46 +0100
fsck during boot (initiated on auto-mount-error) behaves like fsck. Exception: Write lock disabled.BR, Engel--Forwarded Message Attachment--From: ivoras_at_fer.hrTo: freebsd-current_at_freebsd.orgDate: Thu, 3 May 2007 15:38:52 +0200Subject: Re: gjournal + gmirror questionPawel Jakub Dawidek wrote: > When you call 'fsck -p' on gjournaled file system, it recognize that it> is journaled and only garbage-collects orphaned inodes. Does fsck during boot also behave like this? --Forwarded Message Attachment--From: davidch_at_broadcom.comCC: To: freebsd-current_at_freebsd.orgDate: Thu, 3 May 2007 11:07:16 -0700Subject: How to Fix Kernel Panic When Lock Held During Page Fault for	Command-Line Loaded bce Module?I'm building the "bce" driver as a module and loading/unloadingit from the command-line to do some work on the driver.  A recentchange to the driver on -CURRENT (v1.25) has introduced the following kernel panic: ------------------------------------------------------------------ ===[root] /usr/src/sys/modules/bce # make load/sbin/kldload -v /usr/src/sys/modules/bce/if_bce.kobce0: <Broadcom NetXtreme II BCM5708 1000Base-T (B1), v0.9.6> mem0xdc000000-0xddffffff irq 16 at device 0.0 on pci2bce0: ASIC ID 0x57081010; Revision (B1); PCI-X 64-bit 133MHzbce0: Ethernet address: 00:10:18:15:f3:e0bce0: [ITHREAD]Kernel page fault with the following non-sleepable locks held:exclusive sleep mutex bce0 (network driver) r = 0 (0xffffffff8133e068)locked _at_ /usr/src/sys/modules/bce/../../dev/bce/if_bce.c:774KDB: stack backtrace:db_trace_self_wrapper() at db_trace_self_wrapper+0x2akdb_backtrace() at kdb_backtrace+0x37witness_warn() at witness_warn+0x2c1trap() at trap+0x13fcalltrap() at calltrap+0x8--- trap 0xc, rip = 0xffffffffb07a79c3, rsp = 0xffffffffb079d840, rbp =0xffffffffb079d860 ---bce_ifmedia_upd_locked() at bce_ifmedia_upd_locked+0x23bce_mgmt_init_locked() at bce_mgmt_init_locked+0x99bce_attach() at bce_attach+0x90fdevice_attach() at device_attach+0x5adevice_probe_and_attach() at device_probe_and_attach+0xfepci_driver_added() at pci_driver_added+0xf3devclass_add_driver() at devclass_add_driver+0xfbdriver_module_handler() at driver_module_handler+0x8emodule_register_init() at module_register_init+0x99linker_file_sysinit() at linker_file_sysinit+0xaflinker_load_file() at linker_load_file+0x134linker_load_module() at linker_load_module+0x110kern_kldload() at kern_kldload+0xb9kldload() at kldload+0x68syscall() at syscall+0x307Xfast_syscall() at Xfast_syscall+0xab--- syscall (304, FreeBSD ELF64, kldload), rip = 0x80068d24c, rsp =0x7fffffffeb78, rbp = 0x7fffffffebf0 ---  Fatal trap 12: page fault while in kernel modecpuid = 0; apic id = 00fault virtual address   = 0x38fault code              = supervisor read data, page not presentinstruction pointer     = 0x8:0xffffffffb07a79c3stack pointer           = 0x10:0xffffffffb079d840frame pointer           = 0x10:0xffffffffb079d860code segment            = base 0x0, limit 0xfffff, type 0x1b                        = DPL 0, pres 1, long 1, def32 0, gran 1processor eflags        = interrupt enabled, resume, IOPL = 0current process         = 672 (kldload)[thread pid 672 tid 100071 ]Stopped at      bce_ifmedia_upd_locked+0x23:    cmpl    $0,0x38(%rax) ------------------------------------------------------------------ The important lines being: Kernel page fault with the following non-sleepable locks held:exclusive sleep mutex bce0 (network driver) r = 0 (0xffffffff8133e068)locked _at_ /usr/src/sys/modules/bce/../../dev/bce/if_bce.c:774 Why does this problem only occur when loading a module from the command-line and what's the right way to fix it? David Christensen  --Forwarded Message Attachment--From: kip.macy_at_gmail.comCC: freebsd-current_at_freebsd.orgTo: davidch_at_broadcom.comDate: Thu, 3 May 2007 12:03:28 -0700Subject: Re: How to Fix Kernel Panic When Lock Held During Page Fault for	Command-Line Loaded bce Module?Red herring - you dereferenced a bad pointer at rip =0xffffffffb07a79c3 and happened to be holding a lock at the time. Youmay have a resource allocation failure that doesn't occur when it isloaded early in boot.  -Kip   On 5/3/07, David Christensen <davidch_at_broadcom.com> wrote:> I'm building the "bce" driver as a module and loading/unloading> it from the command-line to do some work on the driver.  A recent> change to the driver on -CURRENT (v1.25) has introduced the> following kernel panic:>> ------------------------------------------------------------------>> ===[root] /usr/src/sys/modules/bce # make load> /sbin/kldload -v /usr/src/sys/modules/bce/if_bce.ko> bce0: <Broadcom NetXtreme II BCM5708 1000Base-T (B1), v0.9.6> mem> 0xdc000000-0xddffffff irq 16 at device 0.0 on pci2> bce0: ASIC ID 0x57081010; Revision (B1); PCI-X 64-bit 133MHz> bce0: Ethernet address: 00:10:18:15:f3:e0> bce0: [ITHREAD]> Kernel page fault with the following non-sleepable locks held:> exclusive sleep mutex bce0 (network driver) r = 0 (0xffffffff8133e068)> locked _at_ /usr/src/sys/modules/bce/../../dev/bce/if_bce.c:774> KDB: stack backtrace:> db_trace_self_wrapper() at db_trace_self_wrapper+0x2a> kdb_backtrace() at kdb_backtrace+0x37> witness_warn() at witness_warn+0x2c1> trap() at trap+0x13f> calltrap() at calltrap+0x8> --- trap 0xc, rip = 0xffffffffb07a79c3, rsp = 0xffffffffb079d840, rbp => 0xffffffffb079d860 ---> bce_ifmedia_upd_locked() at bce_ifmedia_upd_locked+0x23> bce_mgmt_init_locked() at bce_mgmt_init_locked+0x99> bce_attach() at bce_attach+0x90f> device_attach() at device_attach+0x5a> device_probe_and_attach() at device_probe_and_attach+0xfe> pci_driver_added() at pci_driver_added+0xf3> devclass_add_driver() at devclass_add_driver+0xfb> driver_module_handler() at driver_module_handler+0x8e> module_register_init() at module_register_init+0x99> linker_file_sysinit() at linker_file_sysinit+0xaf> linker_load_file() at linker_load_file+0x134> linker_load_module() at linker_load_module+0x110> kern_kldload() at kern_kldload+0xb9> kldload() at kldload+0x68> syscall() at syscall+0x307> Xfast_syscall() at Xfast_syscall+0xab> --- syscall (304, FreeBSD ELF64, kldload), rip = 0x80068d24c, rsp => 0x7fffffffeb78, rbp = 0x7fffffffebf0 --->>> Fatal trap 12: page fault while in kernel mode> cpuid = 0; apic id = 00> fault virtual address   = 0x38> fault code              = supervisor read data, page not present> instruction pointer     = 0x8:0xffffffffb07a79c3> stack pointer           = 0x10:0xffffffffb079d840> frame pointer           = 0x10:0xffffffffb079d860> code segment            = base 0x0, limit 0xfffff, type 0x1b>                         = DPL 0, pres 1, long 1, def32 0, gran 1> processor eflags        = interrupt enabled, resume, IOPL = 0> current process         = 672 (kldload)> [thread pid 672 tid 100071 ]> Stopped at      bce_ifmedia_upd_locked+0x23:    cmpl    $0,0x38(%rax)>> ------------------------------------------------------------------>> The important lines being:>> Kernel page fault with the following non-sleepable locks held:> exclusive sleep mutex bce0 (network driver) r = 0 (0xffffffff8133e068)> locked _at_ /usr/src/sys/modules/bce/../../dev/bce/if_bce.c:774>> Why does this problem only occur when loading a module from the> command-line and what's the right way to fix it?>> David Christensen>> _______________________________________________> freebsd-current_at_freebsd.org mailing list> http://lists.freebsd.org/mailman/listinfo/freebsd-current> To unsubscribe, send any mail to "freebsd-current-unsubscribe_at_freebsd.org"> --Forwarded Message Attachment--From: jclark_at_metricsystems.comTo: freebsd-current_at_freebsd.orgDate: Thu, 3 May 2007 14:03:43 -0700Subject: Re: NFS problem -- solved.John Clark schrieb:> I am copying a 'disk image' to an NFS mounted volume.>> I'm using:>> dd if=/dev/ad0 of=Disk.img>> After dd completes the number of blocks indicated is what the raw disk > device should> be. However, when I look at the NFS mounted image, the file size is > anything but the> 80 GB size it should be.  I looked in to this, and what is happing, is this. I'm booting a FreeBSD diskless node, to 'clone' the existing harddrive. The FreeBSD boot codeapparently mounts the root file system usin NFS V2, which has the 2.5 GB (or so) filesize limit, due to using only a signed 32 bit integer for file size. This was found in the 'pxe' bootcode. By executing an explicit 'mount' command with the '-3' option, I selected NFS V3, whichdoes not have this limitation, and was able to copy a previously captured 80 GB image ontothe harddrive. I'll check the other way around after I do an fsck on the resulting cloned drive. John Clark.    --Forwarded Message Attachment--From: dlt_at_mebtel.netCC: To: current_at_FreeBSD.orgDate: Thu, 3 May 2007 18:21:41 -0400Subject: configure failure in ports build on currentI attempted to build gtk20 on my AMD64 current box.  It fails in theconfigure step as follows:checking for TIFFReadScanline in -ltiff... nochecking for TIFFWriteScanline in -ltiff... nochecking for TIFFFlushData in -ltiff34... noconfigure: WARNING: *** TIFF loader will not be built (TIFF library notfound) ***configure: error:*** Checks for TIFF loader failed. You can build without it by passing*** --without-libtiff to configure but some programs using GTK+ may*** not work properly===>  Script "configure" failed unexpectedly. However, nm /usr/local/lib/libtiff.so shows:000000000002df90 T TIFFReadScanline000000000002e450 T TIFFScanlineSize0000000000030890 T TIFFWriteScanline 00000000000176b0 T TIFFFlushData Building on 6.2 Stable AMD64 has no problems.  I also note that libtiffon Stable is also in /usr/local/lib.   Is there some environment variable that I haven't set in the currentbox, or what?  Does anybody have a clue for me? -- Best regards,Derek Tattersalldlt_at_mebtel.net		dlt666_at_yahoo.com		 dtatters_at_gmail.com --Forwarded Message Attachment--From: jerryeguru_at_gmail.comTo: freebsd-current_at_freebsd.orgDate: Fri, 4 May 2007 02:56:56 +0300Subject: iso errorHow do i find out if my downloaded iso files are not corrupt be4 i can burnthem and start my installation?-- Mr. Ochieng Jerry JoramCertified Network Associate - CCNA[In progress] Certified Network Professional - CCNP[In progress] Certified Systems Eng - LinuxMob: (256) 774 108 444, (256) 712 401218ICQ Number: 293-639-978http://www.linuxmortal.blogspot.com/----"Memorizing the weak assumptions of lesser mortals might destroy thepotential for authentic creativity, finding the truth to thegoverning dynamics for an original idea is the way to distinguishone-self"---- --Forwarded Message Attachment--From: kip.macy_at_gmail.comCC: freebsd-current_at_freebsd.orgTo: jerryeguru_at_gmail.comDate: Thu, 3 May 2007 17:32:11 -0700Subject: Re: iso errorCompare the output of md5 with what is on the page.        -Kip On 5/3/07, Mr. OJ J <jerryeguru_at_gmail.com> wrote:> How do i find out if my downloaded iso files are not corrupt be4 i can burn> them and start my installation?> --> Mr. Ochieng Jerry Joram> Certified Network Associate - CCNA> [In progress] Certified Network Professional - CCNP> [In progress] Certified Systems Eng - Linux> Mob: (256) 774 108 444, (256) 712 401218> ICQ Number: 293-639-978> http://www.linuxmortal.blogspot.com/> ----> "Memorizing the weak assumptions of lesser mortals might destroy the> potential for authentic creativity, finding the truth to the> governing dynamics for an original idea is the way to distinguish> one-self"> ----> _______________________________________________> freebsd-current_at_freebsd.org mailing list> http://lists.freebsd.org/mailman/listinfo/freebsd-current> To unsubscribe, send any mail to "freebsd-current-unsubscribe_at_freebsd.org"> --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; i386_at_freebsd.orgDate: Thu, 3 May 2007 21:38:17 -0400Subject: [head tinderbox] failure on i386/pc98TB --- 2007-05-04 00:33:56 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 00:33:56 - starting HEAD tinderbox run for i386/pc98TB --- 2007-05-04 00:33:56 - cleaning the object treeTB --- 2007-05-04 00:34:25 - checking out the source treeTB --- 2007-05-04 00:34:25 - cd /tinderbox/HEAD/i386/pc98TB --- 2007-05-04 00:34:25 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 00:41:36 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 00:41:36 - cd /srcTB --- 2007-05-04 00:41:36 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 00:41:38 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 01:36:04 UTC 2007TB --- 2007-05-04 01:36:04 - generating LINT kernel configTB --- 2007-05-04 01:36:04 - cd /src/sys/pc98/confTB --- 2007-05-04 01:36:04 - /usr/bin/make -B LINTTB --- 2007-05-04 01:36:04 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 01:36:04 - cd /srcTB --- 2007-05-04 01:36:04 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 01:36:05 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/pc98/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 01:38:17 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 01:38:17 - ERROR: failed to build lint kernelTB --- 2007-05-04 01:38:17 - tinderbox abortedTB --- 0.81 user 2.90 system 3861.55 real  http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; ia64_at_freebsd.orgDate: Thu, 3 May 2007 22:46:41 -0400Subject: [head tinderbox] failure on ia64/ia64TB --- 2007-05-04 01:21:10 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 01:21:10 - starting HEAD tinderbox run for ia64/ia64TB --- 2007-05-04 01:21:10 - cleaning the object treeTB --- 2007-05-04 01:21:42 - checking out the source treeTB --- 2007-05-04 01:21:42 - cd /tinderbox/HEAD/ia64/ia64TB --- 2007-05-04 01:21:42 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 01:28:39 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 01:28:39 - cd /srcTB --- 2007-05-04 01:28:39 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 01:28:41 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 02:44:53 UTC 2007TB --- 2007-05-04 02:44:53 - generating LINT kernel configTB --- 2007-05-04 02:44:53 - cd /src/sys/ia64/confTB --- 2007-05-04 02:44:53 - /usr/bin/make -B LINTTB --- 2007-05-04 02:44:53 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 02:44:53 - cd /srcTB --- 2007-05-04 02:44:53 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 02:44:53 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/ia64/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 02:46:41 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 02:46:41 - ERROR: failed to build lint kernelTB --- 2007-05-04 02:46:41 - tinderbox abortedTB --- 0.81 user 2.59 system 5130.93 real  http://tinderbox.des.no/tinderbox-head-HEAD-ia64-ia64.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; sparc64_at_freebsd.orgDate: Thu, 3 May 2007 23:50:29 -0400Subject: [head tinderbox] failure on sparc64/sparc64TB --- 2007-05-04 02:46:41 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 02:46:41 - starting HEAD tinderbox run for sparc64/sparc64TB --- 2007-05-04 02:46:41 - cleaning the object treeTB --- 2007-05-04 02:47:00 - checking out the source treeTB --- 2007-05-04 02:47:00 - cd /tinderbox/HEAD/sparc64/sparc64TB --- 2007-05-04 02:47:00 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 02:54:06 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 02:54:06 - cd /srcTB --- 2007-05-04 02:54:06 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 02:54:07 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 03:48:32 UTC 2007TB --- 2007-05-04 03:48:32 - generating LINT kernel configTB --- 2007-05-04 03:48:32 - cd /src/sys/sparc64/confTB --- 2007-05-04 03:48:32 - /usr/bin/make -B LINTTB --- 2007-05-04 03:48:32 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 03:48:32 - cd /srcTB --- 2007-05-04 03:48:32 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 03:48:32 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/sparc64/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 03:50:28 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 03:50:28 - ERROR: failed to build lint kernelTB --- 2007-05-04 03:50:28 - tinderbox abortedTB --- 0.69 user 2.52 system 3827.38 real  http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sparc64.full --Forwarded Message Attachment--From: anderson_at_freebsd.orgCC: freebsd-current_at_freebsd.orgTo: ivoras_at_fer.hrDate: Thu, 3 May 2007 22:56:42 -0500Subject: Re: gjournal + gmirror questionOn 05/03/07 08:38, Ivan Voras wrote:> Pawel Jakub Dawidek wrote:> >> When you call 'fsck -p' on gjournaled file system, it recognize that it>> is journaled and only garbage-collects orphaned inodes.> > Does fsck during boot also behave like this?>  Looks like it does: [..snippet of /etc/rc.d/fsck..]...                 echo "Starting file system checks:"                 if checkyesno background_fsck; then                         fsck -F -p                 else                         fsck -p                 fi...  Eric --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; sparc64_at_freebsd.orgDate: Fri, 4 May 2007 00:11:22 -0400Subject: [head tinderbox] failure on sparc64/sun4vTB --- 2007-05-04 03:10:10 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 03:10:10 - starting HEAD tinderbox run for sparc64/sun4vTB --- 2007-05-04 03:10:10 - cleaning the object treeTB --- 2007-05-04 03:10:31 - checking out the source treeTB --- 2007-05-04 03:10:31 - cd /tinderbox/HEAD/sparc64/sun4vTB --- 2007-05-04 03:10:31 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 03:17:20 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 03:17:20 - cd /srcTB --- 2007-05-04 03:17:20 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 03:17:22 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 04:09:48 UTC 2007TB --- 2007-05-04 04:09:48 - generating LINT kernel configTB --- 2007-05-04 04:09:48 - cd /src/sys/sun4v/confTB --- 2007-05-04 04:09:48 - /usr/bin/make -B LINTTB --- 2007-05-04 04:09:48 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 04:09:48 - cd /srcTB --- 2007-05-04 04:09:48 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 04:09:48 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/sun4v/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 04:11:22 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 04:11:22 - ERROR: failed to build lint kernelTB --- 2007-05-04 04:11:22 - tinderbox abortedTB --- 0.72 user 2.28 system 3671.34 real  http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sun4v.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; amd64_at_freebsd.orgDate: Fri, 4 May 2007 01:51:11 -0400Subject: [head tinderbox] failure on amd64/amd64TB --- 2007-05-04 04:15:00 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 04:15:00 - starting HEAD tinderbox run for amd64/amd64TB --- 2007-05-04 04:15:00 - cleaning the object treeTB --- 2007-05-04 04:15:36 - checking out the source treeTB --- 2007-05-04 04:15:36 - cd /tinderbox/HEAD/amd64/amd64TB --- 2007-05-04 04:15:36 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 04:24:03 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 04:24:03 - cd /srcTB --- 2007-05-04 04:24:03 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 04:24:05 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> stage 5.1: building 32 bit shim libraries>>> World build completed on Fri May  4 05:44:46 UTC 2007TB --- 2007-05-04 05:44:46 - generating LINT kernel configTB --- 2007-05-04 05:44:46 - cd /src/sys/amd64/confTB --- 2007-05-04 05:44:46 - /usr/bin/make -B LINTTB --- 2007-05-04 05:44:46 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 05:44:46 - cd /srcTB --- 2007-05-04 05:44:46 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 05:44:46 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/amd64/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 05:51:10 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 05:51:10 - ERROR: failed to build lint kernelTB --- 2007-05-04 05:51:10 - tinderbox abortedTB --- 0.88 user 3.75 system 5770.59 real  http://tinderbox.des.no/tinderbox-head-HEAD-amd64-amd64.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; i386_at_freebsd.orgDate: Fri, 4 May 2007 02:39:50 -0400Subject: [head tinderbox] failure on i386/i386TB --- 2007-05-04 05:20:44 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 05:20:44 - starting HEAD tinderbox run for i386/i386TB --- 2007-05-04 05:20:44 - cleaning the object treeTB --- 2007-05-04 05:21:19 - checking out the source treeTB --- 2007-05-04 05:21:19 - cd /tinderbox/HEAD/i386/i386TB --- 2007-05-04 05:21:19 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 05:27:50 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 05:27:50 - cd /srcTB --- 2007-05-04 05:27:50 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 05:27:52 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 06:37:19 UTC 2007TB --- 2007-05-04 06:37:19 - generating LINT kernel configTB --- 2007-05-04 06:37:19 - cd /src/sys/i386/confTB --- 2007-05-04 06:37:19 - /usr/bin/make -B LINTTB --- 2007-05-04 06:37:19 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 06:37:19 - cd /srcTB --- 2007-05-04 06:37:19 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 06:37:19 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 06:39:50 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 06:39:50 - ERROR: failed to build lint kernelTB --- 2007-05-04 06:39:50 - tinderbox abortedTB --- 0.91 user 2.84 system 4745.98 real  http://tinderbox.des.no/tinderbox-head-HEAD-i386-i386.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; i386_at_freebsd.orgDate: Fri, 4 May 2007 03:23:45 -0400Subject: [head tinderbox] failure on i386/pc98TB --- 2007-05-04 05:51:11 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 05:51:11 - starting HEAD tinderbox run for i386/pc98TB --- 2007-05-04 05:51:11 - cleaning the object treeTB --- 2007-05-04 05:51:57 - checking out the source treeTB --- 2007-05-04 05:51:57 - cd /tinderbox/HEAD/i386/pc98TB --- 2007-05-04 05:51:57 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 06:14:34 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 06:14:34 - cd /srcTB --- 2007-05-04 06:14:34 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 06:14:36 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 07:19:53 UTC 2007TB --- 2007-05-04 07:19:53 - generating LINT kernel configTB --- 2007-05-04 07:19:53 - cd /src/sys/pc98/confTB --- 2007-05-04 07:19:53 - /usr/bin/make -B LINTTB --- 2007-05-04 07:19:53 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 07:19:53 - cd /srcTB --- 2007-05-04 07:19:53 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 07:19:53 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/pc98/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 07:23:45 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 07:23:45 - ERROR: failed to build lint kernelTB --- 2007-05-04 07:23:45 - tinderbox abortedTB --- 0.62 user 1.89 system 5553.59 real  http://tinderbox.des.no/tinderbox-head-HEAD-i386-pc98.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; ia64_at_freebsd.orgDate: Fri, 4 May 2007 04:21:36 -0400Subject: [head tinderbox] failure on ia64/ia64TB --- 2007-05-04 06:39:50 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 06:39:50 - starting HEAD tinderbox run for ia64/ia64TB --- 2007-05-04 06:39:50 - cleaning the object treeTB --- 2007-05-04 06:40:14 - checking out the source treeTB --- 2007-05-04 06:40:14 - cd /tinderbox/HEAD/ia64/ia64TB --- 2007-05-04 06:40:14 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 06:48:14 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 06:48:14 - cd /srcTB --- 2007-05-04 06:48:14 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 06:48:15 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 08:19:41 UTC 2007TB --- 2007-05-04 08:19:41 - generating LINT kernel configTB --- 2007-05-04 08:19:41 - cd /src/sys/ia64/confTB --- 2007-05-04 08:19:41 - /usr/bin/make -B LINTTB --- 2007-05-04 08:19:41 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 08:19:41 - cd /srcTB --- 2007-05-04 08:19:41 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 08:19:42 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies[...]/src/sys/modules/em/../../dev/em/e1000_80003es2lan.c:38:31: e1000_80003es2lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82542.c:39:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82541.c:42:25: e1000_82541.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82543.c:40:25: e1000_82543.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82540.c:43:23: e1000_api.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_ich8lan.c:40:27: e1000_ich8lan.h: No such file or directory/src/sys/modules/em/../../dev/em/e1000_82571.c:41:25: e1000_82571.h: No such file or directorymkdep: compile failed*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/ia64/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 08:21:36 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 08:21:36 - ERROR: failed to build lint kernelTB --- 2007-05-04 08:21:36 - tinderbox abortedTB --- 0.59 user 1.81 system 6105.42 real  http://tinderbox.des.no/tinderbox-head-HEAD-ia64-ia64.full --Forwarded Message Attachment--From: ler_at_lerctr.orgTo: freebsd-current_at_freebsd.orgDate: Fri, 4 May 2007 03:45:03 -0500Subject: EM importThe new em driver import has 2 fatal flaws (I've sent mail to Jack  already): 1) the $FreeBSD$ markers don't have comment markers around them in  ALL files2) the sys/conf/files file doesn't have the lines for e1000_82575 in it Fixing both of those fixes my build. LER --Forwarded Message Attachment--From: ivoras_at_fer.hrTo: freebsd-current_at_freebsd.orgDate: Fri, 4 May 2007 11:03:47 +0200Subject: Re: gjournal + gmirror questionEric Anderson wrote: > Looks like it does: Aaargh, sorry, of course it does, it's the "preen" switch :) I didn't pay attention (and thought it's some new switch introduced for gjournal).  --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; sparc64_at_freebsd.orgDate: Fri, 4 May 2007 05:37:52 -0400Subject: [head tinderbox] failure on sparc64/sparc64TB --- 2007-05-04 08:21:36 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 08:21:36 - starting HEAD tinderbox run for sparc64/sparc64TB --- 2007-05-04 08:21:36 - cleaning the object treeTB --- 2007-05-04 08:21:53 - checking out the source treeTB --- 2007-05-04 08:21:53 - cd /tinderbox/HEAD/sparc64/sparc64TB --- 2007-05-04 08:21:53 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 08:28:56 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 08:28:56 - cd /srcTB --- 2007-05-04 08:28:56 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 08:28:57 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 09:24:41 UTC 2007TB --- 2007-05-04 09:24:41 - generating LINT kernel configTB --- 2007-05-04 09:24:41 - cd /src/sys/sparc64/confTB --- 2007-05-04 09:24:41 - /usr/bin/make -B LINTTB --- 2007-05-04 09:24:41 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 09:24:41 - cd /srcTB --- 2007-05-04 09:24:41 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 09:24:41 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies>>> stage 3.2: building everything[...]/src/sys/modules/em/../../dev/em/e1000_82575.h:33: warning: type defaults to `int' in declaration of `h'/src/sys/modules/em/../../dev/em/e1000_82575.h:33: warning: redundant redeclaration of 'h'/src/sys/modules/em/../../dev/em/e1000_manage.h:33: warning: previous declaration of 'h' was here/src/sys/modules/em/../../dev/em/e1000_82575.h:33: error: syntax error before numeric constantIn file included from /src/sys/modules/em/../../dev/em/if_em.c:81:/src/sys/modules/em/../../dev/em/e1000_82575.h:169: error: syntax error before '}' tokenIn file included from /src/sys/modules/em/../../dev/em/if_em.c:81:/src/sys/modules/em/../../dev/em/e1000_82575.h:36:1: unterminated #ifndef*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/sparc64/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 09:37:51 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 09:37:51 - ERROR: failed to build lint kernelTB --- 2007-05-04 09:37:51 - tinderbox abortedTB --- 0.52 user 1.77 system 4575.36 real  http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sparc64.full --Forwarded Message Attachment--From: tinderbox_at_freebsd.orgCC: To: tinderbox_at_freebsd.org; current_at_freebsd.org; sparc64_at_freebsd.orgDate: Fri, 4 May 2007 06:22:52 -0400Subject: [head tinderbox] failure on sparc64/sun4vTB --- 2007-05-04 09:11:55 - tinderbox 2.3 running on freebsd-current.sentex.caTB --- 2007-05-04 09:11:55 - starting HEAD tinderbox run for sparc64/sun4vTB --- 2007-05-04 09:11:55 - cleaning the object treeTB --- 2007-05-04 09:12:13 - checking out the source treeTB --- 2007-05-04 09:12:13 - cd /tinderbox/HEAD/sparc64/sun4vTB --- 2007-05-04 09:12:13 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A srcTB --- 2007-05-04 09:19:36 - building world (CFLAGS=-O2 -pipe)TB --- 2007-05-04 09:19:36 - cd /srcTB --- 2007-05-04 09:19:36 - /usr/bin/make -B buildworld>>> World build started on Fri May  4 09:19:37 UTC 2007>>> Rebuilding the temporary build tree>>> stage 1.1: legacy release compatibility shims>>> stage 1.2: bootstrap tools>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3: cross tools>>> stage 4.1: building includes>>> stage 4.2: building libraries>>> stage 4.3: make dependencies>>> stage 4.4: building everything>>> World build completed on Fri May  4 10:10:42 UTC 2007TB --- 2007-05-04 10:10:42 - generating LINT kernel configTB --- 2007-05-04 10:10:42 - cd /src/sys/sun4v/confTB --- 2007-05-04 10:10:42 - /usr/bin/make -B LINTTB --- 2007-05-04 10:10:42 - building LINT kernel (COPTFLAGS=-O2 -pipe)TB --- 2007-05-04 10:10:42 - cd /srcTB --- 2007-05-04 10:10:42 - /usr/bin/make buildkernel KERNCONF=LINT>>> Kernel build for LINT started on Fri May  4 10:10:43 UTC 2007>>> stage 1: configuring the kernel>>> stage 2.1: cleaning up the object tree>>> stage 2.2: rebuilding the object tree>>> stage 2.3: build tools>>> stage 3.1: making dependencies>>> stage 3.2: building everything[...]/src/sys/modules/em/../../dev/em/e1000_82575.h:33: warning: type defaults to `int' in declaration of `h'/src/sys/modules/em/../../dev/em/e1000_82575.h:33: warning: redundant redeclaration of 'h'/src/sys/modules/em/../../dev/em/e1000_manage.h:33: warning: previous declaration of 'h' was here/src/sys/modules/em/../../dev/em/e1000_82575.h:33: error: syntax error before numeric constantIn file included from /src/sys/modules/em/../../dev/em/if_em.c:81:/src/sys/modules/em/../../dev/em/e1000_82575.h:169: error: syntax error before '}' tokenIn file included from /src/sys/modules/em/../../dev/em/if_em.c:81:/src/sys/modules/em/../../dev/em/e1000_82575.h:36:1: unterminated #ifndef*** Error code 1 Stop in /src/sys/modules/em.*** Error code 1 Stop in /src/sys/modules.*** Error code 1 Stop in /obj/sun4v/src/sys/LINT.*** Error code 1 Stop in /src.*** Error code 1 Stop in /src.TB --- 2007-05-04 10:22:52 - WARNING: /usr/bin/make returned exit code  1 TB --- 2007-05-04 10:22:52 - ERROR: failed to build lint kernelTB --- 2007-05-04 10:22:52 - tinderbox abortedTB --- 0.45 user 1.92 system 4256.99 real  http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sun4v.full --Forwarded Message Attachment--From: ivoras_at_fer.hrTo: freebsd-current_at_freebsd.orgDate: Fri, 4 May 2007 12:39:11 +0200Subject: new unionfs & moving files aroundThis is the situation:	- there's one file system on a RAID controller, somewhat slow and with limited space, let's call it "production"	- there's another file system on a big IDE drive	- a lot of files are saved on the production file system, but the usefulness of that data shaply declines with time (recent files absolutely need to be kept, but older files are optional) The idea:	- create a unionfs that covers both file systems, so that new files are created on the RAID-backed file system, but all files are visible	- create a cron job that moves older files from the production file system to the spare file system I've not started it yet (waiting for csup to RELENG_6) but is there any "hidden" reason this shouldn't work? I'm asking because the files will be moved from one part of the unionfs (upper) to the other (lower), on different file systems, probably while concurrently accessed.  --Forwarded Message Attachment--From: carpetsmoker_at_rwxrwxrwx.netCC: dlt_at_mebtel.netTo: freebsd-current_at_freebsd.orgDate: Fri, 4 May 2007 06:22:14 +0200Subject: Re: configure failure in ports build on currentOn Thu 03 May 2007 18:05, Derek Tattersall wrote:> I attempted to build gtk20 on my AMD64 current box.  It fails in the> configure step as follows:> checking for TIFFReadScanline in -ltiff... no> checking for TIFFWriteScanline in -ltiff... no> checking for TIFFFlushData in -ltiff34... no> configure: WARNING: *** TIFF loader will not be built (TIFF library not> found) ***> configure: error:> *** Checks for TIFF loader failed. You can build without it by passing> *** --without-libtiff to configure but some programs using GTK+ may> *** not work properly> ===>  Script "configure" failed unexpectedly.> > However, nm /usr/local/lib/libtiff.so shows:> 000000000002df90 T TIFFReadScanline> 000000000002e450 T TIFFScanlineSize> 0000000000030890 T TIFFWriteScanline> > 00000000000176b0 T TIFFFlushData> > Building on 6.2 Stable AMD64 has no problems.  I also note that libtiff> on Stable is also in /usr/local/lib.  > > Is there some environment variable that I haven't set in the current> box, or what?  Does anybody have a clue for me? Does ldconfig know about your tiff library?ldconfig -r | grep tiff Which version of gtk are you trying to build? And which version oftiff do you have installed? Can you attach your config.log (should be in work/gtk.../config.log) -- Regards,Martin Tournoij 
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE
Received on Fri May 04 2007 - 10:26:46 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:09 UTC