From owner-freebsd-amd64@FreeBSD.ORG Sun Nov 16 04:45:47 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6037016A4CE for ; Sun, 16 Nov 2003 04:45:47 -0800 (PST) Received: from walton.kettenis.dyndns.org (e115144.upc-e.chello.nl [213.93.115.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F7243F3F for ; Sun, 16 Nov 2003 04:45:44 -0800 (PST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2])hAGCj91f001868; Sun, 16 Nov 2003 13:45:09 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) hAGCj8Uj068167; Sun, 16 Nov 2003 13:45:08 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost)hAGCixA5068161; Sun, 16 Nov 2003 13:44:59 +0100 (CET) Date: Sun, 16 Nov 2003 13:44:59 +0100 (CET) Message-Id: <200311161244.hAGCixA5068161@elgar.kettenis.dyndns.org> From: Mark Kettenis To: adridg@cs.kun.nl In-reply-to: (message from Adriaan de Groot on Sun, 16 Nov 2003 01:29:28 +0100 (MET)) References: cc: amd64@freebsd.org Subject: Re: debugging ports X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Nov 2003 12:45:47 -0000 Date: Sun, 16 Nov 2003 01:29:28 +0100 (MET) From: Adriaan de Groot So .. I have a world from about 2 weeks back, with no gdb. Is there a timeframe for gdb coming back? Or which port was it, again, that did the trick? AFAIK there is no GDB port yet that supports FreeBSD/amd64. However, GDB 6.0 supports FreeBSD/amd64 almost out of the box. Just configure with --host=x86_64-freebsd. You could also get the current development version out of CVS (see http://sources.redhat.com/gdb/current for more info) which should should work even better. Feel free to bug me with any problems. Mark From owner-freebsd-amd64@FreeBSD.ORG Mon Nov 17 01:51:53 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B00AD16A4CF; Mon, 17 Nov 2003 01:51:53 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A94943FBF; Mon, 17 Nov 2003 01:51:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 1816C2A8EB; Mon, 17 Nov 2003 01:51:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: amd64@freebsd.org Date: Mon, 17 Nov 2003 01:51:53 -0800 From: Peter Wemm Message-Id: <20031117095153.1816C2A8EB@canning.wemm.org> cc: current@freebsd.org Subject: HEADS UP: amd64 users! SMP code drop committed. X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2003 09:51:53 -0000 The subject should be pretty self explanatory. However, this commit trips some of the landmines in the nVidia nForce3 Pro-150 chipset and/or reference bios. Boards known to be broken by the commit: ASUS SK8N: two problems.. 1) requires 'device atpic' and that you run in 'mixed mode', even though this is expressly prohibited by the acpi spec. 2) the bios is broken and doesn't return the correct _CRS values for the interrupts after switching into apic mode. This causes level triggered pci interrupts to set up on the edge-triggered PIC which leads to much unhappiness. Gigabyte K8N-Pro: two problems 1) same missing 8254 timer -> apic connection 2) the bios appears to be outright *wrong* in apic mode. For example, it reports that the onboard ethernet is at irq 19, when in fact the interrupts appear to arrive at irq 21 instead. I have a couple of workarounds in mind. I have not tried it yet, but the quickest thing might be to comment out these lines in sys/conf/files.amd64: amd64/acpica/madt.c optional acpi amd64/amd64/apic_vector.S standard amd64/amd64/io_apic.c standard amd64/amd64/local_apic.c standard amd64/amd64/mptable.c optional mptable amd64/amd64/mptable_pci.c optional mptable pci and add 'device atpic' to your kernel config. You may also try 'set hint.acpi.0.disabled=1' in your loader. Be sure to leave out the mptable options as well, and include the atpic device. I have an SK8N as my desktop at home and a K8N Pro as my home crashbox, so rest assured that I'll sort something out real quick. :-) sledge.freebsd.org is now running in SMP, as is the loaner 4-way Opteron that I have for testing. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-freebsd-amd64@FreeBSD.ORG Mon Nov 17 02:13:10 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98DC416A4CF; Mon, 17 Nov 2003 02:13:10 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C221B43FBF; Mon, 17 Nov 2003 02:13:08 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id hAHAD8fY082451; Mon, 17 Nov 2003 02:13:08 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.10/8.12.9/Submit) id hAHAD7BO082450; Mon, 17 Nov 2003 02:13:07 -0800 (PST) (envelope-from obrien) Date: Mon, 17 Nov 2003 02:13:03 -0800 From: "David O'Brien" To: Peter Wemm Message-ID: <20031117101303.GA82303@dragon.nuxi.com> Mail-Followup-To: David O'Brien , Peter Wemm , amd64@freebsd.org, current@freebsd.org References: <20031117095153.1816C2A8EB@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031117095153.1816C2A8EB@canning.wemm.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: amd64@freebsd.org cc: current@freebsd.org Subject: Re: HEADS UP: amd64 users! SMP code drop committed. X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2003 10:13:10 -0000 On Mon, Nov 17, 2003 at 01:51:53AM -0800, Peter Wemm wrote: > sledge.freebsd.org is now running in SMP, as is the loaner 4-way Opteron > that I have for testing. Now that you've got all 4 CPU's spinning up, producing maxium BTU's, aren't you glad I brought you that new useful space header for winter. ;-) -- -- David (obrien@FreeBSD.org) P.S. YAY! From owner-freebsd-amd64@FreeBSD.ORG Mon Nov 17 13:20:15 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EC0A16A4CF; Mon, 17 Nov 2003 13:20:15 -0800 (PST) Received: from wn1.sci.kun.nl (wn1.sci.kun.nl [131.174.8.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 535EE43F85; Mon, 17 Nov 2003 13:20:09 -0800 (PST) (envelope-from adridg@sci.kun.nl) Received: from wn4.sci.kun.nl by wn1.sci.kun.nl via wn4.sci.kun.nl [131.174.8.3] with ESMTP id hAHLK8PV022206 (8.12.10/3.58); Mon, 17 Nov 2003 22:20:08 +0100 (MET) Date: Mon, 17 Nov 2003 22:20:07 +0100 (MET) From: Adriaan de Groot To: kde@freebsd.org, Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-1804928587-1069104007=:6096" Subject: Chugging along with KDE in amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adridg@cs.kun.nl List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2003 21:20:15 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. ---559023410-1804928587-1069104007=:6096 Content-Type: TEXT/PLAIN; charset=US-ASCII [Thanks to all at amd64 - Peter, David in particular - for getting me started with snapshots and whatnot.] KDE as a desktop on amd64 works reasonably well, so far. It's certainly snappy (even with an old matrox mill PCI card). Issues: * linking libxkbfile.a to KDE stuff. This needs -fPIC when compiling xkbfile, patch (for x11/XFree86-4-libraries) attached. I don't know if -fPIC would negatively affect anything else though. * knotify crashes immediately with SIGABRT. * korganizer crashes on exit with gobs of malloc(): recursive call output. A few 64-bit issues (no time_t in utmp entries) have been fixed in KDE CVS now; I'll be reading my compile logs more closely the next little while to see where else bad assumptions are made. -- Adriaan de Groot adridg@cs.kun.nl Kamer A6020 024-3652272 GPG Key Fingerprint 934E 31AA 80A7 723F 54F9 50ED 76AC EE01 FEA2 A3FE http://www.cs.kun.nl/~adridg/research/ ---559023410-1804928587-1069104007=:6096 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="xkbfile.diff" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="xkbfile.diff" LS0tIGxpYi94a2JmaWxlL0ltYWtlZmlsZS5vbGQJTW9uIE5vdiAxNyAyMToz MTowMCAyMDAzDQorKysgbGliL3hrYmZpbGUvSW1ha2VmaWxlCU1vbiBOb3Yg MTcgMjE6Mjk6NTkgMjAwMw0KQEAgLTM3LDQgKzM3LDYgQEANCiANCiAjaW5j bHVkZSA8TGlicmFyeS50bXBsPg0KIA0KK0NDT1BUSU9OUyArPSAtZlBJQw0K Kw0KIERlcGVuZFRhcmdldCgpDQo= ---559023410-1804928587-1069104007=:6096-- From owner-freebsd-amd64@FreeBSD.ORG Mon Nov 17 16:01:12 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB9EB16A4CE; Mon, 17 Nov 2003 16:01:12 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 651F843F85; Mon, 17 Nov 2003 16:01:12 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 5123B2A8EB; Mon, 17 Nov 2003 16:01:12 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: amd64@freebsd.org, current@freebsd.org In-Reply-To: <20031117095153.1816C2A8EB@canning.wemm.org> Date: Mon, 17 Nov 2003 16:01:12 -0800 From: Peter Wemm Message-Id: <20031118000112.5123B2A8EB@canning.wemm.org> Subject: Re: HEADS UP: amd64 users! SMP code drop committed. X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Nov 2003 00:01:13 -0000 Peter Wemm wrote: > You may also try 'set hint.acpi.0.disabled=1' in your loader. Be sure to > leave out the mptable options as well, and include the atpic device. The good news is that this solves my problems on the gigabyte board. I expect it'll work for the nvidia as well. But you will need to have the atpic driver in the kernel. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-freebsd-amd64@FreeBSD.ORG Tue Nov 18 12:30:30 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFACB16A4CE for ; Tue, 18 Nov 2003 12:30:29 -0800 (PST) Received: from pandora.cs.kun.nl (pandora.cs.kun.nl [131.174.33.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A56843F85 for ; Tue, 18 Nov 2003 12:30:28 -0800 (PST) (envelope-from adridg@cs.kun.nl) Received: from localhost by pandora.cs.kun.nl via odin.cs.kun.nl [131.174.33.33] with ESMTP for id hAIKUPmV009074 (8.12.10/3.58); Tue, 18 Nov 2003 21:30:26 +0100 (MET) From: Adriaan de Groot To: amd64@freebsd.org Date: Tue, 18 Nov 2003 12:29:15 +0100 User-Agent: KMail/1.5.93 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200311181229.15229.adridg@cs.kun.nl> Subject: Panic under load X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Nov 2003 20:30:30 -0000 This is FreeBSD 5.1-CURRENT #1: Sun Nov 16 17:03:56 GMT 2003 root@beans.ebn.kun.nl:/usr/obj/mnt/sys/CURRENT/src/sys/BEANS and it was built from -CURRENT source cvsupped on sunday (before the SMP stuff from Peter was added). THe machine had been up for about 10 minutes. I was just doing the following: 1) cd /home ; tar cf - . | tar xvf - -C /home-local 2) cd /usr/local/tmp/kdemultimedia ; gmake -j6 Now /home is NFS mounted, /home-local is local disk, /usr/local is on the same local dist, and the sources for kdemultimedia are NFS mounted (from a different server) as well. On the whole, a fair amount of disk and network activity (although the network is only 100Mbit). Resultant panic (slightly abridged): kernel trap 12 with interrupts disabled Fatal trap 12: page fault while in kernel mode fva = 0x175 ft = supervisor read, page not present ip = 0x8:0xffffffff803648cd sp = 0x10:0xffffffffa213fb80 fp = 0x10:0xffffffff8074a760 cs = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 pe = resume, IOPL=0 cp = 24 (irq10: skc0, atapci*) Now, one isolated incident isn't very useful. What can/should I do if this kind of problem persists? (Yeah, read the handbook. I'll get right on it.) -- pub 1024D/FEA2A3FE 2002-06-18 Adriaan de Groot If the door is ajar, can we fill it with door-jamb? From owner-freebsd-amd64@FreeBSD.ORG Wed Nov 19 04:00:24 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9828B16A4CF for ; Wed, 19 Nov 2003 04:00:24 -0800 (PST) Received: from mail.speakeasy.net (mail8.speakeasy.net [216.254.0.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB54643FE1 for ; Wed, 19 Nov 2003 04:00:20 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 26321 invoked from network); 19 Nov 2003 12:00:20 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 19 Nov 2003 12:00:20 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.9/8.12.9) with ESMTP id hAJC0GFn023315; Wed, 19 Nov 2003 07:00:16 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 19 Nov 2003 07:00:15 -0500 (EST) From: John Baldwin To: current@FreeBSD.org X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) X-Mailman-Approved-At: Wed, 19 Nov 2003 05:41:27 -0800 Subject: [PATCH] Please test SMP changes X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Nov 2003 12:00:24 -0000 [ Bcc'd to various arch mailing lists ] Please test the patch at http://www.FreeBSD.org/~jhb/patches/smp.patch You can apply it to a sys/ check out by using patch -p6. It moves the setting of mp_maxid into a separate function (cpu_mp_setmaxid()) that is called before loader tunables so that UMA and others can use it. cpu_mp_probe() is now called at SI_SUB_CPU / SI_ORDER_SECOND like it used to be. This is necessay to re-enable the ACPI module on i386. I have tested it on i386 but not on other archs. Please be sure to test that a normal SMP kernel works as well as booting an SMP kernel with 'kern.smp.disabled'. cpu_mp_probe() is no longer called if SMP is disabled in the loader using the tunable. Thanks. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-freebsd-amd64@FreeBSD.ORG Wed Nov 19 09:40:23 2003 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C61316A4CF for ; Wed, 19 Nov 2003 09:40:23 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE08543FE0 for ; Wed, 19 Nov 2003 09:40:17 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id hAJHeHFY087336 for ; Wed, 19 Nov 2003 09:40:17 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id hAJHeH3f087335; Wed, 19 Nov 2003 09:40:17 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 19 Nov 2003 09:40:17 -0800 (PST) Resent-Message-Id: <200311191740.hAJHeH3f087335@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-amd64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bill Squire {billsf} Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D950D16A4CE for ; Wed, 19 Nov 2003 09:35:15 -0800 (PST) Received: from cuba.calyx.nl (cuba.calyx.nl [213.130.163.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39BDA44008 for ; Wed, 19 Nov 2003 09:35:14 -0800 (PST) (envelope-from billsf@cuba.calyx.nl) Received: by cuba.calyx.nl (Postfix, from userid 1000) id 550405C07; Wed, 19 Nov 2003 18:35:13 +0100 (CET) Message-Id: <20031119173513.GA22036@cuba.calyx.nl> Date: Wed, 19 Nov 2003 18:35:13 +0100 From: Bill Squire {billsf} To: FreeBSD-gnats-submit@FreeBSD.org Subject: amd64/59483: amd64 pr X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Nov 2003 17:40:23 -0000 >Number: 59483 >Category: amd64 >Synopsis: Moused and tiff broken on amd64 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-amd64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 19 09:40:17 PST 2003 >Closed-Date: >Last-Modified: >Originator: Bill Squire >Release: FreeBSD 5.1-CURRENT amd64 >Organization: >Environment: System: FreeBSD curacao.n2it.nl 5.1-CURRENT FreeBSD 5.1-CURRENT #4: Mon Nov 17 1 3:46:43 CET 2003 root@curacao.n2it.nl:/usr/obj/usr/src/sys/C64-02 amd64 >Description: >How-To-Repeat: moused simply doesn't work anymore with a USB mouse, TIFF images will not work with any application on this machine: Gimp, XV, Eye of Gnome and probably others. >Fix: Moused will not load the /dev/ums0 driver - works fine with X however. An earlier moused will work, then there is a sysmouse, but sysmouse will not produce X-events from the Z-axis. If not fixed soon i'll hack one, but the developers allways write cleaner code than me. I'm not a programmer by profession. :) There is no way known to myself how to fix tiff drivers. Some 'improvement' has aparently blocked tiff. Overall the progress on the amd64 platform has been nothing short of spectacular over the few weeks i've owned the amd64. Gnome works as of last weekend's rebuild, the first real desktop on this computer. Many minor applications and ofcourse any Mozilla based browser doesn't work because NSPR is so screwed up. KDE doesn't work at all due to the very screwed up 'arts' which everything seems to depend on. Otherwise keep up the good work as i have i386s, athlons and an alpha. A Linux ABI on amd64 would be nice. (hint, hint) I have managed to create a complete Linux development environment on an athlon based on Gentoo. The original compile was in Linux and then integrated into FreeBSD. Almost any Linux application can be compiled. By making some sym-links in /dev, X can be started under Linux using ufs/ffs. As far as i'm concerened this beats the redhat compatibility libs available in ports. In addition the latest "Real 1" player works. I think it might be possible to port it to FreeBSD natively by 'wrapping' the approiate Windows DLLs. As a closing remark, IMO, amd64 is the future of the PC, Microsoft or not! Bill PS: My mail is not configured on the amd64, so there is probably no real problem with that. >Release-Note: >Audit-Trail: >Unformatted: To: FreeBSD-gnats-submit@freebsd.org Subject: Moused and tiff broken on amd64 From: Bill Squire Reply-To: Bill Squire Cc: X-send-pr-version: 3.113 X-GNATS-Notify: From owner-freebsd-amd64@FreeBSD.ORG Wed Nov 19 14:19:18 2003 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEED216A4CF for ; Wed, 19 Nov 2003 14:19:18 -0800 (PST) Received: from pandora.cs.kun.nl (pandora.cs.kun.nl [131.174.33.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57EB843F75 for ; Wed, 19 Nov 2003 14:19:17 -0800 (PST) (envelope-from adridg@cs.kun.nl) Received: from localhost by pandora.cs.kun.nl via odin.cs.kun.nl [131.174.33.33] with ESMTP id hAJMJAmU005158 (8.12.10/3.58); Wed, 19 Nov 2003 23:19:13 +0100 (MET) From: Adriaan de Groot To: Bill Squire {billsf} Date: Wed, 19 Nov 2003 23:19:05 +0100 User-Agent: KMail/1.5.93 References: <20031119173513.GA22036@cuba.calyx.nl> In-Reply-To: <20031119173513.GA22036@cuba.calyx.nl> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200311192319.05272.adridg@cs.kun.nl> cc: amd64@freebsd.org Subject: Re: amd64/59483: amd64 pr X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Nov 2003 22:19:18 -0000 On Wednesday 19 November 2003 18:35, Bill Squire {billsf} wrote: > System: FreeBSD curacao.n2it.nl 5.1-CURRENT FreeBSD 5.1-CURRENT #4: Mon Nov > 17 1 3:46:43 CET 2003 root@curacao.n2it.nl:/usr/obj/usr/src/sys/C64-02 > amd64 FreeBSD beans.ebn.kun.nl 5.1-CURRENT FreeBSD 5.1-CURRENT #3: Tue Nov 18 11:33:52 CET 2003 root@beans.ebn.kun.nl:/mnt/sys/CURRENT/src/sys/amd64/compile/BEANS amd64 > moused simply doesn't work anymore with a USB mouse, TIFF images With moused already running (for my ps/2 mouse), plugging in an extra USB mouse works perfectly, and either one works, both in syscons and in X. Killall moused disables it, of course, and then re-plugging the USB mouse restores mouse functionality in both X and syscons. So that must be something specific to your system. > Overall the progress on the amd64 platform has been nothing short of > spectacular over the few weeks i've owned the amd64. Gnome works as of Well said. Except .. > NSPR is so screwed up. KDE doesn't work at all due to the very screwed up > 'arts' which everything seems to depend on. Otherwise keep up the good work So send an actual bug report, either to the amd64 list or to kde@freebsd, with detailed information. If the port fails to build, show us the logs. FWIW, beans.ebn.kun.nl$ps ax | grep arts 654 ?? S 0:11.97 /usr/local/kde-HEAD/bin/artsd -F 10 -S 4096 -s 60 -m (not that sound works, mind you, there's other problems with that - I can't get _anything_ to produce pcm sound, ogg123 bus errors, and mpg123 refuses to play anything but to esd output) -- pub 1024D/FEA2A3FE 2002-06-18 Adriaan de Groot If the door is ajar, can we fill it with door-jamb? From owner-freebsd-amd64@FreeBSD.ORG Thu Nov 20 01:15:30 2003 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AD3816A4CE; Thu, 20 Nov 2003 01:15:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5EEA43F93; Thu, 20 Nov 2003 01:15:29 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from freefall.freebsd.org (des@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id hAK9FTFY094169; Thu, 20 Nov 2003 01:15:29 -0800 (PST) (envelope-from des@freefall.freebsd.org) Received: (from des@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id hAK9FTZJ094165; Thu, 20 Nov 2003 01:15:29 -0800 (PST) (envelope-from des) Date: Thu, 20 Nov 2003 01:15:29 -0800 (PST) From: Dag-Erling Smorgrav Message-Id: <200311200915.hAK9FTZJ094165@freefall.freebsd.org> To: billsf@cuba.calyx.nl, des@FreeBSD.org, freebsd-amd64@FreeBSD.org Subject: Re: amd64/59483: Moused and tiff broken on amd64 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2003 09:15:30 -0000 Synopsis: Moused and tiff broken on amd64 State-Changed-From-To: open->closed State-Changed-By: des State-Changed-When: Thu Nov 20 01:15:28 PST 2003 State-Changed-Why: Please submit a separate PR with meaningful synopsis for each issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=59483