From owner-cvs-all@FreeBSD.ORG Fri Oct 29 07:16:37 2004 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 E1E3D16A4CE; Fri, 29 Oct 2004 07:16:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D553043D55; Fri, 29 Oct 2004 07:16:37 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i9T7GbVa045512; Fri, 29 Oct 2004 07:16:37 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9T7GbLc045511; Fri, 29 Oct 2004 07:16:37 GMT (envelope-from phk) Message-Id: <200410290716.i9T7GbLc045511@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 29 Oct 2004 07:16:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/devfs devfs_vnops.c src/sys/geom geom_dev.c src/sys/kern kern_physio.c vfs_aio.c vfs_bio.c src/sys/sys conf.h 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: Fri, 29 Oct 2004 07:16:38 -0000 phk 2004-10-29 07:16:37 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vnops.c sys/geom geom_dev.c sys/kern kern_physio.c vfs_aio.c vfs_bio.c sys/sys conf.h Log: Give dev_strategy() an explict cdev argument in preparation for removing buf->b-dev. Put a bio between the buf passed to dev_strategy() and the device driver strategy routine in order to not clobber fields in the buf. Assert copyright on vfs_bio.c and update copyright message to canonical text. There is no legal difference between John Dysons two-clause abbreviated BSD license and the canonical text. Revision Changes Path 1.77 +1 -1 src/sys/fs/devfs/devfs_vnops.c 1.85 +2 -2 src/sys/geom/geom_dev.c 1.66 +1 -1 src/sys/kern/kern_physio.c 1.179 +1 -1 src/sys/kern/vfs_aio.c 1.462 +49 -13 src/sys/kern/vfs_bio.c 1.207 +1 -1 src/sys/sys/conf.h