From owner-cvs-src-old@FreeBSD.ORG Fri Apr 3 03:25:15 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23E801065797 for ; Fri, 3 Apr 2009 03:25:15 +0000 (UTC) (envelope-from weongyo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 116628FC1B for ; Fri, 3 Apr 2009 03:25:15 +0000 (UTC) (envelope-from weongyo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n333PEBL061496 for ; Fri, 3 Apr 2009 03:25:14 GMT (envelope-from weongyo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n333PEGr061495 for cvs-src-old@freebsd.org; Fri, 3 Apr 2009 03:25:14 GMT (envelope-from weongyo@repoman.freebsd.org) Message-Id: <200904030325.n333PEGr061495@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to weongyo@repoman.freebsd.org using -f From: Weongyo Jeong Date: Fri, 3 Apr 2009 03:25:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/dev/malo if_malo_pci.c if_malohal.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Apr 2009 03:25:15 -0000 weongyo 2009-04-03 03:25:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/dev/malo if_malo_pci.c if_malohal.c Log: SVN rev 190666 on 2009-04-03 03:25:00Z by weongyo MFC r190541: fix a bug of uses after free. Pointed by: dchagin MFC r190544: handles more exceptional cases when the driver failed to attach. MFC r190550: corrects a error message. MFC r190590: fix a bug that it passed a incorrect flag BUS_DMA_ALLOCNOW to create a device specific DMA tag. On amd64 it could exhaust all of bounce pages when bus_dma_tag_create(9) is called at malo_pci_attach() then as result in next turn it returns ENOMEM. This fix a attach fail on amd64. Pointed by: yongari Tested by: dchagin Approved by: re (kib) Revision Changes Path 1.1.2.2 +8 -6 src/sys/dev/malo/if_malo_pci.c 1.2.2.2 +2 -3 src/sys/dev/malo/if_malohal.c