From owner-cvs-src@FreeBSD.ORG Sun Jul 4 12:49:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A4B616A4CE; Sun, 4 Jul 2004 12:49:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E1AA43D31; Sun, 4 Jul 2004 12:49:05 +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 i64Cn5a2043357; Sun, 4 Jul 2004 12:49:05 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i64Cn4U3043356; Sun, 4 Jul 2004 12:49:04 GMT (envelope-from phk) Message-Id: <200407041249.i64Cn4U3043356@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 4 Jul 2004 12:49:04 +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/sys vnode.h src/sys/kern vfs_bio.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jul 2004 12:49:05 -0000 phk 2004-07-04 12:49:04 UTC FreeBSD src repository Modified files: sys/sys vnode.h sys/kern vfs_bio.c vfs_subr.c Log: Blocksize for I/O should be a property of the vnode and not found by groping around in the vnodes surroundings when we allocate a block. Assign a blocksize when we create a vnode, and yell a warning (and ignore it) if we got the wrong size. Please email all such warnings to me. Revision Changes Path 1.438 +5 -0 src/sys/kern/vfs_bio.c 1.499 +1 -0 src/sys/kern/vfs_subr.c 1.240 +1 -0 src/sys/sys/vnode.h