From owner-cvs-all@FreeBSD.ORG Sat Jun 28 14:52:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CCD937B401; Sat, 28 Jun 2003 14:52:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC0BE44037; Sat, 28 Jun 2003 14:52:17 -0700 (PDT) (envelope-from tmm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5SLqH0U003840; Sat, 28 Jun 2003 14:52:17 -0700 (PDT) (envelope-from tmm@repoman.freebsd.org) Received: (from tmm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5SLqHWd003836; Sat, 28 Jun 2003 14:52:17 -0700 (PDT) Message-Id: <200306282152.h5SLqHWd003836@repoman.freebsd.org> From: Thomas Moestl Date: Sat, 28 Jun 2003 14:52:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 iommu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jun 2003 21:52:18 -0000 tmm 2003/06/28 14:52:17 PDT FreeBSD src repository Modified files: sys/sparc64/sparc64 iommu.c Log: Small fixes for the IOMMU code: 1.) Handle maximum segment sizes which are smaller than the IOMMU page size by splitting up pages across multiple segments if needed; this case was previously unimplemented, and would cause panics. 2.) KASSERT that the physical address is in range; remove a KASSERT that has become pointless. 3.) Add a comment describing what remains to be fixed in the IOMMU code; I plan to address these issues soon. Desired by: dwhite (1) Revision Changes Path 1.31 +47 -16 src/sys/sparc64/sparc64/iommu.c