From owner-freebsd-alpha@FreeBSD.ORG Mon Dec 10 11:06:59 2007 Return-Path: Delivered-To: freebsd-alpha@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C174716A418 for ; Mon, 10 Dec 2007 11:06:59 +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 B189713C461 for ; Mon, 10 Dec 2007 11:06:59 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id lBAB6xBQ073272 for ; Mon, 10 Dec 2007 11:06:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id lBAB6xBe073268 for freebsd-alpha@FreeBSD.org; Mon, 10 Dec 2007 11:06:59 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Dec 2007 11:06:59 GMT Message-Id: <200712101106.lBAB6xBe073268@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-alpha@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-alpha@FreeBSD.org X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2007 11:06:59 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/75317 alpha [busdma] [patch] ATA DMA broken on PCalpha 1 problem total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f alpha/59116 alpha [ntfs] mount_ntfs of a Windows 2000-formatted fs cause o alpha/61940 alpha [sysinstall] Can't disklabel new disk from FreeBSD/alp o alpha/61973 alpha Machine Check on boot-up of AlphaServer 2100A RM s alpha/67626 alpha X crashes an alpha machine, resulting reboot o alpha/85346 alpha PREEMPTION causes unstability in Alpha4000 SMP kernel o alpha/105134 alpha 'panic: lockmgr: thread ... not exclusive lock owner' 6 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o alpha/25284 alpha PC164 won't reboot with graphics console o alpha/38031 alpha osf1.ko not loaded during boot-time of linux-emu enabl o alpha/48676 alpha Changing the baud rate of serial consoles for Alpha sy o alpha/50868 alpha fd0 floppy device is not mapped into /dev (XP1000) Fre o alpha/66478 alpha unexpected machine check: panic for 4.9, 4.10, 5.2 or o alpha/67903 alpha hw.chipset.memory: 1099511627776 - thats way to much : 6 problems total. From owner-freebsd-alpha@FreeBSD.ORG Mon Dec 10 20:20:02 2007 Return-Path: Delivered-To: freebsd-alpha@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DC1016A41A for ; Mon, 10 Dec 2007 20:20:02 +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 5B5FE13C455 for ; Mon, 10 Dec 2007 20:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id lBAKK258048752 for ; Mon, 10 Dec 2007 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id lBAKK2Pa048744; Mon, 10 Dec 2007 20:20:02 GMT (envelope-from gnats) Date: Mon, 10 Dec 2007 20:20:02 GMT Message-Id: <200712102020.lBAKK2Pa048744@freefall.freebsd.org> To: freebsd-alpha@FreeBSD.org From: dfilter@FreeBSD.org (dfilter service) Cc: Subject: Re: alpha/75317: commit references a PR X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2007 20:20:02 -0000 The following reply was made to PR alpha/75317; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: alpha/75317: commit references a PR Date: Mon, 10 Dec 2007 20:14:23 +0000 (UTC) jhb 2007-12-10 20:14:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/alpha/alpha busdma_machdep.c sys/alpha/include md_var.h sys/alpha/pci cia.c Log: - Add a workaround for the DMA bugs on some alpha chipsets that ATA DMA trips over often. Specifically, in these chipsets DMA transfers that cross a page boundary result in data corruption. The workaround is to not allow any DMA transfers for non-static DMA maps (i.e. "real" transfers as opposed to work areas allocated with bus_dmamem_alloc()) to cross a page in a single S/G element. This behavior is enabled by setting 'busdma_pyxis_bug' to 1. - Add a new tunable 'machdep.busdma_pyxis_bug' that can be used to enable the workaround from the loader. This can be used to enable it on chipsets where we don't automatically enable it. - Auto-enable the workaround for buggy PYXIS 1 chipsets supported via cia(4). PR: alpha/75317 Revision Changes Path 1.51.2.3 +23 -6 src/sys/alpha/alpha/busdma_machdep.c 1.23.10.1 +1 -0 src/sys/alpha/include/md_var.h 1.44.2.1 +1 -0 src/sys/alpha/pci/cia.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-alpha@FreeBSD.ORG Tue Dec 11 04:03:12 2007 Return-Path: Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55ADF16A41A for ; Tue, 11 Dec 2007 04:03:12 +0000 (UTC) (envelope-from grantscanada@netcourrier.com) Received: from mailhost1.enter-net.com (tigershark.enter-net.com [216.252.64.70]) by mx1.freebsd.org (Postfix) with ESMTP id 1B94913C45A for ; Tue, 11 Dec 2007 04:03:11 +0000 (UTC) (envelope-from grantscanada@netcourrier.com) Received: (qmail-ldap/ctrl 31463 invoked from network); 11 Dec 2007 03:36:44 -0000 Received: from unknown (HELO jf4) ([216.252.79.210]) (envelope-sender ) by mailhost1.enter-net.com (qmail-ldap-1.03) with SMTP for ; 11 Dec 2007 03:36:44 -0000 From: "Canadian business publications" To: freebsd-alpha@freebsd.org Date: Mon, 10 Dec 2007 22:36:30 -0500 MIME-Version: 1.0 Message-ID: <11972977353a1a9fdce5ddc81e4f85fb56f646f367@netcourrier.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: 3200 canadian subsidies or grants listed X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Dec 2007 04:03:12 -0000 PRESS RELEASE CANADIAN SUBSIDY DIRECTORY YEAR 2007 EDITION Legal Deposit-National Library The new revised edition of the Canadian Subsidy Directory 2007 is now available. Business....................... $ 69.95 Academic (For schools, governments, municipalities, reference centers).......................$ 149.95 Pdf cd-rom..........................$ 69.95 Printed.............................$149.95 (430 pages) Order directly at Canadian Publications: Toll free line: *866-322-3376* or local *819-322-5756