From owner-freebsd-i386@FreeBSD.ORG Sun Jan 31 01:40:08 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1E71106568B for ; Sun, 31 Jan 2010 01:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C6B58FC1D for ; Sun, 31 Jan 2010 01:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0V1e8M8046021 for ; Sun, 31 Jan 2010 01:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0V1e8P7046020; Sun, 31 Jan 2010 01:40:08 GMT (envelope-from gnats) Resent-Date: Sun, 31 Jan 2010 01:40:08 GMT Resent-Message-Id: <201001310140.o0V1e8P7046020@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Daisuke Aoyama Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35C2C106566B for ; Sun, 31 Jan 2010 01:35:02 +0000 (UTC) (envelope-from aoyama@peach.ne.jp) Received: from moon.peach.ne.jp (unknown [IPv6:2001:380:e06:127::53]) by mx1.freebsd.org (Postfix) with ESMTP id C75A58FC0A for ; Sun, 31 Jan 2010 01:35:01 +0000 (UTC) Received: from moon.peach.ne.jp (localhost [127.0.0.1]) by moon.peach.ne.jp (Postfix) with ESMTP id 4E4AD78C4B for ; Sun, 31 Jan 2010 10:34:51 +0900 (JST) Received: from hera.peach.ne.jp.private (unknown [192.168.2.36]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by moon.peach.ne.jp (Postfix) with ESMTP id 097CE78C3B for ; Sun, 31 Jan 2010 10:34:50 +0900 (JST) Received: from hera.peach.ne.jp.private (localhost [127.0.0.1]) by hera.peach.ne.jp.private (8.14.3/8.14.3) with ESMTP id o0V1YZG4041031 for ; Sun, 31 Jan 2010 10:34:35 +0900 (JST) (envelope-from aoyama@peach.ne.jp) Received: (from aoyama@localhost) by hera.peach.ne.jp.private (8.14.3/8.14.3/Submit) id o0V1YZDI041030; Sun, 31 Jan 2010 10:34:35 +0900 (JST) (envelope-from aoyama) Message-Id: <201001310134.o0V1YZDI041030@hera.peach.ne.jp.private> Date: Sun, 31 Jan 2010 10:34:35 +0900 (JST) From: Daisuke Aoyama To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: i386/143389: fdisk(8) cannot handle above 1TB under i386 system. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daisuke Aoyama List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2010 01:40:08 -0000 >Number: 143389 >Category: i386 >Synopsis: fdisk(8) cannot handle above 1TB under i386 system. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 31 01:40:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Daisuke Aoyama >Release: FreeBSD 7.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD hera.peach.ne.jp.private 7.1-RELEASE-p10 FreeBSD 7.1-RELEASE-p10 #0: Wed Jan 13 13:18:46 JST 2010 aoyama@hera.peach.ne.jp.private:/usr/src/sys/i386/compile/ISCSI i386 >Description: I first noticed at the post of FreeNAS forum below. http://sourceforge.net/apps/phpbb/freenas/viewtopic.php?f=78&t=5558&start=0 The reason is /sbin/fdisk reads config value by strtol(3) as signed long which is 32 bits on i386. At least, this bug still exists in HEAD. structure definition: >How-To-Repeat: /sbin/fdisk -f on 2TB disk. >Fix: use unsigned long/int or more wide type. (strtoul, etc) >Release-Note: >Audit-Trail: >Unformatted: >>typedef struct cmd { >> char cmd; >> int n_args; >> struct arg { >> char argtype; >> int arg_val; //signed int (32bit) >> } args[MAX_ARGS]; >>} CMD; in function parse_config_line(): >> command->args[command->n_args].arg_val = strtol(cp, &end, 0); // return as signed long strtol(3) is overflow if the value > LONG_MAX(0x7fffffffL on i386). As a result, the partition have wrong size and boundary. Once wrong partition is created, writing to it will cause data loss of next/previous partition. I tested following config on 2TB disk. g c261083 h255 s63 p 1 165 1 2097152 p 2 165 2097154 4175429632 p 3 165 4177526787 16777216 p 4 0 0 0 a 1 Please see above the link for more detail. I am not checking other utilities. From owner-freebsd-i386@FreeBSD.ORG Sun Jan 31 08:40:04 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0772F1065676 for ; Sun, 31 Jan 2010 08:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B769A8FC1E for ; Sun, 31 Jan 2010 08:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0V8e3bQ047204 for ; Sun, 31 Jan 2010 08:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0V8e3cJ047203; Sun, 31 Jan 2010 08:40:03 GMT (envelope-from gnats) Resent-Date: Sun, 31 Jan 2010 08:40:03 GMT Resent-Message-Id: <201001310840.o0V8e3cJ047203@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrei Moraru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DFC310656D2 for ; Sun, 31 Jan 2010 08:34:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id E78148FC0C for ; Sun, 31 Jan 2010 08:34:05 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o0V8Y5Cb060860 for ; Sun, 31 Jan 2010 08:34:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o0V8Y5Tp060859; Sun, 31 Jan 2010 08:34:05 GMT (envelope-from nobody) Message-Id: <201001310834.o0V8Y5Tp060859@www.freebsd.org> Date: Sun, 31 Jan 2010 08:34:05 GMT From: Andrei Moraru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/143396: panic: page fault X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2010 08:40:04 -0000 >Number: 143396 >Category: i386 >Synopsis: panic: page fault >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 31 08:40:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Andrei Moraru >Release: 7.2 >Organization: >Environment: FreeBSD gw3.matrix.md 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Thu Jan 21 23:39:15 EET 2010 matagou@gmail.com:/usr/obj/usr/src/sys/GWVPN.v2 i386 >Description: I have installed curlftpfs from ports. I have mounted fuse.ko module with kldload. I have mounted ftp filesystem on /mnt/vs-hdd. Then I am archiving with tar on mounted ftp volume. The local machine has a kernel panic. the output of: gw3# kgdb kernel.debug /var/crash/vmcore.0 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x20:0xc05e7486 stack pointer = 0x28:0xc23f9c04 frame pointer = 0x28:0xc23f9c40 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 36 (vnlru) trap number = 12 panic: page fault Uptime: 9d2h24m27s Physical memory: 375 MB Dumping 117 MB: 102 86 70 54 38 22 6 Reading symbols from /boot/kernel/acpi.ko...Reading symbols from /boot/kernel/acpi.ko.symbols...done. done. Loaded symbols for /boot/kernel/acpi.ko Reading symbols from /boot/kernel/if_tap.ko...Reading symbols from /boot/kernel/if_tap.ko.symbols...done. done. Loaded symbols for /boot/kernel/if_tap.ko Reading symbols from /boot/kernel/if_bridge.ko...Reading symbols from /boot/kernel/if_bridge.ko.symbols...done. done. Loaded symbols for /boot/kernel/if_bridge.ko Reading symbols from /boot/kernel/bridgestp.ko...Reading symbols from /boot/kernel/bridgestp.ko.symbols...done. done. Loaded symbols for /boot/kernel/bridgestp.ko Reading symbols from /usr/local/modules/fuse.ko...done. Loaded symbols for /usr/local/modules/fuse.ko #0 doadump () at pcpu.h:196 196 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); >How-To-Repeat: I have installed curlftpfs from ports. I have mounted fuse.ko module with kldload. I have mounted ftp filesystem on /mnt/vs-hdd. Then I am archiving with tar on mounted ftp volume. The local machine has a kernel panic. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun Jan 31 10:37:52 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3E6F1065676; Sun, 31 Jan 2010 10:37:52 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7F98FC1F; Sun, 31 Jan 2010 10:37:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0VAbqtM049822; Sun, 31 Jan 2010 10:37:52 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0VAbqpb049818; Sun, 31 Jan 2010 10:37:52 GMT (envelope-from remko) Date: Sun, 31 Jan 2010 10:37:52 GMT Message-Id: <201001311037.o0VAbqpb049818@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: ports/143396: sysutils/fusefs-curlftpfs: panic: page fault X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2010 10:37:52 -0000 Old Synopsis: panic: page fault New Synopsis: sysutils/fusefs-curlftpfs: panic: page fault Responsible-Changed-From-To: freebsd-i386->freebsd-ports-bugs Responsible-Changed-By: remko Responsible-Changed-When: Sun Jan 31 10:36:56 UTC 2010 Responsible-Changed-Why: Seems something from the port. http://www.freebsd.org/cgi/query-pr.cgi?pr=143396 From owner-freebsd-i386@FreeBSD.ORG Mon Feb 1 04:32:52 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B99E1106566C; Mon, 1 Feb 2010 04:32:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 904E68FC1B; Mon, 1 Feb 2010 04:32:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o114WqVI091507; Mon, 1 Feb 2010 04:32:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o114WquX091503; Mon, 1 Feb 2010 04:32:52 GMT (envelope-from linimon) Date: Mon, 1 Feb 2010 04:32:52 GMT Message-Id: <201002010432.o114WquX091503@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/143389: [2tb] fdisk(8) cannot handle above 1TB under i386 system. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2010 04:32:52 -0000 Old Synopsis: fdisk(8) cannot handle above 1TB under i386 system. New Synopsis: [2tb] fdisk(8) cannot handle above 1TB under i386 system. Responsible-Changed-From-To: freebsd-i386->freebsd-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 1 04:31:53 UTC 2010 Responsible-Changed-Why: This does not sound i386-specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=143389 From owner-freebsd-i386@FreeBSD.ORG Mon Feb 1 06:03:30 2010 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CB511065672 for ; Mon, 1 Feb 2010 06:03:30 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from mail-px0-f183.google.com (mail-px0-f183.google.com [209.85.216.183]) by mx1.freebsd.org (Postfix) with ESMTP id 43CAA8FC13 for ; Mon, 1 Feb 2010 06:03:30 +0000 (UTC) Received: by pxi13 with SMTP id 13so2339862pxi.3 for ; Sun, 31 Jan 2010 22:03:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=ggysxNXNDGYGA3ZK9mdDpRbHyR2KK+OfvljLE7LlDMI=; b=woZvmLms+ghAJlp+VbdZ9r5iOn+HuuG1xGHZ83/yqYwUP9zyxnRv6ALSJQYFugOopv j76TUyoTEtVVDlPMCeqA4GxMUHRWbHnIUZSGHeVNV7iwooALuQnaw7dlfpuxAnmbRHuO FDpqUyV7EfS2skbRrum2auetp2ziGjYLt+UH0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=tY/AwIQ2p9K7eWqjDJ7hp60jQOrm1TzJX5Y8fYtxrc2Ze7HlTwgircHjgMpcot5NZx y1dX0YBoTbyBS3/BBOOD1se03GLzJFAZBgUHJE/AgN9BbFC9o1qNqBXe9n/rD1RQFgWH nZ1aq6GLQP9ok/IjQXSwQHk7nO+AWfygOV/9A= MIME-Version: 1.0 Received: by 10.143.26.6 with SMTP id d6mr2798812wfj.223.1265002638496; Sun, 31 Jan 2010 21:37:18 -0800 (PST) In-Reply-To: <201002010432.o114WquX091503@freefall.freebsd.org> References: <201002010432.o114WquX091503@freefall.freebsd.org> Date: Sun, 31 Jan 2010 21:37:18 -0800 Message-ID: <7d6fde3d1001312137m5eab6a85hd0577f73421a07e5@mail.gmail.com> From: Garrett Cooper To: linimon@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-bugs@freebsd.org, freebsd-i386@freebsd.org Subject: Re: bin/143389: [2tb] fdisk(8) cannot handle above 1TB under i386 system. X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2010 06:03:30 -0000 On Sun, Jan 31, 2010 at 8:32 PM, wrote: > Old Synopsis: fdisk(8) cannot handle above 1TB under i386 system. > New Synopsis: [2tb] fdisk(8) cannot handle above 1TB under i386 system. > > Responsible-Changed-From-To: freebsd-i386->freebsd-bugs > Responsible-Changed-By: linimon > Responsible-Changed-When: Mon Feb 1 04:31:53 UTC 2010 > Responsible-Changed-Why: > This does not sound i386-specific. It's actually 32-bit specific, which includes i386, mips* [today], and powerpc. Cheers, -Garrett From owner-freebsd-i386@FreeBSD.ORG Mon Feb 1 09:10:01 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A824E106566B for ; Mon, 1 Feb 2010 09:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D2798FC15 for ; Mon, 1 Feb 2010 09:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o119A1oE057703 for ; Mon, 1 Feb 2010 09:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o119A1Lo057702; Mon, 1 Feb 2010 09:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 1 Feb 2010 09:10:01 GMT Resent-Message-Id: <201002010910.o119A1Lo057702@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Piotr Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96E29106566B for ; Mon, 1 Feb 2010 09:06:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 869B08FC12 for ; Mon, 1 Feb 2010 09:06:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o1196oEV041572 for ; Mon, 1 Feb 2010 09:06:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o1196npg041571; Mon, 1 Feb 2010 09:06:49 GMT (envelope-from nobody) Message-Id: <201002010906.o1196npg041571@www.freebsd.org> Date: Mon, 1 Feb 2010 09:06:49 GMT From: Piotr To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/143423: be_agent > /usr and /var ara empty X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2010 09:10:01 -0000 >Number: 143423 >Category: i386 >Synopsis: be_agent > /usr and /var ara empty >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 01 09:10:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Piotr >Release: freeBSD 7.0 >Organization: >Environment: # uname -a FreeBSD bsd.net 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: hi I have the newest ports tree update and I've installed /usr/ports/sysutils/be_agent/. Accordeing to: http://www.freshports.org/sysutils/be_agent/ Backup Exec 9.1 for Windows Servers (All Revisions) should be supported. I've configured /usr/local/etc/be-agent.cfg for Backup Exec 9.1 SP5. # cat /usr/local/etc/be-agent.cfg name bsd.dom export / as root export /usr as usr export /var as var export /tmp as tmp force_address 192.168.1.100 tell 192.168.1.50 tell_interval 30 follow_symdirs exclude_dir /dev exclude_dir /proc but if I connect from the Backup Exec 9.1 to my FreeBSD, then /usr and /var are empty. >How-To-Repeat: install /usr/ports/sysutils/be_agent/, configure /usr/local/etc/be-agent.cfg and try to connect from Backup Exec 9.1 SP5 to /usr and /var slices. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Feb 1 11:06:57 2010 Return-Path: Delivered-To: freebsd-i386@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FD0B106568F for ; Mon, 1 Feb 2010 11:06:57 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C8CF8FC15 for ; Mon, 1 Feb 2010 11:06:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o11B6v7h062814 for ; Mon, 1 Feb 2010 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o11B6uKT062812 for freebsd-i386@FreeBSD.org; Mon, 1 Feb 2010 11:06:56 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 1 Feb 2010 11:06:56 GMT Message-Id: <201002011106.o11B6uKT062812@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-i386@FreeBSD.org X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2010 11:06:57 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/143423 i386 be_agent > /usr and /var ara empty o i386/142946 i386 [btx] Can't boot installation DVD. BTX halted o i386/142934 i386 [boot] Cannot boot FreeBSD 6.4, 7.x on Hint Corp VX Pr o i386/142421 i386 [ata] optical drives not found o i386/142190 i386 [btx] BTX Loader issue on Gigabyte Motherboard o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 o i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o i386/141119 i386 [irq] Stop starting on computer with ISA network card o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o i386/139999 i386 [panic] random freeze and crash o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o i386/138948 i386 [ata] [regression] da0: Fi o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o i386/137925 i386 [boot] BTX loader hangs when raid volume present [regr o i386/134984 i386 [boot] [hang] boot from i386 DVD on Lenovo R500 fails o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose f i386/134106 i386 [boot] Dell Dimension XPS R400 fail to boot on CF IDE o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o i386/132416 i386 Popup motherboard bios setup window when rebooting sys o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o i386/132110 i386 [build] /libexec/ld-elf.so.1: /lib/libc.so.7: version o i386/131426 i386 hald makes cdrom fail o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab o i386/127981 i386 [loader] Stack underflow preventing boot [regression] o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 o i386/127343 i386 [hang] System locks -- simular to PR 123729 o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o i386/125880 i386 [cardbus] Cardbus cards Don't function on TI PCIxx12 C o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/125383 i386 [amdtemp] [request] please enable amdtemp on i386 o i386/125011 i386 precision of constants for long double o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123981 i386 [pxeboot] You can't usefully PXEBOOT the 7.0-RELEASE-i o i386/123462 i386 clock is too fast a i386/122887 i386 [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed f i386/122644 i386 [panic] on-boot mount /tmp kernel dump o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o i386/122602 i386 [build] i386/conf/PAE does not compile on RELENG_7 o i386/122148 i386 [irq] interrupt storm on 7.0 [regression] o i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o i386/121549 i386 [nfe]: nfe interface locks up during rc.conf initializ o i386/121258 i386 [boot] FreeBSD 6.3 / 7.0 boot problem [regression] o i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 o i386/119946 i386 [est] sysctl dev.cpu.0.freq on 75 Hz, cannot be change o i386/119574 i386 [i386] 7.0-RC1 times out in calibrate_clocks() [regres o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o i386/118656 i386 [panic] Init dies in single user mode and box get kern o i386/118350 i386 [boot] [hang] BTX loader hangs on PC Engines WRAP o i386/118285 i386 [i386] Segmentation fault in reloc_non_plt. o i386/117297 i386 [hang] System hangs up every day o i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost o i386/116100 i386 [panic] Fatal trap 12 right after reboot (da0s1error = o i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI o i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes o i386/115285 i386 [panic] fatal trap 1 on freebsd 6.2 install boot up on o i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image o i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC o i386/112635 i386 [hang] [loader] Hang during boot installation o i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook o i386/112487 i386 [sio] kernel panic on swi0:sio o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA o i386/110218 i386 kmem_malloc(4096): kmem_map too small: 335544320 total o i386/110214 i386 [hang] FreeBSD 6.2 freezes on SSH activitiy caused by o i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode o i386/109568 i386 [panic] Reboot server with "Fatal trap 12" o i386/109423 i386 [ichsmb] ICH5 smb interface problems s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap o i386/107564 i386 [install] fatal trap 19 during installation on a Dell o i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 o i386/106850 i386 [powerd] powernow0 attach returned 6 o i386/106789 i386 [nfe] or [nve]: Internal NIC of GA-K8N51GMF-RH does no o i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server o i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 f i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o i386/104473 i386 [boot] boot loader reboots before loading kernel on Al o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault o i386/103063 i386 [install] Can not install on Dell XPS 700 o i386/102562 i386 [em] no traffic pass through a em card after approx. a o i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze o i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega o i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP o i386/100831 i386 [sio] sio ignores BIOS information about serial ports o i386/100420 i386 [boot] boot1/boot2 lba error o i386/100204 i386 FreeBSD reports raid as broken - but it is not o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o i386/98366 i386 [em] Intel PRO/1000 MT Dual PCI-X: simulatenious 1000 o i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode o i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu o i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 o i386/97025 i386 [vmware] fbsd (2 cd) dont install in vmware 5.5.0 - re o i386/96406 i386 System freezes on IBM xSeries 335 with FreeBSD-6.0-REL o i386/96357 i386 FreeBSD cannot recognize all the logical partitions f i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o i386/93809 i386 panic: could not copy LDT on RELENG_5_3 through RELENG o i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p o i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o o i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o o i386/91745 i386 [smp] Second processor not detected on Proliant ML530 s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re s i386/88491 i386 [install] Panic when boot installation CD1 (Acer Trave s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w o i386/86880 i386 [hang] 6.0 hangs or reboots whilst 5.4 is stable (ASUS o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o i386/85423 i386 [ex] ex(4) does not correctly recognize NIC in PnP mod o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi s i386/85072 i386 [psm] ps/2 Mouse detection failure on compaq chipset p i386/81111 i386 [build] /boot/loader causes reboot due to CFLAGS+= -ms o i386/80268 i386 [panic] System with Transmeta Efficeon cpu crashes whi o i386/80095 i386 ld-elf.so.1 crashes with executables produced by tinyc s i386/79169 i386 [hang] freeze with striped USB Drives under high load o i386/79091 i386 [i386] [patch] Small optimization for i386/support.s o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o i386/75887 i386 [pcvt] with vt0.disabled=0 and PCVT in kernel video/ke o i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst o i386/74008 i386 [boot] IBM eServer x225 cannot boot any v5.x - endless o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o i386/72960 i386 [boot] BTX halted with Promise Tx2000 Raid o i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 147 problems total. From owner-freebsd-i386@FreeBSD.ORG Tue Feb 2 08:37:38 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6AEE106566B; Tue, 2 Feb 2010 08:37:38 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E3058FC0C; Tue, 2 Feb 2010 08:37:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o128bcdD033943; Tue, 2 Feb 2010 08:37:38 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o128bcLj033939; Tue, 2 Feb 2010 08:37:38 GMT (envelope-from remko) Date: Tue, 2 Feb 2010 08:37:38 GMT Message-Id: <201002020837.o128bcLj033939@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: ports/143423: sysutils/be_agent: be_agent > /usr and /var ara empty X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2010 08:37:38 -0000 Old Synopsis: be_agent > /usr and /var ara empty New Synopsis: sysutils/be_agent: be_agent > /usr and /var ara empty Responsible-Changed-From-To: freebsd-i386->freebsd-ports-bugs Responsible-Changed-By: remko Responsible-Changed-When: Tue Feb 2 08:37:16 UTC 2010 Responsible-Changed-Why: reassign to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=143423 From owner-freebsd-i386@FreeBSD.ORG Thu Feb 4 06:06:15 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 057F6106566B; Thu, 4 Feb 2010 06:06:15 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D102D8FC20; Thu, 4 Feb 2010 06:06:14 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.3/8.14.3) with ESMTP id o1466EUe089711; Thu, 4 Feb 2010 01:06:14 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.3/8.14.3/Submit) id o1466E0Y089699; Thu, 4 Feb 2010 06:06:14 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 4 Feb 2010 06:06:14 GMT Message-Id: <201002040606.o1466E0Y089699@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2010 06:06:15 -0000 TB --- 2010-02-04 05:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-02-04 05:00:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-02-04 05:00:00 - cleaning the object tree TB --- 2010-02-04 05:00:32 - cvsupping the source tree TB --- 2010-02-04 05:00:32 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-02-04 05:01:10 - building world TB --- 2010-02-04 05:01:10 - MAKEOBJDIRPREFIX=/obj TB --- 2010-02-04 05:01:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-02-04 05:01:10 - TARGET=pc98 TB --- 2010-02-04 05:01:10 - TARGET_ARCH=i386 TB --- 2010-02-04 05:01:10 - TZ=UTC TB --- 2010-02-04 05:01:10 - __MAKE_CONF=/dev/null TB --- 2010-02-04 05:01:10 - cd /src TB --- 2010-02-04 05:01:10 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 4 05:01:11 UTC 2010 >>> 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 Thu Feb 4 06:00:35 UTC 2010 TB --- 2010-02-04 06:00:35 - generating LINT kernel config TB --- 2010-02-04 06:00:35 - cd /src/sys/pc98/conf TB --- 2010-02-04 06:00:35 - /usr/bin/make -B LINT TB --- 2010-02-04 06:00:35 - building LINT kernel TB --- 2010-02-04 06:00:35 - MAKEOBJDIRPREFIX=/obj TB --- 2010-02-04 06:00:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-02-04 06:00:35 - TARGET=pc98 TB --- 2010-02-04 06:00:35 - TARGET_ARCH=i386 TB --- 2010-02-04 06:00:35 - TZ=UTC TB --- 2010-02-04 06:00:35 - __MAKE_CONF=/dev/null TB --- 2010-02-04 06:00:35 - cd /src TB --- 2010-02-04 06:00:35 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 4 06:00:35 UTC 2010 >>> 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 [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_soc.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_sm.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp_freebsd.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp_library.c /src/sys/dev/isp/isp_library.c: In function 'isp_clear_commands': /src/sys/dev/isp/isp_library.c:653: error: 'ispsoftc_t' has no member named 'isp_tgt_xflist' *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-02-04 06:06:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-02-04 06:06:14 - ERROR: failed to build lint kernel TB --- 2010-02-04 06:06:14 - 2883.18 user 693.66 system 3973.36 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Thu Feb 4 06:07:43 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DED1106568B; Thu, 4 Feb 2010 06:07:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 480A68FC16; Thu, 4 Feb 2010 06:07:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.3/8.14.3) with ESMTP id o1467gGF096934; Thu, 4 Feb 2010 01:07:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.3/8.14.3/Submit) id o1467gf2096923; Thu, 4 Feb 2010 06:07:42 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 4 Feb 2010 06:07:42 GMT Message-Id: <201002040607.o1467gf2096923@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2010 06:07:43 -0000 TB --- 2010-02-04 05:00:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-02-04 05:00:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-02-04 05:00:00 - cleaning the object tree TB --- 2010-02-04 05:00:33 - cvsupping the source tree TB --- 2010-02-04 05:00:33 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-02-04 05:01:10 - building world TB --- 2010-02-04 05:01:10 - MAKEOBJDIRPREFIX=/obj TB --- 2010-02-04 05:01:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-02-04 05:01:10 - TARGET=i386 TB --- 2010-02-04 05:01:10 - TARGET_ARCH=i386 TB --- 2010-02-04 05:01:10 - TZ=UTC TB --- 2010-02-04 05:01:10 - __MAKE_CONF=/dev/null TB --- 2010-02-04 05:01:10 - cd /src TB --- 2010-02-04 05:01:10 - /usr/bin/make -B buildworld >>> World build started on Thu Feb 4 05:01:11 UTC 2010 >>> 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 Thu Feb 4 06:00:50 UTC 2010 TB --- 2010-02-04 06:00:50 - generating LINT kernel config TB --- 2010-02-04 06:00:50 - cd /src/sys/i386/conf TB --- 2010-02-04 06:00:50 - /usr/bin/make -B LINT TB --- 2010-02-04 06:00:50 - building LINT kernel TB --- 2010-02-04 06:00:50 - MAKEOBJDIRPREFIX=/obj TB --- 2010-02-04 06:00:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-02-04 06:00:50 - TARGET=i386 TB --- 2010-02-04 06:00:50 - TARGET_ARCH=i386 TB --- 2010-02-04 06:00:50 - TZ=UTC TB --- 2010-02-04 06:00:50 - __MAKE_CONF=/dev/null TB --- 2010-02-04 06:00:50 - cd /src TB --- 2010-02-04 06:00:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Feb 4 06:00:50 UTC 2010 >>> 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 [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_soc.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_sm.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/iscsi/initiator/isc_subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp_freebsd.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/isp/isp_library.c /src/sys/dev/isp/isp_library.c: In function 'isp_clear_commands': /src/sys/dev/isp/isp_library.c:653: error: 'ispsoftc_t' has no member named 'isp_tgt_xflist' *** Error code 1 Stop in /obj/i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-02-04 06:07:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-02-04 06:07:42 - ERROR: failed to build lint kernel TB --- 2010-02-04 06:07:42 - 2971.76 user 682.22 system 4061.91 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Fri Feb 5 20:30:04 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 687A9106568F for ; Fri, 5 Feb 2010 20:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D8BB8FC20 for ; Fri, 5 Feb 2010 20:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o15KU4bG004268 for ; Fri, 5 Feb 2010 20:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o15KU4ei004263; Fri, 5 Feb 2010 20:30:04 GMT (envelope-from gnats) Resent-Date: Fri, 5 Feb 2010 20:30:04 GMT Resent-Message-Id: <201002052030.o15KU4ei004263@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ricky Dee Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C60D106566B for ; Fri, 5 Feb 2010 20:28:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 6C79E8FC1C for ; Fri, 5 Feb 2010 20:28:59 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o15KSxg4018940 for ; Fri, 5 Feb 2010 20:28:59 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o15KSxdk018939; Fri, 5 Feb 2010 20:28:59 GMT (envelope-from nobody) Message-Id: <201002052028.o15KSxdk018939@www.freebsd.org> Date: Fri, 5 Feb 2010 20:28:59 GMT From: Ricky Dee To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/143587: BTX 1.02 freezes upon assigning Bios C drive from Serveraid based array X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2010 20:30:04 -0000 >Number: 143587 >Category: i386 >Synopsis: BTX 1.02 freezes upon assigning Bios C drive from Serveraid based array >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 05 20:30:03 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Ricky Dee >Release: FreeBSD 6.4-RELEASE >Organization: Pichard Racing SA >Environment: since, the boot fails, I cannot get there >Description: FreeBSD 5.5 and before do not exhibit the problem since they use BTX 1.01. If I try to boot the system on FreeBSD 6.4 which uses BTX 1.02 and an array is defined in the serveraid adapter (tried Serveraid 3L, 4L, 4Lx, etc.) the boot freezes when trying to assign bios drive C right after Bios A drive is assigned. It does not halt or provide any information, it just freezes. If the serveraid adapter has no array defined, drive c is not assigned and booting works but installation fails since no drive is present to install. Same behaviour whether cd or disks are used to boot. I tried on on IBM x326m, IBM x300 and IBM x306m with same results. >How-To-Repeat: Configure a raid-1 array on a scsi based serveraid adapter 3L, 4L, 4Lx and try to boot FreeBSD with a BTX 1.02 (6.4-Release or more) and the freeze should occur. >Fix: >Release-Note: >Audit-Trail: >Unformatted: